/* 
   KIDS FASHION 2026 - ULTIMATE LUXURY EDITION
   Theme: Pure Clean & Minimalist
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    /* Brand Colors */
    --primary-gold: #c8a45d;
    --dark-brown: #6b4e3d;
    --accent-gold: #7a6200;
    --bg-cream: #f9f1e0;
    --card-bg: #ffffff;
    --text-main: #6b4e3d;
    --text-light: rgba(107, 78, 61, 0.8);
    --gold-rgb: 200, 164, 93;

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, #c8a45d, #7a6200);
    --overlay-gradient: linear-gradient(to top, rgba(107, 78, 61, 0.9), transparent);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(107, 78, 61, 0.08);
    /* Subtle shadow */
    --shadow-md: 0 10px 30px rgba(107, 78, 61, 0.12);
    /* Elevated shadow */
    --shadow-hover: 0 15px 40px rgba(107, 78, 61, 0.18);
    /* Strong hover shadow */

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.4s var(--ease-smooth);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark-brown);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

/* Smooth Scroll (Lenis) */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

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

.section-padding {
    padding: 100px 0;
}

.text-gold {
    color: var(--primary-gold);
}

.text-brown {
    color: var(--dark-brown);
}

.d-block {
    display: block;
}

/* HERO SECTION - CAROUSEL (NEW) */
/* HERO SECTION - MODERN GRADIENT CAROUSEL */
/* HERO SECTION - MODERN GRADIENT CAROUSEL */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 800px;
    /* Full body ke liye */
    max-height: none;
    /* Restriction remove */
    background-color: transparent;
    overflow: visible !important;
    /* Ensure nothing clips the tall image */
    padding-top: 0;
}

.hero-swiper {
    width: 100%;
    height: 100%;
    overflow: visible !important;
    /* Fix clipping of head/top */
}

/* Ensure ALL internal wrappers allow overflow */
.swiper-wrapper {
    overflow: visible !important;
}

.hero-bg-wrapper {
    position: absolute;
    bottom: 0;
    /* Align to bottom instead of using top: -15% */
    top: auto;
    right: 0;
    width: 60%;
    height: 100%;
    /* Use full container height */
    z-index: 1;
    display: flex;
    align-items: flex-end;
    /* Force items to sit at bottom */
    pointer-events: none;
    /* Let clicks pass through to arrows/content if overlap */
}

.hero-bg-img {
    width: auto;
    height: 135%;
    /* Grow upwards beyond container */
    max-width: none;
    max-height: none;
    object-fit: contain;
    object-position: bottom center;
    /* Anchor feet to bottom */
}

.hero-slide {
    overflow: visible;
}

.hero-overlay {
    display: none;
}

/* Content Layout */
.hero-content-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.hero-text-content {
    max-width: 45%;
    /* Relative width to never hit the 55% image */
    min-width: 400px;
    padding: 30px;
    color: var(--dark-brown);
}

.season-tag {
    display: inline-block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--dark-brown);
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 25px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(107, 78, 61, 0.2);
}

.hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    /* Slightly smaller for safety */
    line-height: 1.1;
    color: var(--dark-brown);
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: rgba(107, 78, 61, 0.9);
    /* Dark Text */
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 550px;
    font-weight: 400;
}

/* Buttons */
.hero-btn-group {
    display: flex;
    gap: 20px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #000;
    padding: 18px 45px;
    border-radius: 0;
    /* Square/Sharp buttons for professional look */
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border: 1px solid var(--dark-brown);
    /* Dark border for visibility */
}

.btn-hero-primary:hover {
    background: var(--dark-brown);
    /* Fill with dark brown on hover */
    color: #fff;
    /* White text on dark button */
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(107, 78, 61, 0.3);
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

/* Navigation & Pagination Customization */
.hero-pagination {
    position: absolute;
    bottom: 25px !important;
    left: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 1000 !important;
    /* Ensure it's on top of EVERYTHING */
    transform: none !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--dark-brown);
    opacity: 1;
    /* Full opacity */
    margin: 0 !important;
    border-radius: 50%;
    border: 2px solid #fff;
    /* High contrast border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary-gold);
    /* Gold active state */
    transform: scale(1.3);
    border-color: var(--primary-gold);
}

.hero-next,
.hero-prev {
    color: #fff;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.hero-next:after,
.hero-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hero-next:hover,
.hero-prev:hover {
    background: #fff;
    color: var(--dark-brown);
    transform: scale(1.1);
}

/* Large Screen Fixes for Image Clipping */
@media (min-width: 768px) {

    .hero-carousel-wrapper,
    .hero-swiper,
    .swiper-wrapper {
        overflow: visible !important;
    }

    .hero-bg-wrapper {
        height: 100% !important;
        /* Fit strictly within container so no head cut */
        top: auto;
        bottom: 0;
    }

    .hero-bg-img {
        height: 100% !important;
        /* Match wrapper height */
        max-height: none !important;
        object-fit: contain !important;
        object-position: bottom center !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-carousel-wrapper {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-carousel-wrapper {
        height: auto;
        min-height: 60vh;
        display: flex;
        flex-direction: column;
    }

    .hero-slide {
        flex-direction: column;
        padding-top: 0;
    }

    /* Reset Split Layout for Mobile */
    .hero-bg-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        /* Allow full image height */
        min-height: 50vh;
        /* Maintain some presence */
        /* Half screen for image */
        right: auto;
        left: 0;
        align-items: flex-end;
        /* Show feet/bottom of image */
        margin-bottom: -20px;
        /* Slight overlap */
    }

    .hero-bg-img {
        width: 100%;
        height: auto !important;
        /* Allow natural height */
        max-height: 75vh;
        /* Prevent it from being too tall */
        object-fit: contain;
        object-position: bottom center;
    }

    .hero-content-container {
        position: relative;
        width: 100%;
        height: auto;
        padding: 20px 20px 60px 20px;
        align-items: flex-start;
        background: transparent;
    }

    .hero-text-content {
        padding: 0;
        text-align: center;
        max-width: 100%;
        min-width: 0;
        /* Fix overflow issue */
        margin: 0 auto;
        color: var(--dark-brown);
        /* Dark text on mobile if background is light gradient */
    }

    .hero-heading {
        font-size: 2.8rem;
        margin-bottom: 10px;
        color: var(--dark-brown);
        word-wrap: break-word;
        /* Ensure text wraps */
    }

    @media (max-width: 480px) {
        .hero-heading {
            font-size: 2.2rem;
        }
    }

    .season-tag {
        color: var(--text-light);
        background: rgba(255, 255, 255, 0.5);
        border: 1px solid rgba(139, 115, 85, 0.2);
    }

    .hero-description {
        color: var(--text-main);
        font-weight: 500;
        margin-bottom: 20px;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .btn-hero-primary {
        background: var(--dark-brown);
        color: #fff;
        border: none;
        width: auto;
    }

    .hero-next,
    .hero-prev {
        display: none;
    }
}

.category-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
    margin-top: 0;
}

/* Decorative Elements */
.decor-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    top: -40px;
    left: -60px;
    z-index: -1;
}

.decor-icon {
    position: absolute;
    font-size: 60px;
    color: rgba(255, 255, 210, 0.8);
    top: 0;
    right: 20px;
    transform: rotate(15deg);
}



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

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 60% 30% 70% 40% / 40% 60% 30% 60%;
    }

    100% {
        border-radius: 40% 60% 60% 40% / 60% 30% 70% 40%;
    }
}

/* Responsive */


/* CATEGORY SECTION */
.category-section {
    background: #fff;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.02);
    /* Seamless transition from hero */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    /* Tighter tracking for modern look */
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* CATEGORY GRID LAYOUT */
.category-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(200, 164, 93, 0.15);
    /* Subtle border */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(107, 78, 61, 0.12);
    border-color: var(--primary-gold);
}

/* Image Area - Fixed Aspect Ratio 4:5 */
.category-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 125%;
    /* 4:5 Aspect Ratio */
    background: #f8f8f8;
    overflow: hidden;
}

.category-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures full fill without distortion */
    object-position: top center;
    /* Focus on faces/top of product */
    transition: transform 0.6s ease;
}

.category-card:hover .category-img {
    transform: scale(1.08);
}

/* Info Area */
.category-info {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    /* uniform height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.category-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.category-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.category-card:hover .category-link::after {
    width: 100%;
}

/* Responsive Grid */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-container {
        padding: 0 20px;
    }
}

/* TRENDING ITEMS SECTION (CAROUSEL) */
.trending-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Hide overflow from carousel */
}

.trending-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Decorative Header */
.trending-header {
    text-align: center;
    margin-bottom: 60px;
}

.trending-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trending-title .line {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--primary-gold);
}

.trending-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #888;
    margin-top: 10px;
    font-size: 1rem;
}

/* Carousel Layout */
.trending-carousel {
    padding: 20px 5px 60px;
    /* Bottom padding for shadow/hover space */
    position: static;
    /* Static relative to container for arrow positioning */
}

/* Card Updates for Carousel */
.product-card {
    height: 100%;
    /* Ensure equal height slides */
}

.product-rating {
    color: #f1c40f;
    /* Star color */
    font-size: 14px;
    margin: 5px 0 8px;
}

/* Badges */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    /* Top-Left Alignment */
    right: auto;
    /* Reset right alignment */
    z-index: 10;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
    /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    /* Subtle lift */
    display: inline-block;
    line-height: 1;
}

.sale-badge {
    background: #D32F2F;
    /* Bold Red */
}

.hot-badge {
    background: var(--primary-gold);
}

.new-badge {
    background: #1976D2;
    /* Blue */
}

/* Navigation Arrows */
.trending-next,
.trending-prev {
    color: var(--dark-brown);
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trending-next::after,
.trending-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.trending-next:hover,
.trending-prev:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: scale(1.1);
}

/* Load More Button */
.load-more-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--dark-brown);
    color: var(--dark-brown);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s ease;
    text-decoration: none;
}

.load-more-btn:hover {
    background: var(--dark-brown);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(62, 39, 35, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trending-title {
        font-size: 2rem;
    }

    .trending-title .line {
        width: 40px;
    }

    .trending-container {
        padding: 0 20px;
    }
}

/* Product Card Design */
.product-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
    position: relative;
}

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

/* Image Section */
.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 133%;
    /* 3:4 Aspect Ratio */
    background: #f9f9f9;
    overflow: hidden;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
    /* Smooth zoom */
}

/* Quick View / Add to Cart Overlay (Optional enhancement) */
.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
    border-top: 1px solid #eee;
}

.product-card:hover .product-overlay {
    transform: translateY(0);
}

.btn-quick-view {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-brown);
    text-transform: uppercase;
}

/* Info Section */
.product-details {
    padding: 20px;
    text-align: center;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid #f9f9f9;
}

.product-category {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
    margin-bottom: 8px;
    height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #C17817;
    /* Golden Brown */
    margin-top: auto;
}

/* Badges */


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

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

    .featured-container {
        padding: 0 20px;
    }

    .featured-title {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
}

/* STATS SECTION */
.stats-section {
    background: var(--bg-cream);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    /* Softer corners */
    text-align: center;
    border: 1px solid rgba(200, 164, 93, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
    opacity: 0;
    /* Animated */
}

.stat-card:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-icon {
    font-size: 36px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    /* More space */
    background: rgba(200, 164, 93, 0.1);
    /* Circle bg */
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    background: var(--primary-gold);
    color: #fff;
    transform: rotateY(180deg);
    /* Playful interaction */
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
    line-height: 1;
    display: inline-block;
    transition: transform 0.3s ease;
}

.stat-label {
    font-weight: 500;
    color: var(--dark-brown);
    font-size: 1.1rem;
}

/* NEWSLETTER SECTION */
.newsletter-section {
    background-color: #f9f1e0;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #6b4e3d;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.newsletter-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
    margin: 10px auto 0;
}

.newsletter-desc {
    font-size: 1rem;
    color: rgba(107, 78, 61, 0.7);
    margin-bottom: 40px;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    background: #ffffff;
    border: 1px solid rgba(200, 164, 93, 0.3);
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(107, 78, 61, 0.05);
    max-width: 600px;
    margin: 0 auto;
    gap: 10px;
    transition: box-shadow 0.3s ease;
}

.newsletter-form:focus-within {
    box-shadow: 0 15px 50px rgba(200, 164, 93, 0.15);
    /* Glow on focus */
    border-color: var(--primary-gold);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    color: #6b4e3d;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(107, 78, 61, 0.5);
}

.newsletter-submit {
    background: var(--primary-gold);
    color: #ffffff;
    padding: 15px 40px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-submit:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 164, 93, 0.3);
}

/* =========================================
   PROMOTIONAL BANNER SECTION
   ========================================= */
.promo-banner-section {
    padding: 100px 0;
    background: #fff;
}

.promo-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.promo-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fdfbf7;
    /* Slight cream bg for contrast */
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Left Side - Image Collage */
.promo-collage {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 15px;
    padding: 20px;
}

.promo-img-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 12px;
    transition: transform 0.5s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.promo-img-item:nth-child(1) {
    grid-row: 1 / 3;
    height: 100%;
}



.promo-content-wrapper:hover .promo-img-item {
    transform: scale(1.02);
}

/* Right Side - Text */
.promo-text-content {
    flex: 1;
    padding: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.promo-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 15px;
    font-weight: 600;
}

.promo-heading {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 10px;
    line-height: 1.1;
}

.promo-offer {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: #D32F2F;
    /* Accent Red */
    margin-bottom: 10px;
}

.promo-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 35px;
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--dark-brown);
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.3);
}

.promo-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(200, 164, 93, 0.4);
    color: #fff;
}

/* =========================================
   BEST SELLER SECTION
   ========================================= */
.best-seller-section {
    padding: 50px 0 100px;
    background: #fff;
}

.best-seller-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header with Lines */
.best-seller-header {
    text-align: center;
    margin-bottom: 60px;
}

.best-seller-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    white-space: nowrap;
}

.best-seller-title::before,
.best-seller-title::after {
    content: '';
    display: block;
    width: 80px;
    /* Line length */
    height: 2px;
    background: var(--primary-gold);
}

.best-seller-subtitle {
    margin-top: 10px;
    color: #888;
    font-size: 1rem;
}

/* Grid Layout */
.best-seller-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Best Seller Card Specifics */
.bs-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
}

.bs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.bs-image-wrapper {
    position: relative;
    padding-top: 133%;
    /* 3:4 Aspect Portrait */
    overflow: hidden;
    background: #f9f9f9;
}

.bs-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.bs-card:hover .bs-img {
    transform: scale(1.08);
}

/* Color Circles */
.color-options {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.color-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.color-circle:hover {
    transform: scale(1.2);
    border-color: #333;
}

.c-pink {
    background: #FFC1CC;
}

.c-blue {
    background: #A2D2FF;
}

.c-green {
    background: #CDEAC0;
}

.c-yellow {
    background: #FFF4BD;
}

/* Pricing */
.bs-price-block {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.bs-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.bs-new-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-brown);
}

/* Hover Actions */
.bs-hover-actions {
    position: absolute;
    bottom: -60px; /* Hide initially */
    left: 0;
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    transition: all 0.4s var(--ease-smooth);
    display: flex;
    justify-content: center;
    z-index: 5;
}

.bs-card:hover .bs-hover-actions {
    bottom: 0;
}

.bs-quick-add {
    background: var(--dark-brown);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.bs-quick-add:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 164, 93, 0.3);
}

.bs-quick-add i {
    font-size: 14px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .promo-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .promo-collage {
        width: 100%;
        grid-template-rows: repeat(2, 200px);
    }

    .promo-text-content {
        padding: 40px 20px;
    }

    .best-seller-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .promo-heading {
        font-size: 2.5rem;
    }

    .promo-offer {
        font-size: 3rem;
    }

    .best-seller-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Handle odd number of items for Best Seller Grid */
    .bs-card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .best-seller-title {
        font-size: 1.6rem;
        gap: 10px;
        white-space: normal;
        /* Fix overflow: allow text to wrap */
        flex-wrap: wrap;
        /* Allow flex items to wrap */
        text-align: center;
        line-height: 1.3;
    }

    .best-seller-title::before,
    .best-seller-title::after {
        width: 25px;
        /* Smaller lines on mobile */
        flex-shrink: 0;
    }

    /* Stats Section Responsive */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 30px 20px;
        margin-bottom: 10px;
    }

    /* Mobile Promo Gallery Fixes */
    .promo-collage {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 10px 0;
        grid-template-columns: 1fr;
    }

    .promo-img-item {
        width: 100%;
        height: 300px !important;
        object-fit: cover;
        object-position: top center;
        border-radius: 12px;
    }

    /* Reset the tall image override */
    .promo-img-item:nth-child(1) {
        grid-row: auto;
        height: 300px !important;
    }

    /* Smaller product text on mobile to fit 2 columns nicely */
    .product-name {
        font-size: 0.9rem !important;
        /* Smaller title */
        line-height: 1.2 !important;
    }

    .bs-new-price,
    .product-price {
        font-size: 0.95rem !important;
        /* Smaller price */
    }

    .product-badge {
        font-size: 9px !important;
        padding: 3px 6px !important;
        top: 8px !important;
        left: 8px !important;
    }
}

/* Product Image Fixes */
.product-image-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px;
    background: #f9f1e0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    background: #f9f1e0;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    max-height: 400px;
}

/* --- PRODUCT CARD STYLES --- */
.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(200, 164, 93, 0.1);
    /* Subtle gold border */
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    /* Added consistent shadow */
}

/* Enhanced Hover for Product Card */
.product-card:hover {
    transform: translateY(-8px);
    /* Deeper lift */
    box-shadow: var(--shadow-hover);
    border-color: rgba(200, 164, 93, 0.5);
    /* Stronger border on hover */
}

.product-details {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    flex-grow: 1;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    /* Slightly larger */
    font-weight: 600;
    color: var(--dark-brown);
    margin: 0;
    line-height: 1.35;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* Standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}



/* Text color change on card hover */
.product-card:hover .product-name {
    color: var(--primary-gold);
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    /* Bolder price */
    color: var(--primary-gold);
    margin-top: auto;
}

/* --- SWIPER CAROUSEL CUSTOMIZATION --- */

.featured-carousel {
    padding-bottom: 60px !important;
    position: relative;
    overflow: hidden;
}

.swiper-pagination {
    position: absolute;
    bottom: 10px !important;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 2px solid var(--primary-gold);
    opacity: 0.5;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--primary-gold);
    opacity: 1;
    transform: scale(1.1);
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-gold);
    color: #fff;
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

/* Hide Quick Add on Mobile */
@media (max-width: 768px) {
    .bs-quick-add, 
    .bs-hover-actions {
        display: none !important;
    }
}