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

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #FAF9F7;
  --fg:           #0D0D0D;
  --card:         #F7F5F2;
  --secondary:    #0D0D0D;
  --secondary-fg: #E8D5B0;
  --primary:      #DFAC2A;
  --primary-fg:   #0D0D0D;
  --muted-bg:     #EDE9E3;
  --muted:        #666666;
  --border:       #DEDAD4;
  --gold:         #DFAC2A;
  --gold-light:   #F0CD75;
  --gold-dark:    #A57E1D;
  --cream:        #F5F1EB;
  --maroon:       #661A1A;
  --gold-grad:    linear-gradient(135deg, #A57E1D 0%, #DFAC2A 50%, #F0CD75 100%);
}

body { font-family: 'Montserrat', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.gold-gradient { background: var(--gold-grad); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  text-align: center;
  color: var(--fg);
}
.section-subtitle {
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ── TOP BAR ─────────────────────────────────────────── */
#top-bar {
  background: var(--secondary);
  color: var(--secondary-fg);
  font-size: 0.75rem;
  padding: 0.375rem 0;
}
#top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top-bar .phone-link {
  display: flex; align-items: center; gap: 4px;
  transition: color .2s;
}
#top-bar .phone-link:hover { color: var(--gold); }

/* ── HEADER ──────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,249,247,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-main {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1200px; margin: 0 auto;
}
.logo img { height: 60px; object-fit: contain; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

nav.desktop-nav { display: none; gap: 1.5rem; align-items: center; }
@media(min-width:1024px){ nav.desktop-nav { display: flex; } }
nav.desktop-nav a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em;
  position: relative; transition: color .2s; text-transform: uppercase;
}
nav.desktop-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width .25s;
}
nav.desktop-nav a:hover,
nav.desktop-nav a.active { color: var(--gold); }
nav.desktop-nav a:hover::after,
nav.desktop-nav a.active::after { width: 100%; }

/* (old header-actions overridden by .icon-btn below) */
.btn-menu { display: flex; }
@media(min-width:1024px){ .btn-menu { display: none; } }

/* ── MOBILE MENU ────────────────────────────────────── */
#mobile-menu {
  display: none; flex-direction: column;
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 1rem; gap: 0;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: .05em; text-transform: uppercase;
  padding: 0.65rem 0; border-bottom: 1px solid var(--border);
  transition: color .2s;
}
#mobile-menu a:hover { color: var(--gold); }

/* ── SEARCH OVERLAY (old ID rules — merged into .search-overlay below) ── */
.search-close { display: flex; justify-content: flex-end; margin-bottom: 0.75rem; }
.search-close button { font-size: 1.25rem; color: var(--muted); }

/* ── HERO SLIDER ────────────────────────────────────── */
#hero { position: relative; width: 100%; height: 50vh; overflow: hidden; }
@media(min-width:768px){ #hero { height: 70vh; } }

.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
}
.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5vw, 3.5rem);
  font-weight: 700; color: #fff;
  margin-bottom: 0.75rem;
  animation: slideUp .6s ease both;
}
.slide-sub {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: rgba(255,255,255,.9);
}
.slide-btn {
  margin-top: 1.5rem; padding: 0.75rem 2rem;
  background: var(--gold-grad); color: #fff;
  font-weight: 600; font-size: 0.75rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  border-radius: 4px; transition: opacity .2s;
}
.slide-btn:hover { opacity: .85; }

.slider-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.5rem;
}
.dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,.5); transition: all .3s; border: none;
}
.dot.active { background: #fff; width: 26px; border-radius: 5px; }

@keyframes slideUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── TRUST BADGES ───────────────────────────────────── */
#trust { background: var(--secondary); padding: 2rem 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem;
}
@media(min-width:768px){ .trust-grid { grid-template-columns: repeat(4,1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.5rem; }
.trust-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { color: #fff; }
.trust-item h3 { font-family: 'Playfair Display',serif; font-size: 0.9rem; color: var(--secondary-fg); font-weight: 600; }
.trust-item p  { font-size: 0.7rem; color: rgba(232,213,176,.6); }

/* ── COLLECTIONS SECTION ────────────────────────────── */
#collections { padding: 4rem 0; background: var(--bg); }
.collections-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 1rem; margin-top: 2.5rem;
}
@media(min-width:1024px){ .collections-grid { grid-template-columns: repeat(4,1fr); } }
.collection-card { position: relative; border-radius: 4px; overflow: hidden; cursor: pointer; }
.collection-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .5s;
}
.collection-card:hover img { transform: scale(1.1); }
.collection-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
}
.collection-card-overlay h3 { font-family: 'Playfair Display',serif; font-size: 1.1rem; font-weight: 700; color: #fff; }
.collection-card-overlay p  { font-size: 0.75rem; color: rgba(255,255,255,.8); }

/* ── DEALS ──────────────────────────────────────────── */
#deals { padding: 4rem 0; background: var(--cream); }
.deals-header { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media(min-width:768px){ .deals-header { flex-direction: row; align-items: center; justify-content: space-between; } }
.countdown { display: flex; gap: 0.5rem; }
.countdown-block {
  background: var(--secondary); color: var(--secondary-fg);
  padding: 0.5rem 0.75rem; border-radius: 4px;
  text-align: center; min-width: 56px;
}
.countdown-block .num { font-family: 'Playfair Display',serif; font-size: 1.25rem; font-weight: 700; display: block; }
.countdown-block .lbl { font-size: 0.6rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(232,213,176,.6); }

/* ── PRODUCT GRID ───────────────────────────────────── */
.products-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem;
}
@media(min-width:768px){ .products-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px){ .products-grid-4 { grid-template-columns: repeat(4,1fr); } }

.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 4px; overflow: hidden; transition: box-shadow .2s;
}
.product-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.12); }
.product-card-img { position: relative; overflow: hidden; }
.product-card-img img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .5s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.badge-label {
  position: absolute; top: 8px; left: 8px;
  padding: 2px 8px; font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  background: var(--gold-grad); color: #fff; border-radius: 3px;
}
.badge-off {
  position: absolute; bottom: 8px; right: 8px;
  background: var(--maroon); color: #fff;
  font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 3px;
}
.btn-wish {
  position: absolute; top: 8px; right: 8px;
  width: 32px; height: 32px; background: rgba(255,255,255,.85);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: color .2s;
}
.btn-wish:hover { color: var(--primary); }
.btn-wish.active svg { fill: var(--primary); stroke: var(--primary); }

.product-body { padding: 0.75rem; }
.product-cat { font-size: 0.625rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 0.25rem; }
.product-name {
  font-family: 'Playfair Display',serif; font-size: 0.875rem; font-weight: 600;
  margin-bottom: 0.5rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: color .2s; display: block;
}
.product-name:hover { color: var(--primary); }
.price-row { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.price-now  { font-weight: 700; font-size: 0.9rem; }
.price-old  { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; }
.stars-row  { display: flex; align-items: center; gap: 4px; margin-bottom: 0.5rem; font-size: 0.7rem; color: var(--muted); }
.stars-row .star { color: var(--gold); }
.btn-cart {
  width: 100%; padding: 0.5rem;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  background: var(--secondary); color: var(--secondary-fg);
  border-radius: 3px; display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: background .2s, color .2s;
}
.btn-cart:hover { background: var(--primary); color: var(--primary-fg); }

/* ── TOP SELLING ────────────────────────────────────── */
#top-selling { padding: 4rem 0; background: var(--bg); }

/* ── CATEGORIES ─────────────────────────────────────── */
#categories { padding: 4rem 0; background: var(--bg); }
.cat-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 0.75rem; margin-top: 2.5rem;
}
@media(min-width:576px){ .cat-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:768px){ .cat-grid { grid-template-columns: repeat(5,1fr); } }
.cat-btn {
  padding: 1rem 0.75rem; border: 1px solid var(--border);
  border-radius: 4px; font-size: 0.8rem; font-weight: 500;
  background: var(--card); transition: all .25s; text-align: center;
}
.cat-btn:hover { background: var(--gold-grad); color: #fff; border-color: transparent; }

/* ── WHY CHOOSE ─────────────────────────────────────── */
#why { padding: 4rem 0; background: var(--secondary); }
#why .section-title { color: var(--secondary-fg); }
#why .section-subtitle { color: rgba(232,213,176,.6); }
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
@media(min-width:768px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card {
  border: 1px solid rgba(223,172,42,.25); border-radius: 4px;
  padding: 1.5rem; text-align: center; transition: border-color .2s;
}
.why-card:hover { border-color: rgba(223,172,42,.6); }
.why-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold-grad); margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { color: #fff; }
.why-card h3 { font-family: 'Playfair Display',serif; font-size: 1.1rem; font-weight: 700; color: var(--secondary-fg); margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.8rem; color: rgba(232,213,176,.65); margin-bottom: 1rem; line-height: 1.7; }
.btn-outline-gold {
  padding: 0.5rem 1.5rem; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: 3px; transition: all .2s;
}
.btn-outline-gold:hover { background: var(--gold-grad); color: #fff; border-color: transparent; }

/* ── BLOG ───────────────────────────────────────────── */
#blog { padding: 4rem 0; background: var(--bg); }
.blog-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
@media(min-width:768px){ .blog-grid { grid-template-columns: repeat(3,1fr); } }
.blog-card { border: 1px solid var(--border); border-radius: 4px; overflow: hidden; transition: box-shadow .2s; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s; }
.blog-card:hover img { transform: scale(1.05); }
.blog-body { padding: 1rem; }
.blog-date { font-size: 0.625rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 0.25rem; }
.blog-title { font-family: 'Playfair Display',serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; transition: color .2s; }
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt { font-size: 0.8rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── TESTIMONIALS ───────────────────────────────────── */
#testimonials { padding: 4rem 0; background: var(--cream); }
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
@media(min-width:768px){ .testi-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .testi-grid { grid-template-columns: repeat(4,1fr); } }
.testi-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem; }
.testi-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; color: var(--gold); }
.testi-text { font-size: 0.8rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
.testi-author { font-family: 'Playfair Display',serif; font-size: 0.9rem; font-weight: 600; }
.testi-location { font-size: 0.7rem; color: var(--muted); }

/* ── NEWSLETTER ─────────────────────────────────────── */
#newsletter { padding: 3rem 0; background: var(--secondary); }
.newsletter-inner { max-width: 500px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 { font-family: 'Playfair Display',serif; font-size: 1.5rem; color: var(--secondary-fg); margin-bottom: 0.5rem; }
.newsletter-inner p  { font-size: 0.8rem; color: rgba(232,213,176,.65); margin-bottom: 1.5rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1; padding: 0.65rem 1rem;
  border: 1px solid rgba(223,172,42,.4); border-radius: 3px;
  background: rgba(255,255,255,.05); color: var(--secondary-fg);
  font-size: 0.8rem;
}
.newsletter-form input::placeholder { color: rgba(232,213,176,.4); }
.newsletter-form button {
  padding: 0.65rem 1.5rem; background: var(--gold-grad); color: #fff;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; border-radius: 3px; white-space: nowrap;
}

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--secondary); color: var(--secondary-fg);
  padding: 3rem 0 1.5rem; border-top: 1px solid rgba(223,172,42,.2);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem;
}
@media(min-width:768px){ .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand img { height: 48px; margin-bottom: 0.75rem; }
.footer-brand .logo-text { margin-bottom: 0.75rem; display: block; }
.footer-brand p { font-size: 0.8rem; color: rgba(232,213,176,.65); line-height: 1.7; max-width: 260px; }
.footer-contact-info { margin-top: 0.75rem; }
.footer-contact-info p { font-size: 0.75rem; color: rgba(232,213,176,.65); margin-bottom: 0.3rem; display: flex; align-items: flex-start; gap: 6px; }
.footer-col h4 { font-family: 'Playfair Display',serif; font-size: 1rem; margin-bottom: 0.75rem; color: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col ul li a { font-size: 0.8rem; color: rgba(232,213,176,.65); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(223,172,42,.15); padding-top: 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  text-align: center; font-size: 0.75rem; color: rgba(232,213,176,.45);
}
@media(min-width:768px){
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom a { color: rgba(232,213,176,.45); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }
.social-row { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(223,172,42,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--secondary-fg); font-size: 0.75rem; transition: all .2s;
  font-weight: 700;
}
.social-btn:hover { background: var(--gold-grad); border-color: transparent; }

/* ── TOAST ──────────────────────────────────────────── */
#toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: var(--secondary); color: var(--secondary-fg);
  padding: .65rem 1.5rem; border-radius: 4px;
  font-size: .8rem; z-index: 999; transition: opacity .3s;
  pointer-events: none; opacity: 0; white-space: nowrap;
  border: 1px solid rgba(223,172,42,.3);
}
#toast.show { opacity: 1; }

/* ── PAGE HERO (collection/inner pages) ─────────────── */
.page-hero {
  background: var(--secondary); padding: 3rem 0;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/bridal-collection-K4pUY9hF.jpg') center/cover no-repeat;
  opacity: .15;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display',serif; font-size: clamp(1.75rem,4vw,2.75rem); font-weight: 700; color: var(--secondary-fg); margin-bottom: 0.5rem; }
.page-hero p  { font-family: 'Cormorant Garamond',serif; font-style: italic; font-size: 1.2rem; color: rgba(232,213,176,.8); }

/* ── BREADCRUMB ─────────────────────────────────────── */
.breadcrumb { padding: 0.75rem 0; font-size: 0.75rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 0.35rem; }

/* ── FILTER BAR ─────────────────────────────────────── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  align-items: center; justify-content: space-between;
  padding: 1rem 0; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem;
}
.filter-group { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.filter-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.filter-btn {
  padding: 0.35rem 0.9rem; border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.75rem; font-weight: 500;
  background: var(--card); transition: all .2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold-grad); color: #fff; border-color: transparent; }
.sort-select {
  padding: 0.4rem 0.75rem; border: 1px solid var(--border);
  border-radius: 4px; font-size: 0.8rem; background: var(--card); color: var(--fg);
}
.results-count { font-size: 0.8rem; color: var(--muted); }

/* ── COLLECTION GRID WRAPPER ────────────────────────── */
.collection-section { padding: 2rem 0 4rem; background: var(--bg); }

/* ── PRODUCT DETAIL ─────────────────────────────────── */
.product-detail-section { padding: 2rem 0 4rem; background: var(--bg); }
.product-detail-grid {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
}
@media(min-width:768px){ .product-detail-grid { grid-template-columns: 1fr 1fr; } }
.product-img-wrap { border-radius: 4px; overflow: hidden; border: 1px solid var(--border); }
.product-img-wrap img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.product-detail-info .product-detail-cat { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 0.5rem; }
.product-detail-info h1 { font-family: 'Playfair Display',serif; font-size: clamp(1.25rem,3vw,1.75rem); font-weight: 700; margin-bottom: 0.75rem; }
.product-detail-price { font-size: 1.4rem; font-weight: 700; color: var(--fg); margin-bottom: 0.25rem; }
.product-detail-mrp  { font-size: 0.9rem; color: var(--muted); text-decoration: line-through; margin-bottom: 1rem; }
.product-detail-badge { display: inline-block; padding: 3px 10px; background: var(--maroon); color: #fff; font-size: 0.75rem; font-weight: 700; border-radius: 3px; margin-bottom: 1rem; }
.product-detail-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 0.8rem; color: var(--muted); }
.product-detail-rating .stars { color: var(--gold); }
.product-detail-desc { font-size: 0.85rem; line-height: 1.8; color: var(--muted); margin-bottom: 1.5rem; }
.product-detail-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.product-detail-meta strong { color: var(--fg); }
.qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.qty-ctrl { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.qty-ctrl button { padding: 0.5rem 0.75rem; font-size: 1rem; background: var(--muted-bg); transition: background .2s; }
.qty-ctrl button:hover { background: var(--border); }
.qty-ctrl span { padding: 0.5rem 1rem; font-weight: 600; min-width: 40px; text-align: center; }
.btn-add-cart {
  padding: 0.8rem 2rem; background: var(--gold-grad); color: #fff;
  font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .1em;
  border-radius: 4px; transition: opacity .2s;
}
.btn-add-cart:hover { opacity: .85; }
.product-badges-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.trust-chip {
  display: flex; align-items: center; gap: 4px;
  padding: 4px 10px; border: 1px solid var(--border); border-radius: 20px;
  font-size: 0.7rem; font-weight: 500; color: var(--muted); background: var(--muted-bg);
}
.trust-chip svg { color: var(--gold); }

/* ── CART PAGE ──────────────────────────────────────── */
.cart-section { padding: 2rem 0 4rem; background: var(--bg); }
.cart-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:768px){ .cart-grid { grid-template-columns: 1fr 360px; } }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { padding: 0.75rem; text-align: left; font-size: 0.75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); border-bottom: 2px solid var(--border); }
.cart-table td { padding: 1rem 0.75rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-img { width: 70px; height: 70px; border-radius: 4px; object-fit: cover; border: 1px solid var(--border); }
.cart-item-name { font-family: 'Playfair Display',serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 3px; }
.cart-item-cat  { font-size: 0.7rem; color: var(--muted); }
.cart-qty { display: flex; align-items: center; gap: 0.5rem; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 3px; background: var(--muted-bg); font-size: 1rem; display: flex; align-items: center; justify-content: center; }
.cart-qty button:hover { background: var(--border); }
.cart-qty span { min-width: 24px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.btn-remove { color: var(--muted); font-size: 0.75rem; transition: color .2s; }
.btn-remove:hover { color: var(--maroon); }
.order-summary { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem; position: sticky; top: 120px; }
.order-summary h3 { font-family: 'Playfair Display',serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.summary-row { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 0.6rem; color: var(--muted); }
.summary-row.total { font-size: 1rem; font-weight: 700; color: var(--fg); padding-top: 0.75rem; border-top: 1px solid var(--border); margin-top: 0.5rem; }
.coupon-row { display: flex; gap: 0.5rem; margin: 1rem 0; }
.coupon-row input { flex: 1; padding: 0.5rem 0.75rem; border: 1px solid var(--border); border-radius: 3px; font-size: 0.8rem; background: var(--bg); }
.coupon-row button { padding: 0.5rem 0.75rem; background: var(--secondary); color: var(--secondary-fg); border-radius: 3px; font-size: 0.75rem; font-weight: 600; }
.coupon-row button:hover { background: var(--primary); color: var(--primary-fg); }
.btn-checkout {
  width: 100%; padding: 0.85rem; background: var(--gold-grad); color: #fff;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .1em;
  border-radius: 4px; margin-top: 1rem; transition: opacity .2s;
}
.btn-checkout:hover { opacity: .85; }
.empty-cart { text-align: center; padding: 4rem 1rem; }
.empty-cart svg { color: var(--border); margin: 0 auto 1rem; }
.empty-cart h3 { font-family: 'Playfair Display',serif; font-size: 1.25rem; margin-bottom: 0.5rem; }
.empty-cart p  { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }
.btn-shop { display: inline-block; padding: 0.7rem 2rem; background: var(--gold-grad); color: #fff; font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: .1em; border-radius: 4px; }

/* ── BLOG / CONTACT / INNER PAGES ───────────────────── */
.inner-section { padding: 3rem 0 4rem; background: var(--bg); }
.blog-detail p  { font-size: 0.9rem; line-height: 1.9; color: var(--muted); margin-bottom: 1rem; }
.blog-detail h2 { font-family: 'Playfair Display',serif; font-size: 1.25rem; margin: 1.5rem 0 0.5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:768px){ .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.65rem 0.9rem; border: 1px solid var(--border); border-radius: 4px;
  font-size: 0.875rem; background: var(--card); color: var(--fg);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  padding: 0.8rem 2rem; background: var(--gold-grad); color: #fff;
  font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .1em;
  border-radius: 4px; transition: opacity .2s; align-self: flex-start;
}
.btn-submit:hover { opacity: .85; }
.contact-info-card { background: var(--secondary); border-radius: 4px; padding: 2rem; color: var(--secondary-fg); }
.contact-info-card h3 { font-family: 'Playfair Display',serif; font-size: 1.1rem; margin-bottom: 1.25rem; color: var(--gold); }
.info-item { display: flex; gap: 0.75rem; margin-bottom: 1rem; align-items: flex-start; }
.info-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.info-item h4 { font-size: 0.8rem; font-weight: 600; margin-bottom: 0.2rem; }
.info-item p  { font-size: 0.8rem; color: rgba(232,213,176,.7); line-height: 1.5; }

/* ── ADMIN / LOGIN ──────────────────────────────────── */
.admin-login-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.login-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; width: 100%; max-width: 400px; }
.login-card h2 { font-family: 'Playfair Display',serif; font-size: 1.5rem; text-align: center; margin-bottom: 0.5rem; }
.login-card p  { font-size: 0.8rem; color: var(--muted); text-align: center; margin-bottom: 1.5rem; }
.btn-login { width: 100%; padding: 0.8rem; background: var(--gold-grad); color: #fff; font-weight: 700; font-size: 0.875rem; border-radius: 4px; margin-top: 0.5rem; }
.admin-dashboard { padding: 2rem 0 4rem; }
.admin-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 2rem; }
@media(min-width:768px){ .admin-stats { grid-template-columns: repeat(4,1fr); } }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 4px; padding: 1.25rem; }
.stat-card .num { font-family: 'Playfair Display',serif; font-size: 1.75rem; font-weight: 700; color: var(--gold); }
.stat-card .lbl { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

/* ── GOLD SAVING PAGE ───────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
@media(min-width:768px){ .plans-grid { grid-template-columns: repeat(3,1fr); } }
.plan-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 8px;
  padding: 2rem; text-align: center; transition: all .3s; position: relative;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: var(--gold); }
.plan-card.featured { border-color: var(--gold); background: var(--secondary); color: var(--secondary-fg); }
.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold-grad); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; white-space: nowrap; }
.plan-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.plan-icon svg { color: #fff; }
.plan-name { font-family: 'Playfair Display',serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.plan-amount { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 0.25rem; }
.plan-desc { font-size: 0.8rem; line-height: 1.7; color: var(--muted); margin-bottom: 1.5rem; }
.plan-card.featured .plan-desc { color: rgba(232,213,176,.7); }
.plan-features { text-align: left; margin-bottom: 1.5rem; }
.plan-features li { font-size: 0.8rem; padding: 0.3rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.5rem; }
.plan-features li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; }

/* ── STATIC INFO PAGES ──────────────────────────────── */
.prose h2 { font-family: 'Playfair Display',serif; font-size: 1.2rem; margin: 2rem 0 0.75rem; }
.prose h3 { font-family: 'Playfair Display',serif; font-size: 1rem; margin: 1.25rem 0 0.5rem; }
.prose p  { font-size: 0.875rem; line-height: 1.9; color: var(--muted); margin-bottom: 1rem; }
.prose ul { padding-left: 1.25rem; margin-bottom: 1rem; }
.prose ul li { font-size: 0.875rem; line-height: 1.8; color: var(--muted); list-style: disc; }
.prose a { color: var(--gold); text-decoration: underline; }

/* ── IMG PLACEHOLDER ────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, #EDE9E3, #DEDAD4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,.3); font-size: 0.75rem; font-weight: 500;
}

/* ── PAGINATION ─────────────────────────────────────── */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.page-btn { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.875rem; background: var(--card); transition: all .2s; }
.page-btn:hover, .page-btn.active { background: var(--gold-grad); color: #fff; border-color: transparent; }

/* ── CHECKOUT SUCCESS ───────────────────────────────── */
.success-wrap { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.success-icon svg { color: #fff; }

/* ═══════════════════════════════════════════════════════
   NEW COMPONENT STYLES (components.js header/footer)
   ═══════════════════════════════════════════════════════ */

/* ── TOP BAR ─────────────────────────────────────────── */
.top-bar { background: #fff; color: var(--fg); font-size: 0.72rem; padding: 0.4rem 0; border-bottom: 1px solid var(--border); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.top-bar-text { font-weight: 500; color: var(--muted); }
.top-bar-links { display: flex; align-items: center; gap: 0.5rem; }
.top-bar-link { color: var(--fg); opacity: .7; transition: all .2s; }
.top-bar-link:hover { opacity: 1; color: var(--gold); }
.top-bar-sep { opacity: .4; }

/* ── RATES TICKER ────────────────────────────────────── */
.rates-ticker {
  background: var(--secondary); color: var(--secondary-fg);
  font-size: 0.68rem; padding: 0.3rem 0; overflow: hidden;
}
.rates-ticker-inner {
  display: flex; align-items: center; gap: 0.75rem;
  max-width: 1200px; margin: 0 auto; padding: 0 1rem;
}
.rates-label {
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--gold); white-space: nowrap; font-size: 0.65rem;
}
.rates-scroll {
  display: flex; align-items: center; gap: 0.6rem;
  overflow-x: auto; white-space: nowrap; scrollbar-width: none;
}
.rates-scroll::-webkit-scrollbar { display: none; }
.rate-item { display: inline-flex; align-items: center; gap: 0.3rem; font-weight: 500; }
.rate-item strong { font-weight: 700; color: #fff; }
.rate-sep { opacity: .3; font-size: 0.6rem; }
.rate-ticker-change { font-weight: 700; font-size: 0.62rem; }
.ticker-up { color: #4caf50; }
.ticker-down { color: #ef5350; }
@media(max-width:600px) { .rates-label { display: none; } }

/* ── SITE HEADER ─────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: linear-gradient(180deg, #0D0D0D 0%, #1a1206 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(223,172,42,.2); transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0.65rem 1rem; gap: 1rem;
}
.logo-wrap { display: flex; align-items: center; text-decoration: none; }
.header-logo-img { height: 52px; width: auto; filter: brightness(1.05); }
@media(max-width:767px){ .header-logo-img { height: 40px; } }

/* ── DESKTOP NAV ─────────────────────────────────────── */
.desktop-nav { display: none; align-items: center; gap: 1.25rem; }
@media(min-width:1024px){ .desktop-nav { display: flex; } }
.nav-link {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(232,213,176,.8);
  position: relative; padding-bottom: 2px; transition: color .2s;
}
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--gold); transition: width .25s; }
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ── HEADER ACTIONS ──────────────────────────────────── */
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.icon-btn { display: flex; align-items: center; justify-content: center; color: rgba(232,213,176,.8); transition: color .2s; position: relative; padding: 4px; }
.icon-btn:hover { color: var(--gold); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: -5px; right: -5px; min-width: 17px; height: 17px;
  border-radius: 9px; background: var(--gold); color: #0D0D0D;
  font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.hamburger { display: flex; color: rgba(232,213,176,.8); }
@media(min-width:1024px){ .hamburger { display: none; } }

/* ── MOBILE MENU ─────────────────────────────────────── */
.mobile-menu { display: none; border-top: 1px solid rgba(223,172,42,.15); background: #0D0D0D; }
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; max-width: 1200px; margin: 0 auto; padding: 0.5rem 1rem 1rem; }
.mobile-nav-link { font-size: 0.82rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; padding: 0.6rem 0; border-bottom: 1px solid rgba(223,172,42,.1); color: rgba(232,213,176,.75); transition: color .2s; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }
.mobile-menu-footer { padding-top: 0.5rem; }

/* ── SEARCH OVERLAY ──────────────────────────────────── */
.search-overlay,
#search-overlay { display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.65); align-items: center; justify-content: flex-start; padding-top: 100px; flex-direction: column; }
.search-overlay.open,
#search-overlay.open { display: flex; }
.search-box { background: #fff; border-radius: 8px; padding: 1rem; width: 92%; max-width: 580px; display: flex; align-items: center; gap: 0.75rem; box-shadow: 0 8px 40px rgba(0,0,0,.3); }
.search-box input { flex: 1; padding: 0.65rem 0.75rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.95rem; outline: none; }
.search-box input:focus { border-color: var(--gold); }
#btn-search-close { font-size: 1.1rem; color: var(--muted); padding: 4px 8px; transition: color .2s; }
#btn-search-close:hover { color: var(--fg); }
.search-results { background: #fff; border-radius: 8px; width: 92%; max-width: 580px; margin-top: 0.5rem; box-shadow: 0 8px 40px rgba(0,0,0,.3); overflow: hidden; }
.search-result-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1rem; border-bottom: 1px solid var(--border); transition: background .2s; }
.search-result-item:hover { background: var(--cream); }
.search-result-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 4px; border: 1px solid var(--border); }
.sr-name { font-size: 0.85rem; font-weight: 500; color: var(--fg); }
.sr-price { font-size: 0.8rem; color: var(--gold); font-weight: 600; }
.sr-empty { padding: 1rem; font-size: 0.85rem; color: var(--muted); text-align: center; }

/* ── UNIFIED BUTTON SYSTEM ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.65rem 1.5rem; border-radius: 4px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: all .2s; cursor: pointer; white-space: nowrap; border: none;
  text-decoration: none;
}
.btn-gold { background: var(--gold-grad); color: #fff; }
.btn-gold:hover { opacity: .88; }
.btn-outline-dark { background: transparent; color: var(--fg); border: 1.5px solid var(--fg); }
.btn-outline-dark:hover { background: var(--fg); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.7); }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.72rem; }
.btn-lg { padding: 0.85rem 2.5rem; font-size: 0.875rem; }
.btn-full { width: 100%; }
.btn-link { background: none; border: none; color: var(--gold); font-size: 0.8rem; cursor: pointer; text-decoration: underline; transition: opacity .2s; padding: 0; }
.btn-link:hover { opacity: .75; }
.text-gold { color: var(--gold); }

/* ── SECTION HELPERS ─────────────────────────────────── */
.section { padding: 4rem 0; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-sub { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.4rem; }
.section-desc { font-size: 0.875rem; color: var(--muted); margin-top: 0.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.section-footer { text-align: center; margin-top: 2.5rem; }
.text-left .section-title, .text-left .section-sub { text-align: left; margin-left: 0; }
.no-products { color: var(--muted); font-size: 0.875rem; text-align: center; padding: 3rem; grid-column: 1/-1; }

/* ── HERO ────────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; }
.hero-banner-slider { height: auto; }
.hero-banner-slider .slides-wrap { position: relative; width: 100%; aspect-ratio: 1280/400; }
.slides-wrap { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; background-size: cover; background-position: center; }
.slide.active { opacity: 1; }
.slide-banner-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide a { display: block; width: 100%; height: 100%; }
.slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.slide-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 2rem max(1rem, 5vw); max-width: 700px;
}
.slide-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 0.5rem; }
.slide-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 0.75rem; }
.slide-desc { font-size: 1rem; color: rgba(255,255,255,.85); margin-bottom: 1.5rem; max-width: 420px; line-height: 1.6; }
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-dots { position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 5; }
.dot { width: 10px; height: 10px; border-radius: 9px; background: rgba(255,255,255,.5); border: none; cursor: pointer; transition: all .3s; }
.dot.active { background: #fff; width: 26px; }
.hero-prev, .hero-next { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.2); color: #fff; font-size: 1.75rem; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.hero-prev { left: 1rem; } .hero-next { right: 1rem; }
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,.4); }
@media(max-width:767px){ .hero-banner-slider .slides-wrap { aspect-ratio: auto; height: auto; min-height: 160px; } .slide-banner-img { object-fit: contain; height: auto; } }

/* ── TRUST BAR ───────────────────────────────────────── */
.trust-bar { background: var(--secondary); padding: 1.75rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media(min-width:768px){ .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-title { font-size: 0.82rem; font-weight: 600; color: var(--secondary-fg); }
.trust-sub { font-size: 0.7rem; color: rgba(232,213,176,.6); }

/* ── COLLECTIONS GRID ────────────────────────────────── */
.collections-section { background: var(--bg); }
.collections-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2,1fr); }
@media(min-width:1024px){ .collections-grid { grid-template-columns: repeat(3,1fr); } }
.collection-card { position: relative; border-radius: 6px; overflow: hidden; display: block; }
.collection-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s; display: block; }
.collection-card:hover img { transform: scale(1.07); }
.collection-card-lg { grid-row: span 2; }
.collection-card-lg img { aspect-ratio: auto; height: 100%; min-height: 300px; }
.collection-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
  transition: background .3s;
}
.collection-card:hover .collection-overlay { background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.15) 55%); }
.collection-overlay h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.collection-overlay p { font-size: 0.78rem; color: rgba(255,255,255,.75); margin-bottom: 0.5rem; }
.coll-cta { font-size: 0.72rem; color: var(--gold-light); font-weight: 600; letter-spacing: .05em; transition: letter-spacing .2s; }
.collection-card:hover .coll-cta { letter-spacing: .1em; }

/* ── DEALS SECTION ───────────────────────────────────── */
.deals-section { background: var(--cream); }
.deals-header { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.countdown-wrap { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.cd-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.countdown { display: flex; align-items: center; gap: 0.25rem; }
.cd-unit { background: var(--secondary); color: var(--secondary-fg); border-radius: 5px; padding: 0.35rem 0.6rem; text-align: center; min-width: 50px; }
.cd-unit span { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; display: block; line-height: 1; }
.cd-unit small { font-size: 0.55rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(232,213,176,.5); }
.cd-colon { font-size: 1.25rem; font-weight: 700; color: var(--muted); line-height: 1; padding-bottom: 4px; }

/* ── PRODUCT CARDS ───────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media(min-width:768px){ .products-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:1024px){ .products-grid { grid-template-columns: repeat(4,1fr); } }
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: box-shadow .25s, transform .25s; position: relative; }
.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.12); transform: translateY(-2px); }
.product-badge { position: absolute; top: 8px; left: 8px; z-index: 2; padding: 3px 9px; font-size: 0.62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; background: var(--gold-grad); color: #fff; border-radius: 3px; }
.product-img-wrap { position: relative; overflow: hidden; }
.product-img-wrap img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .5s; display: block; }
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.wish-btn { position: absolute; top: 8px; right: 8px; z-index: 2; width: 30px; height: 30px; background: rgba(255,255,255,.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: color .2s, background .2s; }
.wish-btn:hover, .wish-btn.active { color: #e53935; background: #fff; }
.wish-btn.active svg { fill: #e53935; }
.product-info { padding: 0.75rem; }
.product-meta { font-size: 0.62rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 0.25rem; }
.product-name { font-family: 'Playfair Display', serif; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.4rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: block; transition: color .2s; }
.product-name:hover { color: var(--gold); }
.product-rating { display: flex; align-items: center; gap: 4px; font-size: 0.7rem; color: var(--gold); margin-bottom: 0.4rem; }
.rating-count { color: var(--muted); font-size: 0.68rem; }
.product-price-row { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 0.65rem; }
.product-price { font-weight: 700; font-size: 0.9rem; }
.product-mrp { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; }
.product-discount { font-size: 0.68rem; color: #2e7d32; font-weight: 600; background: #e8f5e9; padding: 1px 5px; border-radius: 3px; }

/* ── CATEGORY SECTION ────────────────────────────────── */
.category-section { background: var(--muted-bg); }
.cat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0.75rem; }
@media(min-width:576px){ .cat-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:768px){ .cat-grid { grid-template-columns: repeat(4,1fr); } }
@media(min-width:1024px){ .cat-grid { grid-template-columns: repeat(6,1fr); } }
.cat-btn { padding: 0.9rem 0.5rem; border: 1.5px solid var(--border); border-radius: 5px; font-size: 0.78rem; font-weight: 500; background: var(--card); transition: all .25s; text-align: center; color: var(--fg); }
.cat-btn:hover { background: var(--gold-grad); color: #fff; border-color: transparent; transform: translateY(-2px); }

/* ── WHY SECTION ─────────────────────────────────────── */
.why-section { background: var(--secondary); }
.why-section .section-title, .why-section .section-sub { color: var(--secondary-fg); }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
.why-card { border: 1px solid rgba(223,172,42,.2); border-radius: 6px; padding: 2rem 1.5rem; text-align: center; transition: border-color .25s; }
.why-card:hover { border-color: rgba(223,172,42,.55); }
.why-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--gold-grad); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin: 0 auto 1rem; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--secondary-fg); margin-bottom: 0.6rem; }
.why-card p { font-size: 0.82rem; color: rgba(232,213,176,.65); line-height: 1.8; }

/* ── GOLD RATE BANNER ────────────────────────────────── */
.gold-rate-banner, .gold-info-strip { background: var(--secondary); padding: 1.25rem 0; border-top: 1px solid rgba(223,172,42,.2); border-bottom: 1px solid rgba(223,172,42,.2); }
.gold-rate-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; justify-content: center; }
.gold-rate-item { text-align: center; }
.gr-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(232,213,176,.6); display: block; }
.gr-value { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.gold-rate-sep { width: 1px; height: 36px; background: rgba(223,172,42,.2); }

/* ── BLOG GRID ───────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px){ .blog-grid { grid-template-columns: repeat(3,1fr); } }
.blog-grid-lg { grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:768px){ .blog-grid-lg { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .blog-grid-lg { grid-template-columns: repeat(3,1fr); } }
.blog-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: box-shadow .25s, transform .25s; }
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-2px); }
.blog-img-wrap { position: relative; display: block; overflow: hidden; }
.blog-img-wrap img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s; display: block; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-cat { position: absolute; top: 10px; left: 10px; background: var(--gold-grad); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; padding: 3px 8px; border-radius: 3px; }
.blog-content { padding: 1.1rem; }
.blog-meta { font-size: 0.68rem; color: var(--muted); margin-bottom: 0.4rem; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; line-height: 1.4; }
.blog-title a { color: var(--fg); transition: color .2s; }
.blog-title a:hover { color: var(--gold); }
.blog-excerpt { font-size: 0.8rem; color: var(--muted); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 0.75rem; }
.blog-read-more { font-size: 0.78rem; color: var(--gold); font-weight: 600; transition: gap .2s; }
.blog-read-more:hover { text-decoration: underline; }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-section { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media(min-width:768px){ .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .testimonials-grid { grid-template-columns: repeat(4,1fr); } }
.testimonial-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.82rem; color: var(--muted); line-height: 1.8; font-style: italic; margin-bottom: 1rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold-grad); color: #fff; font-size: 0.72rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testimonial-name { font-size: 0.875rem; font-weight: 600; }
.testimonial-role { font-size: 0.7rem; color: var(--muted); }

/* ── NEWSLETTER SECTION ──────────────────────────────── */
.newsletter-section { background: var(--secondary); padding: 3.5rem 0; }
.newsletter-inner { display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: center; justify-content: space-between; }
.newsletter-text { flex: 1; min-width: 260px; }
.newsletter-text h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--secondary-fg); margin-bottom: 0.5rem; }
.newsletter-text p { font-size: 0.82rem; color: rgba(232,213,176,.65); margin-bottom: 0.75rem; }
.newsletter-perks { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.newsletter-perks span { font-size: 0.72rem; color: var(--gold-light); }
.newsletter-form { flex: 1; min-width: 280px; max-width: 440px; }
.newsletter-input-wrap { display: flex; gap: 0.5rem; }
.newsletter-input-wrap input { flex: 1; padding: 0.65rem 1rem; border: 1px solid rgba(223,172,42,.35); border-radius: 4px; background: rgba(255,255,255,.06); color: var(--secondary-fg); font-size: 0.85rem; outline: none; }
.newsletter-input-wrap input::placeholder { color: rgba(232,213,176,.4); }
.newsletter-input-wrap input:focus { border-color: var(--gold); }
.newsletter-note { font-size: 0.68rem; color: rgba(232,213,176,.4); margin-top: 0.5rem; }

/* ── SITE FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--secondary); color: var(--secondary-fg); padding: 3rem 0 0; border-top: 1px solid rgba(223,172,42,.2); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; padding: 0 1rem 2.5rem; }
@media(min-width:768px){ .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }
@media(min-width:1024px){ .footer-top { grid-template-columns: 2.5fr 1fr 1fr 1fr 1.5fr; } }
.footer-logo { margin-bottom: 0.75rem; }
.footer-logo-img { height: 60px; width: auto; filter: brightness(1.1); }
.footer-desc { font-size: 0.8rem; color: rgba(232,213,176,.6); line-height: 1.8; margin-bottom: 1rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.5rem; }
.social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(223,172,42,.3); display: flex; align-items: center; justify-content: center; color: var(--secondary-fg); transition: all .2s; }
.social-link:hover { background: var(--gold-grad); border-color: transparent; }
.footer-heading { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 700; color: var(--gold); margin-bottom: 0.85rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-links { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-links li a { font-size: 0.8rem; color: rgba(232,213,176,.65); transition: color .2s; }
.footer-links li a:hover { color: var(--gold); }
.footer-address { font-style: normal; }
.footer-address p { font-size: 0.8rem; color: rgba(232,213,176,.65); line-height: 1.7; margin-bottom: 0.6rem; }
.footer-address a { color: rgba(232,213,176,.65); transition: color .2s; }
.footer-address a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(223,172,42,.15); padding: 1rem; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; text-align: center; }
@media(min-width:768px){ .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.73rem; color: rgba(232,213,176,.4); }
.footer-trust { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.7rem; color: rgba(232,213,176,.5); }

/* ── PAGE HERO (updated) ─────────────────────────────── */
.page-hero { background: var(--secondary); padding: 3rem 0 2.5rem; text-align: center; }
.page-hero-sm { padding: 1.5rem 0 1rem; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; color: var(--secondary-fg); margin-bottom: 0.5rem; }
.page-hero-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 0.35rem; }
.page-hero-desc { font-size: 0.875rem; color: rgba(232,213,176,.7); max-width: 520px; margin: 0.5rem auto 0; }
.breadcrumb { font-size: 0.75rem; color: rgba(232,213,176,.55); margin-bottom: 0.75rem; display: flex; align-items: center; flex-wrap: wrap; gap: 0; justify-content: center; }
.breadcrumb a { color: rgba(232,213,176,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── FILTER BAR (updated) ────────────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; justify-content: space-between; padding: 1rem 0; border-bottom: 1px solid var(--border); margin-bottom: 1.75rem; }
.filter-left { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.filter-right { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--muted); }
.filter-btns { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.prod-count { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }
.sort-select { padding: 0.4rem 0.65rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.8rem; background: var(--card); color: var(--fg); outline: none; }
.sort-select:focus { border-color: var(--gold); }

/* ── CART PAGE ───────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media(min-width:900px){ .cart-layout { grid-template-columns: 1fr 360px; } }
.cart-items-col {}
.cart-items-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 0.75rem; border-bottom: 2px solid var(--border); margin-bottom: 1rem; }
.cart-items-header h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; }
.cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: center; }
.cart-item-img { width: 80px; height: 80px; border-radius: 5px; overflow: hidden; flex-shrink: 0; border: 1px solid var(--border); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-meta { font-size: 0.62rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 0.2rem; }
.cart-item-name { font-family: 'Playfair Display', serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.cart-item-name a { color: var(--fg); transition: color .2s; }
.cart-item-name a:hover { color: var(--gold); }
.cart-item-price { font-size: 0.875rem; font-weight: 700; }
.cart-item-mrp { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; margin-left: 0.4rem; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; flex-shrink: 0; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.qty-control button { padding: 0.35rem 0.65rem; font-size: 1rem; background: var(--muted-bg); transition: background .15s; }
.qty-control button:hover { background: var(--border); }
.qty-control span { padding: 0.35rem 0.65rem; font-weight: 600; min-width: 34px; text-align: center; font-size: 0.875rem; }
.cart-item-line-total { font-size: 0.875rem; font-weight: 700; }
.cart-remove-btn { color: var(--muted); font-size: 0.85rem; transition: color .2s; }
.cart-remove-btn:hover { color: var(--maroon); }
.cart-summary { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; position: sticky; top: 100px; align-self: start; }
.cart-summary h2 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); }
.coupon-box { background: var(--muted-bg); border-radius: 5px; padding: 0.9rem; margin-bottom: 1.25rem; }
.coupon-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-bottom: 0.5rem; }
.coupon-row { display: flex; gap: 0.5rem; }
.coupon-row input { flex: 1; padding: 0.45rem 0.65rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.82rem; background: #fff; text-transform: uppercase; outline: none; }
.coupon-row input:focus { border-color: var(--gold); }
.coupon-msg { font-size: 0.75rem; margin-top: 0.4rem; }
.coupon-msg.success { color: #2e7d32; }
.coupon-msg.error { color: var(--maroon); }
.summary-lines { margin-bottom: 1.25rem; }
.summary-line { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 0.4rem 0; color: var(--muted); }
.summary-total { font-size: 1rem; font-weight: 700; color: var(--fg); border-top: 1.5px solid var(--border); margin-top: 0.5rem; padding-top: 0.75rem; }
.cart-trust { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.cart-trust span { font-size: 0.68rem; color: var(--muted); }
.cart-empty { text-align: center; padding: 5rem 1rem; }
.cart-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.cart-empty h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
.cart-empty p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }

/* ── PRODUCT DETAIL ──────────────────────────────────── */
.product-detail-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width:768px){ .product-detail-layout { grid-template-columns: 1fr 1fr; } }
.pd-images {}
.pd-main-img { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); margin-bottom: 0.75rem; }
.pd-main-img img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pd-thumbnails { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pd-thumb { width: 70px; height: 70px; object-fit: cover; border-radius: 5px; border: 2px solid var(--border); cursor: pointer; transition: border-color .2s; }
.pd-thumb.active, .pd-thumb:hover { border-color: var(--gold); }
.pd-info {}
.pd-meta { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 0.4rem; }
.pd-title { font-family: 'Playfair Display', serif; font-size: clamp(1.2rem,3vw,1.8rem); font-weight: 700; margin-bottom: 0.75rem; }
.pd-rating { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; margin-bottom: 1rem; }
.pd-price-row { display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.pd-price { font-size: 1.6rem; font-weight: 700; }
.pd-mrp { font-size: 1rem; color: var(--muted); text-decoration: line-through; }
.pd-badge { background: var(--maroon); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 3px 9px; border-radius: 4px; }
.pd-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
.pd-options { margin-bottom: 1.25rem; }
.pd-qty-wrap label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); display: block; margin-bottom: 0.4rem; }
.pd-actions { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; align-items: center; }
.pd-wish-btn { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--border); background: var(--muted-bg); color: var(--muted); transition: all .2s; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pd-wish-btn:hover, .pd-wish-btn.active { border-color: #e53935; color: #e53935; }
.pd-wish-btn.active svg { fill: #e53935; }
.pd-details-box { background: var(--muted-bg); border-radius: 6px; padding: 1.1rem; margin-bottom: 1.25rem; }
.pd-details-box h4 { font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: 0.65rem; }
.pd-details-table { width: 100%; font-size: 0.82rem; border-collapse: collapse; }
.pd-details-table th { padding: 0.4rem 0.5rem 0.4rem 0; font-weight: 600; color: var(--fg); text-align: left; width: 45%; vertical-align: top; }
.pd-details-table td { padding: 0.4rem 0; color: var(--muted); }
.pd-trust { display: flex; flex-wrap: wrap; gap: 0.6rem; font-size: 0.72rem; color: var(--muted); padding-top: 1rem; border-top: 1px solid var(--border); }
.not-found-wrap { text-align: center; padding: 5rem 1rem; }
.not-found-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 0.5rem; }
.not-found-wrap p { color: var(--muted); margin-bottom: 1.5rem; }

/* ── ADMIN PAGE ──────────────────────────────────────── */
.admin-body { background: #f0f0f0; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem; background: var(--bg); }
.admin-login-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 2.5rem; width: 100%; max-width: 420px; box-shadow: 0 4px 24px rgba(0,0,0,.08); }
.admin-login-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1.5rem; justify-content: center; }
.admin-login-sub { font-size: 0.82rem; color: var(--muted); text-align: center; margin-bottom: 1.5rem; }
.login-error { color: var(--maroon); font-size: 0.82rem; background: #ffeaea; padding: 0.5rem 0.75rem; border-radius: 4px; margin-bottom: 0.75rem; }
.admin-login-back { text-align: center; margin-top: 1.25rem; font-size: 0.8rem; color: var(--muted); }
.admin-login-back a { color: var(--gold); }
#admin-dashboard { display: none; min-height: 100vh; }
#admin-dashboard[style*="flex"] { display: flex !important; }
.admin-sidebar { width: 240px; background: var(--secondary); min-height: 100vh; display: flex; flex-direction: column; padding: 1.5rem 1rem; flex-shrink: 0; }
.admin-sidebar-logo { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 2rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(223,172,42,.2); }
.admin-nav { display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.admin-nav-btn { display: flex; align-items: center; gap: 0.65rem; padding: 0.65rem 0.8rem; border-radius: 5px; font-size: 0.82rem; font-weight: 500; color: rgba(232,213,176,.7); transition: all .2s; text-align: left; width: 100%; }
.admin-nav-btn:hover, .admin-nav-btn.active { background: rgba(223,172,42,.15); color: var(--gold); }
.admin-logout-btn { margin-top: auto; padding: 0.65rem 0.8rem; border-radius: 5px; font-size: 0.82rem; font-weight: 500; color: rgba(232,213,176,.55); transition: color .2s; text-align: left; }
.admin-logout-btn:hover { color: var(--maroon); }
.admin-main { flex: 1; overflow-x: hidden; }
.admin-topbar { background: #fff; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.admin-topbar h1 { font-family: 'Playfair Display', serif; font-size: 1.2rem; }
.admin-user-info { display: flex; align-items: center; gap: 0.6rem; font-size: 0.85rem; }
.admin-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--gold-grad); color: #fff; font-weight: 700; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; }
.admin-tab { padding: 1.5rem; }
.admin-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; margin-bottom: 1.5rem; }
@media(min-width:900px){ .admin-stats { grid-template-columns: repeat(4,1fr); } }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; display: flex; align-items: center; gap: 1rem; }
.stat-icon { font-size: 2rem; }
.stat-value { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: 2px; }
.stat-change { font-size: 0.7rem; color: var(--muted); margin-top: 2px; }
.stat-change.positive { color: #2e7d32; }
.admin-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:900px){ .admin-grid-2 { grid-template-columns: 1fr 1fr; } }
.admin-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; }
.admin-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.admin-table th { padding: 0.5rem 0.75rem; text-align: left; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border-bottom: 2px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 0.65rem 0.75rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.badge-status { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 0.68rem; font-weight: 600; }
.badge-status.delivered { background: #e8f5e9; color: #2e7d32; }
.badge-status.processing { background: #fff8e1; color: #f57f17; }
.badge-status.shipped { background: #e3f2fd; color: #1565c0; }
.badge-status.pending { background: #fce4ec; color: #c62828; }
.admin-tab-actions { margin-bottom: 1rem; }
.admin-search { padding: 0.55rem 1rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.85rem; width: 100%; max-width: 320px; outline: none; }
.admin-search:focus { border-color: var(--gold); }
.admin-top-product { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.admin-top-product:last-child { border-bottom: none; }
.admin-top-product img { width: 44px; height: 44px; border-radius: 4px; object-fit: cover; border: 1px solid var(--border); }
.atp-name { font-size: 0.82rem; font-weight: 600; }
.atp-cat { font-size: 0.7rem; color: var(--muted); }
.atp-price { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.atp-reviews { font-size: 0.72rem; color: var(--muted); margin-left: auto; white-space: nowrap; }

/* ── BLOG POST LAYOUT ────────────────────────────────── */
.post-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width:900px){ .post-layout { grid-template-columns: 1fr 280px; } }
.post-header { margin-bottom: 1.5rem; }
.post-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem,3vw,2rem); font-weight: 700; margin: 0.5rem 0; line-height: 1.3; }
.post-meta { font-size: 0.78rem; color: var(--muted); }
.post-hero-img { width: 100%; border-radius: 8px; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 1.5rem; }
.prose-container { max-width: 900px; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin: 2rem 0 0.75rem; color: var(--fg); }
.prose p { font-size: 0.9rem; line-height: 1.9; color: var(--muted); margin-bottom: 1rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { font-size: 0.9rem; line-height: 1.8; color: var(--muted); list-style: disc; }
.prose ol li { list-style: decimal; }
.prose a { color: var(--gold); text-decoration: underline; }
.post-sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 1.25rem; }
.sidebar-widget h3 { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a { font-size: 0.82rem; color: var(--muted); transition: color .2s; padding: 0.3rem 0; border-bottom: 1px solid var(--border); }
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--gold); }
.sidebar-post { display: flex; gap: 0.65rem; padding: 0.5rem 0; border-bottom: 1px solid var(--border); }
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post img { width: 52px; height: 52px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }
.sidebar-post-title { font-size: 0.8rem; font-weight: 500; color: var(--fg); line-height: 1.4; margin-bottom: 2px; }
.sidebar-post-date { font-size: 0.68rem; color: var(--muted); }

/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width:900px){ .contact-layout { grid-template-columns: 1fr 380px; } }
.contact-form-col h2 { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 1.25rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media(min-width:576px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.form-group input, .form-group textarea, .form-group select { padding: 0.65rem 0.9rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.875rem; background: var(--card); color: var(--fg); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-info-col { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-card { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 1.75rem; }
.contact-info-card h2, .contact-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 1.25rem; }
.contact-info-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-bottom: 0.75rem; }
.contact-detail { display: flex; gap: 0.85rem; margin-bottom: 1rem; align-items: flex-start; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { font-size: 0.82rem; font-weight: 700; display: block; margin-bottom: 0.2rem; }
.contact-detail p { font-size: 0.8rem; color: var(--muted); margin: 0; }
.contact-detail a { color: var(--gold); transition: color .2s; }
.contact-detail a:hover { color: var(--gold-dark); }
.contact-actions { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px){ .how-grid { grid-template-columns: repeat(3,1fr); } }
.how-step { background: var(--card); border: 1px solid var(--border); border-radius: 8px; padding: 2rem 1.5rem; text-align: center; }
.how-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); opacity: .4; line-height: 1; margin-bottom: 0.75rem; }
.how-step h3 { font-family: 'Playfair Display', serif; font-size: 1rem; margin-bottom: 0.5rem; }
.how-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ── GOLD SAVING PLAN CARDS ──────────────────────────── */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:768px){ .plans-grid { grid-template-columns: repeat(3,1fr); } }
.plan-card { background: var(--card); border: 2px solid var(--border); border-radius: 10px; padding: 2rem 1.5rem; text-align: center; position: relative; transition: all .3s; }
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: var(--gold); }
.plan-card-popular { border-color: var(--gold); background: var(--secondary); color: var(--secondary-fg); }
.plan-popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold-grad); color: #fff; padding: 4px 14px; border-radius: 20px; font-size: 0.68rem; font-weight: 700; white-space: nowrap; }
.plan-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.plan-card-popular .plan-name { color: var(--secondary-fg); }
.plan-price { font-size: 1.75rem; font-weight: 800; color: var(--gold); margin-bottom: 0.2rem; }
.plan-price span { font-size: 0.9rem; color: var(--muted); font-weight: 400; }
.plan-duration { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.25rem; }
.plan-card-popular .plan-duration { color: rgba(232,213,176,.6); }
.plan-total { font-size: 0.85rem; font-weight: 700; color: var(--fg); margin-bottom: 1.25rem; }
.plan-card-popular .plan-total { color: var(--secondary-fg); }
.plan-features { text-align: left; margin-bottom: 1.5rem; list-style: none; }
.plan-features li { font-size: 0.8rem; padding: 0.35rem 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.plan-card-popular .plan-features li { border-color: rgba(223,172,42,.2); color: rgba(232,213,176,.7); }

/* ── FAQ ──────────────────────────────────────────────── */
.faq-group { margin-bottom: 2.5rem; }
.faq-group h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border); color: var(--fg); }
.faq-item { border: 1px solid var(--border); border-radius: 5px; margin-bottom: 0.5rem; overflow: hidden; }
.faq-item summary { padding: 0.9rem 1rem; font-size: 0.875rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; transition: background .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { background: var(--muted-bg); }
.faq-item p { padding: 0 1rem 0.9rem; font-size: 0.875rem; color: var(--muted); line-height: 1.8; }
.faq-item a { color: var(--gold); text-decoration: underline; }
.faq-cta { background: var(--muted-bg); border-radius: 6px; padding: 1.25rem; text-align: center; font-size: 0.875rem; color: var(--muted); }
.faq-cta a { color: var(--gold); font-weight: 600; }

/* ── ADD TO CART BUTTON (dark → hover gold) ───────────────────────── */
.btn-add-to-cart {
  width: 100%; padding: 0.5rem; display: flex; align-items: center; justify-content: center;
  gap: 5px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; background: var(--secondary); color: var(--secondary-fg);
  border: none; border-radius: 3px; cursor: pointer; transition: background .2s, color .2s;
}
.btn-add-to-cart:hover { background: var(--gold-grad); color: #fff; }

/* ── User Dropdown ─────────────────────────────────────────── */
.user-dropdown-wrap { position: relative; }
.user-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.1); width: 220px; z-index: 100; padding: .5rem 0; }
.user-dropdown-wrap.open .user-dropdown { display: block; animation: dropIn .15s ease; }
@keyframes dropIn { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.user-dropdown-name { padding: .6rem 1rem .1rem; font-size: .82rem; font-weight: 700; color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-dropdown-email { padding: 0 1rem .5rem; font-size: .7rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.user-dropdown-divider { height: 1px; background: var(--border); margin: .25rem 0; }
.user-dropdown-link { display: flex; align-items: center; gap: .55rem; padding: .5rem 1rem; font-size: .78rem; font-weight: 500; color: var(--fg); transition: background .15s, color .15s; cursor: pointer; text-decoration: none; border: none; background: none; width: 100%; font-family: inherit; text-align: left; }
.user-dropdown-link:hover { background: var(--cream); color: var(--gold); }
.user-dropdown-link svg { color: var(--muted); flex-shrink: 0; }
.user-dropdown-link:hover svg { color: var(--gold); }
.user-dropdown-logout { color: var(--maroon); }
.user-dropdown-logout:hover { background: #fef2f2; color: var(--maroon); }
.user-dropdown-logout svg { color: var(--maroon); }

/* ── Gold Harvesting Scheme Section ─────────────────────────── */
.gold-scheme-section { background: var(--secondary); }
.gs-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: center; }
.gs-img { border-radius: 12px; overflow: hidden; }
.gs-img img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.gs-title { font-family: 'Playfair Display', serif; font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--gold); margin-bottom: .3rem; }
.gs-subtitle { font-size: 1rem; font-weight: 600; color: var(--secondary-fg); margin-bottom: .75rem; }
.gs-desc { font-size: .88rem; color: var(--secondary-fg); opacity: .85; line-height: 1.65; margin-bottom: 1.25rem; }
.gs-plans { margin-bottom: 1rem; }
.gs-plans-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); display: block; margin-bottom: .4rem; }
.gs-plan-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.gs-plan-tag { background: rgba(223,172,42,.12); border: 1px solid rgba(223,172,42,.3); color: var(--gold); font-size: .78rem; font-weight: 700; padding: .3rem .7rem; border-radius: 20px; }
.gs-bonus { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; font-size: .9rem; font-weight: 600; color: var(--secondary-fg); }
.gs-bonus-badge { background: var(--gold); color: #fff; font-size: .6rem; font-weight: 800; padding: .2rem .55rem; border-radius: 4px; letter-spacing: .06em; }
.gs-benefits { list-style: none; padding: 0; margin-bottom: 1.5rem; display: grid; gap: .4rem; }
.gs-benefits li { font-size: .84rem; color: var(--secondary-fg); padding-left: 1.2rem; position: relative; line-height: 1.5; }
.gs-benefits li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.gs-cta { display: inline-block; }
@media (max-width: 768px) {
  .gs-wrap { grid-template-columns: 1fr; }
  .gs-img { max-height: 250px; }
}
