:root {
    --primary: #007AFF;
    --primary-hover: #0056CC;
    --primary-light: rgba(0, 122, 255, 0.1);
    --success: #34C759;
    --white: #FFFFFF;
    --gray-100: #F5F5F7;
    --gray-200: #E5E5EA;
    --gray-900: #1C1C1E;
    --text-primary: #1C1C1E;
    --text-secondary: #6C757D;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    height: 80px;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
    height: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo-wrapper a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-wrapper img {
    height: 52px;
    width: auto;
    transition: transform 0.2s ease;
}

.logo-wrapper a:hover img {
    transform: scale(1.02);
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 6px;
    align-items: center;
    height: 100%;
}

.nav-menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-menu li a.active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn-bayi-giris {
    height: 48px;
    padding: 0 24px;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-bayi-giris:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-bayi-giris i {
    font-size: 18px;
}

.mobile-menu-toggle {
    display: none;
    background: var(--gray-100);
    border: none;
    font-size: 22px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
    background: var(--gray-200);
}

.mobile-menu-footer {
    display: none;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 80px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 35, 45, 0.75) 0%, rgba(45, 50, 60, 0.65) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.slide-content .btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    background: var(--white);
    color: #2D3748;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.slide-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.slider-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot.active {
    background: var(--white);
    width: 32px;
    border-radius: 4px;
}

/* Stories Section */
.stories-section {
    padding: 24px 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.stories-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    cursor: grab;
}

.stories-container:active {
    cursor: grabbing;
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.stories-list {
    display: flex;
    gap: 16px;
    padding: 4px 0;
}

.story-item {
    flex-shrink: 0;
    cursor: pointer;
    transition: transform 0.2s;
}

.story-item:active {
    transform: scale(0.95);
}

.story-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    padding: 3px;
    background: var(--white);
    position: relative;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.story-label {
    display: none;
}

/* New Products Section */
.new-products-section {
    padding: 40px 0 56px;
    background: #FAFBFC;
    position: relative;
    border-top: 1px solid #E8EAED;
}

.new-products-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding: 0;
    position: relative;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

.view-all-link i {
    font-size: 14px;
}

.products-scroll-container {
    width: 100%;
    position: relative;
}

.products-grid,
.products-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Responsive Grid Breakpoints for Better Mobile/Tablet Experience */
@media (max-width: 1400px) {
    /* 3 columns when screen is below 1400px */
    .products-grid,
    .products-grid-full {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    /* 2 columns when screen is below 991px (tablets) */
    .products-grid,
    .products-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 764px) {
    /* 1 column when screen is below 764px (mobile) */
    .products-grid,
    .products-grid-full {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Product Card - Clean Minimal Design */
.product-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Product Image */
.product-image {
    width: 100%;
    aspect-ratio: 1.25;
    overflow: hidden;
    background: #F5F5F7;
    position: relative;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
    transition: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* No Image Placeholder */
.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F5F5F7;
    color: #8E8E93;
    gap: 8px;
}

.product-no-image i {
    font-size: 48px;
    opacity: 0.5;
}

.product-no-image span {
    font-size: 14px;
    font-weight: 500;
}

/* Product Badges */
.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    pointer-events: none;
}

.product-badge {
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    width: fit-content;
    max-width: max-content;
}

.badge-new {
    background: #10B981;
}

.badge-net-price {
    background: #3B82F6;
}

.badge-campaign {
    background: #EF4444;
}

.badge-out-of-stock {
    background: #DC2626;
}

.product-badge i {
    font-size: 14px;
}

/* Product Details */
.product-details {
    padding: 20px;
    background: #FFFFFF;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Product Name */
.product-name {
    font-size: 17px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    letter-spacing: -0.02em;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.product-info-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    padding: 9px 0;
    background: transparent;
    border: none;
    gap: 12px;
    border-bottom: 1px solid #E5E7EB;
}

.product-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-info-item:first-child {
    padding-top: 0;
}

.product-info-label {
    font-weight: 400;
    color: #9CA3AF;
    font-size: 13px;
    text-transform: none;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    line-height: 1.4;
}

.product-info-label i {
    font-size: 17px;
    color: #6366F1;
    opacity: 1;
    width: 17px;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-info-value {
    color: #1C1C1E;
    font-weight: 700;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    text-align: right;
    word-break: break-all;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    line-height: 1.4;
}

/* Product Lightbox */
.product-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.product-lightbox.active {
    display: flex;
    flex-direction: column;
}

.lightbox-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lightbox-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.lightbox-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 40px 40px;
    overflow: hidden;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    pointer-events: all;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.lightbox-nav-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

.lightbox-nav-btn:active {
    transform: scale(0.95);
}

.lightbox-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Story Viewer */
.story-viewer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.story-viewer.active {
    display: flex;
    flex-direction: column;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.story-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    z-index: 10;
}

.story-progress {
    display: flex;
    gap: 4px;
    margin-bottom: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.story-progress-fill {
    height: 100%;
    background: var(--white);
    width: 0%;
    transition: width 0.1s linear;
}

.story-progress-fill.active {
    animation: progressBar 5s linear;
}

@keyframes progressBar {
    from { width: 0%; }
    to { width: 100%; }
}

.story-info {
    display: none;
}

.story-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 11;
}

.story-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.story-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 70px 60px 20px;
    overflow: hidden;
}

.story-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.story-nav {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.story-nav-area {
    position: absolute;
    inset: 0;
    display: flex;
    pointer-events: all;
}

.story-nav-area-left,
.story-nav-area-right {
    flex: 1;
    cursor: pointer;
}

.story-nav-area-left:active,
.story-nav-area-right:active {
    background: rgba(255, 255, 255, 0.05);
}

.story-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    pointer-events: all;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.story-nav-btn:hover {
    background: var(--white);
    transform: scale(1.05);
}

.story-nav-btn:active {
    transform: scale(0.95);
}

.story-nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Desktop optimizations */
@media (min-width: 993px) {
    .story-avatar {
        width: 100px;
        height: 100px;
    }
    
    .story-content {
        padding: 70px 80px 20px;
    }
}

/* Mobile Styles */
@media (max-width: 992px) {
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .story-content {
        padding: 60px 20px 20px;
    }
    
    .story-nav {
        padding: 0 12px;
    }
    
    .story-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .story-header {
        padding: 16px;
    }
    
    .story-close {
        top: 16px;
        right: 16px;
    }
    
    .new-products-section {
        padding: 32px 0 48px;
    }
    
    .section-header {
        grid-template-columns: 1fr auto;
        margin-bottom: 28px;
        gap: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title::after {
        width: 50px;
        height: 3px;
        bottom: -6px;
    }

    .view-all-link {
        font-size: 13px;
        padding: 9px 18px;
    }
    
    .view-all-link i {
        font-size: 13px;
    }
    
    /* Ürün Grid - Tablet'te 2 sütun */
    .products-grid,
    .products-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    /* Ürün kartı stilleri - WEB İLE AYNI KALSIN */
    /* .product-card, .product-details, .product-name, .product-info stilleri kaldırıldı */
    
    .lightbox-content {
        padding: 70px 20px 20px;
    }

    .main-header {
        height: 74px;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .logo-wrapper img {
        height: 48px;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        display: block;
        height: auto;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
        height: auto;
        display: block;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu li a {
        padding: 16px 20px;
        width: 100%;
        border-radius: 0;
        font-size: 15px;
        height: auto;
        display: block;
    }
    
    .mobile-menu-footer {
        display: block;
        padding: 40px 20px 20px;
    }

    .mobile-menu-footer-item {
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 24px 24px;
        margin-bottom: 16px;
        background: linear-gradient(135deg, #34C759 0%, #30D158 50%, #32D74B 100%);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 32px rgba(52, 199, 89, 0.35), 
                    0 2px 8px rgba(0, 0, 0, 0.1),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
    }
    
    .mobile-menu-footer-item:active {
        transform: scale(0.98);
        box-shadow: 0 4px 16px rgba(52, 199, 89, 0.3);
    }
    
    .mobile-menu-footer-item::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
        opacity: 0.8;
    }
    
    .mobile-menu-footer-item::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 100%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
        transform: rotate(45deg);
        animation: shimmer 4s ease-in-out infinite;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-150%) rotate(45deg); }
        100% { transform: translateX(150%) rotate(45deg); }
    }

    .mobile-menu-footer-item i {
        color: var(--white);
        font-size: 32px;
        width: 64px;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
        border-radius: 18px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.3);
        animation: phonePulse 2.5s ease-in-out infinite;
    }
    
    @keyframes phonePulse {
        0%, 100% { 
            transform: scale(1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15),
                        inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }
        50% { 
            transform: scale(1.08);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.5);
        }
    }
    
    .mobile-menu-footer-item .info {
        flex: 1;
        position: relative;
        z-index: 1;
    }
    
    .mobile-menu-footer-item .info .phone-label {
        display: block;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 4px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-footer-item .info a {
        color: var(--white);
        font-size: 24px;
        font-weight: 800;
        text-decoration: none;
        letter-spacing: 0.3px;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        display: block;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        line-height: 1.2;
    }
    
    .mobile-menu-footer-item .info .phone-subtitle {
        display: block;
        font-size: 13px;
        font-weight: 600;
        opacity: 0.9;
        margin-top: 4px;
        letter-spacing: 0.3px;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }
    
    .btn-yol-tarifi {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        padding: 14px 16px;
        background: var(--primary);
        color: var(--white);
        text-decoration: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        transition: all 0.2s;
    }
    
    .btn-yol-tarifi:active {
        transform: scale(0.98);
    }
    
    .btn-bayi-giris {
        padding: 11px 20px;
        font-size: 15px;
    }
    
    .btn-bayi-giris i {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-slider {
        height: 400px;
        margin-top: 74px;
    }
    
    .slide-content h1 {
        font-size: 32px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-content h1 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 15px;
    }
    
    .slide-content .btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    /* Mobilde 1 sütun - Ürün kartı stilleri WEB İLE AYNI KALSIN */
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .section-header {
        grid-template-columns: 1fr auto;
        gap: 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-title::after {
        width: 40px;
        height: 3px;
    }
    
    .view-all-link {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .view-all-link i {
        font-size: 12px;
    }
    
    .lightbox-content {
        padding: 60px 16px 20px;
    }
    
    .lightbox-image {
        max-width: 100%;
        max-height: 100%;
    }
}

/* Footer */
.main-footer {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    height: 72px;
    display: flex;
    align-items: center;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.footer-copyright {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.footer-copyright strong {
    color: var(--text-primary);
    font-weight: 600;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
}

@media (max-width: 992px) {
    .main-footer {
        height: auto;
        padding: 24px 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 20px 0;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .footer-links {
        gap: 6px;
    }
    
    .footer-links a {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ===================================
   BREADCRUMB - TÜM SAYFALAR İÇİN
   =================================== */

.breadcrumb-section {
    background: #f8f9fa;
    padding: 1rem 0;
    border-bottom: 1px solid #e9ecef;
    margin: 72px 0 0 0 !important;
    padding-top: 25px;
    position: relative;
    top: 0;
    display: block;
}

/* İletişim sayfası için breadcrumb düzenlemesi */
body:has(.contact-hero) .breadcrumb-section {
    margin: 72px 0 0 0 !important;
}

.breadcrumb-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s;
    margin: 0;
    padding: 0;
}

.breadcrumb-item:hover {
    color: #0d6efd;
}

.breadcrumb-item.active {
    color: #212529;
    font-weight: 500;
}

.breadcrumb-nav > i {
    color: #dee2e6;
    font-size: 0.75rem;
    margin: 0;
    padding: 0;
}

/* ===================================
   PRODUCTS LIST - TÜM SAYFALAR İÇİN
   =================================== */

.products-list-section {
    padding: 48px 0 64px;
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
}

.products-list-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.products-title-section {
    flex: 1;
    min-width: 250px;
}

.products-title-section .page-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #1C1C1E 0%, #3A3A3C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-title-section .page-title::after {
    display: none;
}

.products-title-section .page-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 500;
}

.products-search-form {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.products-search-form .search-input-wrapper {
    position: relative;
    width: 320px;
}

.products-search-form .search-input-wrapper > i.bi-search {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 18px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

.products-search-form .search-input {
    width: 100%;
    padding: 14px 40px 14px 46px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.products-search-form .search-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.65;
}

.products-search-form .search-input:hover {
    border-color: var(--gray-300);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.products-search-form .search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light), 0 4px 12px rgba(0, 122, 255, 0.12);
}

.products-search-form .clear-search {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
    width: 20px;
    height: 20px;
}

.products-search-form .clear-search:hover {
    color: #dc3545;
    transform: translateY(-50%) scale(1.1);
}

.products-search-form .clear-search i {
    font-size: 18px;
}

.products-search-form .btn-search {
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--primary) 0%, #0056CC 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.products-search-form .btn-search:hover {
    background: linear-gradient(135deg, #0056CC 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.4);
}

.products-search-form .btn-search:active {
    transform: translateY(0);
}

.products-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
}

/* ===================================
   KATEGORİLER SAYFASI ÖZEL STİLLER
   =================================== */

.categories-section {
    padding: 48px 0 64px;
    background: linear-gradient(135deg, #FAFBFC 0%, #F5F7FA 100%);
}

.categories-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    width: 100%;
}

.category-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: none !important;
    transform: none !important;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    border: 1px solid #E1E4E8;
}

.category-card:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02) !important;
    transform: none !important;
    transition: none !important;
}

.category-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: linear-gradient(135deg, #F8F9FA 0%, #F0F2F5 100%);
    border-bottom: 1px solid #E8EAED;
}

.category-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: none !important;
}

.category-card:hover .category-image img {
    transform: translate(-50%, -50%) !important;
    transition: none !important;
}

.category-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.category-placeholder i {
    font-size: 3.5rem;
    opacity: 0.5;
}

.category-info {
    padding: 18px;
}

.category-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.category-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-count {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #586069;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.product-count i {
    color: var(--primary);
    font-size: 15px;
    opacity: 0.85;
}

.no-results {
    text-align: center;
    padding: 100px 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #E1E4E8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
}

.no-results i {
    font-size: 80px;
    color: #E1E4E8;
    margin-bottom: 28px;
    display: block;
    opacity: 0.7;
}

.no-results h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 14px 0;
    letter-spacing: -0.02em;
}

.no-results p {
    font-size: 17px;
    color: var(--text-secondary);
    margin: 0 0 36px 0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
}

.btn-back:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
    color: white;
}

.btn-back:active {
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 992px) {
    .breadcrumb-section {
        margin: 74px 0 0 0 !important;
    }
    
    .products-header {
        flex-direction: column;
        gap: 24px;
    }
    
    .products-search-form {
        width: 100%;
    }
    
    .products-search-form .search-input-wrapper {
        flex: 1;
        width: auto;
    }
    
    .products-grid,
    .products-grid-full,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .products-title-section .page-title {
        font-size: 28px;
    }
    
    .products-title-section .page-subtitle {
        font-size: 14px;
    }
    
    .product-card,
    .category-card {
        border-radius: 10px;
    }
    
    .product-details,
    .category-info {
        padding: 13px;
    }
    
    .product-name,
    .category-name {
        font-size: 14px;
        margin-bottom: 10px;
        min-height: 40px;
    }
    
    .product-info {
        gap: 6px;
    }
    
    .product-badges {
        top: 20px;
        left: 20px;
        gap: 5px;
    }
    
    .product-badge {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .product-badge i {
        font-size: 14px;
    }
    
    .no-products,
    .no-results {
        padding: 60px 20px;
    }
    
    .no-products i,
    .no-results i {
        font-size: 64px;
    }
    
    .no-products h3,
    .no-results h3 {
        font-size: 22px;
    }
    
    .no-products p,
    .no-results p {
        font-size: 15px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .products-search-form .search-input {
        padding: 12px 36px 12px 42px;
        font-size: 13px;
    }
    
    .products-search-form .btn-search {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .products-grid,
    .products-grid-full,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    /* Hover efektleri kaldırıldı - Statik tasarım */
    
    .product-info-item:hover {
        background: transparent;
    }
        transform: none;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
    
    .pagination-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .pagination-number {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
    
    .no-products,
    .no-results {
        padding: 50px 20px;
    }
    
    .no-products i,
    .no-results i {
        font-size: 56px;
    }
    
    .no-products h3,
    .no-results h3 {
        font-size: 20px;
    }
    
    .no-products p,
    .no-results p {
        font-size: 14px;
    }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE
   =================================== */

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }
    
    .products-title-section .page-title {
        font-size: 24px;
    }
    
    .products-title-section .page-subtitle {
        font-size: 13px;
    }
    
    .products-search-form .search-input-wrapper {
        width: 100%;
    }
    
    .products-search-form .search-input {
        padding: 12px 36px 12px 40px;
        font-size: 13px;
    }
    
    .products-search-form .search-input-wrapper > i.bi-search {
        left: 12px;
        font-size: 16px;
    }
    
    /* Mobilde 1 sütun - Tüm grid'ler */
    .products-grid,
    .products-grid-full,
    .categories-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    
    .pagination-btn span {
        display: none;
    }
    
    .pagination-btn {
        min-width: 40px;
        padding: 10px;
    }
    
    .product-details,
    .category-info {
        padding: 18px;
    }
    
    .product-name,
    .category-name {
        font-size: 13px;
        margin-bottom: 9px;
        min-height: 37px;
    }
    
    .product-info {
        gap: 5px;
    }
    
    .no-products,
    .no-results {
        padding: 40px 16px;
    }
    
    .no-products i,
    .no-results i {
        font-size: 48px;
    }
    
    .no-products h3,
    .no-results h3 {
        font-size: 18px;
    }
    
    .no-products p,
    .no-results p {
        font-size: 13px;
    }
    
    .btn-try-again,
    .btn-back {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ===================================
   PAGINATION - SAYFALAMA
   =================================== */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination-btn {
    padding: 12px 20px;
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-number {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--text-primary);
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.pagination-number:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-number.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-dots {
    color: var(--text-secondary);
    font-weight: 600;
    padding: 0 4px;
}



/* ===================================
   İLETİŞİM SAYFASI - KURUMSAL TASARIM
   =================================== */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 60px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero-badge i {
    font-size: 16px;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 16px 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Info Cards Section */
.contact-info-section {
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-info-card-modern {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #E1E4E8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    transition: none;
}

.contact-card-icon-wrapper {
    margin-bottom: 20px;
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #0056CC 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 122, 255, 0.3);
}

.contact-card-icon.email {
    background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.contact-card-icon.location {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

.contact-card-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.contact-card-icon i {
    font-size: 28px;
    color: var(--white);
}

.contact-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-card-value {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    text-decoration: none;
    transition: color 0.2s;
    word-break: break-word;
}

.contact-card-value:hover {
    color: var(--primary);
}

.contact-card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.contact-card-address {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0 0 14px 0;
    min-height: 44px;
}

.contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.contact-card-link:hover {
    gap: 8px;
    color: var(--primary-hover);
}

.contact-card-link i {
    font-size: 16px;
}

/* Form Section */
.contact-form-section {
    padding: 0 0 80px;
    background: #F8F9FA;
}

/* Maps Container */
.maps-container iframe {
    border: 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Form Container */
.contact-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 44px;
    border: 1px solid #E1E4E8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* Form Wrapper - Header content hizasında */
.contact-form-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Full Width Form Container */
.contact-form-container-full {
    background: var(--white);
    border-radius: 20px;
    padding: 44px;
    border: 1px solid #E1E4E8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    width: 100%;
}

.contact-form-header-modern {
    margin-bottom: 36px;
    text-align: center;
}

.form-header-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary) 0%, #0056CC 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.25);
}

.form-header-icon i {
    font-size: 26px;
    color: var(--white);
}

.contact-form-header-modern h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.contact-form-header-modern p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Alert Messages */
.alert {
    padding: 18px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
}

.alert i {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-content {
    flex: 1;
}

.alert-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.alert-success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-success i {
    color: #10B981;
}

.alert-error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

.alert-error i {
    color: #EF4444;
}

/* Modern Form */
.contact-form-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group-modern label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.form-group-modern label i {
    font-size: 16px;
    color: var(--primary);
}

.required {
    color: #EF4444;
    font-weight: 700;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: all 0.2s;
    background: #FAFBFC;
    line-height: 1.5;
}

.form-group-modern input:hover,
.form-group-modern select:hover,
.form-group-modern textarea:hover {
    background: var(--white);
    border-color: #D1D5DB;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: #9CA3AF;
}

.form-group-modern textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
    padding: 15px 18px;
}

.form-group-modern select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
}

/* Form Footer Info */
.form-footer-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #F0F9FF;
    border: 1px solid #BAE6FD;
    border-radius: 10px;
    font-size: 14px;
    color: #0369A1;
    margin-top: 8px;
}

.form-footer-info i {
    font-size: 18px;
    color: #0284C7;
    flex-shrink: 0;
}

/* Submit Button */
.btn-submit-modern {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #0056CC 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(0, 122, 255, 0.35);
    width: 100%;
    margin-top: 8px;
}

.btn-submit-modern:hover {
    background: linear-gradient(135deg, #0056CC 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.45);
}

.btn-submit-modern:active {
    transform: translateY(0);
}

.btn-submit-modern i {
    font-size: 18px;
}

/* Success Wrapper */
.form-success-wrapper {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.success-icon i {
    font-size: 40px;
    color: var(--white);
}

.form-success-wrapper h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 12px 0;
}

.form-success-wrapper p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.form-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-back-home,
.btn-new-message {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-back-home {
    background: #F3F4F6;
    color: var(--text-primary);
    border: 2px solid #E5E7EB;
}

.btn-back-home:hover {
    background: #E5E7EB;
    border-color: #D1D5DB;
}

.btn-new-message {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.25);
}

.btn-new-message:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.35);
}

/* Map Container */
.contact-map-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-map-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E1E4E8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.map-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, #F9FAFB 0%, #F3F4F6 100%);
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 12px;
}

.map-header i {
    font-size: 22px;
    color: var(--primary);
}

.map-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.map-iframe {
    width: 100%;
    height: 320px;
    background: #F3F4F6;
}

.map-iframe iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Additional Info */
.contact-additional-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E1E4E8;
    display: flex;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: var(--primary);
}

.info-content {
    flex: 1;
}

.info-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.info-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.info-content p + p {
    margin-top: 4px;
}

/* ===================================
   RESPONSIVE - TABLET
   =================================== */

@media (max-width: 992px) {
    .contact-hero {
        padding: 50px 0 70px;
        margin-top: 0;
    }

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-hero-subtitle {
        font-size: 16px;
    }

    .contact-info-section {
        margin-top: -40px;
        margin-bottom: 70px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-section {
        padding: 35px 0 60px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-container {
        padding: 36px;
    }

    .contact-form-container-full {
        padding: 36px;
    }
    }

    .contact-form-header-modern h2 {
        font-size: 24px;
    }

    .map-iframe {
        height: 280px;
    }
}

/* ===================================
   RESPONSIVE - MOBILE
   =================================== */

@media (max-width: 768px) {
    .contact-hero {
        padding: 40px 0 60px;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-subtitle {
        font-size: 15px;
    }

    .contact-info-section {
        margin-top: -30px;
        margin-bottom: 60px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-card-modern {
        padding: 32px 24px;
    }

    .contact-card-icon {
        width: 56px;
        height: 56px;
    }

    .contact-card-icon i {
        font-size: 26px;
    }

    .contact-form-section {
        padding: 30px 0 50px;
    }

    .contact-form-container {
        padding: 32px;
        border-radius: 16px;
    }

    .contact-form-container-full {
        padding: 32px;
        border-radius: 16px;
    }

    .contact-form-wrapper {
        padding: 0 24px;
    }

    .contact-form-header-modern {
        margin-bottom: 28px;
    }

    .form-header-icon {
        width: 48px;
        height: 48px;
    }

    .form-header-icon i {
        font-size: 22px;
    }

    .contact-form-header-modern h2 {
        font-size: 22px;
    }

    .contact-form-header-modern p {
        font-size: 14px;
    }

    .contact-form-modern {
        gap: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .form-group-modern input,
    .form-group-modern select,
    .form-group-modern textarea {
        padding: 14px 16px;
        font-size: 14px;
    }

    .form-group-modern label {
        font-size: 13px;
    }

    .btn-submit-modern {
        padding: 15px 28px;
        font-size: 15px;
    }

    .form-footer-info {
        font-size: 13px;
        padding: 12px 16px;
    }

    .form-footer-info i {
        font-size: 16px;
    }

    .map-iframe {
        height: 240px;
    }

    .info-item {
        padding: 20px;
    }

    .info-icon {
        width: 44px;
        height: 44px;
    }

    .info-icon i {
        font-size: 20px;
    }

    .info-content h4 {
        font-size: 14px;
    }

    .info-content p {
        font-size: 12px;
    }

    .form-success-wrapper {
        padding: 30px 16px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
    }

    .success-icon i {
        font-size: 36px;
    }

    .form-success-wrapper h3 {
        font-size: 20px;
    }

    .form-success-wrapper p {
        font-size: 14px;
    }

    .form-success-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn-back-home,
    .btn-new-message {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   RESPONSIVE - SMALL MOBILE
   =================================== */

@media (max-width: 576px) {
    .contact-hero {
        padding: 35px 0 55px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-subtitle {
        font-size: 14px;
    }

    .contact-hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .contact-info-section {
        margin-top: -25px;
        margin-bottom: 50px;
    }

    .contact-form-section {
        padding: 25px 0 40px;
    }

    .contact-form-container {
        padding: 28px;
    }

    .contact-form-container-full {
        padding: 28px;
    }

    .contact-form-wrapper {
        padding: 0 16px;
    }

    .contact-form-header-modern h2 {
        font-size: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-group-modern textarea {
        min-height: 120px;
    }

    .form-footer-info {
        font-size: 12px;
        padding: 10px 14px;
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }

    .contact-form-wrapper {
        padding: 0 12px;
    }

    .map-iframe {
        height: 220px;
    }
}

/* ===================================
   KATEGORİLER SAYFASI - GRID SİSTEMİ
   =================================== */

/* Bootstrap benzeri grid sistemi - sadece kategoriler için */
.categories-section .row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -12px;
    margin-right: -12px;
}

.categories-section .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 24px;
}

/* Desktop: col-md-2 = 16.666% (6 kategori/satır) */
@media (min-width: 768px) {
    .categories-section .col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }
}

/* Kategori Başlık Stilleri */
.category-header {
    margin-bottom: 32px;
}

.category-title {
    font-size: 32px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.category-subtitle {
    font-size: 16px;
    color: #6C757D;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .category-header {
        margin-bottom: 24px;
    }
    
    .category-title {
        font-size: 26px;
    }
    
    .category-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .category-header {
        margin-bottom: 20px;
    }
    
    .category-title {
        font-size: 22px;
    }
    
    .category-subtitle {
        font-size: 14px;
    }
    
    .categories-section .col-6 {
        margin-bottom: 16px;
    }
}

/* ===================================
   SAYFA BAŞLIK STİLLERİ (Kategori, Ürünlerimiz vb.)
   =================================== */

.page-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1C1C1E !important;
    margin: 0 0 8px 0 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
}

.page-subtitle {
    font-size: 16px !important;
    color: #6C757D !important;
    margin: 0 !important;
    font-weight: 500 !important;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 26px !important;
    }
    
    .page-subtitle {
        font-size: 15px !important;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 22px !important;
    }
    
    .page-subtitle {
        font-size: 14px !important;
    }
}

/* ===================================
   ÜRÜN BULUNAMADI ÖZEL STİLLERİ
   =================================== */

.urun-bulunamadi-container {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #FAFBFC 0%, #F6F8FA 100%);
    border-radius: 20px;
    border: 2px dashed #E1E4E8;
    margin: 40px auto;
    animation: fadeInUpCustom 0.5s ease-out;
}

@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.urun-bulunamadi-ikon {
    margin-bottom: 24px;
    line-height: 1;
    animation: pulseCustom 2s ease-in-out infinite;
}

@keyframes pulseCustom {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.urun-bulunamadi-ikon i {
    font-size: 72px;
    color: #C7CCD1;
    display: inline-block;
    line-height: 1;
}

.urun-bulunamadi-baslik {
    font-size: 24px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.urun-bulunamadi-aciklama {
    font-size: 16px;
    color: #6C757D;
    margin: 0 0 24px 0;
    line-height: 1.6;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.urun-bulunamadi-buton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    background: #007AFF;
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.2);
    text-decoration: none;
}

.urun-bulunamadi-buton:hover {
    background: #0051D5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.urun-bulunamadi-buton i {
    font-size: 16px;
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .urun-bulunamadi-container {
        padding: 60px 30px;
        max-width: 100%;
        border-radius: 16px;
    }
    
    .urun-bulunamadi-ikon {
        margin-bottom: 20px;
    }
    
    .urun-bulunamadi-ikon i {
        font-size: 64px;
    }
    
    .urun-bulunamadi-baslik {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .urun-bulunamadi-aciklama {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .urun-bulunamadi-buton {
        padding: 11px 24px;
        font-size: 14px;
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .urun-bulunamadi-container {
        padding: 50px 24px;
        max-width: 100%;
        border-radius: 14px;
    }
    
    .urun-bulunamadi-ikon {
        margin-bottom: 18px;
    }
    
    .urun-bulunamadi-ikon i {
        font-size: 56px;
    }
    
    .urun-bulunamadi-baslik {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .urun-bulunamadi-aciklama {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .urun-bulunamadi-buton {
        padding: 10px 22px;
        font-size: 14px;
    }
}

/* Küçük Mobil Responsive */
@media (max-width: 576px) {
    .urun-bulunamadi-container {
        padding: 40px 20px;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .urun-bulunamadi-ikon {
        margin-bottom: 16px;
    }
    
    .urun-bulunamadi-ikon i {
        font-size: 48px;
    }
    
    .urun-bulunamadi-baslik {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .urun-bulunamadi-aciklama {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .urun-bulunamadi-buton {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 280px;
    }
}

/* ===================================
   GALERİ SAYFASI STİLLERİ
   =================================== */

/* Container Genişlik Ayarı */
.gallery-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Galeri Başlık */
.gallery-header {
    margin-bottom: 32px;
}

.gallery-title {
    font-size: 32px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0 0 8px 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.gallery-subtitle {
    font-size: 16px;
    color: #6C757D;
    margin: 0;
    font-weight: 500;
}

/* Galeri Section */
.gallery-section {
    padding: 40px 0 60px;
    background: #FFFFFF;
}

/* Galeri Grid */
.galeri-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

/* Galeri Item */
.gallery-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #F8F9FA;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    text-decoration: none;
}

.gallery-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007AFF;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Boş Galeri */
.galeri-bos {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #FAFBFC 0%, #F6F8FA 100%);
    border-radius: 20px;
    border: 2px dashed #E1E4E8;
}

.galeri-bos-ikon {
    margin-bottom: 24px;
}

.galeri-bos-ikon i {
    font-size: 72px;
    color: #C7CCD1;
}

.galeri-bos h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0 0 12px 0;
}

.galeri-bos p {
    font-size: 16px;
    color: #6C757D;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .galeri-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .gallery-section .container {
        padding: 0 16px;
    }
    
    .gallery-title {
        font-size: 26px;
    }
    
    .gallery-subtitle {
        font-size: 15px;
    }
    
    .gallery-section {
        padding: 30px 0 50px;
    }
    
    .gallery-item {
        border-radius: 10px;
    }
    
    .galeri-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .galeri-bos {
        padding: 60px 24px;
    }
    
    .galeri-bos-ikon i {
        font-size: 56px;
    }
    
    .galeri-bos h3 {
        font-size: 20px;
    }
    
    .galeri-bos p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .gallery-section .container {
        padding: 0 12px;
    }
    
    .gallery-title {
        font-size: 22px;
    }
    
    .gallery-subtitle {
        font-size: 14px;
    }
    
    .gallery-section {
        padding: 24px 0 40px;
    }
    
    .galeri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .gallery-item {
        border-radius: 8px;
    }
    
    .gallery-item-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .galeri-bos {
        padding: 40px 16px;
    }
    
    .galeri-bos-ikon i {
        font-size: 48px;
    }
    
    .galeri-bos h3 {
        font-size: 18px;
    }
    
    .galeri-bos p {
        font-size: 13px;
    }
}

/* ===================================
   SSS (FAQ) Section Styles - Full Width Design
   =================================== */

.sss-content-section {
    padding: 60px 0 80px;
    background: #f8f9fa;
}

.sss-content-section .container {
    max-width: 1600px;
    margin: 0 auto;
}

/* SSS List */
.sss-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* SSS Item */
.sss-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Question Section */
.sss-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.sss-q-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 22px;
}

.sss-question h3 {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
    padding-top: 6px;
}

/* Answer Section */
.sss-answer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.sss-a-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border-radius: 12px;
    color: #ffffff;
    font-size: 22px;
}

.sss-a-content {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    padding-top: 6px;
}

/* Empty State */
.sss-empty-state {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sss-empty-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sss-empty-icon i {
    font-size: 48px;
    color: #ffffff;
}

.sss-empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.sss-empty-state p {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sss-content-section {
        padding: 50px 0 60px;
    }
    
    .sss-item {
        padding: 28px;
    }
    
    .sss-question h3 {
        font-size: 18px;
    }
    
    .sss-a-content {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .sss-content-section {
        padding: 40px 0 50px;
    }
    
    .sss-content-section .container {
        padding: 0 16px;
    }
    
    .sss-list {
        gap: 20px;
    }
    
    .sss-item {
        padding: 24px;
        border-radius: 12px;
    }
    
    .sss-question {
        gap: 14px;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    
    .sss-q-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .sss-question h3 {
        font-size: 17px;
        padding-top: 4px;
    }
    
    .sss-answer {
        gap: 14px;
    }
    
    .sss-a-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
        border-radius: 10px;
    }
    
    .sss-a-content {
        font-size: 14px;
        padding-top: 4px;
    }
    
    .sss-empty-state {
        padding: 60px 20px;
    }
    
    .sss-empty-icon {
        width: 80px;
        height: 80px;
    }
    
    .sss-empty-icon i {
        font-size: 40px;
    }
    
    .sss-empty-state h3 {
        font-size: 20px;
    }
    
    .sss-empty-state p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .sss-content-section {
        padding: 30px 0 40px;
    }
    
    .sss-content-section .container {
        padding: 0 12px;
    }
    
    .sss-list {
        gap: 16px;
    }
    
    .sss-item {
        padding: 20px;
        border-radius: 10px;
    }
    
    .sss-question {
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .sss-q-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
        border-radius: 8px;
    }
    
    .sss-question h3 {
        font-size: 15px;
        padding-top: 2px;
    }
    
    .sss-answer {
        gap: 12px;
    }
    
    .sss-a-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
        border-radius: 8px;
    }
    
    .sss-a-content {
        font-size: 13px;
        line-height: 1.7;
        padding-top: 2px;
    }
    
    .sss-empty-state {
        padding: 50px 16px;
    }
    
    .sss-empty-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .sss-empty-icon i {
        font-size: 36px;
    }
    
    .sss-empty-state h3 {
        font-size: 18px;
    }
    
    .sss-empty-state p {
        font-size: 14px;
    }
}
