@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── PREMIUM LIGHT THEME E-COMMERCE FRONTEND ── */
:root {
    --bg: #fcfcfc;
    --surface: #ffffff;
    --text: #0a0a0a;
    --text-sec: #666666;
    --primary: #004B93;
    --accent: #ec691f;
    --accent-glow: rgba(236, 105, 31, 0.15);
    --hover: #f07e41;
    --border: #f0f0f0;
    --glass: rgba(255, 255, 255, 0.7);
    --lux-ease: cubic-bezier(0.16, 1, 0.3, 1);

    --font-main: 'Inter', sans-serif;
    --font-alt: 'Outfit', sans-serif;
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    animation: fadeUp 0.8s var(--lux-ease) forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

/* ── TOP BAR ── */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0 4%;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.top-bar-links a:hover {
    color: var(--accent);
}

/* ── NAV & HEADER ── */
.store-nav {
    position: sticky;
    top: 40px;
    z-index: 1000;
    background: #fffaf3;
    border-bottom: 1px solid var(--border);
    transition: 0.4s var(--lux-ease);
}

.nav-container {
    width: 100%;
    margin: 0;
    padding: 0 4%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.nav-logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    height: 100%;
    align-items: center;
}

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover,
.nav-item:hover>a {
    color: var(--hover);
}

/* MEGAMENU CORE */
.mega-menu {
    position: fixed;
    top: 120px;
    /* height of top bar (40px) + nav (80px) */
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid var(--accent);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.4s var(--lux-ease);
    pointer-events: none;
    z-index: 999;
}

.mega-menu-overlay {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s var(--lux-ease);
    pointer-events: none;
}

body:has(.nav-item:hover .mega-menu) .mega-menu-overlay {
    opacity: 1;
    visibility: visible;
}

.mega-content {
    width: 100%;
    margin: 0;
    padding: 50px 4%;
    display: grid;
    grid-template-columns: repeat(3, 1fr) 420px;
    gap: 50px;
    box-sizing: border-box;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mega Column */
.mega-col {
    min-width: 0;
}

.mega-col h4,
.mega-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 24px 0;
    color: #aaa;
    font-family: var(--font-alt);
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.mega-col h4.spacer-title,
.mega-title.spacer-title {
    margin-top: 30px;
}

.mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-col li {
    display: flex;
}

.mega-col li a {
    color: var(--text) !important;
    font-size: 0.88rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: 0.25s var(--lux-ease) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.mega-col li a::before {
    content: '';
    width: 0px;
    height: 2px;
    background: var(--accent);
    transition: 0.25s var(--lux-ease);
    flex-shrink: 0;
}

.mega-col li a:hover::before {
    width: 14px;
}

.mega-col li a:hover {
    color: var(--accent) !important;
    transform: translateX(3px);
}

/* Mega Banner */
.mega-banner {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #111;
    min-height: 100%;
}

.mega-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s var(--lux-ease);
}

.mega-banner:hover img {
    transform: scale(1.06);
}

.nav-icons {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-left: 20px;
}

.nav-icons button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text);
    transition: 0.3s;
    position: relative;
}

.nav-icons button:hover {
    color: var(--hover);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: var(--accent);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 10px;
}

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

/* ── BUTTONS ── */
.btn-lux {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.4s var(--lux-ease);
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-lux:hover {
    background: var(--hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px var(--accent-glow);
}

.btn-lux.btn-outline {
    background: transparent;
    border: 1.5px solid var(--text);
    color: var(--text);
    box-shadow: none;
}

.btn-lux.btn-outline:hover {
    background: var(--text);
    color: #fff;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

/* ── LAYOUT ── */
* {
    box-sizing: border-box;
}

.container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    padding-left: 4% !important;
    padding-right: 4% !important;
}

.section {
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden; /* Prevent overflow spills into next sections */
    clear: both;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 40px;
    text-align: left; /* Consistently left-align titles */
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); /* Increased to ensure large cards */
    gap: 40px;
    width: 100% !important;
}

@media (min-width: 1600px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr); /* Force 4 columns to perfectly fill width */
    }
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Similar Products Carousel */
.similar-carousel-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    padding: 40px 0;
    cursor: grab;
}
.similar-carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 0 4%;
    animation: autoScrollSimilar 60s linear infinite;
}
.similar-carousel-wrapper:hover .similar-carousel-track {
    animation-play-state: paused;
}
.similar-carousel-track .product-card {
    width: 280px;
    flex-shrink: 0;
}

@keyframes autoScrollSimilar {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Brand Strip Carousel */
.brand-strip-wrapper {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}
/* Multi-step sliding effect through linear animation */
.brand-strip-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollBrands 60s linear infinite;
}
.brand-strip-wrapper:hover .brand-strip-track {
    animation-play-state: paused;
}
.brand-item {
    width: 16.66vw; /* Exactly 6 logos on screen (100 / 6) */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 54px; /* 20% bigger than 45px */
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.5s var(--lux-ease);
    cursor: pointer;
    padding: 0 40px;
    box-sizing: border-box;
}
.brand-item:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.15);
}
.brand-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.brand-item span {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Shop By Gender Grid */
.gender-section {
    margin: 80px 0;
}
.gender-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 500px);
    gap: 30px;
}
.gender-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #f0f0f0;
}
.gender-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* CHANGED FROM inherit to cover */
    object-position: top center;
    transition: 0.8s var(--lux-ease);
}
.gender-card:hover img {
    transform: scale(1.08);
}
.gender-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 50px;
    color: #fff;
    transition: 0.4s;
}
.gender-card:hover .gender-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 70%);
}
.gender-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    font-family: var(--font-alt);
    letter-spacing: -1px;
    text-transform: uppercase;
}
.gender-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin: 10px 0 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .gender-grid {
        grid-template-rows: repeat(2, 400px);
    }
}
@media (max-width: 768px) {
    .gender-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 350px);
    }
}

/* Shop By Shape */
.shape-section {
    margin: 100px 0;
    text-align: center;
}
.shape-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Fix overflow issue */
    gap: 20px;
    margin-top: 50px;
    justify-content: center; /* Center items if they don't fill width */
}
.shape-card {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    cursor: pointer;
    transition: 0.4s var(--lux-ease);
    border: 1px solid #f0f0f0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
}
.shape-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--accent);
}
.shape-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shape-card h4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 1200px) {
    .shape-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .shape-grid { grid-template-columns: repeat(2, 1fr); }
}

.product-card {
    background: transparent;
    cursor: pointer;
    transition: all 0.4s var(--lux-ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 15px;
    perspective: 1000px;
}

.product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s var(--lux-ease), opacity 0.6s var(--lux-ease);
    backface-visibility: hidden;
}

.product-img-primary {
    position: relative;
    z-index: 2;
    transform: rotateY(0deg);
}

.product-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotateY(180deg);
    opacity: 0;
    z-index: 1;
}

.product-card:hover .has-secondary .product-img-primary {
    transform: rotateY(-180deg);
    opacity: 0;
}

.product-card:hover .has-secondary .product-img-secondary {
    transform: rotateY(0deg);
    opacity: 1;
    z-index: 3;
}

/* New Arrival Label - Top Left */
.product-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #000;
    color: #fff;
    padding: 6px 14px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 25;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-label.sale {
    background: var(--accent);
}

.product-label.new {
    background: #004B93;
}

/* Offer Badge - Bottom Left of Image Area */
.product-offer-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #fff;
    color: #2e7d32;
    padding: 5px 12px;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 20;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #e8f5e9;
}

.product-offer-badge i {
    font-size: 0.7rem;
}

/* Actions Top Right - Wishlist & Compare */
.product-card-actions-top {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 25;
    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s var(--lux-ease);
}

.product-card:hover .product-card-actions-top {
    opacity: 1;
    transform: translateX(0);
}

.card-action-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
}

.card-action-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.1);
}

.card-action-btn.active {
    color: var(--accent);
}

/* Try-On Icon - Bottom Right */
.vto-corner-btn {
    position: absolute;
    bottom: 70px;
    /* Above the buttons row */
    right: 12px;
    width: 40px;
    height: 40px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 25;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.3s var(--lux-ease);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.product-card:hover .vto-corner-btn {
    opacity: 1;
    transform: scale(1);
}

.vto-corner-btn:hover {
    background: #000;
    color: #fff;
}

/* Hover Actions Overlay - One Row Buttons at Bottom */
.product-hover-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: row;
    /* ONE ROW */
    padding: 10px;
    gap: 8px;
    opacity: 0;
    transform: translateY(100%);
    transition: 0.4s var(--lux-ease);
    z-index: 20;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover .product-hover-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-btn {
    flex: 1;
    padding: 10px 5px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
    white-space: nowrap;
}

.quick-btn-cart {
    background: #000;
    color: #fff;
}

.quick-btn-cart:hover {
    background: #333;
}

.quick-btn-buy {
    background: var(--accent);
    color: #fff;
}

.quick-btn-buy:hover {
    opacity: 0.9;
}

/* Info Section - Left Aligned */
.product-info {
    padding: 20px 0;
    text-align: left;
}

.product-brand {
    font-size: 0.65rem;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--text);
    letter-spacing: -0.3px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price-row {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.price-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-tag-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #000;
    font-family: var(--font-alt);
    line-height: 1.1;
}

.product-mrp {
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: line-through;
    font-weight: 400;
    line-height: 1.1;
}

.product-savings-badge {
    background: #fff0e8;
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-left: auto;
    border: 1px solid var(--accent-glow);
}

.product-label.hot {
    background: #ff5722;
    background: linear-gradient(45deg, #ff5722, #ff9800);
}

/* ── FILTERS & PLP ── */
.plp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.plp-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.plp-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 120px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin-top: 0;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.filter-label {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.plp-main {
    flex: 1;
}

/* ── PDP (Product Detail) ── */
.pdp-layout {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 60px;
    margin-top: 40px;
    align-items: start;
}

@media (max-width: 1000px) {
    .pdp-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.pdp-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pdp-gallery-item {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    background: #fcfcfc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.pdp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: multiply;
}

.pdp-gallery-item:hover img {
    transform: scale(1.4);
}

.pdp-gallery-thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.5;
    transition: 0.3s var(--lux-ease);
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.pdp-gallery-thumbs img.active,
.pdp-gallery-thumbs img:hover {
    border-color: var(--accent);
    opacity: 1;
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.pdp-details {
    position: sticky;
    top: 140px;
}

.pdp-chip {
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #444;
    text-transform: uppercase;
}

.offer-box {
    background: #fff9e6;
    border: 1px solid #fee2b3;
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    gap: 15px;
    align-items: center;
}

.pdp-gallery-main img {
    width: 100%;
    max-height: 500px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.pdp-details h1 {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 5px 0 20px 0;
    line-height: 1;
    font-family: var(--font-alt);
    color: #111;
}

.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
}

.pdp-price {
    font-size: 2.5rem;
    color: var(--text);
    font-weight: 800;
    font-family: var(--font-alt);
}

.pdp-mrp {
    font-size: 1.2rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 500;
}

/* Beautiful PDP Special Offer Badge */
.pdp-special-offer-badge {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px 25px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-left: 5px solid var(--accent);
    transition: 0.4s var(--lux-ease);
}

.pdp-special-offer-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.pdp-special-offer-badge .badge-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.pdp-special-offer-badge .badge-discount {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.pdp-special-offer-badge i {
    font-size: 1.8rem;
    color: #eee;
    transition: 0.3s;
}

.pdp-special-offer-badge:hover i {
    color: var(--accent);
    transform: rotate(-10deg) scale(1.1);
}

.pdp-coupon-label {
    transition: 0.3s var(--lux-ease);
}

.pdp-coupon-label:hover {
    border-color: #000 !important;
    background: #fff !important;
    transform: scale(1.02);
}

.pdp-desc {
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 20px;
    position: relative;
}

.pdp-desc-label {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--bg);
    padding: 0 10px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #bbb;
    text-transform: uppercase;
}

.variant-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.color-swatch {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    padding: 2px;
    box-sizing: border-box;
    transition: 0.2s;
}

.color-swatch.active {
    border-color: var(--accent);
    transform: scale(1.1);
}

.color-swatch-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* ── CART SIDEBAR ── */
#cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

#cart-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 400px;
    max-width: 100%;
    background: #fff;
    z-index: 2000;
    transform: translateX(100%);
    transition: 0.4s var(--lux-ease);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

#cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#cart-sidebar.active {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    margin: 0;
    font-size: 1.2rem;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-item img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
    background: var(--surface);
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.cart-controls button {
    background: var(--surface);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

/* ── AUTH UI ── */
#auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    backdrop-filter: blur(0px);
}

#auth-modal-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 90%;
    max-width: 1000px;
    transform: translate(-50%, -40%) scale(0.95);
    background: #fff;
    border-radius: 20px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s var(--lux-ease);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

#auth-overlay.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(10px);
}

#auth-modal-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.blur-background {
    filter: blur(8px) grayscale(0.2);
    pointer-events: none;
    transition: 0.4s var(--lux-ease);
}

.auth-container {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    display: flex;
    min-height: 650px;
}

.auth-side {
    flex: 1.2;
    position: relative;
    min-height: 100%;
}

.auth-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.auth-form-side {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: relative;
    z-index: 10;
    max-height: 90vh;
    overflow-y: auto;
}

/* RESPONSIVE AUTH */
@media (max-width: 991px) {
    #auth-modal-popup {
        width: 95%;
        max-width: 500px;
        max-height: 85vh;
    }

    .auth-container {
        flex-direction: column;
        min-height: auto;
    }

    .auth-side {
        height: 180px;
        flex: none;
    }

    .auth-form-side {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .auth-form-side {
        padding: 25px 20px;
    }

    .auth-tabs {
        margin-bottom: 25px;
    }

    .auth-input-group {
        margin-bottom: 15px;
    }
}

.auth-tabs {
    display: flex;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 40px;
}

.auth-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    color: #999;
}

.auth-tab.active {
    background: #000;
    color: #fff;
    border-radius: 8px;
}

.auth-input-group {
    display: flex;
    align-items: stretch;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.auth-input-group:focus-within {
    border-color: var(--hover);
}

.auth-icon-box {
    width: 50px;
    background: #f9f9f9;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.auth-input-group input {
    flex: 1;
    border: none;
    padding: 15px;
    outline: none;
    font-size: 0.95rem;
    font-family: var(--font-main);
}

.auth-check-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #666;
    cursor: pointer;
}

.auth-check-group input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* ── COOKIE CONSENT ── */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    z-index: 9000;
    transform: translateY(150%);
    transition: 0.5s var(--lux-ease);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner h4 {
    margin: 0 0 10px 0;
}

.cookie-banner p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

/* ── MOBILE MENU DRAWER ── */
#mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

#mobile-menu-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 300px;
    max-width: 85%;
    background: #fff;
    z-index: 3000;
    transform: translateX(-100%);
    transition: 0.4s var(--lux-ease);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

#mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#mobile-menu-drawer.active {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-header button {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-links {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
}

.mobile-menu-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-menu-group {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 15px;
    border-left: 2px solid var(--border);
}

.mobile-menu-group h4 {
    margin: 0 0 5px 0;
    font-size: 0.8rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu-group a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #444;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .mega-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .mega-menu {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .top-bar {
        display: none;
    }

    .nav-container {
        height: 70px;
    }

    .nav-logo img {
        height: 30px;
    }

    .pdp-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pdp-gallery {
        flex-direction: column-reverse;
    }

    .pdp-gallery-thumbs {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .pdp-gallery-thumbs img {
        width: 70px;
        height: 70px;
    }

    .pdp-gallery-main {
        border-radius: 12px;
    }

    .plp-layout {
        flex-direction: column;
    }

    .plp-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 30px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 0.9rem;
    }

    footer div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 60vh !important;
        padding: 60px 5% !important;
    }

    .hero div[style*="padding:50px"] {
        padding: 30px !important;
    }
}

/* ── HERO CAROUSEL ── */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Hero Slide General */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 1.2s var(--lux-ease);
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

/* 🌀 ZOOM EFFECT (Ken Burns) */
.hero-carousel.zoom .hero-slide {
    transform: scale(1.1);
}
.hero-carousel.zoom .hero-slide.active {
    transform: scale(1);
    animation: kenBurns 12s linear infinite alternate;
}

@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

/* 🌫 FADE EFFECT */
.hero-carousel.fade .hero-slide {
    transform: scale(1) !important;
}
.hero-carousel.fade .hero-slide.active {
    animation: none;
}

/* ⬅️ SLIDE EFFECT */
.hero-carousel.slide .hero-slide {
    transform: translateX(100%);
}
.hero-carousel.slide .hero-slide.active {
    transform: translateX(0);
}

.hero-carousel.slide .hero-content {
    transition-delay: 0.8s;
}

.hero-slide .hero-content {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: 1s var(--lux-ease) 0.6s;
    filter: blur(5px);
}

.hero-slide.active .hero-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.carousel-dots {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.5s var(--lux-ease);
    border-radius: 50%;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.3);
    border-color: rgba(255,255,255,0.3);
}

/* ── BRAND LOGO SLIDER ── */
.brand-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 60px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.brand-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 40s linear infinite;
    gap: 100px;
}

.brand-slider-wrapper:hover .brand-slider-track {
    animation-play-state: paused;
}

.brand-logo {
    flex-shrink: 0;
    width: 180px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    filter: grayscale(1);
    transition: 0.4s var(--lux-ease);
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: scale(1.1);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-logo span {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── LUXURY INTERACTIVE GRID ── */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    grid-auto-rows: 300px;
    gap: 30px;
    width: 100% !important;
}

@media (min-width: 1600px) {
    .luxury-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff !important;
    transition: all 0.4s var(--lux-ease);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%; /* Ensure it fills row */
}

.grid-card:hover {
    z-index: 5;
}

/* Shapes Consistency */
.grid-card.square, .grid-card.rounded, .grid-card.circle {
    aspect-ratio: 1/1; /* Ensure uniform square base for all shapes */
    width: 100%;
}
.grid-card.square { border-radius: 0; }
.grid-card.rounded { border-radius: 20px; }
.grid-card.circle { border-radius: 500px; }

/* Circular Overlay centering */
.grid-card.circle .grid-overlay {
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    background: transparent;
    padding: 20px;
}
.grid-card.circle .grid-overlay h3 {
    font-size: 1.1rem;
    letter-spacing: 0;
    color: #000;
}
.grid-card.circle .grid-overlay p {
    font-size: 0.7rem;
    margin-top: 2px;
    color: #666;
}

.grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Force cover for all grid cards to prevent spill */
    object-position: center center;
    transition: 0.7s var(--lux-ease);
    display: block;
}

.grid-card:hover img {
    transform: scale(1.1);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    color: #000;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    pointer-events: none; /* Prevents overlay from blocking clicks */
}

/* Overlay Modes */
.grid-card.overlay-hover:hover .grid-overlay {
    opacity: 1;
    visibility: visible;
}

.grid-card.overlay-always .grid-overlay {
    opacity: 1;
    visibility: visible;
}

.grid-card.overlay-none .grid-overlay {
    display: none;
}

.grid-overlay h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    font-family: var(--font-alt);
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.2;
}

.grid-overlay p {
    font-size: 0.85rem;
    margin: 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.7;
}

/* Span Classes */
.span-2x1 { grid-column: span 2; }
.span-1x2 { grid-row: span 2; }
.span-2x2 { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1024px) {
    .luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .luxury-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .span-2x1, .span-2x2, .span-1x2 { grid-column: span 1; grid-row: span 1; }
}

/* ── ENTERPRISE CHECKOUT ── */
.checkout-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

.checkout-section {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.checkout-section:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.checkout-section h3 {
    margin: 0 0 25px 0;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-section h3 i {
    color: var(--accent);
}

.input-block {
    margin-bottom: 20px;
}

.input-block label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.lux-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    background: #fcfcfc;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
}

.lux-input:focus {
    border-color: #000;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.checkout-summary-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 24px;
    padding: 40px;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #666;
}

.summary-row.total {
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
}

.promo-apply-box {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 16px;
    border: 1px dashed #ddd;
}

.promo-apply-box input {
    background: transparent;
    border: none;
    outline: none;
    flex: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-apply-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
}

.promo-apply-btn:hover {
    background: var(--accent);
}

.address-toggle-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    color: #555;
    user-select: none;
}

.address-toggle-btn i {
    color: var(--accent);
}

.gst-badge {
    font-size: 0.6rem;
    font-weight: 800;
    padding: 3px 8px;
    background: #eee;
    border-radius: 4px;
    color: #666;
    margin-left: 8px;
}

.coupon-active {
    background: #e6f7ef;
    border: 1px solid #c3e6d3;
    padding: 15px;
    border-radius: 12px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coupon-active span {
    color: #1e7e4e;
    font-weight: 700;
    font-size: 0.9rem;
}

.coupon-remove {
    cursor: pointer;
    color: #999;
}