@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');

:root {
    --bg-color: #111111;
    --surface-color: #1a1a1a;
    --accent-color: #2EA7D7;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --container-max-width: 1400px;
    --nav-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: #ff4d5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.full-width {
    width: 100%;
}

/* 1. ANNOUNCEMENT BAR */
.announcement-bar {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: center;
    overflow: hidden;
    position: relative;
    z-index: 1001;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
}

.marquee {
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee span {
    display: inline-block;
    padding-right: 2rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.desktop-only {
    display: block;
}

@media (max-width: 1024px) {
    .desktop-only {
        display: none !important;
    }
}

/* 2. STICKY NAVBAR */
.navbar {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(15px);
    height: 70px;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled .nav-logo-img {
    height: 60px;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    min-width: 180px;
    flex-shrink: 0;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 180px;
    justify-content: flex-end;
    flex-shrink: 0;
    pointer-events: none;
}

.nav-right > * {
    pointer-events: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 0.5rem;
    min-width: 0;
    position: relative;
    z-index: 10;
}

.nav-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-links>li>a {
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* COLLECTION SIDEBAR STYLES */
.category-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.cat-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    text-decoration: none;
}

.cat-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.cat-link.active {
    color: #ffffff;
    font-weight: 700;
}

.price-range-container {
    padding: 1rem 0;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-left: 10px;
}

/* Mega Menu */
.has-mega-menu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.has-mega-menu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mega-col h3 {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.mega-col a {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.mega-col a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.featured-card {
    background: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.featured-card .card-img {
    height: 150px;
}

.featured-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card .card-content {
    padding: 1rem;
}

.featured-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.featured-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.btn-text {
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--accent-color);
}

/* Icons */
.nav-icon-btn {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-icon-btn i,
.nav-icon-btn svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: white;
    font-size: 10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* 3. HERO SECTION */
.hero {
    position: relative;
    height: calc(100vh - var(--nav-height));
    overflow: hidden;
}

.slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 600px;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #eee;
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 10;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--accent-color);
    width: 30px;
    border-radius: 5px;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* 4. CATEGORY CIRCLES */
.section {
    padding: 2.5rem 0;
}

.horizontal-scroll-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.category-item {
    flex: 0 0 auto;
    text-align: center;
    width: 160px;
    cursor: pointer;
}

.circle-img {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.circle-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.fallback-round-img {
    width: 110px !important;
    height: 110px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.category-item:hover .circle-img {
    transform: scale(1.1);
}

/* Manually Normalize Category Icon Sizes to maintain 3D effect while matching sizes */
.circle-img img[alt="Football"] { transform: scale(1.1); }
.circle-img img[alt="Motivation"] { transform: scale(1.1); }
.circle-img img[alt="Superheros"] { transform: scale(1.3); }
.circle-img img[alt="Music"] { transform: scale(1.35); }
.circle-img img[alt="Split Poster"] { transform: scale(0.8); }
/* Anime, Cars, Cricket, Movies, TV Series, Vedio games, Posterverse Kit are left at default scale(1) */
/* Cars, Cricket, Movies, TV Series, Vedio games are left at default scale(1) as they look balanced */

.category-item:hover .circle-img img {
    filter: drop-shadow(0 0 10px rgba(46, 167, 215, 0.4));
}

.category-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.category-item:hover span {
    color: white;
}

.explore-more-icon {
    color: var(--accent-color);
}

/* 5. DESIGN YOUR OWN */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.custom-card {
    flex: 0 0 350px;
    height: 450px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.custom-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.custom-card:hover img {
    transform: scale(1.05);
}

.card-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
}

.custom-card:hover .card-label {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

/* 6. PRODUCT CARDS */
.product-grid,
.product-listing-grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
}

.product-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow-x: visible;
    gap: 2rem 1.5rem;
}

@media (max-width: 1200px) {
    .product-listing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-listing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.product-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(46, 167, 215, 0.2);
}

.product-img {
    height: 380px;
    position: relative;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-img img.secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-img img.primary {
    opacity: 0;
}

.product-card:hover .product-img img.secondary {
    opacity: 1;
}

.badge-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 2px;
    z-index: 2;
}

.quick-add {
    position: absolute;
    bottom: -50px;
    right: 15px;
    background: white;
    color: black;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-card:hover .quick-add {
    bottom: 15px;
}

.quick-add:hover {
    background: var(--accent-color);
    color: white;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
    white-space: normal;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.product-price {
    font-family: 'Righteous', cursive;
    font-size: 1.25rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-sale {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent-color);
}

.price-old {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.view-all {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.alternate-bg {
    background: #0a0a0a;
}

/* 8. REVIEWS */
.reviews-section {
    overflow: hidden;
}

.reviews-marquee {
    display: flex;
    gap: 1.5rem;
    width: max-content;
}

.marquee-slow {
    animation: marquee-slow 40s linear infinite;
}

@keyframes marquee-slow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.review-item {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.review-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.review-item:hover img {
    transform: scale(1.1);
}

.review-item::after {
    content: '\e91d';
    /* lucide zoom-in */
    font-family: 'lucide';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 2rem;
}

/* COLLECTION PAGE SPECIFIC */
.collection-page {
    padding: 2rem 0 5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.collection-header {
    margin-bottom: 3rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
}

.page-title {
    font-size: 2.5rem;
    margin: 0;
}

.product-count {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.collection-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

@media (max-width: 1024px) {
    .collection-layout {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Filters */
.filters-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-group {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.filter-title {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    cursor: pointer;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.checkbox-container:hover {
    color: white;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.checkbox-container:hover input~.checkmark {
    border-color: var(--accent-color);
}

.checkbox-container input:checked~.checkmark {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked~.checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.price-range {
    padding: 10px 0;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border-color);
    outline: none;
    border-radius: 2px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent-color);
    cursor: pointer;
    border-radius: 50%;
}

.price-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.grid-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.size-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
    padding: 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Collection Toolbar */
.collection-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--surface-color);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.results-count {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sort-dropdown select {
    background: transparent;
    color: white;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}

.view-toggles {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.view-btn.active {
    color: var(--accent-color);
}

/* Badges */
.badge-new {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #10b981;
    color: white;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 800;
    border-radius: 2px;
    z-index: 2;
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
    transform: scale(1);
}

.wishlist-btn:hover {
    background: var(--accent-color);
}

.piece-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

/* Pagination */
.pagination-container {
    margin-top: 5rem;
    text-align: center;
}

.load-more {
    padding: 1rem 4rem;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .filters-sidebar {
        position: fixed;
        top: auto;
        bottom: -100%;
        left: 0;
        width: 100%;
        height: 80vh;
        background: var(--surface-color);
        z-index: 4000;
        padding: 2rem;
        overflow-y: auto;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 20px 20px 0 0;
        border-top: 1px solid var(--accent-color);
    }

    .filters-sidebar.active {
        bottom: 0;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
    }

    .mobile-filter-trigger {
        background: var(--accent-color);
        color: white;
        border: none;
        padding: 0.8rem 1.5rem;
        border-radius: 4px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
}

.mobile-only {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-only {
        display: flex;
    }
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 1000px;
    width: 100%;
    background: var(--surface-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.lightbox-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .lightbox-inner {
        grid-template-columns: 1fr;
    }
}

.lightbox-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.lightbox-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 1.5rem;
}

.filled {
    color: #ffc107;
    fill: #ffc107;
}

#lightbox-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.reviewer-name {
    font-weight: 700;
    color: var(--accent-color);
}

/* 9. FOOTER */
.footer {
    padding: 6rem 0 0;
    border-top: 1px solid var(--border-color);
    background: #0a0a0a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-icons img {
    height: 24px;
    filter: grayscale(1) brightness(2);
}

.razorpay-logo {
    font-weight: 800;
    font-style: italic;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    z-index: 3000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.mobile-nav-links {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 0.5rem;
}

.mobile-nav-links::-webkit-scrollbar {
    width: 3px;
}

.mobile-nav-links::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav-links::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.mobile-nav-links li {
    margin-bottom: 0.8rem;
}

.mobile-nav-links a {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent-color);
}

.drawer-footer {
    flex-shrink: 0;
    margin-top: 1rem;
    padding: 1.2rem 0 0.5rem;
    border-top: 1px solid #222;
}

.drawer-help-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.drawer-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border: 1px solid #333;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #aaa !important;
    background: #111;
    text-transform: none !important;
    font-family: 'Inter', sans-serif !important;
    letter-spacing: 0 !important;
    transition: all 0.2s ease;
}

.drawer-help-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color) !important;
    background: rgba(46, 167, 215, 0.08);
}

/* Animations */
.reveal-text {
    animation: reveal 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-text-delay {
    animation: reveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.2s both;
}

.reveal-text-delay-2 {
    animation: reveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) 0.4s both;
}

@keyframes reveal {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* PRODUCT DETAIL PAGE */
.product-page {
    padding: 2rem 0 5rem;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 5rem;
}

@media (max-width: 992px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-color);
    margin-bottom: 1.5rem;
}

.main-image-container img {
    width: 100%;
    display: block;
    transition: transform 0.2s ease;
}

.thumbnail-strip {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active,
.thumb:hover {
    opacity: 1;
    border-color: var(--accent-color);
}

/* Info Sticky */
.product-info-sticky {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-title {
    font-size: 2.5rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-link {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: underline;
}

.price-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 8px;
}

.price-main {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}

.price-sale {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
}

.price-old {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-secondary);
}

.badge-off {
    background: #10b981;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.8rem;
}

.tax-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Selectors */
.selector-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.size-options,
.finish-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.option-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
    padding: 12px 10px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.option-btn i {
    width: 20px;
    height: 20px;
}

.option-btn span {
    font-size: 0.9rem;
    font-weight: 700;
}

.option-btn small {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.option-btn.active {
    background: rgba(230, 57, 70, 0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Quantity */
.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    background: transparent;
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.quantity-selector input {
    width: 50px;
    height: 40px;
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-weight: 700;
}

/* CTAs */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.buy-now {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
}

.buy-now:hover {
    background: var(--accent-color);
    color: white;
}

/* Delivery & Highlights */
.delivery-info,
.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
}

.info-item,
.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.info-item i,
.highlight-item i {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
}

/* Accordions */
.accordions {
    border-top: 1px solid var(--border-color);
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.accordion-trigger i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-trigger i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reviews Detail */
.reviews-summary-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .reviews-summary-grid {
        grid-template-columns: 1fr;
    }
}

.summary-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--border-color);
    padding-right: 3rem;
}

@media (max-width: 768px) {
    .summary-card {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 3rem;
    }
}

.large-rating {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
}

.bar-row span:first-child {
    width: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #ffc107;
}

.photo-reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .photo-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-reviews-grid img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
}

/* CUSTOM BUILDER PAGE */
.builder-page {
    padding: 3rem 0 6rem;
}

/* Progress Bar */
.step-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.step span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.step.active .step-num {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.4);
}

.step.active span {
    color: white;
}

.step.completed .step-num {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border-color);
    margin: 0 10px;
    margin-bottom: 25px;
    /* Alignment with circle */
}

/* Builder Layout */
.builder-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .builder-layout {
        grid-template-columns: 1fr;
    }
}

.builder-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.builder-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step 1: Upload */
.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent-color);
    background: rgba(230, 57, 70, 0.05);
}

.upload-placeholder h2 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
}

.format-info {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 1rem;
    display: block;
}

.preview-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--bg-color);
}

.preview-container img {
    max-width: 100%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.replace-img-btn {
    margin-top: 1.5rem;
}

.tips-panel {
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.tips-panel i {
    color: #ffc107;
}

/* Step 2: Size */
.size-comparison-wall {
    height: 350px;
    background: #222;
    border-radius: 12px;
    position: relative;
    margin-bottom: 3rem;
    overflow: hidden;
}

.wall-background {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1594904351111-a072f80b1a71?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.silhouette-sofa {
    position: absolute;
    bottom: 0;
    width: 60%;
    height: 100px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 20px 20px 0 0;
}

.size-overlay-grid {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 50px;
}

.size-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    transition: all 0.3s ease;
}

.size-box.a4 {
    width: 50px;
    height: 70px;
    font-size: 0.6rem;
}

.size-box.a3 {
    width: 70px;
    height: 100px;
    font-size: 0.8rem;
}

.size-box.a2 {
    width: 100px;
    height: 140px;
    font-size: 1rem;
}

.size-box.active {
    background: rgba(230, 57, 70, 0.3);
    border-color: var(--accent-color);
    transform: scale(1.1);
}

.size-selector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.size-tile {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.size-tile:hover,
.size-tile.active {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.size-tile.active {
    background: rgba(230, 57, 70, 0.05);
}

.size-tile h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.size-tile p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.size-tile .price {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent-color);
}

/* Step 3: Type */
.type-selector-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.type-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.type-card:hover,
.type-card.active {
    border-color: var(--accent-color);
}

.type-card.active {
    background: rgba(230, 57, 70, 0.05);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    position: relative;
}

.single-icon::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: 2px solid white;
}

.split-icon::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border-left: 2px solid white;
    border-right: 2px solid white;
    box-shadow: inset 18px 0 0 -16px white;
}

.grid-icon::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    border: 2px solid white;
    box-shadow: inset 20px 20px 0 -19px white;
}

/* Step 4: Preview */
.room-preview-container {
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.room-mockup {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.5s ease;
}

.room-mockup.light-mode {
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&q=80&w=2000');
}

.room-mockup.dark-mode {
    background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&q=80&w=2000');
    filter: brightness(0.4) contrast(1.2);
}

.wall-poster-render {
    width: 200px;
    height: 280px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    gap: 10px;
}

.wall-poster-render img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-panel {
    flex: 1;
    overflow: hidden;
}

.split-panel img {
    width: 300%;
    /* For 3 panels */
    height: 100%;
    object-fit: cover;
}

.preview-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.2rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.control-group label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.toggle-group {
    display: flex;
    background: #333;
    padding: 4px;
    border-radius: 4px;
}

.toggle-group button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 15px;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 2px;
}

.toggle-group button.active {
    background: var(--accent-color);
    color: white;
}

/* Step 5: Summary */
.summary-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

@media (max-width: 768px) {
    .summary-layout {
        grid-template-columns: 1fr;
    }
}

.summary-preview {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-preview img {
    max-width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.summary-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.summary-row.total {
    border-bottom: none;
    margin-top: 1.5rem;
}

.summary-row.total strong {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.note-input {
    margin: 2rem 0;
}

.note-input textarea {
    width: 100%;
    background: #222;
    border: 1px solid var(--border-color);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    height: 80px;
    margin-top: 0.5rem;
    resize: none;
}

.delivery-estimate {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    text-align: center;
}

/* Sidebar Summary */
.builder-sidebar {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2rem;
}

.sidebar-header h2 {
    font-size: 1.2rem;
}

.live-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
}

.selection-summary {
    margin-bottom: 3rem;
}

.selection-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.selection-item i {
    color: var(--accent-color);
    width: 18px;
    height: 18px;
}

.builder-nav {
    display: flex;
    gap: 1rem;
}

/* RETRO PRINTS PAGE */
.retro-page {
    --retro-accent: #f48fb1;
    --retro-bg: #fffbf0;
    --retro-text: #5d4037;
}

.retro-page.dark-theme {
    --retro-bg: #1a1a1a;
    --retro-text: #ffffff;
}

.retro-header {
    text-align: center;
    margin-bottom: 3rem;
}

.retro-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    text-transform: none;
}

.product-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}

.retro-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .retro-layout {
        grid-template-columns: 1fr;
    }
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
    gap: 3rem;
}

.tab-content.active {
    display: flex;
}

@media (max-width: 768px) {
    .tab-content.active {
        flex-direction: column;
    }
}

.builder-card {
    flex: 1;
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.builder-card label {
    display: block;
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.mini-upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.mini-upload-zone:hover {
    border-color: var(--accent-color);
    background: rgba(230, 57, 70, 0.05);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-option {
    text-align: center;
    cursor: pointer;
}

.filter-preview {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    background-image: url('assets/img/photos/hero_slide_2_1777291568402.png');
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
}

.filter-option.active .filter-preview {
    border-color: var(--accent-color);
    transform: scale(0.95);
}

.filter-option span {
    font-size: 0.75rem;
    font-weight: 600;
}

/* CSS Filters */
.filter-preview.vintage {
    filter: sepia(0.5) contrast(0.8) brightness(1.1);
}

.filter-preview.fade {
    filter: opacity(0.8) contrast(0.7) brightness(1.2);
}

.filter-preview.warm {
    filter: saturate(1.5) sepia(0.2);
}

.filter-preview.cool {
    filter: hue-rotate(180deg) saturate(0.8);
}

.filter-preview.bw {
    filter: grayscale(1) contrast(1.2);
}

.chip-group {
    display: flex;
    gap: 0.8rem;
}

.chip {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.chip.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.options-row {
    display: flex;
    gap: 2rem;
}

/* Preview Panels */
.preview-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    border-radius: 15px;
    padding: 3rem;
    min-height: 500px;
}

.retro-frame-mockup {
    background: white;
    padding: 1.5rem 1.5rem 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: rotate(-2deg);
}

.retro-photo-inner {
    width: 250px;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.retro-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

/* Photobooth Strip */
.booth-strip-mockup {
    background: white;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.booth-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 150px;
}

.booth-img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: #eee;
    border-radius: 2px;
}

.booth-caption {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    text-align: center;
    color: #333;
    padding-top: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.booth-slot {
    aspect-ratio: 1;
    background: var(--surface-color);
    border: 2px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
}

.booth-slot.active {
    border-color: var(--accent-color);
    background: rgba(230, 57, 70, 0.05);
}

.layout-selector {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.layout-btn {
    flex: 1;
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
}

.layout-btn.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.color-picker {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
}

.color-option.active {
    border-color: var(--accent-color);
}

#booth-text {
    width: 100%;
    background: #222;
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.8rem;
    border-radius: 6px;
}

/* Sidebar Order Summary */
.order-sidebar {
    position: sticky;
    top: 100px;
}

.summary-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.summary-line.sub {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.summary-info {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

/* MULTI POSTER COLLECTION */
.multi-banner {
    height: 40vh;
    min-height: 350px;
    background-image: url('https://images.unsplash.com/photo-1594904351111-a072f80b1a71?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.banner-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Chips Wrapper */
.filter-chips-wrapper {
    margin-bottom: 1.5rem;
}

.filter-chips-wrapper.secondary {
    margin-bottom: 3rem;
}

.filter-chip-group {
    display: flex;
    gap: 1rem;
    padding: 10px 0;
}

.filter-chip {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.filter-chip:hover,
.filter-chip.active {
    border-color: var(--accent-color);
    color: white;
}

.filter-chip.active {
    background: var(--accent-color);
}

/* Multi Product Grid */
.multi-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 6rem;
}

@media (max-width: 768px) {
    .multi-product-grid {
        grid-template-columns: 1fr;
    }
}

.multi-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.multi-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.multi-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.split-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.piece-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 5;
}

.hover-wall-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2rem;
}

.hover-wall-preview img {
    max-width: 80%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.multi-card:hover .hover-wall-preview {
    opacity: 1;
}

.multi-card:hover .hover-wall-preview img {
    transform: scale(1);
}

.view-on-wall-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: white;
    color: black;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.multi-card:hover .view-on-wall-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.multi-info {
    padding: 1.5rem;
}

/* Collage Kits */
.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 992px) {
    .collage-grid {
        grid-template-columns: 1fr;
    }
}

.collage-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    border: 1px solid var(--border-color);
}

@media (max-width: 576px) {
    .collage-card {
        flex-direction: column;
    }
}

.collage-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.collage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #10b981;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.7rem;
}

.collage-details {
    flex: 1.2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.collage-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.collage-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.collage-details .price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* How It Works */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

@media (max-width: 768px) {
    .how-grid {
        grid-template-columns: 1fr;
    }
}

.how-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.how-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.how-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.alignment-diagram {
    background: #0a0a0a;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    border: 1px dashed var(--border-color);
}

.diagram-panels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.diag-p {
    width: 60px;
    height: 100px;
    background: #222;
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.diag-gap {
    width: 2px;
    height: 40px;
    background: var(--accent-color);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--surface-color);
    width: 100%;
    max-width: 1000px;
    border-radius: 15px;
    overflow: hidden;
    animation: modalIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.modal-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
}

.modal-room-preview {
    background: #000;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.room-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.6;
}

.modal-poster-overlay {
    position: absolute;
    width: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-poster-overlay img {
    width: 100%;
    display: block;
}

.modal-details {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.modal-details p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* CART DRAWER */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--bg-color);
    z-index: 5001;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
    right: 0;
}

.drawer-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-header h3 {
    font-size: 1.2rem;
}

.item-count {
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: 5px;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.drawer-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.drawer-item .item-img {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: var(--surface-color);
}

.drawer-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    padding-right: 25px;
}

.item-details p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background: var(--surface-color);
}

.qty-stepper .qty-btn {
    background: transparent;
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-stepper input {
    width: 30px;
    background: transparent;
    border: none;
    color: white;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.remove-item {
    position: absolute;
    top: 0;
    right: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.remove-item:hover {
    color: var(--accent-color);
}

.drawer-footer {
    padding: 2rem;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
}

/* Shipping Progress */
.shipping-progress {
    margin-bottom: 2rem;
}

.progress-text {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.progress-bar-bg {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent-color);
    transition: width 0.5s ease;
}

.coupon-field {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.coupon-field input {
    flex: 1;
    background: #222;
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.coupon-field button {
    background: var(--border-color);
    border: none;
    color: white;
    padding: 0 1rem;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}

.drawer-summary .summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: underline;
}

/* CART PAGE */
.cart-page-content {
    padding: 4rem 0 8rem;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .cart-grid {
        grid-template-columns: 1fr;
    }
}

.cart-list-header {
    display: grid;
    grid-template-columns: 1fr 150px 100px;
    padding: 0 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.cart-item-card {
    display: grid;
    grid-template-columns: 1fr 150px 100px;
    align-items: center;
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .cart-item-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.item-main {
    display: flex;
    gap: 2rem;
}

.item-main .item-img {
    width: 100px;
    height: 140px;
    border-radius: 8px;
    overflow: hidden;
}

.item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.item-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.item-actions {
    display: flex;
    gap: 1.5rem;
}

.action-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.action-link:hover {
    color: white;
}

.action-link.remove:hover {
    color: var(--accent-color);
}

.item-qty .qty-stepper {
    width: fit-content;
}

.line-price {
    font-size: 1.2rem;
    font-weight: 800;
}

.cart-list-footer {
    padding: 2rem 0;
}

/* Order Summary Sidebar */
.order-summary-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.order-summary-card h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.summary-body {
    margin-bottom: 2rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.summary-line.discount {
    color: #10b981;
    font-weight: 700;
}

.free-text {
    color: #10b981;
    font-weight: 800;
}

.summary-total {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
}

.coupon-section {
    margin-bottom: 2.5rem;
}

.coupon-toggle {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

.coupon-content {
    display: none;
    gap: 10px;
}

.coupon-content.active {
    display: flex;
}

.trust-badges {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.badge-item i {
    color: var(--accent-color);
}

.payment-methods {
    text-align: center;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.payment-methods p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.payment-icons img {
    height: 24px;
    filter: grayscale(1) brightness(1.5);
}

/* Empty Cart */
.empty-cart-state {
    text-align: center;
    padding: 6rem 0;
}

.empty-illustration {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-poster-frame {
    position: absolute;
    width: 100px;
    height: 130px;
    border: 3px dashed var(--border-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.empty-cart-state h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.empty-cart-state p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* CHECKOUT PAGE */
.checkout-header {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.checkout-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.step-item {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.step-item.active {
    color: var(--accent-color);
}

.step-item.completed {
    color: #10b981;
}

.step-divider {
    width: 20px;
    height: 1px;
    background: var(--border-color);
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-secondary);
}

.checkout-page {
    padding: 4rem 0 8rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.checkout-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.checkout-step.active {
    display: block;
}

.checkout-section {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.sec-num {
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
}

.section-header h2 {
    font-size: 1.3rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--accent-color);
    outline: none;
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
}

/* Payment Selector */
.payment-selector {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-option {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option.active {
    border-color: var(--accent-color);
}

.opt-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
}

.opt-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    position: relative;
}

.payment-option.active .opt-radio {
    border-color: var(--accent-color);
}

.payment-option.active .opt-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
}

.opt-text {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.payment-icons-mini {
    display: flex;
    gap: 0.5rem;
}

.payment-icons-mini img {
    height: 18px;
    filter: grayscale(1) brightness(1.5);
}

.opt-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.payment-option.active .opt-content {
    max-height: 400px;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
}

.qr-mock {
    width: 150px;
    height: 150px;
    background: white;
    color: black;
    margin: 0 auto 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 800;
}

.upi-pay-box {
    text-align: center;
}

.cod-note {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Confirmation Card */
.confirmation-card {
    text-align: center;
    padding: 4rem 0;
}

.check-circle {
    width: 100px;
    height: 100px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2.5rem;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.confirmation-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.order-id {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.order-details-box {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 3rem;
    border: 1px solid var(--border-color);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.conf-actions {
    display: flex;
    gap: 1.5rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.share-whatsapp {
    background: #25d366;
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto;
    cursor: pointer;
}

/* Sidebar Checkout */
.summary-sticky {
    position: sticky;
    top: 100px;
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.checkout-item-list {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.checkout-item img {
    width: 50px;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
}

.checkout-item h4 {
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.checkout-item span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.edit-cart-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: underline;
}

/* Simple Footer */
.footer-simple {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.footer-links-simple {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links-simple a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* AUTH / LOGIN PAGE */
.auth-body {
    background: #050505;
}

.auth-container {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
    text-align: center;
    margin: 0 auto;
    min-height: calc(100vh - 300px);
    /* Vertical centering within main */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-logo {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.auth-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: left;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.auth-tabs {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.auth-tab {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.8rem 0;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    font-size: 1rem;
}

.auth-tab.active {
    color: white;
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
}

.auth-form {
    display: none;
    animation: fadeIn 0.3s ease;
}

.auth-form.active {
    display: block;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-link {
    font-size: 0.75rem;
    color: var(--accent-color);
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    position: relative;
    background: var(--surface-color);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 800;
}

.btn-google {
    width: 100%;
    background: white;
    color: black;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

.btn-google img {
    height: 20px;
}

.auth-trust {
    margin-top: 2rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ACCOUNT PAGE */
.account-page {
    padding: 4rem 0 8rem;
}

.account-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .account-layout {
        grid-template-columns: 1fr;
    }
}

.account-sidebar {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.user-brief {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 800;
}

.user-info h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.user-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.acc-nav-link {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.8rem 1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.acc-nav-link:hover,
.acc-nav-link.active {
    background: rgba(255, 255, 255, 0.05);
    color: white;
}

.acc-nav-link.active {
    color: var(--accent-color);
    background: rgba(230, 57, 70, 0.1);
}

.acc-nav-link.logout {
    color: #f87171;
}

.acc-nav-link.logout:hover {
    background: rgba(248, 113, 113, 0.1);
}

.nav-divider {
    height: 1px;
    background: var(--border-color);
    margin: 1.5rem 0;
}

.account-state {
    display: none;
    animation: fadeIn 0.4s ease;
}

.account-state.active {
    display: block;
}

.welcome-banner {
    margin-bottom: 3rem;
}

.welcome-banner h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.welcome-banner p {
    color: var(--text-secondary);
}

.stat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 576px) {
    .stat-cards {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.stat-icon.wishlist {
    background: rgba(244, 143, 177, 0.1);
    color: #f48fb1;
}

.stat-icon.address {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.order-row-card {
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
    .order-row-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.order-main {
    display: flex;
    gap: 1.5rem;
}

.order-main img {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.order-details h4 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.order-details span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.order-details p {
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.order-status {
    text-align: right;
}

@media (max-width: 768px) {
    .order-status {
        text-align: left;
        width: 100%;
    }
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.status-badge.shipped {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.status-badge.delivered {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.processing {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-badge.cancelled {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.order-actions-flex {
    display: flex;
    gap: 1rem;
}

/* Wishlist in Account */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}

.wishlist-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
}

.remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    z-index: 5;
}

.w-img {
    aspect-ratio: 3/4;
}

.w-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.w-details {
    padding: 1.5rem;
}

.w-details h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.w-details .price {
    font-weight: 800;
    color: var(--accent-color);
}

/* Timeline */
.order-timeline {
    display: flex;
    justify-content: space-between;
    margin: 4rem 0;
    position: relative;
}

.order-timeline::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.t-step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 20%;
}

.t-dot {
    width: 30px;
    height: 30px;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.t-step.completed .t-dot {
    background: #10b981;
    border-color: #10b981;
}

.t-step.active .t-dot {
    border-color: var(--accent-color);
    border-width: 4px;
}

.t-step span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.t-step small {
    font-size: 0.65rem;
    color: var(--text-secondary);
}

.order-detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .order-detail-grid {
        grid-template-columns: 1fr;
    }
}

.mini-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.mini-item img {
    width: 60px;
    height: 80px;
    border-radius: 4px;
}

.mi-details h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.mi-details p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.empty-state-box {
    text-align: center;
    padding: 6rem 0;
}

.empty-state-box i {
    color: var(--border-color);
    margin-bottom: 2rem;
}

/* REVIEWS PAGE */
.reviews-header {
    background: var(--surface-color);
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.header-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .header-grid {
        grid-template-columns: 1fr;
    }
}

.aggregate-box {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.big-rating {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.star-group.large i {
    width: 24px;
    height: 24px;
}

.star-group i.fill {
    fill: #fbbf24;
    color: #fbbf24;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #fbbf24;
}

/* Photo Wall Masonry */
.masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
}

@media (max-width: 768px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .masonry-grid {
        column-count: 1;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.masonry-item img {
    width: 100%;
    display: block;
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-item:hover .item-overlay {
    opacity: 1;
}

/* Video Reviews */
.video-row {
    display: flex;
    gap: 2rem;
    padding: 10px 0;
}

.video-card {
    width: 280px;
    flex-shrink: 0;
}

.video-thumb {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    cursor: pointer;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    backdrop-filter: blur(5px);
}

.video-card span {
    font-weight: 700;
    font-size: 0.9rem;
}

/* Written Reviews */
.reviews-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .reviews-filter-bar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
}

.filters-left {
    display: flex;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
}

.filter-btn.active {
    border-color: var(--accent-color);
    color: white;
}

.review-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.review-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.verified-badge {
    color: #10b981;
    font-weight: 800;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.review-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-body {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.review-product {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.review-product img {
    width: 50px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.review-product span {
    font-size: 0.85rem;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.helpful-btns {
    display: flex;
    gap: 1rem;
}

.helpful-btns button {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Instagram Feed */
.ig-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .ig-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.ig-header h2 span {
    color: var(--accent-color);
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .ig-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ig-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
}

.ig-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ig-item:hover img {
    transform: scale(1.1);
}

/* Lightbox Modal */
.lightbox-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
}

@media (max-width: 768px) {
    .lightbox-layout {
        grid-template-columns: 1fr;
    }
}

.lightbox-img {
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img img {
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-details {
    padding: 3rem;
}

.reviewer-meta {
    margin-bottom: 1.5rem;
}

.lb-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.lb-product {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.lb-product img {
    width: 50px;
    height: 70px;
    object-fit: cover;
}

/* HELP CENTER & POLICIES */
.help-center-page {
    padding-bottom: 8rem;
}

.help-hero {
    background: var(--surface-color);
    padding: 6rem 0;
    border-bottom: 1px solid var(--border-color);
}

.help-search-box {
    max-width: 600px;
    margin: 2rem auto;
    position: relative;
}

.help-search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.help-search-box input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1.5rem 1.2rem 4rem;
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
}

.filter-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.pill {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pill.active,
.pill:hover {
    border-color: var(--accent-color);
    color: white;
    background: rgba(230, 57, 70, 0.1);
}

/* FAQ Accordion */
.faq-section {
    padding: 4rem 0;
}

.narrow {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-color);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-item.active .faq-question {
    color: var(--accent-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    padding-top: 1.5rem;
}

/* ABOUT PAGE */
.about-hero {
    height: 60vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    filter: brightness(0.4);
}

.about-hero h1 {
    font-size: 4rem;
    text-align: center;
}

.about-hero h1 span {
    color: var(--accent-color);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-img img {
    width: 100%;
    border-radius: 20px;
}

.stats-section {
    background: var(--surface-color);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item strong {
    display: block;
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mission-section {
    background: #080808;
}

.quote-box {
    position: relative;
    padding: 4rem 0;
}

.quote-icon {
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 2rem;
}

.quote-box h2 {
    font-size: 2rem;
    font-style: italic;
    font-weight: 400;
    color: #eee;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.promise-card {
    background: var(--surface-color);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.promise-card i {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    width: 40px;
    height: 40px;
}

.promise-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.promise-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--surface-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
}

/* CONTACT PAGE */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form-box {
    background: var(--surface-color);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.info-group h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.info-item i {
    color: var(--accent-color);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.response-tag {
    display: block;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 700;
}

/* POLICY PAGE */
.policy-page {
    padding: 4rem 0 8rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 5rem;
}

.policy-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.policy-header p {
    color: var(--text-secondary);
}

.policy-section {
    margin-bottom: 4rem;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}

.policy-section p,
.policy-section li {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface-color);
}

th {
    background: rgba(255, 255, 255, 0.05);
    text-align: left;
    padding: 1.5rem;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
}

td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

tr:last-child td {
    border-bottom: none;
}

/* SEARCH PAGE */
.search-page {
    padding-bottom: 8rem;
}

.search-header {
    background: var(--surface-color);
    padding: 6rem 0 4rem;
    border-bottom: 1px solid var(--border-color);
}

.search-input-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.main-search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.main-search-bar i {
    position: absolute;
    left: 2rem;
    color: var(--text-secondary);
}

.main-search-bar input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1.5rem 4rem;
    border-radius: 50px;
    color: white;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.main-search-bar input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

.search-clear-btn {
    position: absolute;
    right: 2rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    width: 100%;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 200;
    padding: 1.5rem;
    display: none;
    animation: fadeIn 0.3s ease;
}

.search-suggestions.active {
    display: block;
}

.suggestion-group {
    margin-bottom: 2rem;
}

.suggestion-group h4 {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.suggestion-item:hover,
.suggestion-item:focus {
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.suggestion-item i {
    color: var(--text-secondary);
    width: 18px;
}

.suggestion-item span {
    font-size: 0.95rem;
}

.suggestion-item span strong {
    color: var(--accent-color);
}

.results-meta {
    max-width: 800px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.did-you-mean {
    color: var(--text-secondary);
}

.did-you-mean a {
    color: var(--accent-color);
    text-decoration: underline;
}

.search-tools {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.tools-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .tools-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sort-select {
    background: transparent;
    border: 1px solid var(--border-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 4px;
}

.related-divider {
    text-align: center;
    margin: 6rem 0 3rem;
    position: relative;
}

.related-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.related-divider span {
    position: relative;
    background: var(--bg-color);
    padding: 0 2rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* No Results State */
.no-results-section {
    padding: 10rem 0;
}

.no-results-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.no-results-content h2 span {
    color: var(--accent-color);
}

.tips-list {
    display: inline-block;
    text-align: left;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.tips-list li {
    margin-bottom: 0.8rem;
}

.tips-list li::before {
    content: '•';
    color: var(--accent-color);
    margin-right: 1rem;
}

.popular-searches h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.pill-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* MOBILE NAVIGATION SYSTEM */

/* 1. Top Mobile Navbar (Hidden on Desktop) */
@media (max-width: 768px) {
    .navbar {
        height: 56px !important;
        padding: 0;
    }

    .navbar-inner {
        padding: 0 1rem;
        height: 100%;
    }

    .desktop-only {
        display: none !important;
    }
}

/* 2. Slide-in Menu Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: var(--bg-color);
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.drawer-user {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.02);
}

.drawer-user h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.drawer-user .btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.drawer-item {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.drawer-sub-menu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: max-height 0.3s ease;
}

.drawer-item.active i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.drawer-item.active+.drawer-sub-menu {
    max-height: 500px;
}

.sub-item {
    display: block;
    padding: 0.8rem 3rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-decoration: none;
}

.drawer-footer {
    padding: 2rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.drawer-help-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.drawer-help-links a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.drawer-social {
    display: flex;
    gap: 1.5rem;
}

.drawer-social a {
    color: white;
    opacity: 0.7;
}

/* 3. Bottom Navigation Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    display: none;
    grid-template-columns: repeat(5, 1fr);
    z-index: 900;
    padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 768px) {
    .bottom-nav {
        display: grid;
    }
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    position: relative;
    gap: 0.3rem;
}

.bottom-nav-item.active {
    color: var(--accent-color);
}

.bottom-nav-item.active i {
    color: var(--accent-color);
}

.bottom-nav-item.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
}

.bottom-nav-item i {
    width: 22px;
    height: 22px;
}

.bottom-nav-item .badge {
    position: absolute;
    top: 10px;
    right: 25%;
    background: var(--accent-color);
    color: white;
    font-size: 0.6rem;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 15px;
    text-align: center;
}

/* Custom icon accent */
.bottom-nav-item.custom i {
    color: var(--accent-color);
}

/* 4. Mobile Filter Bottom Sheet */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 70%;
    background: var(--surface-color);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    z-index: 1100;
    transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.bottom-sheet.active {
    bottom: 0;
}

.sheet-handle {
    width: 40px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    margin: 1rem auto;
}

.sheet-header {
    padding: 0 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.sheet-content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

.sheet-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-color);
    display: flex;
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
}

.sheet-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sheet-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Team Section Styles */
.team-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) var(--surface-color);
}

.team-carousel::-webkit-scrollbar {
    height: 8px;
}

.team-carousel::-webkit-scrollbar-track {
    background: var(--surface-color);
    border-radius: 4px;
}

.team-carousel::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.team-carousel::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.team-card {
    flex: 0 0 250px;
    scroll-snap-align: start;
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.team-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.team-card span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.team-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem auto;
    border: 3px solid var(--border-color);
    display: block;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
    margin: 0 auto 1rem auto;
    color: var(--text-secondary);
}

/* Contact Page Styles */
.contact-info-box {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-group {
    margin-bottom: 2.5rem;
}

.info-group h3 {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-group p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

.info-item i {
    color: var(--accent-color);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    margin-bottom: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: white;
}

.btn-whatsapp i {
    width: 20px;
    height: 20px;
}

.response-tag {
    display: block;
    font-size: 0.85rem;
    color: #25D366;
    margin-top: 0.5rem;
    font-weight: 600;
}

.social-links-row {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.social-btn:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: rgba(229, 9, 20, 0.1);
}

.social-btn i {
    width: 20px;
    height: 20px;
}


/* Navbar Responsiveness & Fixes */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 35px !important;
        transform: scale(1) !important;
    }

    .nav-left,
    .nav-right {
        gap: 0.5rem !important;
    }

    .nav-icon-btn {
        padding: 0.2rem !important;
    }

    .navbar-inner {
        padding: 0 0.5rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

.nav-icon-btn {
    min-width: 24px;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon-btn i,
.nav-icon-btn svg {
    color: #ffffff !important;
    stroke: #ffffff !important;
    width: 24px;
    height: 24px;
}

/* ==========================================
   RESPONSIVE OVERRIDES & MEDIA QUERIES
   ========================================== */

/* Tablet & Smaller (1024px) */
@media (max-width: 1024px) {
    :root {
        --nav-height: 80px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    /* Hide desktop links */
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
    }

    .nav-logo-img {
        height: 50px !important;
        transform: scale(2) !important;
        transform-origin: left center !important;
    }

    .mega-menu {
        display: none !important;
    }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
    .nav-logo-img {
        height: 45px !important;
        width: auto !important;
        transform: scale(2.8) !important;
        transform-origin: left center !important;
        margin-left: 20px !important;
        object-fit: contain !important;
    }

    .navbar {
        height: 70px !important;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .slide-content h1 {
        font-size: 2.2rem;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .horizontal-scroll-container {
        gap: 1rem;
        padding-bottom: 0.5rem;
    }

    .category-item {
        width: 130px;
    }

    .circle-img {
        width: 120px;
        height: 120px;
    }

    .product-listing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .product-img {
        height: 260px !important;
    }

    .product-info {
        padding: 1rem;
    }

    .product-info h3 {
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col.about {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Mobile Small (480px) */
@media (max-width: 480px) {
    .nav-logo-img {
        transform: scale(3.2) !important;
        margin-left: 15px !important;
    }

    .navbar {
        height: 65px !important;
    }

    .slide-content h1 {
        font-size: 1.8rem;
    }

    .nav-right {
        gap: 1rem;
        min-width: auto;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.8rem;
    }

    .product-img {
        height: 220px !important;
    }

    .announcement-bar {
        font-size: 0.65rem;
    }
}

/* Mobile Drawer Styling */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 300px;
    height: 100vh;
    background: #0a0a0a;
    z-index: 2000;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
}

.mobile-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.mobile-nav-links a {
    font-family: 'Outfit';
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(5px);
}

/* ==========================================
   COLLECTION PAGE RESPONSIVENESS
   ========================================== */

@media (max-width: 1024px) {
    .collection-layout {
        display: block !important;
    }

    .filters-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #0f0f0f;
        z-index: 2500;
        padding: 2rem;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .filters-sidebar.active {
        left: 0;
    }

    .sidebar-header.mobile-only {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #222;
    }

    .sidebar-header h3 {
        font-family: 'Outfit';
        font-size: 1.5rem;
        color: var(--primary-blue);
    }

    #close-filters {
        background: none;
        border: none;
        color: #fff;
        cursor: pointer;
    }

    .collection-toolbar {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start !important;
    }

    .toolbar-actions {
        width: 100%;
        justify-content: space-between !important;
    }

    .mobile-filter-trigger {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        background: #1a1a1a;
        color: white;
        border: 1px solid #333;
        padding: 0.6rem 1.2rem;
        border-radius: 5px;
        font-weight: 600;
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    .collection-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .page-title {
        font-size: 1.8rem !important;
    }

    .breadcrumb {
        font-size: 0.75rem;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .product-listing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
}

/* --- ABOUT PAGE & GENERAL LAYOUT --- */
.container.narrow {
    max-width: 800px;
    margin: 0 auto;
}

.section {
    padding: 2.5rem 0;
}

.about-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.about-hero h1 {
    font-size: 4rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 2;
    text-align: center;
}

.mission-headline {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-img img {
    width: 100%;
    border-radius: 12px;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.promise-card {
    background: var(--surface-color);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
}

.promise-card i {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.eyebrow {
    display: block;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

/* --- ABOUT PAGE RESPONSIVE --- */
@media (max-width: 992px) {
    .about-hero {
        height: 300px;
    }

    .about-hero h1 {
        font-size: 3rem;
    }

    .story-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0 !important;
    }

    .container {
        padding: 0 1.5rem !important;
    }

    .about-hero {
        height: 250px;
    }

    .about-hero h1 {
        font-size: 2.2rem !important;
    }

    .mission-headline {
        font-size: 1.6rem !important;
        line-height: 1.3 !important;
    }

    .mission-text {
        font-size: 1rem !important;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story-img {
        order: -1;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }
}

/* Auth Mobile Fix */
@media (max-width: 480px) {
    .auth-card {
        padding: 1.5rem !important;
    }

    .auth-container {
        padding: 1rem !important;
    }
}

/* --- CONTACT PAGE STYLES --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-box {
    background: var(--surface-color);
    padding: 3.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 2rem;
    }
}

.contact-info-box {
    padding: 1rem 0;
}

.info-group {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--accent-color);
    width: 20px;
    height: 20px;
}

.social-links-row {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    color: white;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.08);
}

/* --- REVIEW LIGHTBOX --- */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 1.5rem;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    position: relative;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--accent-color);
    transform: rotate(90deg);
}

.lightbox-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.lightbox-img img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.lightbox-details {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lightbox-details .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.lightbox-details .stars i {
    width: 20px;
    height: 20px;
    color: #f59e0b;
    fill: #f59e0b;
}

.lightbox-details p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.reviewer-name {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .lightbox-inner {
        grid-template-columns: 1fr;
    }

    .lightbox-img img {
        max-height: 300px;
    }

    .lightbox-details {
        padding: 2rem;
    }

    .lightbox-details p {
        font-size: 1rem;
    }
}

/* --- MOBILE RESPONSIVENESS OVERHAUL --- */
@media (max-width: 768px) {
    .navbar-inner {
        padding: 0 1rem !important;
    }

    .nav-icons {
        gap: 15px !important;
    }

    .nav-icon-btn {
        width: 38px !important;
        height: 38px !important;
    }

    .logo img {
        height: 28px !important;
    }

    /* Product Page Specifics */
    .product-detail-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        padding: 0 1.2rem !important;
    }

    .product-info h1 {
        font-size: 1.8rem !important;
        margin-top: 0.5rem !important;
        line-height: 1.2 !important;
    }

    .product-price {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .size-options {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .btn-buy,
    .btn-cart {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
}

/* --- FAQ ACCORDION --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    gap: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.faq-icon {
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-chevron {
    transition: transform 0.4s ease;
    opacity: 0.5;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 1.5rem 2rem 4.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.5rem 1.2rem;
    }
}

/* --- DUAL MARQUEE HERO SECTION --- */
.marquee-row {
    gap: 15px;
}

.marquee-item {
    flex: 0 0 auto;
    width: 185px;
    height: 220px;
    border-radius: 15px;
    overflow: hidden;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.marquee-item:hover img {
    transform: scale(1.05);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-185px * 6 - 15px * 6));
    }

    /* Width * num items + gap * num items */
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-185px * 6 - 15px * 6));
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .marquee-item {
        width: 150px;
        height: 180px;
    }

    .hero-overlay-content {
        padding: 2rem !important;
        width: 90%;
    }
}

/* --- CUSTOM HERO BANNER (DESIGN YOUR OWN) --- */
.custom-hero-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.custom-hero-banner .custom-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.custom-hero-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.custom-hero-banner .banner-content {
    position: relative;
    z-index: 3;
    text-align: left;
    padding: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-hero-banner h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.custom-hero-banner p {
    color: #ccc;
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.5;
}

.custom-hero-banner .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .custom-hero-banner {
        min-height: auto;
        padding: 4rem 0;
        justify-content: center;
    }

    .custom-hero-banner .banner-overlay {
        background: rgba(0, 0, 0, 0.8);
        /* Darker on mobile for text readability */
    }

    .custom-hero-banner .banner-content {
        text-align: center;
        padding: 2rem;
    }

    .custom-hero-banner p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .hero-overlay-content h1 {
        font-size: 2rem !important;
    }

    @keyframes scroll-left {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-150px * 6 - 15px * 6));
        }
    }

    @keyframes scroll-right {
        0% {
            transform: translateX(calc(-150px * 6 - 15px * 6));
        }

        100% {
            transform: translateX(0);
        }
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE SYSTEM
   Klaiz Designs — All Breakpoints
   ============================================ */

/* --- TABLET (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        height: 75vh;
    }

    .slide-content h1 {
        font-size: 3rem;
    }

    .section {
        padding: 4rem 0;
    }

    .section-header {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .product-img {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

/* --- MOBILE LARGE (max-width: 768px) --- */
@media (max-width: 768px) {

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Hero */
    .hero {
        height: 60vh;
        min-height: 380px;
    }

    .slide-content {
        max-width: 90%;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .slide-overlay {
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
        align-items: flex-end;
        padding-bottom: 4rem;
    }

    /* Sections */
    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.25rem;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .view-all {
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Product cards on homepage (horizontal scroll) */
    .product-grid .product-card {
        flex: 0 0 200px;
    }

    .product-img {
        height: 240px;
    }

    .product-info {
        padding: 0.8rem;
    }

    .product-info h3 {
        font-size: 0.82rem;
    }

    .price-sale {
        font-size: 0.95rem;
    }

    /* Category circles */
    .category-item {
        width: 110px;
    }

    .circle-img {
        width: 100px;
        height: 100px;
    }

    .category-item span {
        font-size: 0.72rem;
    }

    /* Why Choose Us cards — already auto-fit but ensure padding */
    .why-choose-us-section .container>div:last-child>div {
        padding: 1.5rem 1rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 0;
        padding-bottom: 80px;
        /* clearance for bottom-nav */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col.about {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-col a,
    .footer-col p {
        margin-bottom: 0.7rem;
    }

    /* Hide slider arrows on mobile */
    .slider-prev,
    .slider-next {
        display: none;
    }

    .slider-dots {
        gap: 6px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
}

/* --- MOBILE SMALL (max-width: 576px) --- */
@media (max-width: 576px) {

    /* Container */
    .container {
        padding: 0 0.9rem;
    }

    /* Hero tighter */
    .hero {
        height: 55vh;
        min-height: 320px;
    }

    .slide-content h1 {
        font-size: 1.7rem;
    }

    /* Sections */
    .section {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 1.25rem;
    }

    /* Product cards */
    .product-grid .product-card {
        flex: 0 0 170px;
    }

    .product-img {
        height: 210px;
    }

    /* Why Choose Us — 2 columns on medium mobile */
    .why-choose-us-section>.container>div:last-child {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    .why-choose-us-section>.container>div:last-child>div {
        padding: 1.2rem 0.8rem !important;
    }

    .why-choose-us-section>.container>div:last-child>div i {
        width: 36px !important;
        height: 36px !important;
    }

    .why-choose-us-section>.container>div:last-child>div h4 {
        font-size: 0.95rem !important;
    }

    .why-choose-us-section>.container>div:last-child>div p {
        font-size: 0.8rem !important;
    }

    /* Section header */
    .section-header {
        margin-bottom: 1.2rem;
        gap: 0.4rem;
    }

    .section-title {
        font-size: 1.1rem;
    }

    /* Horizontal scroll gap */
    .horizontal-scroll-container {
        gap: 0.8rem;
    }

    /* Announcement bar */
    .announcement-bar {
        font-size: 0.68rem;
        padding: 8px 0;
    }

    /* Buttons */
    .btn {
        padding: 0.75rem 1.4rem;
        font-size: 0.78rem;
    }

    /* Page title */
    .page-title {
        font-size: 1.8rem;
    }
}

/* --- MOBILE EXTRA SMALL (max-width: 390px) --- */
@media (max-width: 390px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero {
        min-height: 280px;
    }

    .slide-content h1 {
        font-size: 1.45rem;
    }

    .product-grid .product-card {
        flex: 0 0 155px;
    }

    .product-img {
        height: 190px;
    }

    /* Why Choose Us — 1 column on very small phones */
    .why-choose-us-section>.container>div:last-child {
        grid-template-columns: 1fr !important;
    }

    .section-title {
        font-size: 1.1rem;
    }

    .page-title {
        font-size: 1.5rem;
    }
}


/* --- ENHANCED CAROUSEL EFFECT (Anti-Congestion) --- */
.horizontal-scroll-container {
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1rem;
    -webkit-overflow-scrolling: touch;
}

/* Force products to stay wide and not squish */
.product-grid .product-card {
    flex: 0 0 320px !important;
    scroll-snap-align: start;
    max-width: 85vw;
}

/* Responsive Scaling for Carousel */
@media (max-width: 1024px) {
    .product-grid .product-card {
        flex: 0 0 280px !important;
    }
}

@media (max-width: 768px) {
    .product-grid .product-card {
        flex: 0 0 220px !important;
    }

    .product-img {
        height: 280px;
        /* Keep image proportional */
    }

    .horizontal-scroll-container {
        scroll-padding-left: 0.5rem;
    }
}

@media (max-width: 480px) {
    .product-grid .product-card {
        flex: 0 0 190px !important;
        /* Less congested than previous 155px */
    }

    .product-img {
        height: 240px;
    }
}

/* ── Reduce section spacing on mobile (anti-gap fix) ── */
@media (max-width: 768px) {
    .section {
        padding: 2rem 0 !important;
    }

    .section-header {
        margin-bottom: 1.2rem !important;
    }

    .why-choose-us-section {
        padding: 2rem 0 !important;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1.5rem 0 !important;
    }

    .section-header {
        margin-bottom: 1rem !important;
    }
}



/* List View Toggle CSS */
.product-grid.list-view-active {
    grid-template-columns: 1fr !important;
}

.product-grid.list-view-active .product-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-height: 250px;
}

.product-grid.list-view-active .product-img {
    width: 200px;
    height: 250px;
    flex-shrink: 0;
    padding-bottom: 0;
}

.product-grid.list-view-active .product-info {
    text-align: left;
    padding: 2rem;
    flex: 1;
}

@media (max-width: 768px) {
    .product-grid.list-view-active .product-card {
        flex-direction: column;
        max-height: none;
    }

    .product-grid.list-view-active .product-img {
        width: 100%;
        height: auto;
    }

    .product-grid.list-view-active .product-info {
        text-align: center;
        padding: 1rem;
    }
}
