﻿
/* ================================================================= 
   1. GLOBAL VARIABLES & BASE
   ================================================================== */
:root {
    --brand-gold: #d4af37;
    --royal-gold: #c6a75e;
    --brand-dark: #1b7a3e;
    --rich-green: #1b5e30;
    --deep-chocolate: #3e2723;
    --text-main: #1a2e1e;
    --text-muted: #666;
    --bg-cream: #ffffff;
    --bg-light: #ffffff;
    --white: #ffffff;
    --white-glass: rgba(255, 255, 255, 0.55);
    --shadow-soft: 0 8px 24px rgba(27, 122, 62, 0.08);
}

body {
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

/* ================================================================= 
   2. NAVIGATION & MARQUEE
   ================================================================== */
.sticky-nav.nav-scrolled {
    background: rgba(27, 122, 62, 0.95) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(27, 122, 62, 0.3);
}

.sticky-nav.nav-scrolled .mobile-toggle .bar {
    background-color: #ffffff !important;
}

.sticky-nav.nav-scrolled .menu-links a,
.sticky-nav.nav-scrolled .fa-user {
    color: #ffffff !important;
}

/* Category Marquee */
.marquee-container-glow {
    width: 100%; overflow: hidden; position: relative;
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.marquee-track-final { 
    display: flex; 
    width: max-content; 
    animation: smoothScroll 30s linear infinite; 
    align-items: center; 
    padding: 25px 0;
}

@keyframes smoothScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); }
}

.img-container {
    position: relative; width: 110px; height: 110px; margin: 0 auto;
    border-radius: 50%; overflow: hidden; padding: 2px;
    border: 1px solid var(--deep-chocolate);
    background: #fff;
    transition: all 0.4s ease;
    animation: continuousZoom 4s ease-in-out infinite;
}

@keyframes continuousZoom { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.marquee-category { 
    margin-top: 15px; 
    font-family: 'Playfair Display', serif; 
    font-size: 17px; 
    color: var(--deep-chocolate);
    font-style: italic;
}

.marquee-count { 
    font-family: 'Tenor Sans', sans-serif;
    font-size: 9px; 
    color: var(--brand-gold); 
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ================================================================= 
   3. SECTION HEADERS
   ================================================================== */
.category-header-box, .section-header { 
    text-align: center !important; 
    padding: 60px 15px 20px; 
    width: 100%;
}

.gold-badge { 
    color: var(--brand-gold); 
    font-family: 'Tenor Sans', sans-serif; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    font-size: 10px; 
    font-weight: 700; 
    display: block;
}

.premium-heading { 
    font-family: 'Playfair Display', serif; 
    font-size: 32px; 
    color: var(--brand-dark); 
    margin: 10px 0;
    font-weight: 700;
}

.heading-line { 
    width: 60px; height: 2px; 
    background: var(--brand-gold); 
    margin: 0 auto;
}

/* ================================================================= 
   4. NEW ARRIVALS (LUXURY CARDS)
   ================================================================== */
.luxury-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.luxury-card:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

.card-image-box { height: 240px; position: relative; overflow: hidden; }

.category-badge {
    position: absolute; top: 12px; right: 12px;
    background: rgba(27, 122, 62, 0.85);
    color: var(--brand-gold);
    padding: 4px 10px; font-size: 9px; font-weight: 700;
    text-transform: uppercase; border-radius: 4px; z-index: 10;
    backdrop-filter: blur(4px);
}

.new-tag {
    position: absolute; top: 12px; left: 12px;
    background: var(--brand-gold); color: var(--white);
    padding: 5px 14px; font-size: 10px; font-weight: 700;
    border-radius: 4px; z-index: 10;
}

/* Elegant Pricing Typography */
.price-row .amount { 
    font-family: 'Tenor Sans', sans-serif; 
    font-size: 16px; /* Elegant smaller size */
    color: var(--brand-dark); font-weight: 600; 
}

.price-row .currency { 
    font-family: 'Tenor Sans', sans-serif;
    font-size: 14px; color: var(--brand-gold); 
}

/* ================================================================= 
   5. PLANT CATEGORY GRID (MUSEUM GLASS CARDS)
   ================================================================== */
.plant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px 0; max-width: 100%; margin: 0;
}

.museum-card {
    border-radius: 15px; margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #d4edda;
    border-top: 3px solid #2ea855;
    overflow: hidden;
}

.card-visual-wrapper {
    position: relative; height: 360px;
    border-radius: 15px; overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.museum-img,
.card-visual-wrapper input[type="image"] {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.museum-card:hover .museum-img,
.museum-card:hover .card-visual-wrapper input[type="image"] { transform: scale(1.1); }

/* Info panel below the plant image */
.glass-info-overlay {
    position: static;
    background: #ffffff;
    backdrop-filter: none; -webkit-backdrop-filter: none;
    border: none;
    border-top: 1px solid #e8f5e9;
    border-radius: 0 0 12px 12px;
    padding: 12px;
}

.museum-plant-name {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 15px; color: var(--text-main);
    margin-bottom: 5px; font-weight: 600;
}

.plant-code-badge {
    font-size: 11px; color: #000 !important;
    font-weight: 800; text-transform: uppercase;
    background: rgba(0,0,0,0.05); padding: 2px 6px; border-radius: 4px;
}

/* ================================================================= 
   6. VIDEO & ABOUT SECTION
   ================================================================== */
.gallery-item {
    aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden;
    box-shadow: var(--shadow-soft); transition: 0.4s;
}

.about-us-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fbf9 0%, #eef4f0 100%);
    text-align: center;
}

.sub-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-style: italic;
    color: var(--royal-gold); letter-spacing: 3px;
}

.elegant-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px; color: var(--rich-green);
}

/* ================================================================= 
   7. LUXURY FAQ & MOBILE FIX
   ================================================================== */
.luxury-faq-section {
    padding: 60px 20px; background: var(--white);
    max-width: 900px; margin: 40px auto; border-radius: 20px;
}

.faq-item summary {
    font-family: 'Tenor Sans', sans-serif; font-size: 17px;
    color: var(--brand-dark); cursor: pointer; padding: 15px 0;
    display: flex; justify-content: space-between; font-weight: 600;
}

@media (max-width: 768px) {
    .premium-heading { font-size: 22px; }
    .museum-card { flex: 0 0 calc(50% - 8px) !important; } /* 2 per row */
    .card-visual-wrapper { height: 220px; }
    .glass-info-overlay { padding: 8px 10px; backdrop-filter: blur(8px); }
    
    .marquee-track-final { animation: none !important; width: 100% !important; }
    .marquee-item { flex: 0 0 33.3333% !important; }
    .img-container { width: 80px !important; height: 80px !important; }
}
.phone-link {
    text-decoration: none !important; /* Removes underline */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: #ffffff !important; /* FORCES WHITE over browser default blue */
}

.phone-number {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 16px; /* Large elegant size */
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff !important; /* Ensure text is pure white */
    
    /* Glowing Effect */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 
                 0 0 20px rgba(212, 175, 55, 0.5); 
    
    display: inline-block;
    transition: all 0.4s ease;
}

/* Pulse Animation */
.phone-number {
    animation: glowPulse 3s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 20px rgba(212, 175, 55, 0.5); }
    50% { text-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 30px rgba(212, 175, 55, 0.8); transform: scale(1.02); }
}

.phone-link i {
    color: #ffffff !important;
    font-size: 18px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

@media (max-width: 768px) {
    .phone-link { justify-content: center; }
    .phone-number { font-size: 18px; }
}
/* Ribbon Container */
.card-visual-wrapper {
    position: relative;
    overflow: hidden; /* Important to clip the ribbon */
}

/* Diagonal Ribbon Styling */
.discount-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    z-index: 15;
}

.discount-ribbon span {
    position: absolute;
    display: block;
    width: 115px;
    padding: 5px 0;
    background-color: #ff4b4b; /* Red for visibility */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
    text-transform: uppercase;
    text-align: center;
    left: -25px;
    top: 15px;
    transform: rotate(-45deg);
}
.card-visual-wrapper {
    position: relative;
    overflow: hidden;
}

.discount-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 75px;
    overflow: hidden;
    z-index: 10;
}

.discount-ribbon span {
    position: absolute;
    display: block;
    width: 100px;
    padding: 5px 0;
    background-color: #ff4b4b;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-align: center;
    left: -21px;
    top: 15px;
    transform: rotate(-45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.encircled-price {
    display: inline-block;
    color: #000000;           /* Solid Black */
    font-size: 14px;          /* Increased font size */
    font-weight: 600;
    text-decoration: line-through;
    margin-left: 8px;
    padding: 2px 8px;
    border: 1.5px solid #000000; /* Black circle border */
    border-radius: 50px;      /* Creates the oval/circle shape */
    line-height: 1;
    vertical-align: middle;
}
/* Optional: Gold theme for the ribbon instead of red */
/* .discount-ribbon span { background-color: #d4af37; color: #1b5e30; } */
/* =====================================
   SYNCHRONIZED CENTERED MODAL (Default.aspx)
===================================== */

/* 1. Vertically Centered Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center; /* Perfect vertical center */
    z-index: 999999;
    backdrop-filter: blur(4px);
    padding: 10px;
}

/* 2. Compact Modal Frame */
.cart-modal {
    background: #ffffff;
    width: 95%;
    max-width: 480px; /* Increased width to save vertical height */
    border-radius: 12px;
    padding: 12px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    
    /* PREVENT VERTICAL OVERFLOW */
    max-height: 85vh; 
    overflow-y: auto;
    overflow-x: hidden;

    /* SPEED OPTIMIZATION: Hardware acceleration */
    transform: translateZ(0);
    animation: modalPop 0.25s ease-out;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* 3. Horizontal Body Layout (Side-by-Side) */
.modal-body {
    display: flex;
    flex-direction: row; 
    gap: 12px;
    align-items: flex-start;
}

.product-preview {
    flex: 0 0 120px; /* Slimmer image area to save space */
}

.product-details {
    flex: 1;
    text-align: left;
}

/* 4. Images (Fixed Aspect Ratio) */
.main-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    height: 110px; 
    background: #f7f7f7;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px;
    border: 1px solid #eee;
}

.primary-thumb {
    width: 100%; height: 100%;
    object-fit: cover;
}

.secondary-img-box {
    display: flex; align-items: center;
    gap: 6px; padding: 4px;
    background: #fdfaf3; border-radius: 6px;
}

.secondary-circle {
    width: 40px; height: 40px;
    border-radius: 50%; border: 2px solid #d4af37;
    object-fit: cover; cursor: pointer;
}

/* 5. Header & Plant Details */
.modal-header {
    display: flex; justify-content: space-between;
    margin-bottom: 8px; border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.modal-header h3 { font-family: 'Tenor Sans', sans-serif; font-size: 13px; color: #1b5e30; }

.modal-plant-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px; font-weight: 600;
    margin: 0 0 3px 0; color: #1b5e30;
    line-height: 1.2;
}

.modal-price { font-size: 17px; font-weight: bold; margin-bottom: 8px; color: #1b5e30; }

/* 6. QUANTITY SELECTOR (+ - STYLING) */
.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    width: fit-content;
    border-radius: 4px;
    overflow: hidden;
}

.qty-selector a {
    width: 30px;
    height: 30px;
    background: #f8f8f8;
    color: #1b5e30;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    transition: background 0.2s;
}

.qty-selector a:hover { background: #1b7a3e; color: #fff; }

.qty-selector input {
    width: 35px;
    height: 30px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #1b5e30;
}

/* 7. Action Buttons (Add to Bag / Go to Bag) */
.modal-footer-elegant {
    display: flex; flex-direction: column;
    gap: 5px;
}

.btn-go-bag-elegant, .btn-add-now {
    width: 100% !important;
    padding: 10px !important;
    background: #1b7a3e !important;
    color: #d4af37 !important;
    text-align: center;
    border-radius: 6px;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase;
    border: none; display: block !important;
}

.btn-choose-more-elegant {
    width: 100% !important;
    padding: 8px !important;
    background: #fff !important;
    color: #1b5e30 !important;
    border: 1px solid #1b7a3e !important;
    border-radius: 6px;
    font-size: 11px;
}

/* ===== MODAL HEADER CLOSE BUTTON (was completely unstyled — caused invisible/broken close ✕) ===== */
.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    font-size: 20px;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-btn:hover {
    color: #c0392b;
    background: #ffeaea;
}

/* 8. ZOOM OVERLAY — sits above the product modal but below the async loading spinner */
.zoom-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.95);
    display: flex; justify-content: center; align-items: center;
    /* z-index ladder:  modal-overlay=999999 → zoom-overlay=1000000 → spinner=9999998 */
    z-index: 1000000;
}

.zoom-frame { 
    position: relative; 
    width: 70%; /* Occupies 2/3 of width */
    max-width: 400px;
}

.large-preview-img { 
    width: 100%; 
    max-height: 60vh; /* Strictly limits vertical height to 2/3 of screen */
    border-radius: 12px; 
    border: 3px solid #d4af37; 
    object-fit: contain;
}

.zoom-close {
    position: absolute; 
    top: -14px;  /* Slightly overlaps the top edge of the image */
    right: -14px; /* Slightly overlaps the right edge of the image */
    color: #d4af37; 
    font-size: 35px;
    background: rgba(0, 0, 0, 0.65);
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    backdrop-filter: blur(5px);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* 9. Mobile Adjustments */
@media (max-width: 480px) {
    .modal-body { gap: 10px; }
    .product-preview { flex: 0 0 100px; }
    .main-img-box { height: 100px; }
    .modal-plant-name { font-size: 13px; }
    .zoom-frame { width: 85%; }
}
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45px;
    background: rgba(27, 122, 62, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(27, 122, 62, 0.3);
    z-index: 10000;
    padding: 0;
    backdrop-filter: blur(10px);
}

.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6); /* Muted white for elegance */
    flex: 1;
    text-align: center;
    font-size: 8px; /* High-end thin typography */
    font-family: 'Tenor Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.footer-item i {
    font-size: 18px;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

/* Active State - Luxury Gold */
.footer-item.active {
    color: #d4af37 !important;
}

.footer-item.active i {
    color: #d4af37 !important;
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.footer-item:hover {
    color: #ffffff;
}

/* Important: Add space at bottom of body so content is not cut off */
body {
    padding-bottom: 65px !important;
}

/* Desktop View: Keep it centered and contained */
@media (min-width: 1024px) {
    .sticky-footer {
        max-width: 500px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 15px 15px 0 0; /* Rounded top corners only on desktop */
        border-left: 1px solid rgba(212, 175, 55, 0.3);
        border-right: 1px solid rgba(212, 175, 55, 0.3);
    }
}
 .luxury-announcement-bar { background: linear-gradient(90deg, #1b7a3e, #2ea855, #1b7a3e); height: 38px; width: 100%; overflow: hidden; position: relative; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.2); z-index: 2000; }
    .luxury-announcement-bar::after { content: ''; position: absolute; top: 0; left: -100%; width: 40%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); animation: goldSweep 7s infinite ease-in-out; }
    .marquee-track { display: flex; width: max-content; animation: smoothScroll 45s linear infinite; }
    .slogan-group { display: flex; align-items: center; white-space: nowrap; }
    .slogan-group span { color: #ffffff; font-family: 'Tenor Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase; padding: 0 70px; }
    @keyframes smoothScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    @keyframes goldSweep { 0% { left: -100%; } 100% { left: 200%; } }
    @media (max-width: 768px) { .luxury-announcement-bar { height: 30px; } .slogan-group span { font-size: 10px; padding: 0 35px; } }
    
 .marquee-container-glow {
                    width: 100%; overflow: hidden; position: relative;
                    /* Clean white background for a premium look */
                    background: #ffffff;
                    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
                }

                .marquee-track-final { 
                    display: flex; 
                    width: max-content; 
                    animation: smoothScroll 30s linear infinite; 
                    align-items: center; 
                    padding: 25px 0;
                    transform: translateZ(0);
                    will-change: transform;
                }

                .marquee-item {
                    flex: 0 0 200px;
                    text-align: center;
                }

                @keyframes smoothScroll {
                    0% { transform: translateX(0); }
                    100% { transform: translateX(-33.3333%); }
                }

                /* THE REFINED IMAGE CONTAINER */
                .img-container {
                    position: relative; width: 110px; height: 110px; margin: 0 auto;
                    border-radius: 50%; overflow: hidden; padding: 2px;
                    /* Elegant Deep Chocolate Border */
                    border: 1px solid #3e2723;
                    background: #fff;
                    transition: all 0.4s ease;
                    animation: continuousZoom 4s ease-in-out infinite;
                }

                .category-link { text-decoration: none; display: block; outline: none; }

                .marquee-item img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }

                @keyframes continuousZoom { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

                /* BOUTIQUE TYPOGRAPHY: DEEP CHOCOLATE & GOLD */
                .marquee-category { 
                    margin-top: 15px; 
                    font-family: 'Playfair Display', serif; 
                    font-size: 17px; 
                    color: #3e2723; /* Deep Chocolate */
                    font-weight: 300; 
                    font-style: italic;
                    letter-spacing: 0.5px;
                }

                .marquee-count { 
                    font-family: 'Tenor Sans', sans-serif;
                    font-size: 9px; 
                    color: #b8860b; /* Deep Gold */
                    font-weight: 400; 
                    text-transform: uppercase;
                    letter-spacing: 2px;
                    margin-top: 4px;
                }

                /* Mobile Adjustment */
                @media (max-width: 768px) {
                    .marquee-track-final { animation: none !important; width: 100% !important; transition: transform 0.8s ease; }
                    .marquee-item { flex: 0 0 33.3333% !important; }
                    .img-container { width: 80px !important; height: 80px !important; }
                    .marquee-category { font-size: 13px; font-weight: 400; }
                }
                
                :root {
    --brand-gold: #d4af37;
    --brand-dark: #1b7a3e;
    --text-main: #1a1a1a;
    --text-muted: #888;
    --bg-light: #fdfdfd;
    --white: #ffffff;
    --shadow-soft: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-hover: 0 8px 25px rgba(0,0,0,0.12);
}

/* ================================================================= 
   1. SECTION HEADER 
   ================================================================== */
.luxury-arrivals {
    padding: 60px 20px;
    background: var(--bg-light);
    max-width: 1200px;
    margin: 0 auto;
    clear: both;
}

.section-header { 
    text-align: center !important; 
    padding: 40px 15px 10px; /* Clean whitespace */
    width: 100%;
    margin-bottom: 30px;
}

.section-header .gold-badge { 
    color: var(--brand-gold); 
    font-family: 'Tenor Sans', sans-serif; 
    letter-spacing: 5px; /* Wide luxury spacing */
    text-transform: uppercase; 
    font-size: 10px; 
    font-weight: 700; 
    display: block;
    line-height: 1;
    margin-bottom: -4px; /* Pulls 'New Arrivals' UP to touch */
}

.section-header .premium-heading { 
    font-family: 'Playfair Display', serif; 
    font-size: 32px; 
    color: var(--brand-dark); 
    margin: 0 auto !important; 
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.section-header .heading-line { 
    width: 40px; 
    height: 1.5px; 
    background: var(--brand-gold); 
    margin: 8px auto 0;
    border-radius: 1px;
    opacity: 0.8;
}

/* Mobile Polish */
@media (max-width: 768px) {
    .section-header .premium-heading { font-size: 24px; }
    .section-header .gold-badge { font-size: 9px; letter-spacing: 4px; }
}

/* ================================================================= 
   2. GRID CONTAINER (4 Items Row)
   ================================================================== */
.arrivals-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px 0;
    width: 100%;
}

/* ================================================================= 
   3. THE LUXURY CARD
   ================================================================== */
.luxury-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27, 122, 62, 0.08);
    border: 1px solid #d4edda;
    border-top: 3px solid #2ea855;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.luxury-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(27, 122, 62, 0.18);
    border-top-color: #1b7a3e;
}
/* Category Badge Overlay */
.category-badge {
    position: absolute;
    top: 12px;
    right: 12px; /* Opposite of the 'New' tag */
    background: rgba(27, 122, 62, 0.85); /* Dark Green with transparency */
    color: #d4af37; /* Gold text */
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    z-index: 10;
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(4px);
}

/* Optional: Different colors for specific categories */
.luxury-card:hover .category-badge {
    background: #1b7a3e;
    color: #fff;
    border-color: #d4af37;
    transition: all 0.3s ease;
}

/* IMAGE BOX & NEW BADGE */
.card-image-box { 
    position: relative;
    height: 220px; 
    width: 100%;
    overflow: hidden; 
    background: #f9f9f9;
}
/* Specific Typography for New Arrivals Price */
.price-row .amount { 
    font-family: 'Tenor Sans', sans-serif; /* Elegant, clean sans-serif */
    font-size: 15px;                       /* Reduced from 17px/20px */
    color: #1b5e30;                        /* Deep Botanical Green */
    font-weight: 600; 
    letter-spacing: 0.5px;
}

.price-row .currency {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 13px;                       /* Slightly smaller currency symbol */
    color: #d4af37;                        /* Gold accents for elegance */
    margin-right: 2px;
    font-weight: 400;
}

/* Optional: Add a subtle separator if you want a cleaner look */
.price-row {
    margin-top: 5px;
    padding-top: 5px;
    border-top: 1px dashed rgba(10, 38, 29, 0.1); /* Very light elegant divider */
    display: inline-block;
}
.card-image-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s ease;
}

.luxury-card:hover .card-image-box img {
    transform: scale(1.08);
}

.new-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--brand-gold);
    color: var(--white);
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
    font-family: 'Inter', sans-serif;
}

/* CARD DETAILS */
.card-details { 
    padding: 20px; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plant-id { 
    font-size: 10px; 
    color: var(--text-muted); 
    font-family: 'Tenor Sans', sans-serif;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.plant-title { 
    font-size: 16px; 
    color: var(--text-main); 
    margin: 0 0 12px 0;
    font-family: 'Tenor Sans', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

/* STOCK URGENCY BAR */
.stock-urgency-wrapper {
    margin-bottom: 15px;
}

.stock-label-row {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #555;
    text-align: left;
}

.critical {
    color: #e74c3c;
    animation: wa-pulse-text 1.5s infinite;
}

@keyframes wa-pulse-text {
    50% { opacity: 0.5; }
}

.luxury-progress-track {
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 10px;
}

.luxury-progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* PRICE & BUTTON */
.price-row { 
    margin-top: auto; 
    margin-bottom: 15px; 
}

.currency { color: var(--brand-dark); font-weight: 600; margin-right: 2px; }

.amount { 
    font-size: 20px; 
    color: var(--brand-dark); 
    font-weight: 700; 
}

.luxury-buy-btn {
    display: block;
    background: linear-gradient(135deg, #2ea855, #1b7a3e);
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid #1b7a3e;
}

.luxury-buy-btn:hover {
    background: linear-gradient(135deg, #1b7a3e, #0f5c2a);
    color: #ffffff !important;
    border-color: #0f5c2a;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(27, 122, 62, 0.35);
}

/* ================================================================= 
   4. MOBILE RESPONSIVENESS
   ================================================================== */
@media (max-width: 992px) {
    .arrivals-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .luxury-arrivals { padding: 40px 15px; }
    .premium-heading { font-size: 28px; }
    .card-image-box { height: 180px; }
    
    .luxury-buy-btn {
        padding: 10px 0;
        font-size: 11px;
    }
}
.gold-separator-wrap {
    text-align: center;
    max-width: 1100px;
    /* PULL UPWARD: Increased from -25px to -45px to lift the whole divider */
    margin: -35px auto 0 auto !important; 
    padding: 0 20px 20px;
    clear: both;
    position: relative;
    z-index: 100;
}

.slogan-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    /* REDUCE GAP: Brings the gold lines closer to the text below */
    margin-bottom: 0px; 
}

.gold-line {
    height: 1px;
    flex-grow: 1;
    background: linear-gradient(to right, transparent, var(--brand-gold) 50%, transparent);
    border: none;
    opacity: 0.8;
}

.divider-leaf {
    color: #d4af37;
    font-size: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

/* BOUTIQUE SLOGAN: RICH & ITALIC */
/* ================================================================= 
   2. GOLD SLOGAN SEPARATOR (REFINED LOCKUP)
   ================================================================== */
.boutique-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-style: italic;
    color: var(--brand-dark);
    margin: 0 !important;
    line-height: 1.2; /* Prevent clipping */
}

.sub-slogan {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--royal-gold);
    display: block;
    /* Lifted to touch the slogan without overlapping letters */
    margin-top: -1px !important; 
    font-weight: 700;
}
/* Mobile Facelift */
@media (max-width: 768px) {
    .gold-separator-wrap { margin: -5px auto 0 auto; }
    .boutique-slogan { font-size: 19px; }
    .sub-slogan { font-size: 8px; letter-spacing: 3px; }
    .gold-line { display: none; } /* Optional: Hide lines on small phones to save space */
    .slogan-divider { gap: 10px; }
}
/* ================================================================= 
   1. CORE VARIABLES & GLOBAL STYLES
   ================================================================== */
:root {
    --brand-gold: #d4af37;
    --royal-gold: #c6a75e;
    --brand-dark: #1b7a3e;
    --bg-cream: #ffffff;
    --white-glass: rgba(255, 255, 255, 0.6);
}

.luxury-gallery-wrapper {
    background-color: #ffffff;
    padding: 20px 8px 60px;
    overflow-x: hidden;
}

/* ================================================================= 
   2. SLOGAN & HEADERS
   ================================================================== */
.gold-separator-wrap {
    text-align: center;
    max-width: 1100px;
    margin: 20px auto 10px; 
    padding: 20px 20px 0; 
}

.boutique-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-style: italic;
    color: var(--brand-dark);
    margin: 0;
    line-height: 1.4;
}

.sub-slogan {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--royal-gold);
    display: block;
    margin-top: 10px;
    font-weight: 700;
}

.category-header-box { 
    text-align: center;
    margin-top: -10px;
    padding: 20px 15px 15px;
    margin-bottom: 25px;
}

.premium-heading { 
    font-family: 'Playfair Display', serif; 
    font-size: 24px; 
    color: #1b5e30; 
    font-weight: 700;
}

/* ================================================================= 
   3. DESKTOP PLANT GRID (4 COLUMNS)
   ================================================================== */
.plant-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px 0;
    max-width: 100%;
    margin: 0;
}

.museum-card {
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #d4edda;
    border-top: 3px solid #2ea855;
    overflow: hidden;
}

.card-visual-wrapper {
    position: relative;
    height: 360px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.museum-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.glass-info-overlay {
    position: static;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-top: 1px solid #e8f5e9;
    border-radius: 0 0 12px 12px;
    padding: 12px;
}

.museum-plant-name {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 14px;
    color: #000;
    margin: 0 0 6px 0;
    font-weight: 600;
    line-height: 1.2;
}

/* ================================================================= 
   4. BUTTON STYLES
   ================================================================== */
.btn-add-to-cart-sm {
    background-color: #2ea855;
    color: #ffffff;
    border: 1px solid #1b7a3e;
    padding: 8px 16px;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 11px;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.btn-add-to-cart-sm:hover {
    background-color: #1b7a3e;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(27,122,62,0.3);
}

/* ================================================================= 
   5. MOBILE OPTIMIZATION (2 COLUMNS + 3 LINE TEXT)
   ================================================================== */
@media (max-width: 768px) {
    .category-header-box { margin-top: -30px !important; }

    .plant-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 8px !important; 
        padding: 8px !important;
    }

    .museum-card {
        width: 100% !important;
        margin: 0 !important;
    }

    .card-visual-wrapper { 
        height: 200px !important; 
        min-height: unset !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .museum-img,
    .card-visual-wrapper input[type="image"] {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    /* THE FIX: 3-LINE WRAPPING */
    .museum-plant-name {
        font-size: 13px !important;
        white-space: normal !important; 
        display: -webkit-box !important;
        -webkit-line-clamp: 3 !important; /* Allow 3 lines */
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        height: 48px !important; /* Fixed height to keep buttons aligned */
        line-height: 1.25 !important;
        word-break: break-word;
    }

    .glass-info-overlay {
        position: static !important;
        bottom: auto !important; left: auto !important; right: auto !important;
        margin-top: 0;
        border-radius: 0 0 12px 12px !important;
        min-height: unset;
        padding: 10px 8px !important;
        background: #ffffff !important;
        backdrop-filter: none !important;
        border: none !important;
        border-top: 1px solid #e8f5e9 !important;
    }

    .card-details-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px;
    }

    .museum-price { font-size: 15px !important; }

    .btn-add-to-cart-sm {
        width: 100% !important;
        padding: 7px 2px !important;
        font-size: 10px !important;
    }

    .boutique-slogan { font-size: 19px; }
    .sub-slogan { font-size: 8px; letter-spacing: 4px; }
}

/* Extra Small (iPhone SE) */
@media (max-width: 380px) {
    .museum-img { height: 140px !important; }
    .museum-plant-name { height: 45px !important; font-size: 12px !important; }
}
     /* Container to hold both video and text */
.video-card-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Updated Gallery Item (removed margin/padding to fit container) */
.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    aspect-ratio: 16 / 9;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(10, 38, 29, 0.1);
}

/* --- CAPTION STYLING --- */
.video-info {
    padding: 0 5px;
    text-align: left;
}

.video-title {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 14px;
    color: #1b5e30; /* Deep Green */
    margin: 0 0 4px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.video-tag {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: #c6a75e; /* Gold */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}
/* ================================================================= 
   LUXURY REVIEWS SECTION
   ================================================================== */
.luxury-reviews {
    padding: 60px 0;
    background: #ffffff;
}

.review-subtitle {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--royal-gold);
    margin-top: 5px;
}

.reviews-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.review-card-premium {
    flex: 1; /* Makes all cards equal width */
    min-width: 280px;
    background: var(--bg-cream); /* Subtle contrast from pure white */
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    
    /* THE ALIGNMENT FIX */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.review-card-premium:hover {
    transform: translateY(-5px);
    border-color: var(--brand-gold);
}

.review-stars {
    color: var(--brand-gold);
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 15px;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #4c5f57;
    font-style: italic;
    margin: 0;
}

.review-footer {
    margin-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
}

.reviewer-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--brand-dark);
    margin: 0;
}

.review-action-area {
    text-align: center;
    margin-top: 40px;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .reviews-flex-grid {
        flex-direction: column;
    }
    .review-card-premium {
        min-width: 100%;
    }
}
   /* ===== ABOUT SECTION - PREMIUM ELEGANT ===== */

.about-us-section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #f8fbf9 0%, #eef4f0 100%);
    position: relative;
    text-align: center;
}

/* Soft decorative background glow */
.about-us-section::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(198,167,94,0.08) 0%, transparent 70%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

.elegant-header-wrap {
    margin-bottom: 50px;
}

/* Sub Label */
/* ===== Elevated Typography ===== */

.sub-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;              /* Refined size */
    font-weight: 600;
    font-style: italic;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c6a75e;               /* Soft royal gold */
    display: block;
    margin-bottom: 15px;
    position: relative;
}

/* Elegant thin divider above */
.sub-label::before {
    content: "";
    display: block;
    width: 50px;
    height: 1.5px;
    background: #c6a75e;
    margin: 0 auto 12px;
}

/* ABOUT PUSPARRANI NURSERY */
.elegant-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #153c2e;   /* Rich deep green */
    letter-spacing: 1.5px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
}

/* Optional subtle underline elegance */
.elegant-main-heading::after {
   content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: 20px auto 0;
    background: linear-gradient(to right, #c6a75e, #e8d7a8);
    border-radius: 3px;
}


/* Accent Divider */
.heading-accent {
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, #c6a75e, #e8d7a8);
    margin: 20px auto 0;
    border-radius: 3px;
    transition: 0.4s ease;
}

.about-us-section:hover .heading-accent {
    width: 120px;
}

/* Content Text */
.about-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    line-height: 2;
    color: #4c5f57;
    max-width: 820px;
    margin: 40px auto 0;
    font-weight: 300;
}
.luxury-faq-section {
    padding: 80px 20px;
    background: #ffffff;
    max-width: 900px;
    margin: 0 auto !important; /* Forces it to stay centered with no bottom margin */
    padding-bottom: 60px;
}

.faq-container {
    margin-top: 40px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.faq-item summary {
    list-style: none;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 18px;
    color: #1b5e30;
    cursor: pointer;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

/* Custom Arrow using Pseudo-element */
.faq-item summary::after {
    content: '+';
    font-family: 'Inter', sans-serif;
    color: #d4af37;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-family: 'Inter', sans-serif;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Remove default marker in Chrome/Safari */
.faq-item summary::-webkit-details-marker {
    display: none;
}
/* --- LUXURY BOTANICAL FOOTER --- */
.site-footer {
    background: #04120e; 
    color: rgba(255, 255, 255, 0.7);
    padding: 35px 0 15px 0;
    font-family: 'Inter', sans-serif;
    border-top: 2px solid #d4af37;
    position: relative;
    margin-top: 0 !important; /* KEY FIX: Remove the 40px gap that showed the black band */
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Column 1: Brand & Socials */
.footer-logo {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(to right, #d4af37, #f7e1ad, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8da399;
    margin-bottom: 15px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    color: #d4af37 !important;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-socials a:hover {
    background: #d4af37;
    color: #04120e !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

/* Column 2: Navigation Grid */
.footer-column h4 {
    color: #fff;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    padding-bottom: 4px;
}

.link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
}

.footer-column a, .footer-column span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-column a i {
    color: #d4af37;
    width: 16px;
    text-align: center;
}

.footer-column a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Column 3: Bright Map */
.footer-map-wrapper {
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: #fff;
}

.footer-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: none !important; /* Ensures map is always bright */
}

/* Bottom Bar */
.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 25px 0 15px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: #556b62;
    letter-spacing: 1px;
}

.payment-methods i {
    font-size: 20px;
    margin-left: 15px;
    opacity: 0.6;
    color: #d4af37;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-socials { justify-content: center; }
    .link-grid { grid-template-columns: 1fr; }
    .footer-column a { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; }
}
   /* --- Powered By Section Styling --- */
.powered-by-section {
    padding: 20px 0;
    text-align: center;
    background-color: var(--brand-dark); /* Dark Forest Green */
}

.powered-by-section p {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6); /* Semi-transparent white for "Designed by" */
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.agency-link {
    color: #ffffff !important; /* Pure White Foreground */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding-left: 5px;
}

.agency-link:hover {
    color: var(--brand-gold) !important; /* Turns Gold on Hover */
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.footer-divider {
    width: 40px;
    height: 1.5px;
    background: var(--brand-gold);
    margin: 0 auto 10px;
}
/* --- Floating Icons Desktop Styles --- */
/* --- Floating Icons Desktop Styles --- */
#finalFloatingIcons.floating-container {
    position: fixed !important;
    z-index: 2147483647 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    top: 40px !important; 
    right: 50px !important; 
    
    /* FIX: Fixed height prevents the container from collapsing on the baseline */
    height: 36px !important; 
    padding: 0 12px !important; 
    box-sizing: border-box !important;
    
    background: rgba(27, 122, 62, 0.9);
    border-radius: 20px;
    border: 1px solid #d4af37;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.icon-link-wrapper {
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px; 
    height: 100% !important; /* Use full height of the 36px parent */
    margin: 0 4px;
    overflow: visible !important;
}

.floating-icon {
    font-size: 17px !important;
    color: #FFD700 !important;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.4));
    
    /* FIX: Forces the icon to center like an image, not like text */
    line-height: 0 !important; 
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.icon-wrapper {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100%;
}

.cart-badge {
    position: absolute;
    /* Adjusted for the 36px height */
    top: 2px; 
    right: -4px;
    background-color: #FFD700;
    color: #000;
    font-size: 8px;
    font-weight: 800;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

/* --- Floating Icons Desktop Styles --- */
#finalFloatingIcons.floating-container {
    position: fixed !important;
    z-index: 2147483647 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    top: 40px !important;
    right: 50px !important;
    height: 36px !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    background: rgba(27, 122, 62, 0.9);
    border-radius: 20px;
    border: 1px solid #d4af37;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#finalFloatingIcons .icon-link-wrapper {
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px;
    height: 100% !important;
    margin: 0 4px;
    overflow: visible !important;
}

#finalFloatingIcons .floating-icon {
    font-size: 17px !important;
    color: #FFD700 !important;
    filter: drop-shadow(0px 1px 1px rgba(0,0,0,0.4));
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#finalFloatingIcons .icon-wrapper {
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 100%;
    overflow: visible !important;
}

#finalFloatingIcons .cart-badge {
    position: absolute;
    top: 2px;
    right: -4px;
    background-color: #FFD700;
    color: #000;
    font-size: 8px;
    font-weight: 800;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}
.social-and-cart {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 6px !important;   /* lifts icons up from bottom edge */
}

.social-icons {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding-bottom: 4px !important;  /* fine-tune lift amount here */
}

.header-icon {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
    vertical-align: middle !important;
    position: relative !important;
    bottom: 3px !important;          /* nudge up — increase to lift more */
}
/* --- Mobile Specific Adjustments --- */
@media (max-width: 768px) {

    #finalFloatingIcons.floating-container {
        top: 30px !important;
        right: 10px !important;
        height: auto !important;       /* KEY FIX: removes hard crop */
        min-height: 34px !important;   /* keeps pill shape */
        padding: 6px 10px !important;  /* vertical padding drives height */
    }

    #finalFloatingIcons.scrolled-icons {
        top: 43px !important;
        transition: top 0.3s ease;
    }

    #finalFloatingIcons .icon-link-wrapper {
        width: 24px !important;
        height: auto !important;       /* KEY FIX: stop 100% stretch cropping */
        padding: 2px 0 !important;     /* small vertical breathing room */
        margin: 0 3px !important;
    }

    #finalFloatingIcons .floating-icon {
        font-size: 13px !important;    /* 10px caused sub-pixel clipping */
        line-height: 1 !important;     /* line-height:0 clips on mobile */
    }

    #finalFloatingIcons .icon-wrapper {
        height: auto !important;
    }

    #finalFloatingIcons .cart-badge {
        top: 0px;
        right: -5px;
        font-size: 7px;
        min-width: 12px;
        height: 12px;
    }

    .nav-scrolled .mobile-nav-search {
        padding-top: 22px !important;
        padding-bottom: 5px !important;
    }
}
.luxury-announcement-bar {
    background: linear-gradient(90deg, #1b7a3e, #2ea855, #1b7a3e);
    border-bottom: 1px solid #d4af37;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.15);
}
.header {
    background: linear-gradient(135deg, #1b7a3e 0%, #2ea855 60%, #1b7a3e 100%);
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.brand-title-gold {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #d4af37, #f5e27a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.brand-tagline {
    font-family: 'Tenor Sans', sans-serif;
    color: #a8c5a0;
    letter-spacing: 3px;
    font-size: 11px;
    text-transform: uppercase;
}
.nursery-section {
    position: relative;
}

.nursery-section::after {
    display: none;
}

.slider img {
    transition: opacity 1.2s ease-in-out;
}
.gold-separator-wrap {
    text-align: center;
    padding: 50px 20px 30px;
}

.slogan-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 20px;
}

.gold-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border: none;
}

.divider-leaf {
    color: #d4af37;
    font-size: 18px;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

.boutique-slogan {
    font-family: 'Playfair Display', serif;
    font-size: clamp(22px, 4vw, 36px);
    color: #1b5e30;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.sub-slogan {
    font-family: 'Tenor Sans', sans-serif;
    color: #888;
    letter-spacing: 4px;
    font-size: 11px;
    text-transform: uppercase;
}
.review-card-premium {
    background: linear-gradient(145deg, #fff, #fafaf7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card-premium::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 16px;
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.12);
    line-height: 1;
}

.review-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.12);
}

.review-stars {
    color: #d4af37;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-family: 'Playfair Display', italic, serif;
    font-style: italic;
    color: #444;
    line-height: 1.7;
    font-size: 14px;
}

.reviewer-name {
    color: #1b5e30;
    font-family: 'Tenor Sans', sans-serif;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
}
.faq-item {
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item[open] {
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
}

.faq-item summary {
    padding: 18px 20px;
    font-family: 'Tenor Sans', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #1b7a3e, #0f5c2a);
    color: #e8d5a3;
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 18px 20px;
    background: #fafaf7;
    color: #444;
    font-size: 14px;
    line-height: 1.8;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.site-footer {
    background: linear-gradient(180deg, #071a12 0%, #040f0a 100%);
    border-top: 2px solid #d4af37;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #d4af37, #f5e27a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 22px;
    letter-spacing: 2px;
}

.footer-tagline {
    color: #6b9e7a;
    font-family: 'Tenor Sans', sans-serif;
    letter-spacing: 3px;
    font-size: 10px;
    text-transform: uppercase;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.footer-socials a:hover {
    background: #d4af37;
    color: #1b5e30;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}
.sticky-footer {
    background: rgba(27, 122, 62, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.footer-item {
    color: #6b9e7a;
    font-family: 'Tenor Sans', sans-serif;
    font-size: 10px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-item i {
    font-size: 18px;
    margin-bottom: 3px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-item.active,
.footer-item:hover {
    color: #d4af37;
}

.footer-item.active i,
.footer-item:hover i {
    transform: translateY(-3px);
    color: #d4af37;
}
.deal-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    background: #fff;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15),
                0 0 0 1px rgba(212, 175, 55, 0.4);
}

.deal-discount {
    background: linear-gradient(135deg, #d4af37, #f5e27a);
    color: #1b5e30;
    font-weight: 800;
    border-radius: 8px 0 8px 0;
}
/* NOTE: .modal-overlay and .cart-modal are defined earlier in this file (lines ~414-445).
   The duplicate definitions that were here have been removed to prevent them from
   overriding the correct styles (they had z-index:9999 vs the correct 999999,
   and lacked max-height/overflow-y:auto needed to prevent vertical overflow). */
/* Container for the icons - Always Visible */
.mini-actions-overlay {
    position: absolute;
    top: 15px; /* Positioned at the top */
    right: 15px; /* Aligned to the right side */
    display: flex;
    flex-direction: column; /* Stacked vertically for better visibility */
    gap: 10px;
    z-index: 10;
}

/* Individual Icon Styling — transparent circle */
.mini-action-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: none;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7);
    transition: all 0.2s ease;
}

/* Hover — subtle green circle appears on hover only */
.mini-action-icon:hover {
    background: rgba(46, 168, 85, 0.82);
    color: #ffffff;
    text-shadow: none;
    transform: scale(1.12);
    box-shadow: 0 4px 12px rgba(46,168,85,0.4);
}

/* Ensure the wrapper allows absolute positioning */
.card-visual-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}
/* ================================================================= 
   UPLIFT PATCH — Pusparani Nursery Elegance Enhancement
   Reference: Santhi Online Plants product grid refinements
   ================================================================== */

/* --- GLOBAL FONT UPLIFT --- */
body {
    font-family: 'DM Sans', sans-serif !important;
}

/* ================================================================= 
   NEW ARRIVALS — CLEAN PRODUCT CARD (SANTHI-INSPIRED)
   ================================================================== */

/* Quick action overlay on image hover */
.card-quick-actions {
    position: absolute;
    bottom: -50px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    background: linear-gradient(to top, rgba(10,38,29,0.7), transparent);
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-image-box:hover .card-quick-actions {
    bottom: 0;
}

.quick-action-btn {
    width: 36px; height: 36px;
    background: #fff;
    color: #1b5e30;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
}

.quick-action-btn:hover {
    background: #d4af37;
    color: #1b5e30;
    transform: scale(1.1);
}

/* Star Rating Row */
.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.stars-display {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1px;
}

.rating-count {
    font-size: 11px;
    color: #999;
    font-family: 'DM Sans', sans-serif;
}

/* In-stock label */
.in-stock-label {
    color: #27ae60;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.5px;
}

/* Elegant price display */
.price-row-elegant {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 12px 0 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(10,38,29,0.08);
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.currency-sym {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #d4af37;
    font-weight: 500;
}

.price-amount {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 22px;
    color: #1b5e30;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.price-note {
    font-size: 10px;
    color: #aaa;
    font-family: 'DM Sans', sans-serif;
    text-align: right;
}

/* Uplifted Buy Button */
.luxury-buy-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1b7a3e !important;
    color: #d4af37 !important;
    text-decoration: none !important;
    padding: 13px 0 !important;
    border-radius: 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.3s ease !important;
    border: 1.5px solid transparent !important;
    font-family: 'DM Sans', sans-serif !important;
}

.luxury-buy-btn:hover {
    background: transparent !important;
    color: #1b5e30 !important;
    border-color: #1b5e30 !important;
}

/* Luxury card image hover zoom */
.card-image-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.card-image-box a {
    display: block;
    height: 100%;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-card:hover .card-image-box img {
    transform: scale(1.07);
}

/* ================================================================= 
   DEALS SECTION UPLIFT
   ================================================================== */

.deals-section {
    background: linear-gradient(to bottom, #f6f3ec, #fff);
    padding-bottom: 50px;
}

.deals-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #888;
    margin: 6px 0 0;
    letter-spacing: 0.3px;
}

/* Trust strip */
.deals-trust-strip {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 14px 20px 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #555;
    font-weight: 500;
}

.deals-trust-strip span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.deals-trust-strip i {
    color: #27ae60;
    font-size: 13px;
}

/* Deal card uplift */
.deal-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.deal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: rgba(212, 175, 55, 0.5);
}

.deal-image-wrap {
    position: relative;
    overflow: hidden;
}

.deal-image-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.deal-card:hover .deal-image-wrap img {
    transform: scale(1.06);
}

.deal-badge-limited {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1b7a3e;
    color: #d4af37;
    font-family: 'DM Sans', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    border-radius: 4px;
}

.deal-savings {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.deal-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #1b7a3e, #0f5c2a);
    color: #d4af37;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.deal-card:hover .deal-cta {
    background: #d4af37;
    color: #1b5e30;
}

/* ================================================================= 
   MUSEUM CARD (CATEGORY GRID) — ENHANCED BOTTOM OVERLAY
   ================================================================== */

/* Cleaner info panel below the image */
.glass-info-overlay {
    position: static !important;
    background: #ffffff !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-top: 1px solid #e8f5e9 !important;
    border-radius: 0 0 12px 12px !important;
    padding: 12px !important;
}

.museum-plant-name {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1b5e30 !important;
}

.museum-price {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 16px;
    color: #1b5e30;
    font-weight: 700;
}

/* "Add to Cart" button inside museum card */
.btn-add-to-cart-sm {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 10px !important;
    letter-spacing: 1.2px !important;
    border-radius: 6px !important;
    padding: 7px 12px !important;
    border: none !important;
    cursor: pointer !important;
}

/* ================================================================= 
   SECTION HEADER POLISH
   ================================================================== */

.collection-label {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d4af37;
    background: rgba(212,175,55,0.08);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid rgba(212,175,55,0.3);
}

.premium-heading {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(22px, 3.5vw, 34px) !important;
    line-height: 1.2 !important;
}

/* ================================================================= 
   ANNOUNCEMENT BAR UPLIFT
   ================================================================== */
.luxury-announcement-bar {
    background: #071a12 !important;
}

.slogan-group span {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 2.5px !important;
}

/* ================================================================= 
   MARQUEE CATEGORY STRIP — CLEANER CIRCLES
   ================================================================== */
.img-container {
    border: 2px solid rgba(212,175,55,0.35) !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06) !important;
    transition: box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.img-container:hover {
    border-color: #d4af37 !important;
    box-shadow: 0 6px 20px rgba(212,175,55,0.2) !important;
}

.marquee-category {
    font-size: 15px !important;
    font-weight: 500 !important;
}

/* ================================================================= 
   VIDEO GRID — CLEANER CAPTIONS
   ================================================================== */
.video-card-container {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.video-card-container:hover {
    box-shadow: 0 10px 32px rgba(10,38,29,0.12);
    transform: translateY(-4px);
}

.video-info {
    padding: 12px 14px 14px !important;
    background: #fff;
}

.video-title {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1b5e30 !important;
}

.play-btn-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.18);
    transition: background 0.3s ease;
}

.gallery-item:hover .play-btn-overlay {
    background: rgba(27,122,62,0.4);
}

.play-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.25s ease;
    font-size: 18px;
    color: #1b5e30;
}

.gallery-item:hover .play-icon-wrap {
    transform: scale(1.12);
    background: #d4af37;
}

/* ================================================================= 
   REVIEW CARDS — DEEPER ELEVATION
   ================================================================== */
.review-card-premium {
    border-left: 3px solid #d4af37 !important;
    border-radius: 16px !important;
}

.review-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
}

.reviewer-name {
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* ================================================================= 
   FAQ — MORE OPEN, READABLE
   ================================================================== */
.faq-item summary {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 15px !important;
    color: #e8d5a3 !important;
}

.faq-content {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: #555 !important;
}

/* ================================================================= 
   FOOTER — ELEVATED
   ================================================================== */
.footer-column h4 {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
    color: #d4af37 !important;
    margin-bottom: 18px !important;
    font-weight: 700 !important;
}

.footer-column a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    color: rgba(255,255,255,0.65) !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    line-height: 2.2 !important;
    letter-spacing: 0.3px !important;
}

.footer-column a:hover {
    color: #d4af37 !important;
}

.copyright {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    color: rgba(255,255,255,0.4) !important;
}

/* ================================================================= 
   BACK TO TOP — POLISHED PILL
   ================================================================== */
#btnBackToTop {
    background: linear-gradient(135deg, #1b7a3e, #0f5c2a) !important;
    border: 1.5px solid rgba(212,175,55,0.4) !important;
    color: #d4af37 !important;
    border-radius: 50px !important;
    width: 44px !important; height: 44px !important;
    font-size: 18px !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

#btnBackToTop:hover {
    background: #d4af37 !important;
    color: #1b5e30 !important;
    box-shadow: 0 8px 24px rgba(212,175,55,0.3) !important;
}

/* ================================================================= 
   MOBILE REFINEMENTS
   ================================================================== */
@media (max-width: 768px) {
    .deals-trust-strip {
        gap: 16px;
        font-size: 11px;
    }

    .price-amount {
        font-size: 19px;
    }

    .deals-subtitle {
        font-size: 12px;
        padding: 0 20px;
    }

    .card-quick-actions {
        bottom: 0 !important; /* Always show on mobile */
    }
}


/* =================================================================
   ★ PUSPARANI BRIGHTNESS UPGRADE — FINAL POLISH OVERRIDES
   Applied: All dark-navy (#0a261d / #05140f) changed to bright green
   ================================================================== */

/* Modal buttons — unified style (green background, white text) */
.btn-go-bag-elegant,
.btn-add-now {
    background: #1b7a3e !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
}
.btn-go-bag-elegant:hover,
.btn-add-now:hover {
    background: #0f5c2a !important;
    color: #ffffff !important;
}

/* Category badge on product cards — green */
.category-badge {
    background: rgba(27, 122, 62, 0.88) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.25) !important;
}

/* Marquee category section */
.marquee-container-glow {
    background: #ffffff !important;
    border-top: 2px solid #d4edda !important;
    border-bottom: 2px solid #d4edda !important;
}

/* Section header gold badge — brighter green */
.gold-badge {
    color: #2ea855 !important;
}

/* Boutique slogan colour */
.boutique-slogan {
    color: #1b5e30 !important;
}

/* Premium heading in category header */
.category-header-box .premium-heading,
.section-header .premium-heading {
    color: #1b5e30 !important;
}

/* Review section — keep but brighten heading */
.review-subtitle {
    color: #2ea855;
}

/* Deal card  — warm tinted */
.deal-card {
    background: #ffffff;
    border: 1px solid #f0e8c8;
    border-top: 3px solid #d4af37;
}
.deal-card:hover {
    box-shadow: 0 12px 30px rgba(212,175,55,0.2);
}

/* Deal discount badge — vivid red */
.deal-discount {
    background: #e53935 !important;
    color: #fff !important;
    font-weight: 700 !important;
}

/* Deal CTA button */
.deal-cta {
    background: #2ea855;
    color: #fff;
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* Menu nav links — darker green on white */
.menu a,
.menu-links a {
    color: #1b5e30 !important;
    font-weight: 600 !important;
}
.menu a:hover,
.menu-links a:hover {
    color: #2ea855 !important;
}
.menu a::after {
    background-color: #2ea855 !important;
}

/* Price colour — strong green */
.price-main,
.price-amount,
.museum-price,
.new-price,
.deal-price {
    color: #1b7a3e !important;
}

/* Back to top button — green */
#btnBackToTop {
    background: #2ea855 !important;
    color: #fff !important;
}
#btnBackToTop:hover {
    background: #1b7a3e !important;
    color: #fff !important;
}

/* Nursery section slider height increase for hero overlay to breathe */
.nursery-section {
    height: 460px !important;
}

@media (max-width: 768px) {
    .nursery-section {
        height: 320px !important;
    }
}
.header { background: linear-gradient(135deg, #1b7a3e, #2ea855, #5dc87a) !important; }

/* 2. White body */
body { background-color: #ffffff !important; }

/* 3. Fresher cards */
.luxury-card, .museum-card { background: #ffffff !important; border-top: 3px solid #2ea855 !important; }

/* 4. Brighter announcement bar */
.luxury-announcement-bar { background: #1b7a3e !important; }
.slogan-group span { color: #ffffff !important; }

/* 5. Warmer deals section */
.deals-section { background: #ffffff !important; padding: 30px 20px !important; border-radius: 16px; }
.deal-discount { background: #e53935 !important; }

/* 6. Green buy button */
.luxury-buy-btn { background: #2ea855 !important; color: #fff !important; }
.powered-by-section {
     text-align: left;
    padding: 12px 15px;
    background: #0a261d;
    color: #c8e6c9;
    font-size: 12px;
}

/* IMPORTANT: prevent overlap with sticky footer */
body {
    padding-bottom: 70px; /* adjust based on sticky footer height */
}

/* =================================================================
   ★ PUSPARANI BRIGHTNESS MEGA-UPGRADE
   Vivid greens, warm golds, crisp whites — full page enhancement
   ================================================================== */

/* --- BODY & PAGE WRAPPER --- */
body {
    background: #ffffff !important;
}

/* --- ANNOUNCEMENT BAR — vivid emerald gradient --- */
.luxury-announcement-bar {
    background: linear-gradient(90deg, #0f6e32, #2ea855, #16a34a, #0f6e32) !important;
    border-bottom: 2px solid #d4af37 !important;
    box-shadow: 0 3px 14px rgba(46,168,85,0.35) !important;
}
.slogan-group span {
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
}

/* --- HEADER — bright vivid gradient + gold border --- */
.header {
    background: linear-gradient(135deg, #0d6b30 0%, #2ea855 45%, #3dca6a 100%) !important;
    border-bottom: 3px solid #d4af37 !important;
    box-shadow: 0 6px 28px rgba(13,107,48,0.45) !important;
}
.brand-title-gold {
    background: linear-gradient(135deg, #ffe066, #d4af37, #ffd700, #d4af37) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    filter: drop-shadow(0 2px 6px rgba(212,175,55,0.4));
}
.brand-tagline {
    color: #c8f5d8 !important;
    letter-spacing: 4px !important;
}

/* --- STICKY NAV --- */
.menu, .sticky-nav {
    background: #ffffff !important;
    border-bottom: 2px solid #d4edda !important;
    box-shadow: 0 4px 16px rgba(27,122,62,0.1) !important;
}
.menu-links a, .menu a {
    color: #0d6b30 !important;
    font-weight: 700 !important;
}
.menu-links a:hover, .menu a:hover {
    color: #2ea855 !important;
}

/* --- MARQUEE CATEGORY STRIP --- */
.marquee-container-glow {
    background: linear-gradient(180deg, #ffffff 0%, #f0faf4 100%) !important;
    border-top: 2px solid #b7e8c8 !important;
    border-bottom: 2px solid #b7e8c8 !important;
    box-shadow: 0 6px 24px rgba(46,168,85,0.08) !important;
}
.marquee-category {
    color: #0d6b30 !important;
    font-weight: 600 !important;
}
.marquee-count {
    color: #d4af37 !important;
    font-weight: 700 !important;
}
.img-container {
    border: 2px solid #d4af37 !important;
    box-shadow: 0 4px 16px rgba(212,175,55,0.18) !important;
}

/* --- DEALS SECTION --- */
.deals-section {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 40px 20px !important;
}
.deals-header .premium-label,
.deals-main-title {
    color: #ffffff !important;
    text-shadow: 0 1px 6px rgba(0,0,0,0.18);
}
.deals-trust-strip {
    color: #2ea855 !important;
    font-weight: 600 !important;
}
.deals-trust-strip i {
    color: #d4af37 !important;
}
.deal-card {
    border: 1px solid rgba(212,175,55,0.25) !important;
    border-top: 3px solid #2ea855 !important;
    box-shadow: 0 4px 18px rgba(46,168,85,0.1) !important;
    background: #ffffff !important;
}
.deal-card:hover {
    box-shadow: 0 16px 40px rgba(46,168,85,0.22) !important;
    border-color: #d4af37 !important;
}
.deal-discount {
    background: linear-gradient(135deg, #e53935, #ff6b35) !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
}
.deal-cta {
    background: linear-gradient(135deg, #2ea855, #0d6b30) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    letter-spacing: 1.5px !important;
}
.deal-card:hover .deal-cta {
    background: linear-gradient(135deg, #d4af37, #f5c842) !important;
    color: #0d6b30 !important;
}
.deal-name { color: #1b5e30 !important; font-weight: 700 !important; }
.deal-price { color: #0d6b30 !important; font-weight: 800 !important; }
.deal-savings { color: #2ea855 !important; font-weight: 700 !important; }

/* --- NEW ARRIVALS SECTION --- */
.luxury-arrivals {
    background: #ffffff !important;
}
.luxury-card {
    border: 1px solid #c8ecd6 !important;
    border-top: 3px solid #2ea855 !important;
    box-shadow: 0 6px 22px rgba(46,168,85,0.10) !important;
    background: #ffffff !important;
}
.luxury-card:hover {
    box-shadow: 0 18px 45px rgba(46,168,85,0.22) !important;
    border-top-color: #d4af37 !important;
}
.luxury-buy-btn {
    background: linear-gradient(135deg, #2ea855, #0d6b30) !important;
    color: #ffffff !important;
    border: none !important;
    font-weight: 700 !important;
    letter-spacing: 1.2px !important;
}
.luxury-buy-btn:hover {
    background: linear-gradient(135deg, #d4af37, #f0c040) !important;
    color: #0d6b30 !important;
}

/* --- PLANT CATEGORY GRID (MUSEUM CARDS) --- */
.luxury-gallery-wrapper {
    background: #ffffff !important;
}
.museum-card {
    border: 1px solid #c8ecd6 !important;
    border-top: 3px solid #2ea855 !important;
    box-shadow: 0 6px 20px rgba(46,168,85,0.09) !important;
    background: #ffffff !important;
}
.museum-card:hover {
    box-shadow: 0 18px 42px rgba(46,168,85,0.20) !important;
}
.museum-plant-name { color: #0d6b30 !important; }
.museum-price { color: #0d6b30 !important; font-weight: 800 !important; }
.btn-add-to-cart-sm {
    background: linear-gradient(135deg, #2ea855, #0d6b30) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
}
.btn-add-to-cart-sm:hover {
    background: linear-gradient(135deg, #d4af37, #f0c040) !important;
    color: #0d6b30 !important;
}
.glass-info-overlay {
    background: #ffffff !important;
    border-top: 2px solid #e8f5e9 !important;
}

/* --- SECTION HEADERS / SLOGANS --- */
.boutique-slogan { color: #0d6b30 !important; }
.sub-slogan { color: #d4af37 !important; font-weight: 800 !important; }
.collection-label {
    background: rgba(212,175,55,0.12) !important;
    color: #b8860b !important;
    border-color: rgba(212,175,55,0.4) !important;
}
.premium-heading { color: #0d6b30 !important; }
.heading-line { background: linear-gradient(90deg, transparent, #d4af37, transparent) !important; }
.divider-leaf { color: #2ea855 !important; }

/* --- REVIEWS --- */
.luxury-reviews { background: #ffffff !important; }
.review-card-premium {
    background: #ffffff !important;
    border-left: 4px solid #2ea855 !important;
    box-shadow: 0 4px 18px rgba(46,168,85,0.08) !important;
}
.review-card-premium:hover {
    border-left-color: #d4af37 !important;
    box-shadow: 0 10px 30px rgba(212,175,55,0.15) !important;
}
.review-stars { color: #d4af37 !important; font-size: 16px !important; }
.reviewer-name { color: #0d6b30 !important; }

/* --- FAQ --- */
.luxury-faq-section {
    background: #ffffff !important;
    box-shadow: 0 8px 32px rgba(46,168,85,0.08) !important;
    border: 1px solid #d4edda !important;
}
.faq-item summary { color: #0d6b30 !important; }

/* --- QUICK ACTION EYE ICON (New Arrivals) --- */
.quick-action-btn {
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.7) !important;
}
.quick-action-btn:hover {
    background: rgba(46,168,85,0.82) !important;
    color: #ffffff !important;
    text-shadow: none !important;
    box-shadow: 0 4px 12px rgba(46,168,85,0.4) !important;
}

/* --- STICKY FOOTER --- */
.sticky-footer {
    background: linear-gradient(90deg, #0d6b30, #1b7a3e, #0d6b30) !important;
    border-top: 2px solid #d4af37 !important;
    box-shadow: 0 -4px 20px rgba(13,107,48,0.4) !important;
}
.footer-item.active, .footer-item.active i { color: #d4af37 !important; }

/* --- BACK TO TOP --- */
#btnBackToTop {
    background: linear-gradient(135deg, #2ea855, #0d6b30) !important;
    border: 2px solid rgba(212,175,55,0.5) !important;
    color: #d4af37 !important;
    box-shadow: 0 6px 20px rgba(46,168,85,0.35) !important;
}
#btnBackToTop:hover {
    background: #d4af37 !important;
    color: #0d6b30 !important;
}

/* --- CATEGORY BADGE ON CARDS --- */
.category-badge {
    background: rgba(13,107,48,0.90) !important;
    color: #d4af37 !important;
    border: 1px solid rgba(212,175,55,0.35) !important;
}

/* --- STOCK URGENCY BAR --- */
.in-stock-label { color: #2ea855 !important; font-weight: 700 !important; }
.critical { color: #e53935 !important; }

/* --- PLANT CARD RATING STARS --- */
.stars-display, .review-stars { color: #d4af37 !important; }
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TRUST STRIP — NEW SECTION BELOW HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.trust-strip {
    background: linear-gradient(90deg, #0d211a 0%, #163229 50%, #0d211a 100%);
    padding: 20px 0; /* Desktop padding */
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

.trust-strip-inner {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.trust-item-icon {
    color: #d4af37;
    font-size: 18px;
    flex-shrink: 0;
}

.trust-item-text strong {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f4f1ea;
    line-height: 1.2;
}

.trust-item-text span {
    display: block;
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.1;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(201, 168, 76, 0.2);
}

/* --- MOBILE 2-LINE GRID --- */

@media (max-width: 768px) {
    .trust-strip {
        padding: 12px 0; /* Reduced height for mobile */
    }

    .trust-strip-inner {
        display: flex;
        flex-wrap: wrap; /* Allows items to wrap to a second line */
        justify-content: center;
        gap: 15px 20px; /* Vertical and Horizontal spacing */
        padding: 0 15px;
    }

    .trust-item {
        /* This ensures exactly 2 items per line (with a little margin) */
        flex: 0 0 calc(50% - 20px); 
        justify-content: flex-start;
        gap: 8px; /* Tighter gap for mobile */
    }

    .trust-item-icon {
        font-size: 14px; /* Smaller icons to save height */
    }

    .trust-item-text strong {
        font-size: 10px; /* Scaled down for 2-column fit */
        letter-spacing: 0.05em;
    }

    .trust-item-text span {
        font-size: 9px;
    }

    .trust-divider {
        display: none; /* Dividers break grid layouts; removed for elegance */
    }
}
/* --- COMPREHENSIVE SLIDER BRIGHTNESS & CLARITY --- */

/* 1. Boost the images themselves */
.museum-img, 
.plant-card img, 
.marquee-content img {
    /* brightness(1.15) increases light by 15% */
    /* saturate(1.1) enhances the natural greens of the plants */
    /* contrast(1.05) keeps the image from looking 'washed out' */
    filter: brightness(1.15) saturate(1.1) contrast(1.05);
    
    /* Ensures the light adjustment is smooth and images stay sharp */
    transition: filter 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: hidden;
}

/* 2. Interactive Light (Optional: extra brightness when user hovers) */
.museum-img:hover, 
.plant-card:hover img {
    filter: brightness(1.25) saturate(1.15);
}

/* 3. Neutralize Dark Overlays & Enhance Background */
/* This ensures no semi-transparent 'dark layers' are sitting on top of your images */
.card-visual-wrapper::after,
.marquee-container::after,
.marquee-item::before {
    background: transparent !important;
    display: none !important;
}

/* 4. Brighten the Container Backdrop */
/* Using a pure white background and a soft glow helps the images 'pop' */
.marquee-container-glow, 
.card-visual-wrapper {
    background: #ffffff !important;
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.8);
}

/* 5. Mobile Optimization */
/* Ensures images stay bright and clear on mobile screens */
@media (max-width: 768px) {
    .museum-img, .plant-card img {
        filter: brightness(1.1) contrast(1.02);
    }
}
/* --- MULTI-STOP MARQUEE: REDUCED GAPS & FREQUENT BLINKS --- */
.marquee-track {
    display: flex;
    width: max-content;
    /* 60s for slow speed, but with two distinct stops now */
    animation: frequent-stop-logic 60s linear infinite;
}

.slogan-group span {
    font-family: 'Tenor Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 25px; /* Tight inter-text spacing */
}

@keyframes frequent-stop-logic {
    /* 0% to 20%: Scroll */
    0% { transform: translateX(0); opacity: 1; }
    20% { transform: translateX(-12.5%); opacity: 1; }

    /* FIRST STOP & BLINK (20% to 35%) */
    21% { opacity: 0.2; }
    23% { opacity: 1; }
    25% { opacity: 0.2; }
    27% { opacity: 1; }
    35% { transform: translateX(-12.5%); opacity: 1; }

    /* 35% to 60%: Scroll again */
    60% { transform: translateX(-25%); opacity: 1; }

    /* SECOND STOP & BLINK (60% to 75%) */
    61% { opacity: 0.2; }
    63% { opacity: 1; }
    65% { opacity: 0.2; }
    67% { opacity: 1; }
    75% { transform: translateX(-25%); opacity: 1; }

    /* 75% to 100%: Final Scroll to loop point */
    100% { transform: translateX(-50%); }
}
.luxury-faq-section .faq-item summary {
    color: #ffffff !important;
}
/* Container styling - Positioned Left & Transparent */
.wa-floating-btn {
    position: fixed;
    bottom: 80px;
    left: 20px; 
    width: 60px;
    height: 60px;
    /* Transparent WhatsApp Green (Using 50% opacity - adjust '0.5' as needed) */
    background-color: rgba(37, 211, 102, 0.4); 
    color: #fff; /* Keep the icon white for contrast */
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Higher to ensure it stays above footers */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Hover effect - make it more solid on hover for better visibility */
.wa-floating-btn:hover {
    transform: scale(1.1);
    background-color: rgba(37, 211, 102, 0.8); /* Less transparent on hover */
    color: #fff;
}

/* Transparent Pulse Animation */
.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    /* Keep the pulse also semi-transparent */
    background-color: rgba(37, 211, 102, 0.4);
    border-radius: 50%;
    z-index: -1;
    animation: wa-ripple 2s infinite;
}

@keyframes wa-ripple {
    0% {
        transform: scale(1);
        opacity: 0.8; /* Start visibility for the pulse */
    }
    100% {
        transform: scale(1.6);
        opacity: 0; /* Fade out completely */
    }
}

/* ================================================================= 
   OUT OF STOCK — Default.aspx museum cards
   ================================================================== */

/* OOS ribbon variant — dark red instead of promo red */
.oos-ribbon span {
    background-color : #8b0000 !important;
    color            : #ffffff !important;
}

/* Greyed-out placeholder that replaces ADD TO CART on OOS cards */
.oos-btn-placeholder {
    display         : flex;
    align-items     : center;
    justify-content : center;
    gap             : 6px;
    width           : 100%;
    padding         : 8px 0;
    background      : #f3f3f3;
    color           : #aaaaaa;
    border          : 1px dashed #cccccc;
    border-radius   : 6px;
    font-family     : 'Tenor Sans', sans-serif;
    font-size       : 10px;
    font-weight     : 700;
    letter-spacing  : 1.5px;
    text-transform  : uppercase;
    cursor          : not-allowed;
    margin-top      : 10px;
    pointer-events  : none;
}

@media (max-width: 768px) {
    .oos-btn-placeholder {
        font-size      : 9px;
        letter-spacing : 1px;
        padding        : 7px 0;
    }
}
