/* --- LUXURY BASE STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
    font-family: 'Poppins', sans-serif; 
    color: #1a1a1a; 
    line-height: 1.6; 
    background-color: #fff; 
    overflow-x: hidden; 
    width: 100%; /* Fixes the reload gap issue */
}

/* --- STEADY HEADER (Glassmorphism) --- */
.header { 
    position: fixed; 
    top: 0; 
    width: 100% !important; 
    left: 0 !important;
    right: 0 !important;
    z-index: 2000; 
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent */
    backdrop-filter: blur(12px); /* Premium blur effect */
    -webkit-backdrop-filter: blur(12px);
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 12px 5%; 
    border-bottom: 1px solid rgba(0,0,0,0.05); 
}

/* Header Alignment Logic */
.nav-links { display: flex; flex: 1; gap: 35px; }
.left-nav { justify-content: flex-start; }
.right-nav { justify-content: flex-end; }

.nav-links a {
    font-size: 15px; 
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    transition: color 0.3s ease;
}
.nav-links a:hover { color: #d4af37; }

.logo { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 12px; 
    text-decoration: none; 
    color: #000; 
    flex: 1; 
    text-align: center; 
}
.logo img { height: 55px; width: auto; }
.logo span { 
    font-family: 'Playfair Display', serif; 
    font-size: 22px; 
    font-weight: 700; 
    letter-spacing: 3px; 
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* --- STEADY PRODUCT CARDS --- */
.container-spaced { padding: 120px 5% 80px; }
.section-title { 
    font-family: 'Playfair Display', serif; 
    font-size: 36px; 
    text-align: center; 
    margin-bottom: 50px; 
    letter-spacing: 2px; 
}

.product-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 30px; 
}

.product-card { 
    background: #fff; 
    text-align: center;
    transition: box-shadow 0.4s ease; /* No translateY move */
    padding-bottom: 20px;
    border-radius: 4px;
    position: relative; /* Added to anchor the new badges correctly */
}

/* Subtle Shadow instead of movement */
.product-card:hover { 
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.card-img-container { 
    display: block; 
    overflow: hidden; 
    margin-bottom: 15px; 
    background: #fdfdfd;
}

.card-img-container img { 
    width: 100%; 
    height: 380px; 
    object-fit: cover; 
    transition: transform 0.8s ease-in-out; /* Slow, graceful zoom */
}

/* Slow, minimal zoom */
.product-card:hover .card-img-container img { 
    transform: scale(1.04); 
}

/* --- BUTTONS & LABELS --- */
.wa-buy-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: 1px solid #1a1a1a;
}
.wa-buy-btn:hover { background: #d4af37; border-color: #d4af37; color: #fff; }

.sku-label { font-size: 10px; color: #aaa; letter-spacing: 1.5px; margin-bottom: 5px; text-transform: uppercase; }
.price-label { color: #d4af37; font-weight: 600; font-size: 16px; margin: 5px 0; }

/* --- PREMIUM FOOTER BLOCK --- */
.main-footer {
    background-color: #f4f4f4 !important; /* Slightly deeper grey for clear block visibility */
    border-top: 1px solid #e0e0e0;
    padding: 80px 0 0 0;
    margin-top: 100px; /* Space from the product grid */
    width: 100%;
    display: block; /* Ensures it acts as a container */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 60px;
    align-items: start;
}

.footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-transform: uppercase;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    max-width: 340px;
}

.footer-column h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.footer-column a {
    display: block;
    text-decoration: none;
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-column a:not(.social-icons a):hover {
    color: #d4af37;
    padding-left: 5px; /* Subtle high-end interactive feel */
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block; /* Essential for translateY to work smoothly */
    font-size: 20px;
    color: #1a1a1a;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    color: #d4af37;
    padding-left: 0 !important; /* Forces the side-shift to stop here */
}

.inquiry-text {
    font-size: 13px;
    color: #888;
}

.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    background-color: #1a1a1a; 
    text-align: center;
}

.footer-bottom p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    margin: 0;
}

/* --- LIGHTBOX --- */
.lightbox { 
    display: none; position: fixed; z-index: 9999; top: 0; left: 0; 
    width: 100%; height: 100%; background: rgba(255,255,255,0.98); 
    align-items: center; justify-content: center; 
}
.lightbox:target { display: flex; }
.lightbox img { max-width: 90%; max-height: 80vh; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.close-lightbox { position: absolute; top: 30px; right: 40px; font-size: 40px; color: #000; text-decoration: none; }

/* --- ABOUT PAGE SPECIFIC --- */
.about-hero { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .subtitle { display: block; text-transform: uppercase; letter-spacing: 3px; font-size: 11px; color: #d4af37; margin-bottom: 15px; font-weight: 700; }
.about-text h1 { font-family: 'Playfair Display', serif; font-size: 48px; margin-bottom: 25px; }
.about-text p { font-size: 16px; line-height: 1.8; color: #555; margin-bottom: 20px; }
.about-image img { width: 100%; height: auto; display: block; border-radius: 2px; }
.premium-shadow { box-shadow: 20px 20px 0px 0px #f4f4f4; }
.about-quote { padding: 100px 20px; text-align: center; background-color: #fcfcfc; margin: 40px 0; }
.quote-content h2 { font-family: 'Playfair Display', serif; font-style: italic; font-size: 32px; color: #1a1a1a; max-width: 700px; margin: 0 auto 20px; }
.quote-content i { font-size: 30px; color: #eee; margin-bottom: 20px; }

/* --- PROMISE SECTION --- */
.promise-section {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
    border-top: 1px solid #f4f4f4;
    margin-top: 40px;
}

.promise-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.promise-item i {
    font-size: 30px;
    color: #d4af37; 
    margin-bottom: 20px;
    display: block;
}

.promise-item h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 700;
}

.promise-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* --- ABOUT PAGE IMAGE FIX --- */
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Decorative Divider */
.luxury-divider {
    width: 60px;
    height: 2px;
    background-color: #d4af37; 
    margin: -20px auto 30px; 
}

/* Refined Collection Intro */
.collection-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 20px;
}

.collection-intro p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #d4af37; 
    font-size: 17px; 
    line-height: 1.8;
    margin-bottom: 20px;
    letter-spacing: 0.3px; 
    opacity: 0.9; 
}

/* --- MOBILE BOTTOM NAVIGATION --- */
.mobile-bottom-nav {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 3000;
    justify-content: space-around;
    padding: 10px 0 20px; /* Extra padding for bottom-bar phones */
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.nav-item {
    text-decoration: none;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-item i {
    font-size: 20px;
    margin-bottom: 4px;
    color: #d4af37;
}

/* --- GLOBAL RESPONSIVE RULES (Updated with 2-Column Grid) --- */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .header { padding: 15px 5%; justify-content: center; }
    
    /* 2-Column Grid Implementation */
    .product-grid {
        grid-template-columns: 1fr 1fr !important; /* Force two columns */
        gap: 12px !important;
        padding: 0 10px;
    }

    .card-img-container img {
        height: 220px !important; /* Reduced height for mobile balance */
    }

    /* Keeps titles neat so they don't break the grid alignment */
    .product-card h3 {
        font-size: 14px !important;
        margin: 10px 5px 5px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Shows max 2 lines of text */
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 40px;
    }

    .price-label { font-size: 14px; margin: 2px 0; }
    .sku-label { font-size: 8px; }

    /* Adjust WhatsApp button for smaller column width */
    .wa-buy-btn {
        padding: 8px 12px;
        font-size: 9px;
        width: 92%;
        margin-top: 5px;
    }

    .mobile-bottom-nav { display: flex; }
    body { padding-bottom: 80px; }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-column p { margin: 0 auto; }
    .social-icons { justify-content: center; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text h1 { font-size: 32px; }
    .collection-intro p { font-size: 15px; }
    .luxury-divider { margin: -10px auto 25px; }

    /* Makes the last item (Bespoke) full width on Index page if items are odd */
    .product-grid .product-card:last-child:nth-child(odd) {
        grid-column: span 2;
    }
}

/* --- PRODUCT BADGES (NEW ARRIVAL & SALE) --- */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 10;
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.new-arrival {
    background-color: #d4af37; /* Brand Gold */
    /* Add the animation here */
    animation: flash-glow 2s infinite; 
}

.sale-badge {
    background-color: #1a1a1a; /* Brand Black */
}

/* --- THE FLASHING ANIMATION --- */
@keyframes flash-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    50% {
        transform: scale(1.05); /* Slight grow */
        box-shadow: 0 0 15px 5px rgba(212, 175, 55, 0.3); /* Gold Glow */
        background-color: #e5c158; /* Lighter gold flash */
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}


/* --- CUSTOMER REVIEWS SECTION (SLIDER VERSION) --- */
.reviews-slider-container {
    width: 100%;
    max-width: 800px; /* Centered narrow width for better readability */
    margin: 40px auto 0;
    overflow: hidden; /* Hides the cards that aren't active */
    position: relative;
}

.reviews-wrapper {
    display: flex;
    transition: transform 1.5s cubic-bezier(0.45, 0, 0.55, 1); /* Smooth luxury transition */
}

.review-card {
    flex: 0 0 100%; /* Ensures each card takes up full container width */
    background: #fff;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    box-sizing: border-box;
}

.client-photo {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.client-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%; /* Makes photo circular */
    object-fit: cover;
    border: 2px solid #d4af37; /* Gold border around photo */
    padding: 3px;
}

.stars {
    color: #d4af37; 
    margin-bottom: 20px;
    font-size: 13px;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.client-info {
    border-top: 1px solid #f4f4f4;
    padding-top: 20px;
    display: inline-block;
}

.client-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.client-status {
    font-size: 10px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .reviews-slider-container {
        width: 90%;
    }
    .review-card {
        padding: 40px 20px;
    }
    .review-text {
        font-size: 14px;
    }
}

