* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: #0a0a0a;
    color: #fff;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 46px;
    width: auto;
    display: block;
    border-radius: 6px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.theme-toggle {
    width: 44px;
    height: 44px;
}

.cart-toggle {
    position: relative;
    width: 44px;
    height: 44px;
}

.theme-toggle,
.cart-toggle,
.nav-toggle {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.cart-toggle .icon {
    width: 19px;
    height: 19px;
}

.theme-toggle .icon,
.nav-toggle .icon {
    width: 18px;
    height: 18px;
}

.theme-toggle:hover,
.cart-toggle:hover,
.nav-toggle:hover {
    background: rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-1px);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #7b2cbf;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
}

.theme-toggle:hover {
    background: rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.5);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
}

.nav-toggle:hover {
    background: rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.5);
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #fff;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 11rem 2rem 4rem;
    background: #000;
}

.hero-bg {
    display: block;
    position: absolute;
    inset: 0;
    background-image: url('background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px) brightness(0.7);
    transform: scale(1.03);
    transform-origin: center;
    pointer-events: none;
    z-index: 1;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    padding: 1.4rem 1.35rem 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(180deg, rgba(8, 8, 12, 0.42) 0%, rgba(8, 8, 12, 0.26) 100%);
    backdrop-filter: blur(5px);
    margin-top: 0;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 7vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: 3px;
    margin-bottom: 1.35rem;
    color: #fff;
}

.hero-brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 11vw, 8.2rem);
    line-height: 0.92;
    letter-spacing: 4px;
    font-weight: 700;
    color: #7b2cbf;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.25rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-cta-search {
    margin-top: 1rem;
    width: min(100%, 320px);
    justify-content: center;
    background: #7b2cbf !important;
    background-image: none !important;
    box-shadow: 0 10px 34px rgba(123, 44, 191, 0.32);
    position: relative;
}

.hero-cta-search:hover {
    background: #5a189a !important;
    background-image: none !important;
    box-shadow: 0 15px 52px rgba(90, 24, 154, 0.44);
}

.hero-cta-order {
    margin-top: 1.2rem;
    width: min(100%, 320px);
    justify-content: center;
    background: transparent !important;
    background-image: none !important;
    border: 2px solid rgba(255,255,255,0.35) !important;
    box-shadow: none;
    letter-spacing: 1.5px;
}

.hero-cta-order:hover {
    background: rgba(255,255,255,0.08) !important;
    border-color: rgba(255,255,255,0.7) !important;
    transform: translateY(-2px);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.34);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hero-search-input {
    flex: 1;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.4px;
    font-size: 0.9rem;
    text-transform: none;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-search-icon {
    position: absolute;
    left: 1.45rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.05rem;
    height: 1.05rem;
    color: rgba(255, 255, 255, 0.78);
    pointer-events: none;
    z-index: 2;
}

.hero-search-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-search-input::placeholder {
    color: transparent;
}

.hero-search-input:focus {
    outline: none;
}

.hero-search-hint-wrap {
    position: absolute;
    left: 3rem;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
    height: 1.35rem;
    pointer-events: none;
    text-align: left;
}

.hero-search-hint {
    display: inline-block;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.4px;
    font-size: 0.9rem;
    line-height: 1.35rem;
    white-space: nowrap;
    transform: translateY(0);
    opacity: 1;
}

.hero-search-hint.slide-up-out {
    animation: searchHintUpOut 0.34s ease forwards;
}

.hero-search-hint.slide-up-in {
    animation: searchHintUpIn 0.34s ease forwards;
}

.hero-search-hint-wrap.hidden {
    display: none;
}

@keyframes searchHintUpOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-115%);
        opacity: 0;
    }
}

@keyframes searchHintUpIn {
    0% {
        transform: translateY(115%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 60px rgba(139, 92, 246, 0.5);
}

.custom-order-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.66);
    backdrop-filter: blur(4px);
    z-index: 230;
}

.custom-order-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 680px);
    max-height: 90vh;
    overflow: auto;
    background: #09090d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 1.2rem 1.2rem 1.4rem;
    z-index: 231;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.custom-order-close {
    position: absolute;
    top: 0.55rem;
    right: 0.7rem;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.custom-order-head h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.2px;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    margin-bottom: 0.45rem;
}

.custom-order-head p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.72);
}

.custom-order-form {
    display: grid;
    gap: 0.9rem;
}

.custom-order-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.custom-order-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.88);
}

.custom-order-form input,
.custom-order-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding: 0.78rem 0.84rem;
    font-family: inherit;
    font-size: 0.95rem;
}

.custom-order-form input:focus,
.custom-order-form textarea:focus {
    outline: none;
    border-color: rgba(123, 44, 191, 0.92);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.2);
}

.custom-order-note {
    margin: 0.1rem 0 0;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.68);
}

.custom-order-submit {
    width: 100%;
    justify-content: center;
    border: none;
    cursor: pointer;
}

body.custom-order-open {
    overflow: hidden;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.location-badge:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.12);
}

.cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 150;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.4rem;
    background: rgba(10, 10, 10, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -24px 0 60px rgba(0, 0, 0, 0.4);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 160;
}

body.cart-open .cart-backdrop {
    opacity: 1;
    pointer-events: auto;
}

body.cart-open .cart-drawer {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 1.5px;
}

.cart-close {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-right: 0.2rem;
}

.cart-empty {
    margin: auto 0;
    padding: 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

.cart-item {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 0.9rem;
    align-items: center;
    padding: 0.8rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-image {
    width: 76px;
    height: 92px;
    object-fit: cover;
    border-radius: 14px;
}

.cart-item-copy {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
}

.cart-item-price {
    color: #f59e0b;
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.cart-qty-btn,
.cart-remove {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    cursor: pointer;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 9px;
}

.cart-qty-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
}

.cart-remove {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 1.1rem;
}

.cart-continue {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
}

.cart-continue-btn {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(139, 92, 246, 0.35);
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.14);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.cart-continue-btn:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.55);
}

.cart-summary {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.65rem;
    color: rgba(255, 255, 255, 0.78);
}

.cart-checkout {
    width: 100%;
    margin-top: 0.8rem;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #25d366 0%, #16a34a 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.cart-checkout:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.featured-look-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.carousel-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.featured-look-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    margin-top: 0.5rem;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-track-wrapper {
    overflow: hidden;
    border-radius: 24px;
    flex: 1;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.look-card {
    min-width: 100%;
    height: 440px;
    position: relative;
    text-decoration: none;
    display: block;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
}

.look-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 55%, transparent 100%);
}

.look-card-badge {
    align-self: flex-start;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.8rem;
}

.look-card-title {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.look-card-sub {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    margin-bottom: 1.4rem;
    max-width: 34ch;
}

.look-card-cta {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: #8b5cf6;
    color: #fff;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.25s ease, transform 0.25s ease;
}

.look-card:hover .look-card-cta {
    background: #7c3aed;
    transform: translateX(5px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.22);
    color: #fff;
    font-size: 2.2rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.carousel-prev { left: -26px; }
.carousel-next { right: -26px; }

.carousel-btn:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
    transform: translateY(-50%) scale(1.08);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.6rem;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-dot.active {
    background: #8b5cf6;
    transform: scale(1.4);
}

.products-section {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.products-section,
.info-section,
.footer {
    scroll-margin-top: 7rem;
}

.featured-look-section,
.products-section,
.info-section,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    letter-spacing: 1px;
}

.products-carousel {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.products-track-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.products-grid {
    display: flex;
    gap: 0;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.product-card {
    min-width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out backwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }

.product-card.product-skeleton {
    cursor: default;
    pointer-events: none;
}

.product-skeleton .product-image-wrapper {
    height: 420px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.3s linear infinite;
}

.product-skeleton .product-info {
    padding: 1.5rem;
}

.product-skeleton-line,
.product-skeleton-chip,
.product-skeleton-button {
    display: block;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.3s linear infinite;
}

.product-skeleton-chip {
    width: 108px;
    height: 24px;
    margin-bottom: 1rem;
}

.product-skeleton-line {
    height: 14px;
    margin-bottom: 0.8rem;
}

.product-skeleton-line.title {
    height: 24px;
    width: 72%;
}

.product-skeleton-line.medium {
    width: 58%;
}

.product-skeleton-line.short {
    width: 38%;
}

.product-skeleton-button {
    width: 160px;
    height: 44px;
    margin-top: 1.2rem;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.products-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 10, 10, 0.65);
    color: #fff;
    font-size: 1.9rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 6;
    transition: transform 0.2s ease, background 0.2s ease;
}

.products-prev {
    left: -56px;
}

.products-next {
    right: -56px;
}

.products-nav:hover {
    background: #8b5cf6;
    transform: translateY(-50%) scale(1.06);
}

.products-dots {
    display: flex;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 1.4rem;
}

.products-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.products-dot.active {
    background: #8b5cf6;
    transform: scale(1.35);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.order-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.order-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.42);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.1rem;
    color: #f59e0b;
    font-weight: 600;
}

.info-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 7rem;
}

.info-section-alt {
    position: relative;
}

.about-grid,
.info-grid {
    display: grid;
    gap: 2rem;
}

.about-grid {
    grid-template-columns: 1.25fr 0.95fr;
}

.info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-panel,
.info-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    overflow: hidden;
}

.about-panel::before,
.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.16), transparent 45%);
    pointer-events: none;
}

.about-panel-featured {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.2), rgba(255, 255, 255, 0.03));
}

.eyebrow,
.card-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: #c4b5fd;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.about-panel h3,
.info-card h3,
.cta-strip h3 {
    font-size: clamp(1.4rem, 2.6vw, 2.2rem);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.about-panel p,
.info-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about-points span {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.detail-list {
    margin: 0;
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
}

.detail-list li + li {
    margin-top: 0.45rem;
}

.info-card-step {
    min-height: 100%;
}

.step-toggle {
    display: none;
    margin-top: 0.75rem;
    padding: 0.65rem 0.9rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-weight: 500;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.step-details {
    margin-top: 0.9rem;
}

.info-note {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-left: 3px solid #f59e0b;
    background: rgba(245, 158, 11, 0.08);
    border-radius: 12px;
}

.cta-strip {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(236, 72, 153, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
    padding: 5rem 2rem 3rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #8b5cf6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #7b2cbf 0%, #9d4edd 100%);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px 12px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease;
    animation: none;
}
.whatsapp-float.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    animation: wa-bounce 2.5s ease-in-out infinite;
}
.whatsapp-float svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    padding: 11px 14px;
    border-radius: 999px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    background: rgba(17, 17, 17, 0.9);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease, background 0.2s ease;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    background: #8b5cf6;
}

@keyframes wa-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

body.light-mode {
    background: #f5f6fa;
    color: #111827;
}

body.light-mode .nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(17, 24, 39, 0.1);
}

body.light-mode .nav-link {
    color: rgba(17, 24, 39, 0.72);
}

body.light-mode .nav-link:hover {
    color: #111827;
}

body.light-mode .theme-toggle,
body.light-mode .cart-toggle,
body.light-mode .nav-toggle {
    background: rgba(17, 24, 39, 0.04);
    border-color: rgba(17, 24, 39, 0.16);
    color: #111827;
}

body.light-mode .hero-title {
    color: #111827;
}

body.light-mode .hero-subtitle,
body.light-mode .section-subtitle,
body.light-mode .footer-text,
body.light-mode .footer-bottom {
    color: rgba(17, 24, 39, 0.68);
}

body.light-mode .location-badge {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(17, 24, 39, 0.12);
}

body.light-mode .cart-toggle,
body.light-mode .cart-close,
body.light-mode .cart-qty-btn,
body.light-mode .cart-remove {
    background: rgba(17, 24, 39, 0.04);
    border-color: rgba(17, 24, 39, 0.12);
    color: #111827;
}

body.light-mode .cart-drawer {
    background: rgba(255, 255, 255, 0.98);
    border-left-color: rgba(17, 24, 39, 0.1);
}

body.light-mode .cart-header,
body.light-mode .cart-summary {
    border-color: rgba(17, 24, 39, 0.1);
}

body.light-mode .cart-empty,
body.light-mode .cart-item {
    background: rgba(17, 24, 39, 0.03);
    border-color: rgba(17, 24, 39, 0.08);
}

body.light-mode .cart-continue {
    background: rgba(17, 24, 39, 0.03);
    border-color: rgba(17, 24, 39, 0.08);
    color: rgba(17, 24, 39, 0.75);
}

body.light-mode .cart-continue-btn {
    color: #111827;
}

body.light-mode .cart-title,
body.light-mode .cart-item-name,
body.light-mode .cart-summary-line {
    color: #111827;
}

body.light-mode .cart-empty {
    color: rgba(17, 24, 39, 0.72);
}

body.light-mode .product-card,
body.light-mode .about-panel,
body.light-mode .info-card,
body.light-mode .footer {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(17, 24, 39, 0.1);
}

body.light-mode .about-panel p,
body.light-mode .info-card p,
body.light-mode .detail-list,
body.light-mode .about-points span,
body.light-mode .footer-link {
    color: rgba(17, 24, 39, 0.72);
}

body.light-mode .about-panel::before,
body.light-mode .info-card::before {
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.1), transparent 45%);
}

body.light-mode .carousel-btn {
    background: rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.2);
    color: #111827;
}

body.light-mode .carousel-dot {
    background: rgba(0, 0, 0, 0.2);
}

body.light-mode .products-nav {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(17, 24, 39, 0.14);
    color: #111827;
}

body.light-mode .products-dot {
    background: rgba(17, 24, 39, 0.24);
}

body.light-mode .footer-link:hover {
    color: #7c3aed;
}

body.light-mode .footer-bottom {
    border-top-color: rgba(17, 24, 39, 0.1);
}

body.light-mode .step-toggle {
    border-color: rgba(17, 24, 39, 0.18);
    background: rgba(17, 24, 39, 0.04);
    color: #111827;
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.25rem;
    }

    .logo-image {
        height: 38px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .theme-toggle,
    .cart-toggle,
    .nav-toggle {
        width: 42px;
        height: 42px;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1.25rem;
        right: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
        border-radius: 20px;
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    body.light-mode .nav-links {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(17, 24, 39, 0.1);
        box-shadow: 0 24px 50px rgba(17, 24, 39, 0.12);
    }

    .nav.menu-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-link {
        width: 100%;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    body.light-mode .nav-link {
        border-bottom-color: rgba(17, 24, 39, 0.1);
    }

    .nav-link:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .hero {
        min-height: auto;
        align-items: flex-start;
        justify-content: center;
        padding-top: 5.6rem;
        padding-bottom: 1.4rem;
    }

    .hero-content {
        margin-top: 0.55rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-subtitle {
        margin-bottom: 1.35rem;
    }

    .hero-subtitle {
        white-space: normal;
    }

    .hero-content {
        padding: 1rem 0.9rem 1rem;
    }

    .hero-cta-order {
        margin-top: 0.35rem;
    }

    .custom-order-modal {
        width: calc(100vw - 1rem);
        padding: 1rem 0.95rem 1.2rem;
        border-radius: 16px;
    }

    .custom-order-grid {
        grid-template-columns: 1fr;
    }

    .products-section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .featured-look-section {
        padding: 0 1rem 4rem;
    }

    .carousel-container {
        padding: 0 0.6rem;
    }

    .look-card {
        height: 300px;
    }

    .look-card-inner {
        justify-content: flex-end;
        padding: 1.35rem 2.35rem;
    }

    .look-card-badge {
        font-size: 0.64rem;
        letter-spacing: 1.4px;
        padding: 0.35rem 0.7rem;
    }

    .look-card-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
    }

    .look-card-sub {
        font-size: 0.82rem;
        margin-bottom: 1rem;
    }

    .carousel-prev { left: -6px; }
    .carousel-next { right: -6px; }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.45rem;
        background: rgba(0,0,0,0.6);
        border-color: rgba(255,255,255,0.15);
    }

    .back-to-top {
        right: 14px;
        bottom: 16px;
    }

    .cart-drawer {
        width: 100vw;
        padding: 1.1rem;
    }

    .cart-item {
        grid-template-columns: 64px 1fr auto;
    }

    .cart-item-image {
        width: 64px;
        height: 82px;
    }

    .cart-continue {
        flex-direction: column;
        align-items: stretch;
    }

    .products-grid {
        gap: 0;
    }

    .products-prev {
        left: 8px;
    }

    .products-next {
        right: 8px;
    }

    .products-nav {
        width: 38px;
        height: 38px;
        font-size: 1.5rem;
    }

    .info-section {
        padding: 0 1.5rem 4rem;
    }

    .about-grid,
    .info-grid,
    .info-grid-wide {
        grid-template-columns: 1fr;
    }

    .about-panel,
    .info-card,
    .cta-strip {
        padding: 1.5rem;
    }

    .info-card-step {
        min-height: auto;
    }

    .step-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .info-card-step .step-details {
        display: none;
    }

    .info-card-step.step-open .step-details {
        display: block;
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
