/* System Font Stack - Optimized for Performance */

body {
    margin: 0;
    background-color: #ffffff;
    color: #333333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    padding-top: 80px; /* Account for fixed header */
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 96, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: relative;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* Header Brand */
.header-brand {
    text-align: center;
    flex: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    max-width: 200px;
    width: 200px;
    overflow: hidden;
    min-width: 120px;
}

.header-brand h1 {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 2.2em;
    font-weight: 800;
    color: #FF6000;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.header-brand h1:hover {
    transform: scale(1.02);
    color: #e55a00;
}

/* Header Navigation */
.header-nav {
    flex: 1;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
    align-items: center;
    flex-direction: row;
    position: static;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
}

.nav-link {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    font-size: 0.95em;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: #FF6000;
    background: rgba(255, 96, 0, 0.08);
    transform: translateY(-6px);
}

.nav-link.active {
    color: #FF6000;
    background: rgba(255, 96, 0, 0.12);
    font-weight: 600;
}

/* Navigation Toggle (Mobile) */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Cart */
.header-cart {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

/* Header Admin Link */
.header-admin-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-admin-link .admin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.header-admin-link .admin-link:hover {
    background: #FF6000;
    border-color: #FF6000;
    transform: scale(1.05);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.15);
}

.header-admin-link .admin-icon {
    font-size: 1.1em;
    color: #666666;
    transition: color 0.2s ease;
}

.header-admin-link .admin-link:hover .admin-icon {
    color: #ffffff;
}


/* Header Cart Button */
.header-cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cart-button .cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.header-cart-button .cart-button:hover {
    background: #FF6000;
    border-color: #FF6000;
    transform: scale(1.05);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.15);
}

.header-cart-button .cart-icon {
    font-size: 1.1em;
    color: #666666;
    transition: color 0.2s ease;
}

.header-cart-button .cart-button:hover .cart-icon {
    color: #ffffff;
}

.header-cart-button .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #FF6000;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 600;
    border: 2px solid #ffffff;
    min-width: 20px;
    box-shadow: 0 2px 6px rgba(255, 96, 0, 0.2);
}

.header-cart-button .cart-count:empty,
.header-cart-button .cart-count[data-count="0"] {
    display: none;
}

/* Header Responsive */
@media screen and (max-width: 1024px) {
    .header-brand {
        max-width: 180px;
        min-width: 140px;
    }
    
    .header-brand h1 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-container {
        height: 70px;
        padding: 0 10px;
        gap: 10px;
        max-width: 100vw;
        width: 100vw;
        justify-content: center;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .header-nav {
        display: none;
    }
    
    /* Ensure logo has enough space */
    .header-brand {
        min-width: 150px;
        max-width: 250px;
    }
    
    .header-brand {
        flex: 1;
        text-align: center;
        position: static;
        transform: none;
        left: auto;
        max-width: none;
        width: auto;
        overflow: hidden;
    }
    
    .header-brand h1 {
        font-size: 1.4em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        width: 100%;
        display: block;
    }
    
    .header-cart {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        gap: 15px;
    }
    
    .header-admin-link .admin-link {
        width: 35px;
        height: 35px;
    }
    
    .header-admin-link .admin-icon {
        font-size: 1em;
    }
    
    .header-cart-button .cart-button {
        width: 35px;
        height: 35px;
    }
    
    .header-cart-button .cart-icon {
        font-size: 1em;
    }
    
    /* Hide hamburger menu on mobile */
    .nav-toggle {
        display: none;
    }
    
    /* Hide normal menu by default on mobile */
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 40px 20px;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 96, 0, 0.1);
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transform: translateY(-100%);
        opacity: 0;
    }
    
    /* Hide all navigation buttons on mobile */
    .nav-menu li {
        display: none;
    }
    
    .nav-menu::-webkit-scrollbar {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        animation: slideInDown 0.3s ease;
        transform: translateY(0);
        opacity: 1;
    }
    

    
    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
    

    
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1.1em;
        border-radius: 12px;
        margin: 0;
        white-space: normal;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 96, 0, 0.1), transparent);
        transition: left 0.5s ease;
    }
    
    .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-link:hover {
        background: rgba(255, 96, 0, 0.1);
        color: #FF6000;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(255, 96, 0, 0.2);
    }
    
    .nav-link.active {
        background: rgba(255, 96, 0, 0.15);
        color: #FF6000;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(255, 96, 0, 0.3);
        transform: translateY(-6px);
    }
    
    /* Close button for mobile menu */
    .nav-menu::before {
        content: '✕';
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 24px;
        color: #FF6000;
        cursor: pointer;
        z-index: 1002;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 96, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu::before:hover {
        background: rgba(255, 96, 0, 0.2);
        transform: scale(1.1);
    }
    
    /* Mobile menu overlay */
    .nav-menu::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }
    
    .nav-menu.active::after {
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Mobile menu backdrop */
    .nav-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active {
        cursor: pointer;
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:hover {
        background: rgba(0, 0, 0, 0.6);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:active {
        background: rgba(0, 0, 0, 0.7);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus {
        background: rgba(0, 0, 0, 0.6);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-visible {
        outline: 2px solid #FF6000;
        outline-offset: 2px;
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within {
        background: rgba(0, 0, 0, 0.6);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:hover {
        background: rgba(0, 0, 0, 0.7);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:active {
        background: rgba(0, 0, 0, 0.8);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:focus {
        background: rgba(0, 0, 0, 0.6);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:focus-visible {
        outline: 2px solid #FF6000;
        outline-offset: 2px;
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:focus-visible:hover {
        background: rgba(0, 0, 0, 0.7);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:focus-visible:active {
        background: rgba(0, 0, 0, 0.8);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:focus-visible:focus {
        background: rgba(0, 0, 0, 0.6);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:focus-visible:focus:hover {
        background: rgba(0, 0, 0, 0.7);
    }
    
    /* Mobile menu close on backdrop click */
    .nav-menu-backdrop.active:focus-within:focus-visible:focus:active {
        background: rgba(0, 0, 0, 0.8);
    }
    

    
    
    .header-cart-button .cart-count {
        width: 18px;
        height: 18px;
        font-size: 0.7em;
        top: -5px;
        right: -5px;
    }
    
    .header-cart {
        flex: 0 0 auto;
        min-width: 40px;
    }
    
    .header-cart-button .cart-icon {
        font-size: 1.1em;
    }
    
}

@media screen and (max-width: 480px) {
    body {
        padding-top: 65px;
    }
    
    .header-container {
        padding: 0 8px;
        gap: 8px;
        height: 65px;
        max-width: 100vw;
        width: 100vw;
        justify-content: center;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .header-brand h1 {
        font-size: 1em;
        letter-spacing: 0.02em;
        max-width: 100%;
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
        white-space: nowrap;
    }
    
    /* Ensure logo doesn't overlap with cart */
    .header-brand {
        max-width: 120px;
        min-width: 80px;
    }
    
    .nav-toggle {
        padding: 8px;
        min-width: 40px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2px;
    }
    
    
    .header-cart-button .cart-button {
        width: 30px;
        height: 30px;
    }
    
    .header-cart-button .cart-icon {
        font-size: 0.9em;
    }
    
    .header-cart-button .cart-count {
        width: 14px;
        height: 14px;
        font-size: 0.6em;
        top: -3px;
        right: -3px;
    }
    
    .header-cart {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Hide scrollbar */
body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}
.banner .content {
    text-align: center;
    z-index: 10;
    position: relative;
}
.banner .content .title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 8.5em;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.2em;
    line-height: 0.9;
}
.banner .content p {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 1.6em;
    font-weight: 700;
    opacity: 1;
    letter-spacing: 0.03em;
    margin-top: 0.5em;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), 0 2px 6px rgba(0, 0, 0, 1);
    color: #ffffff;
    line-height: 1.4;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
}
.banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(img/main_bg.jpg);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Impact Banner Section */
.impact-banner {
    padding: 60px 0;
    background: #ffffff;
    color: #333333;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.brand-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.impact-logo {
    max-width: 100%;
    height: auto;
    width: 280px;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.impact-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
}

.impact-description h2 {
    font-size: 2.2em;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #333333;
    font-weight: 600;
}

.impact-description p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666666;
}

.lazy-image {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background: linear-gradient(90deg, #f0f0f0 25%, transparent 37%, #f0f0f0 63%);
    background-size: 400% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

.lazy-image.loaded {
    opacity: 1;
    background: none;
    animation: none;
}


@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .banner .content .title {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
        font-size: 4.5em;
        font-weight: 800;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
        margin-bottom: 0.3em;
        line-height: 0.95;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        letter-spacing: 2px;
    }
    
    .banner .content p {
        font-size: 1.3em;
        font-weight: 700;
        letter-spacing: 0.02em;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 1);
        padding: 12px 30px;
        border-radius: 12px;
        margin: 0 20px;
    }
    
    .slider {
        width: 150px;
        height: 180px;
        margin: 0 auto 30px auto;
    }
    
    .slider .item {
        transform: 
            rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(200px);
    }
    
    .slider-content h2 {
        font-size: 1.8em;
    }
    
    .slider-content p {
        font-size: 1em;
    }
}

@media screen and (max-width: 480px) {
    .banner .content .title {
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
        font-size: 2.8em;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        background: linear-gradient(135deg, #ffffff 0%, #e8e8e8 50%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
        margin-bottom: 0.4em;
        line-height: 1;
        text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
        letter-spacing: 1.5px;
    }
    
    .banner .content p {
        font-size: 1.1em;
        font-weight: 700;
        letter-spacing: 0.015em;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 1);
        line-height: 1.3;
        padding: 10px 25px;
        border-radius: 10px;
        margin: 0 15px;
    }
    
    .slider {
        width: 120px;
        height: 150px;
        margin: 0 auto 20px auto;
    }
    
    .slider .item {
        transform: 
            rotateY(calc((var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(150px);
    }
    
    .slider-content h2 {
        font-size: 1.5em;
    }
    
    .slider-content p {
        font-size: 0.9em;
    }
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sales-section .container {
    max-width: 1200px;
    min-height: 120vh;
}

/* Section Styles */
.sales-section, .contact-section {
    padding: 50px 0;
    background: #ffffff;
    color: #333333;
}

.sales-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: visible;
    padding: 60px 0;
    min-height: 120vh;
}


.sales-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 96, 0, 0.03), transparent);
    border-radius: 50%;
    z-index: 1;
}

.sales-content {
    position: relative;
    z-index: 2;
}

/* Blurred Sales Section 2 */
#sales2 {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

#sales2 .container {
    filter: blur(8px);
}

#sales2 .product-config {
    min-height: 60vh;
}

#sales2 .sales-content {
    min-height: 60vh;
}



#sales2 .container {
    position: relative;
    z-index: 6;
}

.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.coming-soon-text {
    font-size: 3.5em;
    font-weight: 800;
    color: #FF6000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    text-align: center;
    text-shadow: 0 4px 20px rgba(255, 96, 0, 0.3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 96, 0, 0.2);
}

/* Sales Section */
.sales-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
    min-height: 100vh;
    position: relative;
}

.product-config {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    min-width: 0; /* Prevent overflow */
    min-height: 120vh;
}

.config-group {
    margin-bottom: 40px;
}

/* Size slider wrapper extension handled in main rule */

.config-group h3 {
    font-size: 1.3em;
    margin-bottom: 16px;
    color: #333333;
    font-weight: 600;
}

/* Type Selection */
.type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.type-option {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 24px;
    border: 2px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.type-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6000, #ff8533, #FF6000);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.type-option:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
    box-shadow: 0 8px 25px rgba(255, 96, 0, 0.15);
    border-color: #FF6000;
}

.type-option:hover::before {
    opacity: 1;
}

.type-option.active {
    border-color: #FF6000;
    background: linear-gradient(135deg, rgba(255, 96, 0, 0.08) 0%, rgba(255, 96, 0, 0.03) 100%);
    box-shadow: 0 8px 25px rgba(255, 96, 0, 0.2);
    transform: translateY(-6px);
}

.type-option.active::before {
    opacity: 1;
}

.type-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.type-option h4 {
    color: #333333;
    margin: 8px 0;
    font-size: 1.1em;
    font-weight: 600;
}

.type-option p {
    color: #666666;
    margin: 8px 0;
    font-size: 0.9em;
}

.type-price {
    color: #FF6000;
    font-weight: 700;
    font-size: 1.1em;
}

/* Color Selection */
.color-selector {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 10px;
}

.color-option:hover {
    background: rgba(255, 96, 0, 0.05);
    border-radius: 8px;
}

.color-option.active {
    background: rgba(255, 96, 0, 0.08);
    border-radius: 8px;
}

.color-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.color-option.active .color-circle {
    border-color: #FF6000;
    box-shadow: 0 0 8px rgba(255, 96, 0, 0.3);
}

.color-option span {
    color: #666666;
    font-size: 0.85em;
    font-weight: 500;
}

/* Custom Color Picker */
.custom-color-option {
    position: relative;
}

.custom-color-circle {
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.color-picker-icon {
    font-size: 1.2em;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hidden-color-picker {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    opacity: 0;
    cursor: pointer;
    border: none;
    border-radius: 50%;
}

.custom-color-option.active .custom-color-circle {
    border-color: #FF6000;
    box-shadow: 0 0 8px rgba(255, 96, 0, 0.3);
}

/* Desktop/Mobile Visibility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* Size Selection - Improved Card Slider */
.size-slider-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: visible;
    margin: 20px auto;
    padding: 0;
    z-index: 10;
    max-width: 600px;
    text-align: center; /* İçeriği ortala */
}

/* Mobil için wrapper yüksekliği artırma */
@media (max-width: 768px) {
    .size-slider-wrapper {
        height: 350px;
        min-height: 350px;
        margin: 30px auto;
    }
}

.size-slider {
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mobil için dikey genişlik artırma */
@media (max-width: 768px) {
    .size-slider {
        height: 300px;
        min-height: 300px;
    }
    
    .size-card {
        height: auto;
        min-height: 280px;
        padding: 18px 15px;
        width: 200px;
        margin-left: -20px; /* Mobilde kartları hafif sola al */
    }
    
    .size-features {
        margin: 15px 0;
    }
    
    .size-features .feature-item {
        font-size: 0.85em;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .size-card h4 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }
    
    .size-card p {
        font-size: 0.9em;
        margin-bottom: 12px;
    }
    
    .size-price {
        font-size: 1em;
        margin-top: 15px;
    }
    
    .min-quantity-info {
        font-size: 0.85em;
        margin-top: 8px;
    }
}

/* Çok küçük ekranlar için ek ayarlar */
@media (max-width: 480px) {
    .size-slider-wrapper {
        height: 320px;
        min-height: 320px;
        margin: 20px auto;
    }
    
    .size-slider {
        height: 280px;
        min-height: 280px;
    }
    
    .size-card {
        min-height: 260px;
        width: 180px;
        padding: 14px 12px;
        margin-left: -15px; /* Küçük mobilde kartları hafif sola al */
    }
    
    .size-features .feature-item {
        font-size: 0.8em;
        line-height: 1.3;
        margin-bottom: 6px;
    }
    
    .size-card h4 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }
    
    .size-card p {
        font-size: 0.85em;
        margin-bottom: 10px;
    }
}

.size-card {
    position: absolute;
    width: 180px;
    height: 240px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px 14px;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.5s ease;
    text-align: center;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    margin-left: -15px; /* Kartları hafif sola al */
}



.size-card.active {
    border-color: #FF6000;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 35px rgba(255, 96, 0, 0.25), 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: scale(1.08) translateZ(0);
    z-index: 2;
    filter: none;
    opacity: 1;
}

.size-card.active h4 {
    color: #FF6000;
}

.size-card.active .size-price {
    color: #FF6000;
    font-weight: 800;
}

.size-card h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.1em;
    line-height: 1.3;
    font-weight: 700;
}

.size-card p {
    color: #6c757d;
    margin-bottom: 10px;
    font-size: 0.85em;
    line-height: 1.2;
    font-weight: 500;
}



.size-features {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-item {
    color: #495057;
    font-size: 0.75em;
    text-align: left;
    padding: 2px 0;
    line-height: 1.4;
    font-weight: 400;
}

.size-price {
    color: #FF6000;
    font-weight: 700;
    font-size: 0.9em;
    margin-top: 12px;
}

.size-prev, .size-next {
    position: absolute;
    top: 40%;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e0e0e0;
    color: #2c3e50;
    opacity: 0.8;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    padding: 0;
    margin: 0;
}

.size-prev svg, .size-next svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

.size-prev { 
    left: 20px; 
}

.size-next { 
    right: 20px; 
}

.size-prev:hover, .size-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    border-color: #FF6000;
    color: #FF6000;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 96, 0, 0.15);
}

/* Quantity Selection */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.qty-btn {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    color: #333333;
    border-radius: 6px;
    width: 36px;
    height: 36px;
    font-size: 1.1em;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.qty-btn:hover {
    background: #ffffff;
    border-color: #FF6000;
    color: #FF6000;
    box-shadow: 0 2px 6px rgba(255, 96, 0, 0.1);
}

#quantity {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    color: #333333;
    padding: 8px 12px;
    border-radius: 6px;
    width: 80px;
    text-align: center;
    font-size: 1em;
    flex-shrink: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.qty-presets {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qty-preset {
    background: rgba(255, 96, 0, 0.05);
    border: 1px solid rgba(255, 96, 0, 0.2);
    color: #FF6000;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.85em;
    flex-shrink: 0;
    font-weight: 500;
}

.qty-preset:hover {
    background: rgba(255, 96, 0, 0.1);
    transform: scale(1.02);
    box-shadow: 0 2px 6px rgba(255, 96, 0, 0.15);
}

/* Order Summary */
.order-summary {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    align-self: flex-start;
    z-index: 1000;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.order-summary h3 {
    color: #333333;
    margin-bottom: 20px;
    font-size: 1.3em;
    font-weight: 600;
}

.summary-card {
    background: #fafafa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #f0f0f0;
}

.product-preview {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}





.preview-details h4 {
    color: #333333;
    margin: 0 0 4px 0;
    font-size: 1em;
    font-weight: 600;
}

.preview-details p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9em;
}

.price-breakdown {
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    color: #666666;
    font-size: 0.9em;
}

.price-row.total {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 700;
    font-size: 1.1em;
    color: #333333;
}

.price-row.total span:last-child {
    color: #FF6000;
    font-weight: 700;
}

.discount-info {
    background: rgba(255, 96, 0, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 96, 0, 0.15);
}

.discount-info p {
    margin: 4px 0;
    color: #FF6000;
    font-size: 0.85em;
    font-weight: 500;
}

.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 8px;
    background: #FF6000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(255, 96, 0, 0.2);
    text-transform: none;
}

.add-to-cart-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.3);
    background: #e55a00;
}

.add-to-cart-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 96, 0, 0.2);
}

.add-to-cart-btn::before {
    content: '🛒';
    font-size: 1.2em;
}



.contact-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 50%, #f0f9ff 100%);
    border-top: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 96, 0, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.contact-content {
    position: relative;
    z-index: 2;
}

/* Section Title */
.section-title {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 32px;
    color: #333333;
    font-weight: 600;
    letter-spacing: -0.02em;
}





/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h3 {
    font-size: 1.5em;
    margin-bottom: 12px;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.company-logo-small {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin-top: 4px;
    align-self: flex-start;
}

.contact-info p {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9em;
    color: #333333;
    font-weight: 500;
}

.contact-icon {
    font-size: 1.5em;
}

/* Contact Form */
.contact-form h3 {
    font-size: 1.5em;
    margin-bottom: 12px;
    color: #333333;
    font-weight: 600;
}

.contact-form p {
    font-size: 0.95em;
    color: #666666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    color: #333333;
    font-size: 1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    position: relative;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6000, #ff8533);
    transition: width 0.3s ease;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6000;
    box-shadow: 0 4px 20px rgba(255, 96, 0, 0.2);
    background: #ffffff;
    transform: translateY(-2px);
}

.form-group input:focus + .form-group::before,
.form-group textarea:focus + .form-group::before {
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.submit-btn {
    padding: 12px 24px;
    background: #FF6000;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(255, 96, 0, 0.2);
    font-weight: 600;
}

.submit-btn:hover {
    background: #e55a00;
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.3);
}

/* Cart Button */
.cart-button-wrapper {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 15;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
    cursor: pointer;
}

.cart-button:hover {
    background: #ffffff;
    border-color: #FF6000;
    transform: scale(1.05);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.15);
}

.cart-icon {
    font-size: 1.4em;
    color: #333333;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #FF6000;
    color: #ffffff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75em;
    font-weight: 600;
    border: 2px solid #ffffff;
    min-width: 20px;
    box-shadow: 0 2px 6px rgba(255, 96, 0, 0.2);
}

.cart-count:empty,
.cart-count[data-count="0"] {
    display: none;
}

.cart-button-wrapper.visible {
    opacity: 1;
    visibility: visible;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    animation: bounce 2s infinite;
}

.scroll-indicator .arrow-down {
    width: 25px;
    height: 50px;
    fill: #ffffff;
    transition: fill 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.scroll-indicator:hover .arrow-down {
    fill: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

@keyframes showScrollIndicator {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(20px);
    }
    100% {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.cls-1 {
    fill: #ffffff;
}

/* Responsive Design for New Sections */
@media screen and (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .impact-logo {
        width: 200px;
        max-height: 200px;
    }
    
    .brand-logo-container {
        padding: 15px;
    }
    
    .impact-description h2 {
        font-size: 1.8em;
    }
    
    .sales-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .product-config {
        padding: 20px;
    }
    
    .config-group {
        margin-bottom: 30px;
    }
    
    .type-selector {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .color-selector {
        justify-content: center;
        gap: 10px;
    }
    
    /* Desktop/Mobile Visibility - Mobile */
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    /* Mobile Size Buttons */
    .mobile-size-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 20px 0;
    }
    
    .size-btn {
        background: #ffffff;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        padding: 15px 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 5px;
        min-height: 80px;
        justify-content: center;
    }
    
    .size-btn.active {
        border-color: #FF6000;
        background: rgba(255, 96, 0, 0.05);
        box-shadow: 0 4px 15px rgba(255, 96, 0, 0.2);
    }
    
    .size-btn:hover {
        border-color: #FF6000;
        background: rgba(255, 96, 0, 0.1);
        transform: translateY(-2px);
    }
    
    .size-title {
        font-size: 0.9em;
        font-weight: 700;
        color: #333333;
        line-height: 1.2;
    }
    
    .size-subtitle {
        font-size: 0.8em;
        color: #666666;
        font-weight: 500;
    }
    
    .size-price-mobile {
        font-size: 0.75em;
        color: #FF6000;
        font-weight: 600;
        margin-top: 2px;
    }
    
    .size-btn.active .size-title,
    .size-btn.active .size-price-mobile {
        color: #FF6000;
    }
    
    .quantity-selector {
        justify-content: flex-start;
        gap: 10px;
    }
    
    .qty-presets {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .order-summary {
        position: static;
        padding: 20px;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .sales-section, .contact-section {
        padding: 40px 0;
    }
    
    .company-logo-small {
        width: 40px;
        height: 40px;
        margin-top: 3px;
    }
    
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 12px;
        font-size: 1em;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator .arrow-down {
        width: 20px;
        height: 40px;
    }
    
    /* Cart Button Responsive */
    .cart-button-wrapper {
        top: 20px;
        right: 20px;
    }
    
    .cart-button {
        width: 50px;
        height: 50px;
    }
    
    .cart-icon {
        font-size: 1.3em;
    }
    
    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.7em;
        top: -6px;
        right: -6px;
    }
}

@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.7em;
    }
    
    .impact-logo {
        width: 150px;
        max-height: 150px;
    }
    
    .brand-logo-container {
        padding: 10px;
    }
    
    .impact-description h2 {
        font-size: 1.5em;
    }
    
    .sales-content {
        padding: 0 10px;
        gap: 15px;
    }
    
    .product-config {
        padding: 15px;
    }
    
    .config-group {
        margin-bottom: 25px;
    }
    
    .config-group h3 {
        font-size: 1.3em;
    }
    
    .type-option {
        padding: 20px 15px;
    }
    
    .type-icon {
        font-size: 2em;
    }
    
    .color-circle {
        width: 35px;
        height: 35px;
    }
    
    .size-slider-wrapper {
        height: 280px;
    }
    
    .size-card {
        width: 130px;
        height: 140px;
        padding: 10px;
        left: calc(50% - 65px);
        top: 70px;
    }
    
    .size-card h4 {
        font-size: 0.9em;
        margin-bottom: 3px;
    }
    
    .size-card p {
        font-size: 0.7em;
        margin-bottom: 5px;
    }
    
    .size-features {
        margin: 5px 0;
        gap: 2px;
    }
    
    .feature-item {
        font-size: 0.6em;
    }
    
    .size-price {
        font-size: 0.7em;
        margin-top: 5px;
    }
    
    .size-prev, .size-next {
        width: 35px;
        height: 35px;
        left: 10px;
        right: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    
    .size-prev svg, .size-next svg {
        width: 16px;
        height: 16px;
    }
    
    .size-next {
        right: 10px;
        left: auto;
    }
    
    .quantity-selector {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .qty-presets {
        margin-top: 0;
        gap: 6px;
    }
    
    .qty-preset {
        padding: 5px 10px;
        font-size: 0.8em;
    }
    
    .order-summary {
        padding: 15px;
    }
    
    .order-summary h3 {
        font-size: 1.3em;
    }
    
    .summary-card {
        padding: 15px;
    }
    
    .product-preview {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    

    


    .contact-info h3 {
        font-size: 1.3em;
    }
    
    .contact-form h3 {
        font-size: 1.3em;
    }
    
    .company-logo-small {
        width: 30px;
        height: 30px;
        margin-top: 2px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .form-group input,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 10px;
        font-size: 0.9em;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    border-top: 1px solid #dee2e6;
}

.products-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.products-catalog h3 {
    font-size: 1.7em;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.products-catalog p {
    font-size: 1em;
    color: #6c757d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-item:hover {
    background: #f8f9fa;
    transform: translateX(8px);
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-brand-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.product-info h4 {
    font-size: 1.2em;
    margin: 0 0 8px 0;
    color: #2c3e50;
    font-weight: 600;
}

.product-info p {
    margin: 0 0 10px 0;
    color: #6c757d;
    font-size: 0.9em;
    line-height: 1.3;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.feature {
    font-size: 0.8em;
    color: #28a745;
    font-weight: 500;
    background: rgba(40, 167, 69, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.3);
}


/* Responsive for Products Section */
@media screen and (max-width: 768px) {
    .products-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-item {
        padding: 12px;
        gap: 12px;
    }
    
    .product-logo {
        width: 50px;
        height: 50px;
    }
    
    .product-brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .product-info h4 {
        font-size: 1.2em;
    }
    
    
}

@media screen and (max-width: 480px) {
    .products-section {
        padding: 60px 0;
    }
    
    .product-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 10px;
    }
    
    .product-logo {
        width: 40px;
        height: 40px;
    }
    
    .product-brand-logo {
        width: 35px;
        height: 35px;
    }
    
    .product-info h4 {
        font-size: 1.1em;
    }
    
    .products-catalog h3 {
        font-size: 1.3em;
    }
}

/* Order Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
    margin: 0;
    color: #333333;
    font-size: 1.5em;
    font-weight: 600;
}

.close {
    font-size: 28px;
    font-weight: bold;
    color: #999999;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #FF6000;
}

.modal-body {
    padding: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.modal-body .form-group {
    margin-bottom: 16px;
}

.modal-body .form-group label {
    display: block;
    margin-bottom: 6px;
    color: #333333;
    font-weight: 500;
    font-size: 0.9em;
}

.modal-body .form-group input,
.modal-body .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.modal-body .form-group input:focus,
.modal-body .form-group textarea:focus {
    outline: none;
    border-color: #FF6000;
    box-shadow: 0 0 0 3px rgba(255, 96, 0, 0.1);
}

.order-summary-modal {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
    margin: 20px 0;
}

.order-summary-modal h3 {
    margin: 0 0 12px 0;
    color: #333333;
    font-size: 1.1em;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

.btn-cancel,
.btn-submit {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel {
    background: #f8f9fa;
    color: #666666;
    border: 1px solid #e9ecef;
}

.btn-cancel:hover {
    background: #e9ecef;
    color: #333333;
}

.btn-submit {
    background: #FF6000;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(255, 96, 0, 0.2);
}

.btn-submit:hover {
    background: #e55a00;
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(255, 96, 0, 0.3);
}

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

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal Responsive */
@media screen and (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .modal-header {
        padding: 16px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .btn-cancel,
    .btn-submit {
        width: 100%;
    }
}



/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    color: #333333;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FF6000" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.testimonials-grid {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-item {
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.testimonial-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF6000, #ff8533, #FFB366);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.testimonial-item::after {
    content: '"';
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 60px;
    color: rgba(255, 96, 0, 0.08);
    font-family: serif;
    z-index: 1;
}

.testimonial-item:hover {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f6 100%);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 96, 0, 0.15);
    border-color: #FF6000;
}

.testimonial-item:hover::before {
    transform: translateX(0);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stars {
    font-size: 1.2em;
}

.testimonial-content p {
    font-size: 0.95em;
    line-height: 1.5;
    color: #555555;
    font-style: italic;
    margin: 0;
    position: relative;
}



.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.author-info h4 {
    margin: 0;
    font-size: 1em;
    color: #333333;
    font-weight: 600;
}

.author-info span {
    color: #666666;
    font-size: 0.85em;
}

/* Responsive for Testimonials */
@media screen and (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .testimonial-item {
        padding: 18px;
    }
    
    .testimonial-content p {
        font-size: 0.95em;
    }
    
    .author-info h4 {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-item {
        padding: 15px;
    }
    
    .testimonial-content {
        gap: 12px;
    }
    
    .testimonial-content p {
        font-size: 0.9em;
    }
}

/* Testimonials Stats */
.testimonials-stats {
    margin-top: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 96, 0, 0.1);
    position: relative;
    z-index: 2;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.stat-item {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 96, 0, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 96, 0, 0.15);
    transition: all 0.3s ease;
    min-width: 160px;
}

.stat-item:hover {
    background: rgba(255, 96, 0, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 96, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2em;
    font-weight: 800;
    color: #FF6000;
    line-height: 1.1;
    margin-bottom: 5px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.9em;
    color: #666666;
    font-weight: 600;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Responsive for Testimonials Stats */
@media screen and (max-width: 1024px) {
    .stats-container {
        gap: 30px;
    }
    
    .stat-item {
        min-width: 140px;
        padding: 12px 18px;
    }
    
    .stat-number {
        font-size: 1.8em;
    }
    
    .stat-label {
        font-size: 0.85em;
    }
}

@media screen and (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .stat-item {
        min-width: 160px;
        padding: 15px 20px;
    }
    
    .stat-number {
        font-size: 1.6em;
    }
    
    .stat-label {
        font-size: 0.8em;
        line-height: 1.4;
    }
}

/* Yeni Çanta Seçenekleri Stilleri */

/* Fabric Selector Styles */
.fabric-selector {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.fabric-option {
    flex: 1;
    min-width: 150px;
    padding: 20px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.fabric-option:hover {
    border-color: #FF6000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 96, 0, 0.15);
}

.fabric-option.active {
    border-color: #FF6000;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    box-shadow: 0 8px 25px rgba(255, 96, 0, 0.2);
}

.fabric-icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

.fabric-option span {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.fabric-option small {
    display: block;
    color: #666;
    font-size: 0.85em;
}

/* Print Selector Styles */
.print-selector {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.print-option {
    flex: 1;
    min-width: 150px;
    padding: 20px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.print-option:hover {
    border-color: #FF6000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 96, 0, 0.15);
}

.print-option.active {
    border-color: #FF6000;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    box-shadow: 0 8px 25px rgba(255, 96, 0, 0.2);
}

.print-icon {
    font-size: 2em;
    margin-bottom: 10px;
    display: block;
}

.print-option span {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.print-option small {
    display: block;
    color: #666;
    font-size: 0.85em;
}

/* Size Loading Styles */
.size-loading {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-top: 15px;
}

.size-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #FF6000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.size-loading p {
    color: #666;
    margin: 0;
    font-size: 0.9em;
}

/* Minimum Quantity Warning */
.min-quantity-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

.warning-icon {
    font-size: 1.2em;
}

.warning-text {
    color: #856404;
    font-size: 0.9em;
    font-weight: 500;
}

.warning-text strong {
    color: #FF6000;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Type Description Styles */
.type-description {
    display: block;
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

/* Updated Size Card Styles */
.size-card {
    position: absolute;
    width: 200px;
    height: 320px;
    text-align: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.5s ease;
    left: calc(50% - 110px);
    top: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateX(0) scale(0.8);
    z-index: -1;
}

.size-card:hover {
    border-color: #FF6000;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 96, 0, 0.15);
}

.size-card.active {
    border-color: #FF6000;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    box-shadow: 0 15px 35px rgba(255, 96, 0, 0.2);
    z-index: 1;
    filter: none;
    opacity: 1;
}

.size-card h4 {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
}

.size-card p {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 0.9em;
}

.size-features {
    margin: 15px 0;
    text-align: left;
}

.feature-item {
    display: block;
    font-size: 0.8em;
    color: #555;
    margin-bottom: 5px;
    line-height: 1.4;
}

.size-price {
    display: block;
    font-weight: 700;
    color: #FF6000;
    font-size: 1em;
    margin-top: 15px;
}

.min-quantity-info {
    display: block;
    font-size: 0.75em;
    color: #888;
    margin-top: 8px;
    font-weight: 500;
}

/* Slider Container Styles */
.size-slider-wrapper {
    position: relative;
    width: 100%;
    height: 370px;
    overflow: hidden;
    margin-top: 15px;
}

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

/* Slider Navigation Buttons */
.size-prev, .size-next {
    position: absolute;
    top: 40%;
    color: #FF6000;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #FF6000;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.size-prev svg, .size-next svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.size-prev {
    left: 20px;
}

.size-next {
    right: 20px;
}

.size-prev:hover, .size-next:hover {
    opacity: 1;
    background: #FF6000;
    color: white;
    transform: scale(1.1);
}

/* Updated Mobile Size Buttons */
.size-btn {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    margin-bottom: 10px;
}

.size-btn:hover {
    border-color: #FF6000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 96, 0, 0.15);
}

.size-btn.active {
    border-color: #FF6000;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
    box-shadow: 0 8px 20px rgba(255, 96, 0, 0.2);
}

.size-title {
    display: block;
    font-weight: 700;
    color: #333;
    font-size: 1em;
    margin-bottom: 3px;
}

.size-subtitle {
    display: block;
    color: #666;
    font-size: 0.85em;
    margin-bottom: 5px;
}

.size-price-mobile {
    display: block;
    font-weight: 700;
    color: #FF6000;
    font-size: 0.9em;
}

/* Updated Quantity Presets */
.qty-presets {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.qty-preset {
    padding: 8px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85em;
    font-weight: 500;
}

.qty-preset:hover {
    border-color: #FF6000;
    background: #fff5f0;
}

.qty-preset.active {
    border-color: #FF6000;
    background: #FF6000;
    color: #fff;
}

/* Disabled Button Styles */
.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.add-to-cart-btn:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
    .fabric-selector {
        flex-direction: column;
    }
    
    .fabric-option {
        min-width: auto;
    }
    
    .size-slider-wrapper {
        height: 300px;
    }
    
    .size-card {
        width: 180px;
        height: 280px;
        left: calc(50% - 90px);
    }
    
    .size-prev, .size-next {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    
    .size-prev svg, .size-next svg {
        width: 18px;
        height: 18px;
    }
    
    .qty-presets {
        justify-content: center;
    }
    
    .qty-preset {
        flex: 1;
        min-width: 80px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .size-slider-wrapper {
        height: 280px;
    }
    
    .size-card {
        width: 160px;
        height: 250px;
        left: calc(50% - 80px);
        padding: 15px;
    }
    
    .size-card h4 {
        font-size: 1em;
    }
    
    .feature-item {
        font-size: 0.75em;
    }
    
    .size-prev, .size-next {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    
    .size-prev svg, .size-next svg {
        width: 16px;
        height: 16px;
    }
}

