/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--theme-bg, #f8f8f8);
    color: var(--theme-text, #000);
    line-height: 1.6;
    transition: background-color 0.25s ease, color 0.25s ease;
    overflow-x: clip;
}

/* Top Banner */
.top-banner {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
}

/* Header */
.header {
    background-color: var(--theme-surface, #fff);
    border-bottom: 1px solid var(--theme-border, #e0e0e0);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    color: var(--theme-icon, #000);
}

.logo-image-mobile {
    height: 64px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    animation: spin 3s linear infinite;
}

.logo-image {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.header-left, .header-right {
    flex: 1;
}

.header-center {
    flex: 2;
    text-align: center;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--theme-icon, #000);
}

.country-selector:hover {
    opacity: 0.7;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.header-icons {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-icons i {
    font-size: 18px;
    cursor: pointer;
    position: relative;
    color: var(--theme-icon, #000);
}

.header-icons i:hover {
    opacity: 0.7;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation */
.navigation {
    border-top: 1px solid var(--theme-border, #e0e0e0);
    background-color: var(--theme-surface, #fff);
}

.nav-menu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--theme-text, #000);
    font-weight: 500;
    font-size: 14px;
    padding: 15px 0;
    display: block;
    transition: opacity 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    opacity: 0.7;
    border-bottom: 2px solid var(--theme-text, #000);
}

/* Main Content */
.main-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

/* Full-screen home hero (video background) */
:root {
    --top-banner-height: 36px;
    --product-photo-bg: #e2eef9; /* Alice / ice blue (#dce2fc–#e2eeff) */
    --theme-bg: #f8f8f8;
    --theme-surface: #ffffff;
    --theme-surface-2: #fafafa;
    --theme-surface-muted: #f0f0f0;
    --theme-text: #000000;
    --theme-text-muted: #666666;
    --theme-text-subtle: #212326;
    --theme-border: #e0e0e0;
    --theme-border-light: #eeeeee;
    --theme-border-input: #d4d4d4;
    --theme-accent: #000000;
    --theme-accent-hover: #333333;
    --theme-on-accent: #ffffff;
    --theme-icon: #000000;
    --theme-input-bg: #ffffff;
}

.home-hero-shell {
    position: relative;
    width: 100%;
    height: calc(100svh - var(--top-banner-height));
    min-height: 520px;
    overflow: hidden;
}

.hero-section {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #1a1a1a;
    background-image: url('wallpaper.png');
    background-size: cover;
    background-position: center;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-video.is-ready {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px clamp(72px, 14vh, 140px);
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.28) 38%,
        rgba(0, 0, 0, 0.08) 62%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 720px;
    position: relative;
    z-index: 2;
}

/* Header overlaid on hero video */
.header--on-hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42) 0%, transparent 100%);
    border-bottom: none;
}

.header--on-hero .mobile-menu-toggle,
.header--on-hero .header-icons i,
.header--on-hero .country-selector,
.header--on-hero .country-selector i {
    color: #fff;
}

.header--on-hero .nav-menu a {
    color: #fff;
}

.header--on-hero .nav-menu a:hover,
.header--on-hero .nav-menu a.active {
    color: #fff;
    opacity: 0.85;
}

.header--on-hero .logo-image,
.header--on-hero .logo-image-mobile {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.header--on-hero .navigation.mobile-open {
    background: #fff;
}

.header--on-hero .navigation.mobile-open .nav-menu a {
    color: #000;
}

.header--on-hero .navigation {
    background: transparent;
    border-top: none;
}

.header--on-hero .nav-menu a {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

/* Hero section animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-eyebrow {
    animation: fadeInUp 0.8s ease-out 0.15s both;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 14px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    animation: fadeInUp 0.8s ease-out 0.35s both;
    font-size: clamp(22px, 5vw, 34px);
    margin-bottom: 28px;
    color: #fff;
    font-weight: 400;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.shop-btn {
    animation: fadeInUp 0.8s ease-out 0.55s both;
    background-color: #fff;
    color: #000;
    border: none;
    padding: 16px 44px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    min-width: 200px;
}

.shop-btn:hover {
    background-color: #f2f2f2;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.hero-text {
    text-align: center;
}

/* Products Section */
.products-section {
    padding: 40px 16px 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--theme-text, #000);
}

.view-all-btn {
    background-color: var(--theme-accent, #000);
    color: var(--theme-on-accent, #fff);
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background-color: var(--theme-accent-hover, #333);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

.product-card {
    background-color: var(--theme-surface-2, #fafafa);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--product-photo-bg);
}

.product-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #000;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    z-index: 10;
}

.add-to-cart-btn-image {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn-image:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.add-to-cart-btn-image i {
    font-size: 16px;
    color: #fff;
}

.product-info {
    padding: 12px 14px 14px;
}

.product-category-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.product-category {
    font-size: 11px;
    font-weight: 500;
    color: var(--theme-text-muted, #666);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px 0;
    color: var(--theme-text, #000);
    line-height: 1.4;
}

.product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--theme-text, #000);
    margin: 0;
}

.choose-options-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.choose-options-btn:hover {
    background-color: #333;
}

.color-options {
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.color-dot.black {
    background-color: #000;
    border: none;
}

.color-dot.white {
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.color-dot.gray {
    background-color: #9ca3af;
    border: none;
}

.color-dot.beige {
    background-color: #d4c5a9;
    border: none;
}

.color-dot.red {
    background-color: #dc2626;
    border: none;
}

.color-extra {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    margin-left: 2px;
}

.color-dot:hover {
    transform: scale(1.1);
}

/* Collection Showcase */
.collection-showcase {
    padding: 40px 16px 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.collection-card {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collection-card--landscape {
    aspect-ratio: 16 / 9;
}

.collection-card:hover {
    transform: scale(1.02);
}

.collection-image {
    width: 100%;
    height: 100%;
    max-width: 100%;
    background-color: var(--product-photo-bg, #e2eef9);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-photo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
}

.collection-photo--landscape {
    object-fit: contain;
    object-position: center center;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 20px 10px;
}

.newsletter-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #666;
}

/* Social media — sidebar + footer */
.la-social-follow {
    margin-top: 4px;
}

.la-social-heading {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #212326;
    margin-bottom: 12px;
}

.la-social {
    display: flex;
    gap: 10px;
}

.la-social--sidebar {
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.la-social--footer {
    flex-direction: column;
    gap: 10px;
}

.la-social-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #212326;
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    background: #fafafa;
    transition:
        border-color 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
}

.la-social--footer .la-social-link {
    width: 100%;
    max-width: 280px;
    padding: 10px 14px;
}

.la-social--sidebar .la-social-link {
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
}

.la-social-link:hover,
.la-social-link:focus-visible {
    border-color: #212326;
    background: #212326;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(33, 35, 38, 0.12);
    outline: none;
}

.la-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ebebeb;
    font-size: 17px;
    color: #212326;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}

.la-social--sidebar .la-social-icon {
    width: auto;
    height: auto;
    border: none;
    background: transparent;
    font-size: 18px;
    color: inherit;
}

.la-social-link:hover .la-social-icon,
.la-social-link:focus-visible .la-social-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.la-social--sidebar .la-social-link:hover .la-social-icon,
.la-social--sidebar .la-social-link:focus-visible .la-social-icon {
    background: transparent;
    border: none;
    color: #fff;
}

.la-social-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 0;
}

.la-social-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b6b6b;
    transition: color 0.25s ease;
}

.la-social-handle {
    font-size: 14px;
    font-weight: 500;
    color: #212326;
    transition: color 0.25s ease;
}

.la-social-link:hover .la-social-label,
.la-social-link:hover .la-social-handle,
.la-social-link:focus-visible .la-social-label,
.la-social-link:focus-visible .la-social-handle {
    color: #fff;
}

.la-social-link--instagram:hover .la-social-icon,
.la-social-link--instagram:focus-visible .la-social-icon {
    background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
    border-color: transparent;
    color: #fff;
}

.la-social-link--tiktok:hover .la-social-icon,
.la-social-link--tiktok:focus-visible .la-social-icon {
    background: #010101;
    border-color: transparent;
    color: #fff;
}

/* Footer */
.footer {
    background-color: var(--theme-surface, #fff);
    border-top: 1px solid var(--theme-border, #e0e0e0);
    margin-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #666;
}

.footer-logo-image {
    height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    margin-top: 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #000;
}

.newsletter-signup {
    display: flex;
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.newsletter-signup input {
    flex: 1;
    padding: 12px;
    border: none;
    font-size: 14px;
    outline: none;
}

.newsletter-signup button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-signup button:hover {
    background-color: #333;
}

.footer-column p {
    font-size: 12px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}


.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 20px;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 12px;
    color: #666;
}

.payment-methods h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.payment-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.payment-icon {
    padding: 5px 10px;
    background-color: #f0f0f0;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.payment-icon.visa {
    background-color: #1a1f71;
    color: #fff;
}

.payment-icon.mastercard {
    background-color: #eb001b;
    color: #fff;
}

.payment-icon.paypal {
    background-color: #0070ba;
    color: #fff;
}

.payment-icon.cod {
    background-color: #000;
    color: #fff;
}

.country-selector-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.country-selector-footer:hover {
    opacity: 0.7;
}

/* Bottom Navigation Bar (Mobile) */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--theme-surface, #fff);
    border-top: 1px solid var(--theme-border, #e0e0e0);
    padding: 8px 0;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: #666;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
    transition: color 0.3s ease;
    flex: 1;
}

.nav-item i {
    font-size: 18px;
}

.nav-item.active {
    color: #000;
}

.nav-item:hover {
    color: #000;
}

@media (min-width: 769px) {
    .bottom-nav {
        display: none;
    }
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 80px;
    right: 16px;
    width: 50px;
    height: 50px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.chat-widget:hover {
    background-color: #333;
    transform: scale(1.05);
}

.chat-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-icon i {
    font-size: 20px;
    color: #fff;
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #ff0000;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

@media (min-width: 769px) {
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }

    .products-section {
        padding: 80px 40px 80px 72px;
    }

    .collection-showcase {
        padding: 60px 40px 80px 72px;
    }

    .collection-card--landscape {
        max-height: 320px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-header {
        display: flex;
    }

    .desktop-header {
        display: none;
    }

    .header-container {
        padding: 12px 16px;
    }

    .navigation {
        display: none;
    }

    .navigation.mobile-open {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .navigation.mobile-open .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .navigation.mobile-open .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .navigation.mobile-open .nav-menu li:last-child {
        border-bottom: none;
    }

    .navigation.mobile-open .nav-menu li a {
        padding: 15px 0;
    }

    .home-hero-shell {
        height: calc(100svh - var(--top-banner-height));
        min-height: 480px;
    }

    .hero-tagline {
        font-size: 20px;
        margin-bottom: 22px;
    }

    .shop-btn {
        padding: 14px 36px;
        font-size: 13px;
        min-width: 180px;
    }

    .header--on-hero .header-container {
        padding: 14px 16px;
    }

    .products-section {
        padding: 40px 16px;
        width: 100%;
        box-sizing: border-box;
    }

    .collection-showcase {
        padding: 32px 16px 48px;
    }

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

    .collection-card--landscape {
        aspect-ratio: 16 / 9;
        max-height: 200px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .view-all-btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .sidebar {
        display: none;
    }

    .main-content {
        padding-bottom: 70px;
    }
}

@media (max-width: 480px) {
    .home-hero-shell {
        min-height: 440px;
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.22em;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .section-header h2 {
        font-size: 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease-out;
}

.product-card:nth-child(2) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3) {
    animation-delay: 0.2s;
}

.product-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Authentication Modals */
.auth-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.auth-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.auth-modal-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.auth-modal.active .auth-modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    z-index: 1001;
}

.modal-close:hover {
    color: #000;
}

.auth-header {
    text-align: center;
    padding: 40px 40px 20px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.auth-header p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.auth-form {
    padding: 0 40px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #000;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

.forgot-password {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.auth-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-btn:hover {
    background-color: #333;
}

.auth-divider {
    text-align: center;
    margin: 20px 40px;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.auth-divider span {
    background-color: #fff;
    padding: 0 20px;
    color: #666;
    font-size: 14px;
}

.social-auth-btn {
    width: calc(100% - 80px);
    margin: 0 40px 20px;
    background-color: #fff;
    color: #000;
    border: 2px solid #e0e0e0;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.social-auth-btn:hover {
    border-color: #000;
    background-color: #f8f8f8;
}

.auth-footer {
    text-align: center;
    padding: 20px 40px 40px;
    border-top: 1px solid #f0f0f0;
}

.auth-footer p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.auth-footer a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* User Menu Dropdown */
.user-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    z-index: 1000;
    margin-top: 10px;
}

.user-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.user-info {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.user-details {
    flex: 1;
}

.user-name {
    display: block;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.user-email {
    display: block;
    font-size: 14px;
    color: #666;
}

.user-menu-items {
    padding: 10px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.menu-item:hover {
    background-color: #f8f8f8;
    color: #000;
}

.menu-item i {
    width: 16px;
    text-align: center;
}

.menu-divider {
    height: 1px;
    background-color: #f0f0f0;
    margin: 10px 0;
}

/* Profile Icon States */
.header-icons .fa-user {
    position: relative;
}

.header-icons .fa-user.logged-in {
    color: #000;
}

.header-icons .fa-user.logged-in::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* Responsive Auth Modals */
@media (max-width: 480px) {
    .auth-modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .auth-header {
        padding: 30px 20px 15px;
    }
    
    .auth-form {
        padding: 0 20px 15px;
    }
    
    .auth-footer {
        padding: 15px 20px 30px;
    }
    
    .social-auth-btn {
        width: calc(100% - 40px);
        margin: 0 20px 15px;
    }
    
    .auth-divider {
        margin: 15px 20px;
    }
    
    .user-menu {
        right: -50px;
        min-width: 250px;
    }
}

/* Product Detail Modal */
.product-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-detail-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.product-detail-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.product-detail-modal.active .product-detail-content {
    transform: translateY(0);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.product-detail-image {
    position: relative;
    aspect-ratio: 1;
    background-color: var(--product-photo-bg);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.product-detail-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.product-detail-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #000;
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 2px;
    z-index: 10;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-detail-category {
    font-size: 12px;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-detail-name {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.2;
}

.product-detail-price {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.product-detail-colors {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.buy-btn {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

.buy-btn:hover {
    background-color: #333;
}

/* Purchase Form Modal */
.purchase-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.purchase-form-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.purchase-form-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.purchase-form-modal.active .purchase-form-content {
    transform: translateY(0);
}

.purchase-form-header {
    text-align: center;
    padding: 40px 40px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.purchase-form-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.purchase-form-header p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.purchase-form {
    padding: 30px 40px 40px;
}

.purchase-form .form-group {
    margin-bottom: 20px;
}

.purchase-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.purchase-form .form-group input,
.purchase-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.purchase-form .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.purchase-form .form-group input:focus,
.purchase-form .form-group textarea:focus {
    outline: none;
    border-color: #000;
}

.submit-purchase-btn {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-purchase-btn:hover {
    background-color: #333;
}

.submit-purchase-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive Design for Modals */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .product-detail-name {
        font-size: 24px;
    }

    .product-detail-price {
        font-size: 20px;
    }

    .purchase-form-header {
        padding: 30px 20px 15px;
    }

    .purchase-form {
        padding: 20px 20px 30px;
    }
}

/* Product detail page */
.product-page .navigation {
    display: none;
}

.product-page-main {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 0 100px;
}

.product-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000;
    font-size: 18px;
    text-decoration: none;
}

.product-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.product-desktop-header {
    display: none;
}

.product-mobile-header .header-center img {
    max-height: 36px;
}

.product-card {
    cursor: pointer;
}

.product-card:focus {
    outline: none;
}

.product-card:focus-visible {
    outline: 2px solid #212326;
    outline-offset: 3px;
}

.product-page-content {
    display: flex;
    flex-direction: column;
}

.product-gallery-section {
    background: var(--product-photo-bg);
}

.product-gallery-main {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-gallery-main .product-detail-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.product-page-main-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-gallery-carousel {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 8px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.product-gallery-carousel-inner {
    flex: 1;
    min-width: 0;
}

.product-gallery-thumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-nav {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s ease;
}

.gallery-nav:hover:not(:disabled) {
    color: #000;
}

.gallery-nav:disabled {
    opacity: 0.25;
    cursor: default;
}

.gallery-progress-track {
    height: 3px;
    margin: 0 8px 12px;
    background: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.gallery-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: #333;
    border-radius: 2px;
    transition: transform 0.3s ease, width 0.3s ease;
    will-change: transform, width;
}

.product-gallery-thumb {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    background: var(--product-photo-bg);
}

.product-gallery-thumb.active {
    border-color: #000;
}

.product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.product-page-details {
    padding: 24px 20px;
    background: var(--theme-surface, #fff);
    font-family: 'Poppins', sans-serif;
    color: var(--theme-text-subtle, #212326);
}

.product-page-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 8px 0 12px;
    color: #000;
}

.product-page-price {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #000;
}

.product-page-tax-note {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin: 0 0 24px;
}

.product-page-details .product-detail-category {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
}

.product-page-details .product-page-title {
    font-family: 'Poppins', sans-serif;
    color: #212326;
}

.product-page-details .product-page-price {
    font-family: 'Poppins', sans-serif;
    color: #212326;
}

/* Reserved space where color picker was — keeps Size section position */
.product-page-colors-spacer {
    min-height: 66px;
    margin-bottom: 24px;
}

.product-option-wrap {
    margin-bottom: 20px;
}

.product-option-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #212326;
}

.product-select {
    position: relative;
}

.product-select-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    background: #fff;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.product-select-trigger .product-select-chevron {
    font-size: 12px;
    color: #666;
    transition: transform 0.2s ease;
}

.product-select.is-open .product-select-chevron {
    transform: rotate(180deg);
}

.product-select-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #3d3d3d;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    z-index: 20;
    max-height: 240px;
    overflow-y: auto;
}

.product-select-menu[hidden] {
    display: none;
}

.product-select-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.product-select-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.product-select-option.is-selected::before {
    content: '✓';
    font-size: 14px;
    font-weight: 700;
    width: 14px;
    flex-shrink: 0;
}

.product-select-option:not(.is-selected)::before {
    content: '';
    width: 14px;
    flex-shrink: 0;
}

.product-size-help {
    display: inline-block;
    margin-top: 10px;
    padding: 0;
    border: none;
    background: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #212326;
    text-decoration: underline;
    cursor: pointer;
}

.product-accordions {
    margin: 8px 0 24px;
    border-top: 1px solid #e5e5e5;
}

.product-accordion {
    border-bottom: 1px solid #e5e5e5;
}

.product-accordion-trigger {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0;
    padding: 18px 0;
    border: none;
    background: #fff;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.product-accordion-title {
    justify-self: center;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #212326;
    padding: 0 15px;
    line-height: 1.2;
}

.product-accordion-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    color: #212326;
    flex-shrink: 0;
}

.product-accordion-icon .icon-accordion {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.product-accordion-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    color: #212326;
    transition: transform 0.25s ease;
}

.product-accordion-chevron .icon-caret {
    display: block;
}

.product-accordion-trigger[aria-expanded="true"] .product-accordion-chevron {
    transform: rotate(180deg);
}

.product-accordion-panel {
    padding: 0 8px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

.product-accordion-panel[hidden] {
    display: none;
}

.product-accordion-panel p {
    margin: 0 0 12px;
}

.product-accordion-panel ul {
    margin: 0 0 12px;
    padding: 0;
    list-style: none;
}

.product-accordion-panel li {
    margin-bottom: 8px;
}

.product-accordion-panel li::before {
    content: '- ';
}

.product-page-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
}

.product-page-actions .buy-btn {
    width: 100%;
    margin-top: 0;
    border-radius: 0;
}

.product-add-to-cart-btn {
    margin-bottom: 0;
}

.product-buy-now-btn {
    border-top: 1px solid #fff;
}

#cartIcon,
#cartIconDesktop,
#cartNav {
    cursor: pointer;
}

/* Cart drawer */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 2000;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: var(--theme-surface, #fff);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
}

.cart-drawer.is-open {
    transform: translateX(0);
}

body.cart-drawer-open {
    overflow: hidden;
}

.cart-drawer-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 12px;
    border-bottom: 1px solid #eee;
}

.cart-drawer-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin: 0;
    color: #212326;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #212326;
}

.cart-shipping-bar {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
}

.cart-shipping-msg {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0 0 8px;
    text-align: center;
}

.cart-shipping-progress {
    height: 3px;
    background: #eee;
    border-radius: 2px;
    overflow: hidden;
}

.cart-shipping-progress span {
    display: block;
    height: 100%;
    background: #c45c4a;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
}

.cart-empty {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #666;
    padding: 40px 0;
}

.cart-line-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.cart-line-image {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    background: var(--product-photo-bg);
    overflow: hidden;
}

.cart-line-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-line-placeholder {
    width: 100%;
    height: 100%;
    background: #eee;
}

.cart-line-details {
    flex: 1;
    min-width: 0;
    position: relative;
    padding-right: 20px;
}

.cart-line-remove {
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background: none;
    font-size: 18px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 0;
}

.cart-line-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #212326;
    text-decoration: none;
    display: block;
    margin-bottom: 4px;
    padding-right: 8px;
}

.cart-line-variant {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666;
    margin: 0 0 10px;
}

.cart-line-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
}

.cart-qty button {
    width: 28px;
    height: 28px;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    color: #212326;
}

.cart-qty span {
    min-width: 28px;
    text-align: center;
    font-size: 13px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    line-height: 28px;
}

.cart-line-price {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #212326;
    white-space: nowrap;
}

.cart-recommendations {
    border-top: 1px solid #eee;
    padding: 16px 20px;
    max-height: 200px;
    overflow-y: auto;
}

.cart-recommendations-title {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
    color: #212326;
}

.cart-recommendation-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-recommendation-item:last-child {
    border-bottom: none;
}

.cart-recommendation-image {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: var(--product-photo-bg);
}

.cart-recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-recommendation-info {
    flex: 1;
    min-width: 0;
}

.cart-recommendation-brand {
    font-size: 10px;
    letter-spacing: 0.08em;
    color: #666;
    display: block;
}

.cart-recommendation-name {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #212326;
    text-decoration: none;
    display: block;
}

.cart-recommendation-price {
    font-size: 12px;
    font-weight: 600;
    color: #212326;
}

.cart-recommendation-add {
    width: 36px;
    height: 36px;
    border: 1px solid #212326;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-drawer-footer {
    border-top: 1px solid #eee;
    padding: 16px 20px 24px;
    background: #fff;
}

.cart-footer-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    margin-bottom: 12px;
}

.cart-footer-tab {
    flex: 1;
    padding: 10px;
    border: none;
    background: none;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cart-footer-tab.is-active {
    color: #212326;
    border-bottom: 2px solid #212326;
    margin-bottom: -1px;
}

.cart-order-note {
    width: 100%;
    border: 1px solid #ddd;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    resize: vertical;
    box-sizing: border-box;
}

.cart-shipping-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.cart-tax-note {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #666;
    text-align: center;
    margin: 12px 0;
}

.cart-checkout-btn {
    width: 100%;
    padding: 16px;
    background: #000;
    color: #fff;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-transform: uppercase;
}

.cart-checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cart-checkout-btn:hover:not(:disabled) {
    background: #333;
}

.product-purchase-section {
    padding: 0 20px 40px;
    background: #fff;
    border-top: 1px solid #eee;
}

.product-purchase-header {
    padding: 32px 0 16px;
    text-align: left;
    border-bottom: none;
}

.product-purchase-form {
    padding: 0 0 24px;
}

.product-not-found {
    text-align: center;
    padding: 80px 20px;
}

.product-not-found h1 {
    font-size: 24px;
    margin-bottom: 12px;
}

@media (min-width: 769px) {
    .product-page .mobile-header {
        display: none;
    }

    .product-desktop-header {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        width: 100%;
        padding: 16px 40px;
    }

    .product-page-main {
        max-width: 960px;
        padding: 24px 40px 60px;
    }

    .product-page-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: start;
    }

    .product-gallery-section {
        border-radius: 8px;
        overflow: hidden;
    }

    .product-page-details {
        padding: 24px 0;
    }

    .product-purchase-section {
        grid-column: 1 / -1;
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }
}
