/* =========================================================
   Gold Shop - Main Stylesheet
   Naming: BEM (.block__element--modifier)
   Type: Titillium Web (display/headings) + IBM Plex Sans (body)
   ========================================================= */

:root {
  --color-bg: #FAF7EF;
  --color-surface: #FFFFFF;
  --color-ink: #221D17;
  --color-ink-soft: #5B5147;
  --color-gold: #B8935A;
  --color-gold-deep: #8C6B3D;
  --color-maroon: #6B1226;
  --color-maroon-deep: #4E0C1B;
  --color-line: #E6DCC8;
  --color-success: #2E7D4F;
  --radius: 6px;
  --shadow-card: 0 2px 14px rgba(34, 29, 23, 0.08);
  --font-display: 'Titillium Web', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
}

* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  letter-spacing: 0.2px;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: var(--font-body); }

.site-main { min-height: 60vh; }

/* ---------- Header ---------- */
.site-header {
  background: var(--color-ink);
  color: #F2ECDD;
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header__top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}
.site-header__logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}
.site-header__logo-img {
    height: 60px;
    width: auto;
    border-radius: 100px;
    max-width: 223px;
    object-fit: contain;
    display: block;
}
.site-header__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
  flex: 1;
  justify-content: center;
}
.site-header__nav-link {
  font-size: 15px;
  color: #E9E2CF;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.site-header__nav-link:hover,
.site-header__nav-link--active {
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.site-header__nav-item { position: relative; }
.site-header__caret { font-size: 10px; opacity: 0.8; }
.site-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 150px;
  background: var(--color-ink);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 6px 0;
  margin-top: 8px;
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  z-index: 60;
}
.site-header__nav-item:hover .site-header__dropdown,
.site-header__nav-item:focus-within .site-header__dropdown {
  display: flex;
}
.site-header__dropdown-link {
  padding: 9px 18px;
  font-size: 14px;
  color: #E9E2CF;
  white-space: nowrap;
}
.site-header__dropdown-link:hover { color: var(--color-gold); background: rgba(255,255,255,0.06); }
.site-header__cart {
  position: relative;
  font-size: 20px;
  display: flex;
  align-items: center;
}
.site-header__cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--color-maroon);
  color: #fff;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 999px;
  line-height: 1.4;
}

/* ---------- Rate ticker (signature element) ---------- */
.rate-ticker {
  background: var(--color-gold-deep);
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  overflow-x: auto;
}
.rate-ticker__label {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2A1D0E;
  background: var(--color-gold);
  padding: 10px 16px;
}
.rate-ticker__items {
  display: flex;
  gap: 0;
}
.rate-ticker__item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
  white-space: nowrap;
}
.rate-ticker__purity {
  font-size: 12px;
  color: #F3E6CC;
  opacity: 0.85;
}
.rate-ticker__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: #FFFDF7;
}

/* ---------- Hero Slider (homepage, below header) ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 650;
  max-height: 650px;
  overflow: hidden;
  background: var(--color-ink);
}
.hero-slider__track {
  display: flex;
  width: 100%;
  height: 100%;
}
.hero-slider__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  opacity: 0;
  margin-left: -100%;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.hero-slider__slide--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slider__slide:first-child { margin-left: 0; }
.hero-slider__link, .hero-slider__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(34, 29, 23, 0.45);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}
.hero-slider__arrow:hover { background: rgba(34, 29, 23, 0.75); }
.hero-slider__arrow--prev { left: 16px; }
.hero-slider__arrow--next { right: 16px; }
.hero-slider__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
}
.hero-slider__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.hero-slider__dot--active { background: #fff; transform: scale(1.15); }
@media (max-width: 767px) {
  .hero-slider { aspect-ratio: 0 / 5; max-height: 520px; }
  .hero-slider__arrow { width: 32px; height: 32px; font-size: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide { transition: none; }
}

/* ---------- Live banner (online purchase tagline) ---------- */
.live-banner {
  background: linear-gradient(90deg, var(--color-maroon-deep), var(--color-maroon), var(--color-gold-deep), var(--color-maroon), var(--color-maroon-deep));
  background-size: 300% 100%;
  animation: liveBannerShift 8s ease infinite;
  overflow: hidden;
}
.live-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.live-banner__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFD874;
  flex-shrink: 0;
  animation: liveBannerPulse 1.6s ease-in-out infinite;
}
.live-banner__text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #FFF8E9;
  animation: liveBannerFloat 3s ease-in-out infinite;
}
@keyframes liveBannerShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes liveBannerPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 216, 116, 0.6); }
  50% { transform: scale(1.25); box-shadow: 0 0 0 5px rgba(255, 216, 116, 0); }
}
@keyframes liveBannerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {
  .live-banner, .live-banner__dot, .live-banner__text { animation: none; }
}
@media (max-width: 640px) {
  .live-banner__text { font-size: 12.5px; }
  .live-banner__inner { padding: 8px 16px; }
}

/* ---------- Gift Products animated CTA button ---------- */
@keyframes giftFlashSweep {
  0%   { background-position: -150% 0; }
  100% { background-position: 250% 0; }
}
@keyframes giftGlowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(230, 183, 74, 0.55), 0 4px 18px rgba(107, 18, 38, 0.35); }
  50%      { box-shadow: 0 0 26px rgba(230, 183, 74, 0.95), 0 6px 24px rgba(107, 18, 38, 0.5); }
}
@keyframes giftBounceIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-3px) rotate(-6deg); }
}
.gift-cta {
  display: flex;
  justify-content: center;
  padding: 22px 16px;
  background: var(--color-bg);
}
.gift-cta__btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  border: 2px solid var(--color-gold);
  background: linear-gradient(100deg, var(--color-maroon) 0%, var(--color-maroon-deep) 45%, var(--color-maroon) 100%);
  background-size: 250% 100%;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  animation: giftGlowPulse 2.2s ease-in-out infinite;
}
.gift-cta__btn::before {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 233, 170, 0.85) 50%, transparent 100%);
  animation: giftFlashSweep 2.6s ease-in-out infinite;
  pointer-events: none;
}
.gift-cta__btn:hover { background-position: 100% 0; border-color: #fff; }
.gift-cta__icon { display: inline-block; animation: giftBounceIcon 1.4s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .gift-cta__btn, .gift-cta__btn::before, .gift-cta__icon { animation: none; }
}
@media (max-width: 640px) {
  .gift-cta__btn { font-size: 14.5px; padding: 13px 22px; }
}

/* ---------- Product video (gallery thumb + lightbox) ---------- */
.product-gallery__thumb--video {
  background: var(--color-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
}
.product-gallery__thumb-play { color: var(--color-gold); font-size: 18px; }
.product-gallery__video-btn { margin-top: 12px; width: 100%; }
.video-lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
}
.video-lightbox[hidden] { display: none; }
.video-lightbox__backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.82);
}
.video-lightbox__box {
  position: relative; width: min(880px, 92vw); aspect-ratio: 16 / 9;
  background: #000; border-radius: 8px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.video-lightbox__frame { width: 100%; height: 100%; }
.video-lightbox__close {
  position: absolute; top: -38px; right: 0;
  background: transparent; border: none; color: #fff;
  font-size: 30px; line-height: 1; cursor: pointer;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--primary { background: var(--color-maroon); color: #fff; }
.btn--primary:hover { background: var(--color-maroon-deep); }
.btn--gold { background: var(--color-gold); color: #2A1D0E; }
.btn--gold:hover { background: var(--color-gold-deep); color: #fff; }
.btn--outline { background: transparent; border-color: var(--color-ink); color: var(--color-ink); }
.btn--outline:hover { background: var(--color-ink); color: #fff; }
.btn--small { padding: 7px 14px; font-size: 13px; }
.btn--block { width: 100%; text-align: center; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-deep);
  font-weight: 600;
}
.hero__title {
  font-size: 44px;
  line-height: 1.1;
  color: var(--color-ink);
}
.hero__title em { color: var(--color-maroon); font-style: normal; }
.hero__text {
    color: var(--color-ink-soft);
    font-size: 16px;
    /* max-width: 46ch; */
    text-align: justify;
}
.hero__actions { margin-top: 24px; display: flex; gap: 14px; }
.hero__panel {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.hero__panel-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-ink-soft);
  margin-bottom: 16px;
}
.hero__rate-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--color-line);
}
.hero__rate-row:last-child { border-bottom: none; }
.hero__rate-purity { font-weight: 500; }
.hero__rate-value { font-family: var(--font-display); font-weight: 700; color: var(--color-maroon); }

/* ---------- Section ---------- */
.section { max-width: 1180px; margin: 0 auto; padding: 40px 24px; min-width: 0; }
.section__head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.section__title { font-size: 28px; }
.section__link { font-size: 14px; color: var(--color-maroon); font-weight: 600; }

/* ---------- Product grid / card ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.product-card__image { height: 200px; object-fit: cover; background: var(--color-line); width: 100%; }
.product-card__body { padding: 16px; }
.product-card__category { font-size: 12px; color: var(--color-ink-soft); text-transform: uppercase; letter-spacing: 0.5px; }
.product-card__name { font-size: 17px; margin: 6px 0 4px; }
.product-card__meta { font-size: 13px; color: var(--color-ink-soft); margin-bottom: 10px; }
.product-card__price { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--color-maroon); }
.product-card__price-lines { margin: 8px 0; padding: 8px 0; border-top: 1px dashed var(--color-line); border-bottom: 1px dashed var(--color-line); }
.product-card__price-line { display: flex; justify-content: space-between; font-size: 12px; color: var(--color-ink-soft); padding: 2px 0; }
.product-card__foot { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; flex-wrap: wrap; gap: 8px; }

/* ---------- Product tabs (homepage Gold/Silver) ---------- */
.product-tabs { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.product-tabs__tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-ink-soft);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.product-tabs__tab:hover { border-color: var(--color-gold); color: var(--color-ink); }
.product-tabs__tab--active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  border-color: var(--color-gold-deep);
  color: #fff;
}
.product-tabs__panel { display: none; }
.product-tabs__panel--active { display: grid; }

/* ---------- Special / Trending section ---------- */
.section--special {
    position: relative;
    background: linear-gradient(120deg, #FFF8E9, #FFF1D6, #FFF8E9, #FDEBD2);
    background-size: 300% 300%;
    animation: trendingBgShift 12s ease infinite;
    border-radius: 14px;
    padding: 28px 20px 8px;
    margin-top: 50px;
    overflow: hidden;
    border: 1px solid #F3E2B8;
}
.section--special::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(184,147,90,0.25), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.section--special .section__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section--special .section__title::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-maroon);
  animation: trendingDotPulse 1.6s ease-in-out infinite;
}
.section--special .section__link {
  position: relative;
  transition: transform 0.2s ease;
}
.section--special .section__link:hover { transform: translateX(3px); }
.section--special .product-grid { position: relative; z-index: 1; }
.section--special .product-card {
  opacity: 0;
  animation: trendingCardIn 0.6s ease forwards;
  border-color: #F0DCA9;
}
.section--special .product-card:nth-child(1) { animation-delay: 0.05s; }
.section--special .product-card:nth-child(2) { animation-delay: 0.15s; }
.section--special .product-card:nth-child(3) { animation-delay: 0.25s; }
.section--special .product-card:nth-child(4) { animation-delay: 0.35s; }
.section--special .product-card:nth-child(5) { animation-delay: 0.45s; }
.section--special .product-card:nth-child(6) { animation-delay: 0.55s; }
.section--special .product-card:nth-child(7) { animation-delay: 0.65s; }
.section--special .product-card:nth-child(8) { animation-delay: 0.75s; }
.section--special .product-card:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 10px 26px rgba(184,147,90,0.28);
  border-color: var(--color-gold);
}
.product-card { position: relative; }
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: linear-gradient(135deg, var(--color-maroon), var(--color-maroon-deep));
  color: #fff;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  animation: trendingBadgePulse 2.2s ease-in-out infinite;
}
@keyframes trendingBgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes trendingDotPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(107,18,38,0.5); }
  50% { transform: scale(1.3); box-shadow: 0 0 0 5px rgba(107,18,38,0); }
}
@keyframes trendingCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes trendingBadgePulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(0,0,0,0.18); }
  50% { box-shadow: 0 2px 16px rgba(107,18,38,0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .section--special,
  .section--special .section__title::after,
  .section--special .product-card,
  .product-card__badge {
    animation: none;
    opacity: 1;
  }
}

/* ---------- Homepage Trending Showcase (dark carousel) ---------- */
.trending-showcase {
    position: relative;
    /* max-width: 1180px; */
    /* margin: 40px auto 0; */
    padding: 36px 0;
    background: linear-gradient(115deg, var(--color-maroon-deep), var(--color-maroon) 55%, #7A1830);
    background-size: 220% 220%;
    animation: trendingShowcaseBg 14s ease infinite;
    /* border-radius: 18px; */
    overflow: hidden;
}
.trending-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(184,147,90,0.35), transparent 45%),
    radial-gradient(circle at 5% 90%, rgba(184,147,90,0.2), transparent 40%);
  pointer-events: none;
}
.trending-showcase__head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  padding: 0 28px;
  margin-bottom: 22px;
}
.trending-showcase__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #2A1D0E;
  background: linear-gradient(135deg, #FFE7A8, var(--color-gold));
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
  animation: trendingBadgePulse 2.2s ease-in-out infinite;
}
.trending-showcase__title {
  font-size: 28px;
  color: #fff;
  margin: 0;
}
.trending-showcase__cta {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: #2A1D0E;
  background: linear-gradient(135deg, #FFE7A8, var(--color-gold));
  padding: 9px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.trending-showcase__cta:hover { transform: translateX(2px) scale(1.03); box-shadow: 0 6px 18px rgba(0,0,0,0.3); }
.trending-showcase__track {
  position: relative;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  margin-left:20px;
  scroll-snap-type: x proximity;
  padding: 4px 28px 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold) transparent;
}
.trending-showcase__track::-webkit-scrollbar { height: 6px; }
.trending-showcase__track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.35); border-radius: 999px; }
.trending-showcase__track .product-card {
  flex: 0 0 230px;
  scroll-snap-align: start;
  background: #FFFDF8;
  border-color: transparent;
  opacity: 0;
  animation: trendingCardIn 0.6s ease forwards;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trending-showcase__track .product-card:nth-child(1) { animation-delay: 0.05s; }
.trending-showcase__track .product-card:nth-child(2) { animation-delay: 0.15s; }
.trending-showcase__track .product-card:nth-child(3) { animation-delay: 0.25s; }
.trending-showcase__track .product-card:nth-child(4) { animation-delay: 0.35s; }
.trending-showcase__track .product-card:nth-child(5) { animation-delay: 0.45s; }
.trending-showcase__track .product-card:nth-child(6) { animation-delay: 0.55s; }
.trending-showcase__track .product-card:nth-child(7) { animation-delay: 0.65s; }
.trending-showcase__track .product-card:nth-child(8) { animation-delay: 0.75s; }
.trending-showcase__track .product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}
.trending-showcase__track .product-card__image { height: 170px; }
@keyframes trendingShowcaseBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (max-width: 640px) {
  .trending-showcase { border-radius: 0px; width: auto; }
  .trending-showcase__head { padding: 0 18px; }
  .trending-showcase__title { font-size: 22px; }
  .trending-showcase__track { padding: 4px 18px 12px; margin:0px 0px 0px 15px;}
  .trending-showcase__track .product-card { flex-basis: 190px; }
}
@media (prefers-reduced-motion: reduce) {
  .trending-showcase,
  .trending-showcase__eyebrow,
  .trending-showcase__track .product-card {
    animation: none;
    opacity: 1;
  }
}

/* ---------- Filter bar ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-bar__link {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  font-size: 14px;
  background: var(--color-surface);
}
.filter-bar__link--active { background: var(--color-ink); color: #fff; border-color: var(--color-ink); }
.filter-bar--metal { margin-bottom: 14px; }
.filter-bar__link--metal { font-weight: 600; }
.filter-bar__link--metal.filter-bar__link--active { background: var(--color-gold-deep); border-color: var(--color-gold-deep); }

/* ---------- Product detail ---------- */
.product-detail { max-width: 1100px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product-detail__image { width: 100%; height: auto; display: block; border-radius: var(--radius); border: 1px solid var(--color-line); }
.product-detail__title { font-size: 30px; }
.product-detail__short-desc { color: var(--color-ink); font-weight: 600; margin: 4px 0 10px; }
.product-detail__desc { color: var(--color-ink-soft); margin-bottom: 20px; }

.product-gallery__main { aspect-ratio: 1 / 1; object-fit: cover; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-gallery__thumb {
  width: 72px; height: 72px; object-fit: cover; border-radius: var(--radius);
  border: 2px solid var(--color-line); cursor: pointer; opacity: 0.75; transition: opacity 0.2s, border-color 0.2s;
}
.product-gallery__thumb:hover { opacity: 1; }
.product-gallery__thumb--active { border-color: var(--color-maroon); opacity: 1; }
.product-specs { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.product-specs__title { font-size: 17px; margin: 0 0 12px; color: var(--color-ink); }
.product-specs__list { list-style: disc; margin: 0; padding-left: 20px; }
.product-specs__item { padding: 4px 0; font-size: 14px; color: var(--color-ink-soft); line-height: 1.5; }
.product-specs__label { font-weight: 700; color: var(--color-ink); }
.product-specs__value { font-weight: 400; }

.price-breakdown { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 20px; margin-bottom: 24px; }
.price-breakdown__row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px; color: var(--color-ink-soft); }
.price-breakdown__row--total { border-top: 1px solid var(--color-line); margin-top: 8px; padding-top: 12px; font-size: 18px; font-weight: 700; color: var(--color-ink); font-family: var(--font-display); }

/* ---------- Cart ---------- */
.cart-table { width: 100%; border-collapse: collapse; background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); overflow: hidden; }
.cart-table th, .cart-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--color-line); font-size: 14px; }
.cart-table th { background: #F3EDE0; font-family: var(--font-display); text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px; }
.cart-table__product { display: flex; align-items: center; gap: 12px; }
.cart-table__thumb { width: 56px; height: 56px; object-fit: cover; border-radius: 4px; background: var(--color-line); }
.qty-input { width: 56px; padding: 6px; border: 1px solid var(--color-line); border-radius: 4px; text-align: center; }
.cart-summary { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 24px; max-width: 360px; margin-left: auto; margin-top: 24px; }
.cart-summary__row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.cart-summary__row--total { border-top: 1px solid var(--color-line); margin-top: 8px; padding-top: 14px; font-size: 20px; font-weight: 700; font-family: var(--font-display); }
.coupon-form { display: flex; gap: 8px; margin: 16px 0; }
.coupon-form input { flex: 1; padding: 10px 12px; border: 1px solid var(--color-line); border-radius: 4px; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--color-ink-soft); }

/* ---------- Checkout form ---------- */
.checkout-grid { max-width: 1100px; margin: 0 auto; padding: 40px 24px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 11px 12px; border: 1px solid var(--color-line); border-radius: 4px; font-size: 16px;
  transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--color-gold-deep); }
.form-field select {
  width: 100%; padding: 11px 12px; border: 1px solid var(--color-line); border-radius: 4px; font-size: 16px; background: #fff;
}
.form-row { display: block; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.checkout-address__heading { font-family: var(--font-display); font-size: 16px; color: var(--color-maroon); margin: 24px 0 12px; padding-top: 12px; border-top: 1px solid var(--color-line); }
.address-type-group { display: flex; gap: 10px; flex-wrap: wrap; }
.address-type-option {
  display: flex; align-items: center; gap: 6px; border: 1px solid var(--color-line); border-radius: 999px;
  padding: 8px 16px; font-size: 14px; font-weight: 600; cursor: pointer; margin: 0; transition: border-color 0.15s ease, background 0.15s ease;
}
.address-type-option:has(input:checked) { border-color: var(--color-gold-deep); background: #FAF3E4; color: var(--color-maroon); }
.address-type-option input { width: auto; margin: 0; }
.password-field-wrap { position: relative; }
.password-field-wrap input { padding-right: 42px; }
.password-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; padding: 4px; cursor: pointer;
  color: var(--color-ink-soft); display: flex; align-items: center;
}
.password-toggle:hover { color: var(--color-ink); }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-ink); color: #DED5C1; margin-top: 60px; }
.site-footer__grid { max-width: 1180px; margin: 0 auto; padding: 48px 24px 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.site-footer__brand { font-family: var(--font-display); color: var(--color-gold); font-size: 20px; margin-bottom: 12px; }
.site-footer__heading { font-family: var(--font-display); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: #F3EDE0; }
.site-footer__text { font-size: 14px; margin: 6px 0; opacity: 0.85; }
.site-footer__text a:hover { color: var(--color-gold); }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); text-align: center; padding: 16px; font-size: 12px; opacity: 0.7; }

/* ---------- Alerts ---------- */
.alert { padding: 12px 16px; border-radius: 4px; font-size: 14px; margin-bottom: 20px; }
.alert--success { background: #E4F3E9; color: var(--color-success); border: 1px solid #BEE3CA; }

/* Secure Payment card (manual QR / bank transfer) - styled to look like a payment gateway panel */
.payment-card {
  background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius);
  box-shadow: var(--shadow-card); padding: 24px; margin-top: 16px;
}
.payment-card__head { display: flex; align-items: center; gap: 12px; padding-bottom: 16px; border-bottom: 1px solid var(--color-line); margin-bottom: 16px; }
.payment-card__lock { font-size: 24px; }
.payment-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--color-maroon); }
.payment-card__sub { font-size: 13px; color: var(--color-ink-soft); }
.payment-card__amount {
  display: flex; justify-content: space-between; align-items: center; background: var(--color-bg);
  border-radius: var(--radius); padding: 14px 16px; margin-bottom: 20px; font-size: 14px; color: var(--color-ink-soft);
}
.payment-card__amount strong { font-family: var(--font-display); font-size: 22px; color: var(--color-maroon); }
.payment-card__section { margin-bottom: 20px; }
.payment-card__section-title { font-weight: 600; font-size: 14px; margin-bottom: 10px; color: var(--color-ink); }
.payment-card__qr-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.payment-card__qr { width: 150px; height: 150px; object-fit: contain; border: 1px solid var(--color-line); border-radius: var(--radius); padding: 8px; background: #fff; }
.payment-card__upi-id { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--color-maroon); }
.payment-card__bank-table { width: 100%; font-size: 14px; border-collapse: collapse; }
.payment-card__bank-table td { padding: 6px 0; border-bottom: 1px solid var(--color-line); }
.payment-card__bank-table td:first-child { color: var(--color-ink-soft); width: 45%; }
.payment-card__bank-table td:last-child { font-weight: 600; }
.payment-card__confirm-form { margin-top: 8px; padding-top: 16px; border-top: 1px solid var(--color-line); }
@media (max-width: 480px) {
  .payment-card { padding: 16px; }
  .payment-card__qr { width: 120px; height: 120px; }
}
.alert--error { background: #FBE7E9; color: #A32E36; border: 1px solid #F3C4C9; }

/* ---------- Badges (order/payment status) ---------- */
.badge { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.badge--paid { background: #E4F3E9; color: #2E7D4F; }
.badge--pending { background: #FDF3DA; color: #9A6B00; }
.badge--failed { background: #FBE7E9; color: #A32E36; }
.badge--addr-home { background: #E4EEFB; color: #2A5CA8; }
.badge--addr-office { background: #F1E7FB; color: #6B3FA0; }
.badge--addr-other { background: #EDE9E1; color: #5B5147; }

/* ---------- Track Order (customer) — modern stepper card ---------- */
.tracking-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
}
.tracking-card__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-maroon));
}
.tracking-card__accent--cancelled { background: var(--color-maroon-deep); }
.tracking-card__body { padding: 24px; }

.tracking-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.tracking-card__eyebrow { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--color-ink-soft); margin-bottom: 2px; }
.tracking-card__order-no { font-size: 19px; margin: 0 0 4px; }
.tracking-card__link { margin-top: 20px; }

/* Status chip */
.status-chip { display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.2px; white-space: nowrap; }
.status-chip__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.status-chip--paid { background: #E4F3E9; color: #2E7D4F; }
.status-chip--pending { background: #FDF3DA; color: #9A6B00; }
.status-chip--failed { background: #FBE7E9; color: #A32E36; }

/* Cancelled state */
.tracking-cancelled {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FBE7E9;
  color: var(--color-maroon-deep);
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 600;
}
.tracking-cancelled__icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--color-maroon); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}

/* Icon stepper */
.tracking-stepper { position: relative; padding-top: 4px; }
.tracking-stepper__track {
  position: absolute;
  left: 5%;
  right: 5%;
  top: 19px;
  height: 3px;
  background: var(--color-line);
  border-radius: 999px;
  z-index: 0;
}
.tracking-stepper__fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--fill, 0%);
  background: linear-gradient(90deg, var(--color-gold-deep), var(--color-gold));
  border-radius: 999px;
  transition: width 0.4s ease;
}
.tracking-stepper__steps {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.tracking-stepper__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  min-width: 0;
}
.tracking-stepper__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.tracking-stepper__label {
  font-size: 12px;
  color: var(--color-ink-soft);
  max-width: 92px;
  line-height: 1.3;
}
.tracking-stepper__step--done .tracking-stepper__icon {
  background: var(--color-gold);
  border-color: var(--color-gold);
}
.tracking-stepper__step--done .tracking-stepper__label { color: var(--color-ink); font-weight: 600; }
.tracking-stepper__step--current .tracking-stepper__icon {
  box-shadow: 0 0 0 5px rgba(184, 147, 90, 0.22);
}

@media (max-width: 640px) {
  .tracking-card__body { padding: 20px 16px; }
  .tracking-card__order-no { font-size: 17px; }

  /* On phones the horizontal stepper gets cramped, so stack it into a vertical timeline */
  .tracking-stepper__track {
    left: 19px;
    right: auto;
    top: 5%;
    bottom: 5%;
    width: 3px;
    height: auto;
  }
  .tracking-stepper__fill {
    left: 0; top: 0; right: 0; bottom: auto;
    width: 100%;
    height: var(--fill, 0%);
    transition: height 0.4s ease;
  }
  .tracking-stepper__steps { flex-direction: column; align-items: stretch; gap: 18px; }
  .tracking-stepper__step { flex-direction: row; align-items: center; text-align: left; gap: 14px; width: 100%; }
  .tracking-stepper__label { max-width: none; font-size: 13px; }
  .tracking-stepper__icon { width: 38px; height: 38px; flex-shrink: 0; }
}

/* ---------- Info card (order detail sections) ---------- */
.info-card { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.info-card h3 { font-size: 16px; margin-bottom: 10px; }

/* ---------- Customer auth (login / register) ---------- */
.auth-card { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-card); }

/* ---------- Account links (desktop: plain inline nav items) ---------- */
.site-header__nav-divider { display: inline-block; width: 1px; height: 16px; background: rgba(242,236,221,0.25); align-self: center; }
.site-header__nav-link--logout { color: #E7B4BD; }
.site-header__nav-link--logout:hover { color: #FF8FA0; border-color: #FF8FA0; }

.site-header__right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.site-header__hello { font-size: 14px; color: #E9E2CF; white-space: nowrap; }

/* ---------- Mobile hamburger toggle ---------- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle__bar { width: 22px; height: 2px; background: #F2ECDD; border-radius: 2px; transition: transform 0.2s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero__title { font-size: 32px; }
  .product-detail { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }

  .nav-toggle { display: flex; }
  .site-header__top { position: relative; }
  .site-header__nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-ink);
    padding: 4px 24px 16px;
    box-shadow: var(--shadow-card);
    z-index: 55;
  }
  .site-header__nav.is-open { display: flex; }
  .site-header__nav-link { padding: 14px 0; border-bottom: 1px solid rgba(242,236,221,0.12); }
  .site-header__nav-link--active { border-bottom: 1px solid var(--color-gold); }
  .site-header__nav-item { border-bottom: 1px solid rgba(242,236,221,0.12); }
  .site-header__nav-item .site-header__nav-link { border-bottom: none; }
  .site-header__dropdown {
    position: static;
    display: flex;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-top: 0;
    padding: 0 0 10px 14px;
  }
  .site-header__dropdown-link { padding: 8px 0; }
  .site-header__nav-divider { display: none; }
  .site-header__hello { display: none; }
}

@media (max-width: 640px) {
  .site-header__top { padding: 10px 18px; gap: 12px; }
  .site-header__logo-img {
        height: 46px;
        max-width: 170px;
    }
    .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
  .section { padding: 24px 16px; }
  .section__title { font-size: 22px; }

  /* Cart: stack each row into a labeled card instead of a cramped table */
  .cart-table, .cart-table thead, .cart-table tbody, .cart-table th, .cart-table td, .cart-table tr {
    display: block;
    width: 100%;
  }
  .cart-table thead { display: none; }
  .cart-table tr {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    margin-bottom: 16px;
    padding: 12px;
  }
  .cart-table td {
    border-bottom: none;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
  }
  .cart-table td:not(:first-child)::before {
    content: attr(data-label);
    font-family: var(--font-display);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--color-ink-soft);
  }
  .cart-table td:first-child { padding-bottom: 12px; border-bottom: 1px dashed var(--color-line); margin-bottom: 8px; }
  .cart-table__product { width: 100%; }
  .qty-input { margin-left: auto; }

  .cart-summary { max-width: 100%; margin-left: 0; padding: 20px; }
  .coupon-form { flex-direction: column; }
  .coupon-form input { width: 100%; }
  .section__head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .auth-card { padding: 20px; }

  /* Product detail page: image full-width, everything stacked one below the other */
  .product-detail { padding: 20px 16px; gap: 20px; }
  .product-detail__title { font-size: 22px; }
  .price-breakdown { padding: 16px; }
  .price-breakdown__row { font-size: 13px; }
  .product-specs { padding: 16px; }
  .product-specs__list { padding-left: 18px; }
  .product-specs__item { font-size: 13px; }
}

/* =========================================================
   Homepage: SEO collections strip + About teaser
   ========================================================= */
.seo-collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.seo-collections__item {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-card);
}
.seo-collections__title {
  font-size: 19px;
  color: var(--color-maroon);
  margin-bottom: 10px;
}
.seo-collections__text {
  color: var(--color-ink-soft);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.home-about__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.home-about__img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  padding: 16px;
}
.home-about__content p {
  color: var(--color-ink-soft);
  line-height: 1.7;
  margin-bottom: 14px;
}

/* =========================================================
   About Us page
   ========================================================= */
.page-banner {
  background: linear-gradient(180deg, #FFF8E9, transparent);
  padding: 36px 24px;
  text-align: center;
  border-bottom: 1px solid var(--color-line);
}
.page-banner__title { font-size: 32px; color: var(--color-maroon); }
.page-banner__crumb { color: var(--color-ink-soft); font-size: 14px; margin-top: 6px; }
.page-banner__crumb a { color: var(--color-gold-deep); }

.about-hero {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 40px;
  align-items: center;
}
.about-hero__img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  
}
.about-hero__content h2 {
    font-size: 35px;
    line-height: 40px;
    margin-bottom: 13px;
}
.about-hero__content p { color: var(--color-ink-soft); line-height: 1.7; margin-bottom: 14px; text-align:justify; }

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.about-values__card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.about-values__icon { font-size: 28px; margin-bottom: 8px; }
.about-values__card h3 { font-size: 17px; margin-bottom: 8px; color: var(--color-maroon); }
.about-values__card p { color: var(--color-ink-soft); font-size: 14px; line-height: 1.6; }

.terms-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.terms-card__item { border-bottom: 1px solid var(--color-line); }
.terms-card__item:last-child { border-bottom: none; }
.terms-card__summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-ink);
}
.terms-card__summary::-webkit-details-marker { display: none; }
.terms-card__summary::after { content: '+'; font-size: 20px; color: var(--color-gold-deep); }
.terms-card__item[open] .terms-card__summary::after { content: '−'; }
.terms-card__body { padding: 0 20px 16px; color: var(--color-ink-soft); font-size: 14px; line-height: 1.7; }

/* =========================================================
   Contact Us page
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-cards { display: grid; gap: 16px; }
.contact-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-card__icon {
  font-size: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: 50%;
  border: 1px solid var(--color-line);
  flex-shrink: 0;
}
.contact-card__label { font-family: var(--font-display); font-weight: 600; color: var(--color-maroon); margin-bottom: 4px; }
.contact-card__value a, .contact-card__value { color: var(--color-ink-soft); font-size: 14px; line-height: 1.6; }
.contact-card__value a:hover { color: var(--color-gold-deep); }

.contact-map {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 220px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 220px; border: 0; display: block; }

.contact-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.contact-form-card h2 { font-size: 20px; margin-bottom: 16px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--color-ink-soft); margin-bottom: 6px; }
.form-row input, .form-row textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--color-bg);
}
.form-row textarea { resize: vertical; min-height: 110px; }
.form-alert {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-bottom: 16px;
}
.form-alert--success { background: #E9F5EE; color: var(--color-success); border: 1px solid #BFE3CC; }
.form-alert--error { background: #FBE9E9; color: #A32C2C; border: 1px solid #F0C4C4; }

@media (max-width: 860px) {
  .seo-collections__grid { grid-template-columns: 1fr; }
  .home-about__grid { grid-template-columns: 1fr; padding: 20px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Floating "Buy Gold Coin" CTA (admin toggle-able)
   ========================================================= */
.coin-cta-float {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
    color: #ffffff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 17px;
    border: 2px solid;
    padding: 5px 7px;
    border-radius: 41px;
    box-shadow: 0 8px 24px rgba(140, 107, 61, 0.45);
    text-decoration: none;
    animation: coinCtaPulse 2.2s ease-in-out infinite;
    transition: transform 0.2s ease;
}
.coin-cta-float:hover { transform: translateY(-3px) scale(1.03); }
.coin-cta-float__icon { font-size: 20px; }
@keyframes coinCtaPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(140, 107, 61, 0.45); }
  50% { box-shadow: 0 8px 30px rgba(184, 147, 90, 0.75); }
}
@media (max-width: 600px) {
  .coin-cta-float { right: 14px; bottom: 16px; padding: 12px 16px; font-size: 13px; }
  .coin-cta-float__icon { font-size: 17px; }
}

/* =========================================================
   Page hero banner (replaces the old plain breadcrumb banner)
   ========================================================= */
.page-hero {
  position: relative;
  background: linear-gradient(120deg, var(--color-maroon-deep), var(--color-maroon) 55%, var(--color-gold-deep));
  padding: 56px 24px;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.page-hero__eyebrow {
  position: relative;
  display: inline-block;
  color: #F4E4C1;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-hero__title {
  position: relative;
  color: #fff;
  font-size: 34px;
  margin-bottom: 8px;
}
.page-hero__subtitle {
  position: relative;
  color: #F4E4C1;
  font-size: 15px;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .page-hero { padding: 40px 20px; }
  .page-hero__title { font-size: 24px; }
}

/* =========================================================
   Homepage About section v2 (overlapping image + stat badges)
   ========================================================= */
.home-about-v2 {
  position: relative;
}
.home-about-v2__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  /*background: linear-gradient(180deg, #FFF8E9, var(--color-surface));*/
  /*border-radius: var(--radius);*/
  /*border: 1px solid var(--color-line);*/
  /*padding: 40px;*/
  /*box-shadow: var(--shadow-card);*/
}
.home-about-v2__media { position: relative; }
.home-about-v2__img {
  width: 100%;
  
  object-fit: contain;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 0px;
}
.home-about-v2__badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--color-maroon);
  color: #fff;
  border-radius: 50%;
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  text-align: center;
  line-height: 1.1;
}
.home-about-v2__badge strong { font-family: var(--font-display); font-size: 20px; }
.home-about-v2__badge span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.4px; }
.home-about-v2__eyebrow {
  color: var(--color-gold-deep);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}
.home-about-v2__content h2 { font-size: 27px; margin-bottom: 14px; }
.home-about-v2__content p { color: var(--color-ink-soft); line-height: 1.7; margin-bottom: 14px; text-align:justify;}
.home-about-v2__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.home-about-v2__stat {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 12px 6px;
}
.home-about-v2__stat strong { display: block; font-family: var(--font-display); font-size: 20px; color: var(--color-maroon); }
.home-about-v2__stat span { font-size: 11px; color: var(--color-ink-soft); }

@media (max-width: 860px) {
  .home-about-v2__wrap { grid-template-columns: 1fr; padding: 0px; }
  .home-about-v2__stats { grid-template-columns: repeat(1, 1fr); }
}

/* =========================================================
   Left-side floating buttons (WhatsApp / Call / Instagram)
   Admin toggle-able, official brand colors + icons
   ========================================================= */
.social-float {
  position: fixed;
  left: 18px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-float__btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease;
}
.social-float__btn:hover { transform: scale(1.08); }
.social-float__btn--whatsapp { background: #25D366; }
.social-float__btn--call { background: #2E7D4F; }
.social-float__btn--instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
@media (max-width: 600px) {
  .social-float { left: 12px; bottom: 16px; gap: 10px; }
  .social-float__btn { width: 35px; height: 35px; }
  .social-float__btn svg { width: 20px; height: 20px; }
}

/* =========================================================
   Modern e-commerce refresh - product cards, purity chip,
   purity chart page
   ========================================================= */
.product-grid { gap: 22px; }
.product-card {
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(34, 29, 23, 0.06);
  border-color: var(--color-line);
}
.product-card:hover {
  box-shadow: 0 14px 30px rgba(34, 29, 23, 0.14);
  transform: translateY(-5px);
}
.product-card__image-wrap { display: block; position: relative; overflow: hidden; }
.product-card__image {
  height: 220px;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__image { transform: scale(1.06); }
.product-card__purity-chip {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(34, 29, 23, 0.82);
  backdrop-filter: blur(2px);
  color: #FFF3D6;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-card__body { padding: 18px; }
.product-card__name { font-size: 17px; }
.product-card__foot .btn--small { border-radius: 999px; padding: 9px 18px; }

/* ---------- Purity Chart page ---------- */
.purity-rate-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}
.purity-rate-strip__item {
  flex: 1;
  min-width: 220px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-card);
}
.purity-rate-strip__label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }
.purity-rate-strip__value { font-family: var(--font-display); font-weight: 700; font-size: 22px; }

.purity-table-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.purity-table { width: 100%; border-collapse: collapse; }
.purity-table thead { background: var(--color-ink); color: #F2ECDD; }
.purity-table th { text-align: left; padding: 14px 18px; font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; }
.purity-table td { padding: 12px 18px; border-bottom: 1px solid var(--color-line); font-size: 14px; }
.purity-table tbody tr:last-child td { border-bottom: none; }
.purity-table tbody tr:hover { background: var(--color-bg); }
.purity-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FFF3D6;
  color: var(--color-gold-deep);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}
.purity-table__note { font-size: 12px; color: var(--color-ink-soft); margin-top: 12px; }
.purity-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

@media (max-width: 600px) {
  .product-card__image { height: 270px; }
  .purity-table th, .purity-table td { padding: 10px 12px; font-size: 13px; }
}
