/* ============================================
   SWAMIKA JEWELS — Premium Gold & Black Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --gold:          #c9a84c;
    --denim:         #c9a84c;
    --gold-light:    #e8c96e;
    --gold-dark:     #9e7c2a;
    --gold-pale:     #f5e6b8;
    --burgundy:      #5C1A2E;
    --burgundy-dark: #3D0F1F;
    --burgundy-light:#7B2840;
    --black:         #0a0a0a;
    --black-soft:    #111111;
    --black-card:    #161616;
    --black-hover:   #1e1e1e;
    --dark:          #1a1a1a;
    --gray-900:      #212121;
    --gray-700:      #3d3d3d;
    --gray-500:      #6c6c6c;
    --gray-300:      #b0b0b0;
    --gray-100:      #f0f0f0;
    --gray-50:       #f8f8f8;
    --white:         #ffffff;
    --cream:         #fdf8f0;
    --success:       #22c55e;
    --danger:        #ef4444;
    --warning:       #f59e0b;
    --border-gold:   rgba(201,168,76,0.3);
    --shadow-gold:   0 4px 24px rgba(201,168,76,0.15);
    --shadow-dark:   0 4px 24px rgba(0,0,0,0.4);
    --radius:        12px;
    --radius-sm:     8px;
    --radius-lg:     20px;
    --transition:    0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

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

h1,h2,h3,h4,h5,h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--black-soft);
}

/* ---- Announcement Bar ---- */
.announcement-bar {
    background: var(--black-soft);
    color: var(--gold-light);
    text-align: center;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.announcement-bar span { color: var(--white); font-weight: 700; }

/* ---- Navbar ---- */
#mainNav {
    background: var(--black) !important;
    border-bottom: 1px solid var(--border-gold);
    padding: 0;
    transition: box-shadow 0.3s;
    z-index: 1050;
}
#mainNav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold) !important;
    letter-spacing: 1px;
    padding: 10px 0;
    text-decoration: none;
}
.navbar-brand img { height: 44px; width: auto; }
.brand-sub {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.85;
}

.nav-link {
    color: var(--gray-300) !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 18px 14px !important;
    transition: color var(--transition);
    text-transform: uppercase;
}
.nav-link:hover, .nav-link.active { color: var(--gold-light) !important; }

.dropdown-menu {
    background: var(--black-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-dark);
    padding: 8px 0;
}
.dropdown-item {
    color: var(--gray-300);
    font-size: 0.85rem;
    padding: 9px 20px;
    transition: all var(--transition);
}
.dropdown-item:hover {
    background: rgba(201,168,76,0.12);
    color: var(--gold-light);
}
.dropdown-divider { border-color: var(--border-gold); }

.nav-icon-btn {
    color: var(--gray-300) !important;
    font-size: 1rem;
    padding: 8px 10px;
    border-radius: 50%;
    transition: all var(--transition);
    position: relative;
}
.nav-icon-btn:hover { color: var(--gold-light) !important; background: rgba(201,168,76,0.1); }

.nav-icons { display: flex; align-items: center; gap: 4px; }

.navbar-toggler { border: 1px solid var(--border-gold) !important; padding: 5px 8px !important; }
.navbar-toggler i { color: var(--gold-light) !important; font-size: 1.1rem !important; }

/* Search input in nav */
#mainNav .form-control {
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--border-gold);
    color: var(--white);
    border-radius: 20px;
    padding-left: 14px;
    font-size: 0.8rem;
}
#mainNav .form-control::placeholder { color: var(--gray-500); }
#mainNav .form-control:focus { background: rgba(255,255,255,0.1); border-color: var(--gold); box-shadow: none; color: var(--white); }
#mainNav .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Flash alerts */
.alert-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); color: #16a34a; }
.alert-danger   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.3);  color: #dc2626; }

/* ---- Hero / Carousel ---- */
.hero-section { position: relative; overflow: hidden; }

.hero-slide {
    min-height: 85vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 60px 40px;
    color: var(--white);
}
.hero-label {
    display: inline-block;
    background: rgba(201,168,76,0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-content h1 span { color: var(--gold-light); }
.hero-content .lead {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-hero {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    margin-right: 12px;
    margin-bottom: 8px;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.5);
    color: var(--black);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}
.btn-hero-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 30px;
    border: 1.5px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
    margin-bottom: 8px;
    display: inline-block;
}
.btn-hero-outline:hover { border-color: var(--gold-light); color: var(--gold-light); background: rgba(201,168,76,0.1); }

.carousel-indicators button {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(201,168,76,0.4);
    border: none;
    transition: all 0.3s;
}
.carousel-indicators .active { background: var(--gold-light); width: 40px; }
.carousel-control-prev-icon, .carousel-control-next-icon { filter: drop-shadow(0 0 6px rgba(201,168,76,0.6)); }

/* ---- Trust Banner ---- */
.trust-banner {
    background: var(--black-soft);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
    padding: 20px 0;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 8px 0;
}
.trust-icon { font-size: 1.6rem; }
.trust-text {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}
.trust-sub { display: block; font-size: 0.7rem; color: var(--gray-500); }

/* ---- Section Headings ---- */
.section-heading { text-align: center; margin-bottom: 48px; }
.section-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-heading h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--black-soft);
    margin-bottom: 12px;
}
.section-heading p { color: var(--gray-500); font-size: 0.95rem; max-width: 500px; margin: 0 auto; }

/* ---- Category Cards ---- */
.category-section { padding: 80px 0; background: var(--cream); }

.category-card {
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    background: var(--white);
    transition: all 0.3s;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}
.category-icon { font-size: 2.5rem; margin-bottom: 12px; }
.category-card h6 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black-soft);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* ---- Product Cards ---- */
.product-card {
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
    aspect-ratio: 1/1;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.wishlist-btn:hover { background: var(--gold); color: var(--white); }
.wishlist-btn.wishlist-active { background: #e53e3e; color: #fff; }
.wishlist-btn.wishlist-active:hover { background: #c53030; color: #fff; }

.product-category {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}
.product-card .card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--black-soft);
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    margin-bottom: 8px;
}
.product-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.product-price .original {
    font-size: 0.78rem;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 400;
}
.discount-badge {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--black-soft), var(--dark));
    color: var(--gold-light);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 16px;
    transition: all var(--transition);
    width: 100%;
    margin-top: 12px;
    text-align: center;
    display: block;
}
.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(201,168,76,0.3);
}

/* ---- Gold Buttons ---- */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black) !important;
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 18px rgba(201,168,76,0.3);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,0.45);
    color: var(--black) !important;
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold) !important;
    border: 1.5px solid var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1px;
    padding: 11px 28px;
    border-radius: 30px;
    transition: all 0.3s;
    display: inline-block;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black) !important; }

/* ---- Why Section ---- */
.why-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--black-soft) 0%, #0f0f0f 50%, var(--black-soft) 100%);
    position: relative;
    overflow: hidden;
}
.why-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.why-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}
.why-card:hover {
    background: rgba(201,168,76,0.07);
    border-color: var(--gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-gold);
}
.why-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.why-card h5 { color: var(--gold-light); font-size: 0.95rem; font-weight: 700; font-family: 'Poppins', sans-serif; margin-bottom: 10px; }
.why-card p { color: var(--gray-500); font-size: 0.82rem; line-height: 1.6; margin: 0; }

/* ---- CTA Banner ---- */
.cta-banner {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner h2 { color: var(--black); font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(0,0,0,0.7); font-size: 1rem; margin-bottom: 28px; position: relative; }
.btn-cta {
    background: var(--black);
    color: var(--gold-light) !important;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 30px;
    border: none;
    transition: all 0.3s;
    position: relative;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.btn-cta:hover { background: var(--black-soft); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.4); color: var(--gold) !important; }

/* ---- Testimonials ---- */
.testimonial-section { padding: 90px 0; background: var(--cream); }
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    transition: all 0.3s;
    position: relative;
}
.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--gray-700); font-size: 0.88rem; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.reviewer { font-weight: 700; font-size: 0.85rem; color: var(--black-soft); }
.reviewer span { color: var(--gray-500); font-weight: 400; font-size: 0.78rem; }

/* ---- Instagram Section ---- */
.insta-section { padding: 80px 0; background: var(--white); }
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.insta-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-gold);
    background: var(--black-soft);
    transition: all 0.3s;
}
.insta-item:hover { transform: scale(0.98); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.insta-item:hover img { transform: scale(1.08); }
@media (max-width: 768px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---- Footer ---- */
footer { background: var(--black); }
.footer-top {
    padding: 64px 0 48px;
    border-bottom: 1px solid var(--border-gold);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
}
.footer-brand img { height: 40px; }
.footer-desc { color: var(--gray-500); font-size: 0.82rem; line-height: 1.7; margin-bottom: 20px; }

footer h5 { color: var(--gold-light); font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer ul li { margin-bottom: 10px; color: var(--gray-500); font-size: 0.82rem; display: flex; align-items: flex-start; gap: 8px; }
footer ul li a { color: var(--gray-500); transition: color var(--transition); }
footer ul li a:hover { color: var(--gold-light); }

.social-links { display: flex; gap: 10px; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(201,168,76,0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.85rem;
    transition: all var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-2px); }

.footer-bottom {
    padding: 20px 0;
    text-align: center;
    background: rgba(0,0,0,0.3);
}
.footer-bottom p { color: var(--gray-500); font-size: 0.78rem; margin-bottom: 8px; }
.footer-payments { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.footer-payments span { color: var(--gray-500); font-size: 0.75rem; }

.cod-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* ---- WhatsApp & Call Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
}
.wa-btn, .call-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white) !important;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.wa-btn { background: #25d366; }
.wa-btn:hover { background: #20b858; transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.call-btn { background: var(--gold); }
.call-btn:hover { background: var(--gold-dark); transform: scale(1.1); box-shadow: 0 6px 24px rgba(201,168,76,0.5); }
.call-btn i { color: var(--black) !important; }
.wa-btn i { color: var(--white) !important; }

/* ---- Shop Page ---- */
.shop-header {
    background: linear-gradient(135deg, var(--black-soft), var(--dark));
    padding: 50px 0 30px;
    border-bottom: 1px solid var(--border-gold);
}
.shop-header h1 { color: var(--white); font-size: 2rem; }
.shop-header .breadcrumb-item { color: var(--gray-500); font-size: 0.8rem; }
.shop-header .breadcrumb-item.active { color: var(--gold-light); }
.shop-header .breadcrumb-item a { color: var(--gray-500); }
.shop-header .breadcrumb-item a:hover { color: var(--gold-light); }
.shop-header .breadcrumb-item + .breadcrumb-item::before { color: var(--gray-700); }

.filter-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 80px;
}
.filter-card h6 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding-bottom: 10px;
}

/* ---- Product Detail ---- */
.product-detail-section { padding: 60px 0; }
.product-main-img {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-gold);
    background: var(--gray-50);
}
.product-main-img img { width: 100%; }
.product-thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}
.product-thumbnail:hover, .product-thumbnail.active { border-color: var(--gold); }
.product-detail-title { font-size: 1.7rem; font-weight: 800; color: var(--black-soft); margin-bottom: 10px; }
.product-detail-price { font-size: 1.8rem; font-weight: 900; color: var(--gold-dark); }
.product-detail-price .original { font-size: 1rem; text-decoration: line-through; color: var(--gray-400); font-weight: 400; margin-left: 10px; }
.rating-badge { background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 800; padding: 3px 9px; border-radius: 20px; }

/* ---- Cart & Checkout ---- */
.cart-item {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    transition: all var(--transition);
}
.cart-item:hover { border-color: var(--border-gold); box-shadow: 0 2px 12px rgba(201,168,76,0.1); }
.cart-item img { width: 90px; height: 90px; object-fit: cover; border-radius: var(--radius-sm); }
.order-summary-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 28px;
    position: sticky;
    top: 80px;
}
.order-summary-card h5 { color: var(--black-soft); font-size: 1rem; font-weight: 700; margin-bottom: 20px; border-bottom: 1px solid rgba(201,168,76,0.2); padding-bottom: 12px; }

/* ---- Auth Pages ---- */
.auth-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    background: var(--cream);
    padding: 60px 0;
}
.auth-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 8px 40px rgba(201,168,76,0.08);
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
}
.auth-card h2 { font-size: 1.6rem; color: var(--black-soft); margin-bottom: 6px; }
.auth-card .subtitle { color: var(--gray-500); font-size: 0.85rem; margin-bottom: 28px; }

/* ---- Forms ---- */
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-control, .form-select {
    border: 1.5px solid #e2e2e2;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    padding: 10px 14px;
    color: var(--gray-900);
    transition: border-color var(--transition), box-shadow var(--transition);
    background: var(--white);
}
.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
    outline: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    color: var(--black) !important;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 11px 24px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201,168,76,0.3); }
.btn-danger { background: var(--danger); border-color: var(--danger); }
.btn-success { background: var(--success); border-color: var(--success); color: var(--white) !important; font-weight: 600; }
.btn-outline-secondary { border-color: #ddd; color: var(--gray-700); }
.btn-outline-secondary:hover { background: var(--gray-100); border-color: #ccc; }

/* ---- Account Page ---- */
.account-sidebar {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 80px;
}
.account-sidebar .nav-link {
    color: var(--gray-700) !important;
    font-size: 0.85rem !important;
    padding: 10px 16px !important;
    border-radius: var(--radius-sm);
    text-transform: none !important;
    letter-spacing: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.account-sidebar .nav-link:hover, .account-sidebar .nav-link.active {
    background: rgba(201,168,76,0.1);
    color: var(--gold-dark) !important;
}
.account-sidebar .nav-link i { width: 18px; text-align: center; color: var(--gold); }

/* ---- Admin Navbar Override ---- */
.admin-navbar { background: var(--black-soft) !important; border-bottom: 1px solid var(--border-gold); }

/* ---- Badges ---- */
.badge { font-size: 0.65rem; font-weight: 700; padding: 4px 9px; border-radius: 20px; }
.badge.bg-success { background: rgba(34,197,94,0.15) !important; color: #16a34a; border: 1px solid rgba(34,197,94,0.3); }
.badge.bg-warning { background: rgba(245,158,11,0.15) !important; color: #d97706; border: 1px solid rgba(245,158,11,0.3); }
.badge.bg-danger  { background: rgba(239,68,68,0.15) !important;  color: #dc2626; border: 1px solid rgba(239,68,68,0.3); }
.badge.bg-primary { background: rgba(201,168,76,0.15) !important; color: var(--gold-dark); border: 1px solid var(--border-gold); }
.badge.bg-secondary { background: rgba(108,108,108,0.15) !important; color: var(--gray-500); border: 1px solid rgba(108,108,108,0.2); }

/* ---- Pagination ---- */
.pagination .page-link {
    border-color: rgba(201,168,76,0.2);
    color: var(--gray-700);
    font-size: 0.82rem;
    border-radius: 8px !important;
    margin: 0 2px;
}
.pagination .page-item.active .page-link { background: var(--gold); border-color: var(--gold); color: var(--black); font-weight: 700; }
.pagination .page-link:hover { background: rgba(201,168,76,0.1); color: var(--gold-dark); }

/* ---- Dividers & Ornament ---- */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 48px 0;
}

/* ---- Fade-in Animation ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Scroll to top ---- */
.scroll-top-btn {
    position: fixed;
    bottom: 90px;
    right: 26px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 9970;
    box-shadow: 0 4px 16px rgba(201,168,76,0.4);
    transition: all 0.3s;
}
.scroll-top-btn:hover { background: var(--gold-dark); transform: translateY(-2px); }
.scroll-top-btn.visible { display: flex; }

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-slide { min-height: 70vh; }
    .hero-content { padding: 40px 20px; }
    .hero-content h1 { font-size: 2rem; }
    .whatsapp-float { bottom: 16px; right: 16px; }
    .wa-btn, .call-btn { width: 46px; height: 46px; font-size: 1.1rem; }
    .filter-card { position: static; }
    #mainNav .collapse .nav-link { padding: 10px 0 !important; border-bottom: 1px solid rgba(201,168,76,0.08); }
}

@media (max-width: 575.98px) {
    .hero-slide { min-height: 60vh; }
    .trust-item { flex-direction: column; text-align: center; gap: 6px; }
    .category-icon { font-size: 2rem; }
    .auth-card { padding: 28px 20px; }
    .insta-grid { gap: 8px; }
    .footer-top { padding: 40px 0 32px; }
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-soft); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- Selection ---- */
::selection { background: rgba(201,168,76,0.25); color: var(--black-soft); }

/* ============================================
   PHASE 1 — LUXURY UI UPGRADES
   ============================================ */

/* ---- Premium Product Card ---- */
.product-card {
    border: none;
    border-radius: 16px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    height: 100%;
    position: relative;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(201,168,76,0.18), 0 8px 24px rgba(0,0,0,0.1);
}
.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: #f9f5ef;
    aspect-ratio: 1/1;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-img-wrap img { transform: scale(1.09); }

/* Quick View Button */
.product-quick-view {
    position: absolute;
    bottom: -48px;
    left: 0; right: 0;
    background: rgba(10,10,10,0.88);
    color: var(--gold-light);
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px;
    transition: bottom 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    text-decoration: none;
    display: block;
    backdrop-filter: blur(4px);
    border-top: 1px solid rgba(201,168,76,0.3);
}
.product-card:hover .product-quick-view { bottom: 0; }

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(229,62,62,0.4);
}
.deal-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #c9a84c, #9e7c2a);
    color: var(--black);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}
.new-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Wishlist btn upgrade */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e53e3e;
    transition: all 0.25s;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    z-index: 2;
}
.wishlist-btn:hover { background: #e53e3e; color: #fff; transform: scale(1.1); }
.wishlist-btn.wishlist-active { background: #e53e3e; color: #fff; }
.wishlist-btn.wishlist-active:hover { background: #c53030; }

/* Product card body */
.product-card .card-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
}
.product-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.product-card .card-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black-soft);
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-rating-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}
.product-rating-stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 1px; }
.product-rating-count { font-size: 0.68rem; color: var(--gray-500); }
.product-price {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--black-soft);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
    margin-top: auto;
}
.product-price .original {
    font-size: 0.78rem;
    color: #aaa;
    text-decoration: line-through;
    font-weight: 400;
}
.product-price .saving {
    font-size: 0.65rem;
    background: rgba(229,62,62,0.1);
    color: #e53e3e;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}
.btn-add-cart {
    background: var(--black-soft);
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    transition: all 0.25s;
    width: 100%;
    text-align: center;
    display: block;
    text-transform: uppercase;
}
.btn-add-cart:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}

/* No-image premium placeholder */
.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1200 0%, #0d0d0d 60%, #1a1200 100%);
    min-height: 240px;
}
.product-placeholder .placeholder-logo {
    font-family: 'Playfair Display', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(201,168,76,0.35);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 10px;
}
.product-placeholder .placeholder-icon {
    width: 60px;
    height: 60px;
    border: 1.5px solid rgba(201,168,76,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(201,168,76,0.3);
    font-size: 1.4rem;
}

/* ---- Luxury Category Section ---- */
.category-section { padding: 80px 0; background: #fdf8f0; }

.category-scroll-wrap {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    justify-content: center;
    flex-wrap: wrap;
}
.category-scroll-wrap::-webkit-scrollbar { display: none; }

@media (max-width: 768px) {
    .category-scroll-wrap {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
        gap: 16px;
        padding: 8px 12px 16px;
        margin: 0;
    }
    .category-circle-item {
        flex-shrink: 0;
        width: calc(25% - 12px);
        min-width: 72px;
        max-width: 90px;
    }
}

.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    scroll-snap-align: start;
    transition: transform 0.3s;
}
.category-circle-item:hover { transform: translateY(-6px); }

.category-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1200, #0a0a0a);
    border: 2px solid rgba(201,168,76,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.category-circle-item:hover .category-circle {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.15), 0 8px 24px rgba(201,168,76,0.2);
}
.category-circle-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--black-soft);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    width: 90px;
    line-height: 1.3;
}

/* ---- Trust Strip Upgrade ---- */
.trust-banner {
    background: var(--black-soft);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0;
}
.trust-strip {
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    scrollbar-width: none;
}
.trust-strip::-webkit-scrollbar { display: none; }
.trust-strip-item {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    border-right: 1px solid rgba(201,168,76,0.1);
    text-align: center;
    gap: 6px;
    transition: background 0.2s;
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-item:hover { background: rgba(201,168,76,0.05); }
.trust-strip-icon {
    width: 42px;
    height: 42px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 4px;
}
.trust-strip-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.3px;
}
.trust-strip-sub { font-size: 0.68rem; color: #888; }

/* ---- Brand Story Section ---- */
.brand-story-section {
    padding: 90px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.brand-story-section::before {
    content: 'SWAMIKA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(5rem, 15vw, 14rem);
    font-weight: 900;
    color: rgba(201,168,76,0.04);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 8px;
}
.brand-story-card {
    background: var(--white);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(201,168,76,0.15);
    box-shadow: 0 8px 40px rgba(201,168,76,0.06);
    position: relative;
}
.brand-story-card::before {
    content: '';
    position: absolute;
    top: 0; left: 40px; right: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}
.brand-story-stat {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(201,168,76,0.2);
}
.brand-story-stat:last-child { border-right: none; }
.brand-story-stat .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold-dark);
    display: block;
    line-height: 1;
}
.brand-story-stat .stat-label { font-size: 0.72rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; display: block; margin-top: 6px; }

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    flex-shrink: 0;
}

/* ---- WhatsApp CTA Section ---- */
.wa-cta-section {
    background: linear-gradient(135deg, #0a1a0a 0%, #0d2a0d 50%, #0a1a0a 100%);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(37,211,102,0.2);
    border-bottom: 1px solid rgba(37,211,102,0.2);
}
.wa-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(37,211,102,0.08) 0%, transparent 70%);
}
.wa-cta-bubble {
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.25);
    border-radius: 16px;
    padding: 32px 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}
.btn-wa-big {
    background: #25d366;
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 32px rgba(37,211,102,0.4);
    text-decoration: none;
}
.btn-wa-big:hover {
    background: #20b858;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
.btn-wa-big i { font-size: 1.3rem; }

/* ---- Sticky Mobile CTA Bar ---- */
.sticky-cart-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--black);
    border-top: 1px solid rgba(201,168,76,0.3);
    padding: 10px 16px;
    z-index: 9990;
    gap: 10px;
    align-items: center;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
@media (max-width: 767px) {
    .sticky-cart-bar { display: flex; }
    .product-detail-section { padding-bottom: 80px; }
}
.sticky-cart-price {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
}
.sticky-cart-price small { font-family: 'Poppins', sans-serif; font-size: 0.65rem; color: #888; display: block; font-weight: 400; }
.sticky-cart-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.sticky-cart-btn:hover { background: var(--gold-light); }

/* ---- Premium Trust Badges (product page) ---- */
.trust-badges-row {
    display: flex;
    gap: 0;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    overflow: hidden;
    margin: 16px 0;
}
.trust-badge-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    background: #fdf8f0;
    border-right: 1px solid rgba(201,168,76,0.12);
    text-align: center;
    gap: 4px;
    transition: background 0.2s;
}
.trust-badge-item:last-child { border-right: none; }
.trust-badge-item:hover { background: #f5ead8; }
.trust-badge-item i { color: var(--gold); font-size: 1.1rem; }
.trust-badge-item span { font-size: 0.65rem; font-weight: 700; color: var(--gray-700); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.3; }

/* ---- Delivery Promise Block ---- */
.delivery-promise {
    background: linear-gradient(135deg, #f0fff4, #ecfdf5);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 16px 0;
}
.delivery-promise-icon {
    width: 44px;
    height: 44px;
    background: rgba(16,185,129,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.delivery-promise-text strong { font-size: 0.85rem; color: #065f46; display: block; }
.delivery-promise-text span { font-size: 0.75rem; color: #6b7280; }

/* ---- Premium Review Cards ---- */
.review-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 14px;
    transition: all 0.2s;
}
.review-card:hover { border-color: rgba(201,168,76,0.3); box-shadow: 0 4px 20px rgba(201,168,76,0.08); }
.review-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.reviewer-info { display: flex; align-items: center; gap: 10px; }
.reviewer-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.85rem; color: var(--black);
    flex-shrink: 0;
}
.reviewer-name { font-size: 0.85rem; font-weight: 700; color: var(--black-soft); }
.reviewer-date { font-size: 0.7rem; color: var(--gray-500); }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; }
.review-title { font-weight: 700; font-size: 0.88rem; color: var(--black-soft); margin-bottom: 4px; }
.review-body { font-size: 0.83rem; color: var(--gray-700); line-height: 1.65; }

/* ---- Rating Summary Bar ---- */
.rating-summary {
    background: #fdf8f0;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}
.rating-big-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-dark);
    line-height: 1;
}
.rating-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.rating-bar-label { font-size: 0.7rem; color: var(--gray-500); width: 14px; text-align: right; }
.rating-bar-track { flex: 1; background: #e5e7eb; border-radius: 3px; height: 5px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; }
.rating-bar-count { font-size: 0.68rem; color: var(--gray-500); width: 20px; }

/* ---- Related Products Redesign ---- */
.related-section {
    padding: 50px 0;
    background: var(--cream);
    margin: 40px -999px;
    padding-left: 999px;
    padding-right: 999px;
}
.related-section h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--black-soft);
    margin-bottom: 24px;
}

/* ---- WhatsApp Product CTA ---- */
.product-wa-cta {
    background: linear-gradient(135deg, #064e3b, #065f46);
    border-radius: 12px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    text-decoration: none;
    transition: all 0.3s;
}
.product-wa-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}
.product-wa-cta-icon {
    width: 48px; height: 48px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: white;
    flex-shrink: 0;
}
.product-wa-cta-text strong { font-size: 0.9rem; color: #fff; display: block; margin-bottom: 2px; }
.product-wa-cta-text span { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.product-wa-cta-arrow { margin-left: auto; color: rgba(255,255,255,0.5); font-size: 1rem; }

/* ---- Section Divider Ornament ---- */
.ornament-divider {
    text-align: center;
    margin: 40px 0;
    position: relative;
}
.ornament-divider::before, .ornament-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3));
}
.ornament-divider::before { left: 0; }
.ornament-divider::after { right: 0; background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent); }
.ornament-divider span { color: var(--gold); font-size: 1.1rem; position: relative; z-index: 1; }

/* ---- Homepage stats ---- */
.stats-section {
    background: var(--black-soft);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
    padding: 40px 0;
}
.stat-item { text-align: center; padding: 10px 20px; border-right: 1px solid rgba(201,168,76,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 800; color: var(--gold); display: block; line-height: 1; }
.stat-label { font-size: 0.7rem; color: #888; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 4px; display: block; }

/* ---- Size buttons upgrade ---- */
.size-btn {
    padding: 8px 16px;
    border: 1.5px solid rgba(201,168,76,0.3);
    background: var(--white);
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--black-soft);
}
.size-btn:hover:not(:disabled) { border-color: var(--gold); background: rgba(201,168,76,0.08); }
.size-btn.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ---- Add to Cart btn (product page) ---- */
.btn-atc-main {
    background: linear-gradient(135deg, var(--black-soft), #1a1a1a);
    color: var(--gold-light);
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 15px 24px;
    transition: all 0.3s;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-atc-main:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 6px 24px rgba(201,168,76,0.4);
    transform: translateY(-1px);
}

/* ---- Responsive adjustments ---- */
@media (max-width: 575px) {
    .category-circle { width: 70px; height: 70px; font-size: 1.5rem; }
    .category-circle-label { font-size: 0.62rem; width: 68px; }
    .trust-strip-item { min-width: 130px; padding: 16px 10px; }
    .brand-story-card { padding: 28px 20px; }
    .wa-cta-bubble { padding: 24px 20px; }
    .product-card .card-body { padding: 10px 12px 12px; }
}

/* ---- Floating WhatsApp / Call buttons ---- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9980;
}
.whatsapp-float .wa-btn,
.whatsapp-float .call-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float .wa-btn { background: #25d366; color: #fff; }
.whatsapp-float .call-btn { background: var(--gold); color: var(--black); }
.whatsapp-float .wa-btn:hover,
.whatsapp-float .call-btn:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.45); }

/* On mobile, lift float buttons above sticky cart bar */
@media (max-width: 767px) {
    .whatsapp-float { bottom: 80px; right: 14px; }
    .whatsapp-float .wa-btn,
    .whatsapp-float .call-btn { width: 44px; height: 44px; font-size: 1rem; }
}

/* ---- Burgundy theme accents (matching logo) ---- */
.why-section {
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 100%) !important;
}
.section-label {
    color: var(--burgundy-light);
    border-color: rgba(124,40,64,0.4);
}
.section-label::before { background: var(--burgundy-light); }
.wa-cta-section {
    background: linear-gradient(135deg, #0a1a0a 0%, #0d2a0d 50%, #0a1a0a 100%);
}
/* Hero overlay tint — subtle burgundy glow */
.hero-overlay {
    background: linear-gradient(135deg,
        rgba(61,15,31,0.55) 0%,
        rgba(10,10,10,0.3) 50%,
        rgba(61,15,31,0.45) 100%
    ) !important;
}
