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

/* ─── 3px solid #DC2626 ─── */

:root {
  /* ═══ ZENTEMART · L-1 CRIMSON RED + WHITE · PROFESSIONAL ═══ */
  /* Backgrounds — clean professional surfaces */
  --bg: #FFFFFF;
  --surface: #F9FAFB;
  --card: #FFFFFF;
  --border: #C7CAD0;
  --border-strong: #6B7280;
  /* Brand — Bold Crimson Red */
  --gold: #B32021;
  --gold-dark: #8B1617;
  --gold-light: #FEE2E2;
  --gold-glow: rgba(179, 32, 33, .10);
  /* Text — STRONG BLACK for professional readability */
  --text: #0F0F0F;
  --muted: #374151;
  --white: #FFFFFF;
  /* Semantic */
  --green: #059669;
  --red: #DC2626;
  /* Shadows — for professional card definition */
  --shadow-sm: 0 2px 4px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 6px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 28px rgba(0,0,0,.14), 0 4px 10px rgba(0,0,0,.08);
  /* Typography — Premium Professional */
  --font-d: 'Playfair Display', 'Georgia', serif;
  --font-b: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-logo: 'Gelasio', Georgia, 'Times New Roman', serif;
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  max-width: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.65;
  font-weight: 500;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  font-weight: 700;
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font-family: var(--font-b);
  cursor: pointer;
  border: none
}

/* ─── TOP BAR ─── */
.topbar {
  background: var(--gold);
  color: var(--bg);
  text-align: center;
  padding: 8px 16px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px
}

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 4%;
  transition: background .3s, box-shadow .3s
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px
}

.nav-logo {
  font-family:var(--font-logo);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  transition: opacity .2s;
}

.nav-logo:hover {
  opacity: .85;
}

.nav-logo span {
  color: var(--gold);
  font-weight: 800;
}

/* Logo IMAGE per-device visibility — controlled by admin toggles */
@media (max-width: 768px) { img.logo-dk-only { display: none !important; } }
@media (min-width: 769px) { img.logo-mb-only { display: none !important; } }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center
}

.nav-links a {
  position: relative;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text);
  transition: color .25s;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width .3s ease, left .3s ease;
}

.nav-links a:hover {
  color: var(--gold)
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px
}

.nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(37, 211, 102, .12);
  color: #25D366;
  padding: 7px 14px;
  border-radius: 60px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  transition: background .2s
}

.nav-wa:hover {
  background: rgba(37, 211, 102, .2)
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(179, 32, 33, .15), rgba(179, 32, 33, .06));
  border: 1px solid rgba(179, 32, 33, .35);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  gap: 4px;
  transition: background .2s, transform .15s, border-color .2s;
}

.hamburger:hover {
  background: linear-gradient(135deg, rgba(179, 32, 33, .25), rgba(179, 32, 33, .12));
  border-color: rgba(179, 32, 33, .5);
}

.hamburger:active {
  transform: scale(.92);
}

.ham-lines {
  width: 18px;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ham-lines span {
  position: static;
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .35s cubic-bezier(.77, 0, .18, 1);
  transform-origin: center;
}

.ham-lines span:nth-child(2) {
  width: 12px;
  align-self: flex-end;
}

.ham-lines span:nth-child(3) {
  width: 18px;
}

.hamburger.active {
  background: linear-gradient(135deg, rgba(179, 32, 33, .28), rgba(179, 32, 33, .15));
  border-color: rgba(179, 32, 33, .5);
}


/* ════════════════════════════════════════════════════════════
   MOBILE MENU — Premium Redesign (scratch rebuild)
   Gold accents, icon boxes, 2-line layout, premium spacing
   ════════════════════════════════════════════════════════════ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
}

.mob-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mob-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  opacity: 0;
  transition: opacity .4s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mob-menu.open .mob-bg {
  opacity: 1;
}

.mob-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 82%;
  max-width: 340px;
  height: 100%;
  background: linear-gradient(165deg, #FAFAFA 0%, #FFFFFF 55%, #FAFAFA 100%);
  border-left: 0.5px solid rgba(179, 32, 33, .25);
  transform: translateX(105%);
  transition: transform .42s cubic-bezier(.77, 0, .18, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: -12px 0 40px rgba(0, 0, 0, .6);
}

.mob-menu.open .mob-panel {
  transform: translateX(0);
}

.mob-panel::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(179, 32, 33, .12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mob-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 18px;
  border-bottom: 0.5px solid rgba(179, 32, 33, .18);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mob-panel-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-panel-logo {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .02em;
  line-height: 1;
}

.mob-panel-logo span {
  color: var(--gold);
}

.mob-panel-tagline {
  font-size: .58rem;
  color: rgba(0, 0, 0, .55);
  letter-spacing: .25em;
  font-weight: 600;
  text-transform: uppercase;
}

.mob-close-btn {
  background: linear-gradient(135deg, rgba(179, 32, 33, .15), rgba(179, 32, 33, .05));
  border: 1px solid rgba(179, 32, 33, .3);
  color: var(--gold);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: .95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s, border-color .2s;
  line-height: 1;
}

.mob-close-btn:hover {
  background: linear-gradient(135deg, rgba(179, 32, 33, .25), rgba(179, 32, 33, .1));
  border-color: rgba(179, 32, 33, .5);
}

.mob-close-btn:active {
  transform: scale(.88);
}

.mob-nav-links {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  border-left: 3px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  position: relative;
}

.mob-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 0, 0, .04);
  border: 0.5px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background .2s, border-color .2s;
}

.mob-link-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.mob-link-title {
  color: var(--text);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.2;
}

.mob-link-sub {
  color: rgba(0, 0, 0, .55);
  font-size: .68rem;
  font-weight: 400;
  line-height: 1.2;
}

.mob-link-arrow {
  color: var(--gold);
  opacity: .35;
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity .2s, transform .2s;
}

.mob-link:hover,
.mob-link:active,
.mob-link.is-active {
  background: linear-gradient(90deg, rgba(179, 32, 33, .12), rgba(179, 32, 33, .03));
  border-left-color: var(--gold);
}

.mob-link:hover .mob-link-icon,
.mob-link:active .mob-link-icon,
.mob-link.is-active .mob-link-icon {
  background: rgba(179, 32, 33, .15);
  border-color: rgba(179, 32, 33, .3);
}

.mob-link:hover .mob-link-title,
.mob-link:active .mob-link-title,
.mob-link.is-active .mob-link-title {
  color: var(--gold);
}

.mob-link:hover .mob-link-arrow,
.mob-link:active .mob-link-arrow,
.mob-link.is-active .mob-link-arrow {
  opacity: .8;
  transform: translateX(2px);
}

.mob-secondary-section {
  padding: 12px;
  margin-top: 6px;
  border-top: 0.5px solid rgba(179, 32, 33, .15);
  position: relative;
  z-index: 1;
}

.mob-secondary-title {
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  padding: 6px 8px 8px;
  margin-bottom: 0;
}

.mob-link-sm {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  margin-bottom: 4px;
  color: rgba(0, 0, 0, .70);
  font-size: .82rem;
  font-weight: 500;
  border-left: 2px solid transparent;
  border-radius: 10px;
  background: rgba(0, 0, 0, .02);
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  letter-spacing: .01em;
}

.mob-link-sm:last-child {
  margin-bottom: 0;
}

.mob-link-sm::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(179, 32, 33, .35);
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}

.mob-link-sm:hover,
.mob-link-sm:active {
  color: var(--gold);
  background: rgba(179, 32, 33, .06);
  border-left-color: var(--gold);
  transform: translateX(2px);
}

.mob-link-sm:hover::before,
.mob-link-sm:active::before {
  background: var(--gold);
  transform: scale(1.3);
}

.mob-trust-section {
  padding: 16px 12px 24px;
  background: rgba(179, 32, 33, .04);
  border-top: 0.5px solid rgba(179, 32, 33, .12);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.mob-trust-title {
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
  padding: 0 8px;
}

.mob-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mob-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, .03);
  border: 0.5px solid rgba(179, 32, 33, .12);
  border-left: 2px solid rgba(179, 32, 33, .4);
  border-radius: 10px;
  transition: background .2s, border-color .2s, transform .2s;
}

.mob-trust-badge:hover {
  background: rgba(179, 32, 33, .06);
  border-left-color: var(--gold);
  transform: translateX(2px);
}

.mob-trust-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(179, 32, 33, .1);
  border: 0.5px solid rgba(179, 32, 33, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.mob-trust-badge-text {
  color: rgba(0, 0, 0, .78);
  font-size: .78rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .01em;
}

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

.mob-menu.open .mob-nav-links .mob-link:nth-child(1) { animation: mobLinkSlideIn .32s .08s both; }
.mob-menu.open .mob-nav-links .mob-link:nth-child(2) { animation: mobLinkSlideIn .32s .14s both; }
.mob-menu.open .mob-nav-links .mob-link:nth-child(3) { animation: mobLinkSlideIn .32s .20s both; }
.mob-menu.open .mob-nav-links .mob-link:nth-child(4) { animation: mobLinkSlideIn .32s .26s both; }
.mob-menu.open .mob-nav-links .mob-link:nth-child(5) { animation: mobLinkSlideIn .32s .32s both; }

.mob-menu.open .mob-secondary-section { animation: mobLinkSlideIn .32s .38s both; }
.mob-menu.open .mob-trust-section { animation: mobLinkSlideIn .32s .44s both; }

/* ─── ANIMATION KEYFRAMES ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-18px) rotate(3deg)
  }
}

@keyframes floatY2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(12px) rotate(-2deg)
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg)
  }

  to {
    transform: rotate(360deg)
  }
}

@keyframes rotateSlowReverse {
  from {
    transform: rotate(360deg)
  }

  to {
    transform: rotate(0deg)
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center
  }

  100% {
    background-position: 200% center
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: .4;
    transform: scale(1)
  }

  50% {
    opacity: .8;
    transform: scale(1.05)
  }
}

@keyframes patternDrift {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 200px 200px
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0
  }

  15% {
    opacity: 1
  }

  85% {
    opacity: 1
  }

  100% {
    transform: translateY(-400px) translateX(40px);
    opacity: 0
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(179, 32, 33, .15)
  }

  50% {
    border-color: rgba(179, 32, 33, .35)
  }
}

@keyframes trustSlide {
  from {
    opacity: 0;
    transform: translateX(-10px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

/* ─── HERO ─── */
.hero {
  padding: 90px 4% 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FFF8F8 0%, #FFFFFF 60%, #FFF5F5 100%);
}

/* Subtle purple geometric pattern background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cpolygon points='60,6 73,42 112,42 80,64 91,100 60,78 29,100 40,64 8,42 47,42' fill='none' stroke='rgba(179, 32, 33, 0.10)' stroke-width='.8'/%3E%3Cpolygon points='60,18 69,44 95,44 74,58 82,82 60,68 38,82 46,58 25,44 51,44' fill='none' stroke='rgba(179, 32, 33, 0.07)' stroke-width='.6'/%3E%3Ccircle cx='60' cy='60' r='50' fill='none' stroke='rgba(179, 32, 33, 0.05)' stroke-width='.5'/%3E%3Ccircle cx='60' cy='60' r='34' fill='none' stroke='rgba(179, 32, 33, 0.04)' stroke-width='.4'/%3E%3Cline x1='60' y1='0' x2='60' y2='120' stroke='rgba(179, 32, 33, 0.03)' stroke-width='.3'/%3E%3Cline x1='0' y1='60' x2='120' y2='60' stroke='rgba(179, 32, 33, 0.03)' stroke-width='.3'/%3E%3C/svg%3E");
  animation: patternDrift 60s linear infinite;
  z-index: 0;
  opacity: 1
}

/* Soft purple radial glow */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 90% at 50% 20%, rgba(179, 32, 32, 0.192), transparent 90%),
    radial-gradient(ellipse 40% 50% at 18% 75%, rgba(220, 38, 38, 0.185), transparent 95%),
    radial-gradient(ellipse 40% 50% at 82% 75%, rgba(220, 38, 38, .12), transparent 95%);
  z-index: 1
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 720px;
  margin: 0 auto
}

/* Floating decorative star ornaments — visible purple */
.hero-ornament {
  position: absolute;
  pointer-events: none;
  z-index: 2;
  opacity: .35
}

.hero-ornament svg {
  width: 100%;
  height: 100%
}

.hero-ornament--1 {
  top: 8%;
  left: 5%;
  width: 160px;
  height: 160px;
  animation: floatY 8s ease-in-out infinite, rotateSlow 50s linear infinite
}

.hero-ornament--2 {
  top: 15%;
  right: 6%;
  width: 120px;
  height: 120px;
  animation: floatY2 10s ease-in-out infinite, rotateSlowReverse 60s linear infinite
}

.hero-ornament--3 {
  bottom: 12%;
  left: 10%;
  width: 100px;
  height: 100px;
  animation: floatY 12s ease-in-out infinite 2s, rotateSlow 45s linear infinite
}

.hero-ornament--4 {
  bottom: 8%;
  right: 12%;
  width: 140px;
  height: 140px;
  animation: floatY2 9s ease-in-out infinite 1s, rotateSlowReverse 55s linear infinite
}

.hero-ornament--5 {
  top: 50%;
  left: 50%;
  width: 460px;
  height: 460px;
  transform: translate(-50%, -50%);
  opacity: .14;
  animation: rotateSlow 90s linear infinite
}

/* Floating particles — vibrant purple, larger, glowing */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden
}

.hero-particle {
  position: absolute;
  width: 7px;
  height: 7px;
  background: radial-gradient(circle, #DC2626 0%, #B32021 70%);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 14px rgba(179, 32, 33, .9), 0 0 28px rgba(220, 38, 38, .5)
}

.hero-particle:nth-child(1) {
  left: 15%;
  bottom: -10px;
  animation: particleFloat 7s ease-in infinite 0s
}

.hero-particle:nth-child(2) {
  left: 30%;
  bottom: -10px;
  animation: particleFloat 9s ease-in infinite 2s
}

.hero-particle:nth-child(3) {
  left: 50%;
  bottom: -10px;
  animation: particleFloat 8s ease-in infinite 4s
}

.hero-particle:nth-child(4) {
  left: 70%;
  bottom: -10px;
  animation: particleFloat 10s ease-in infinite 1s
}

.hero-particle:nth-child(5) {
  left: 85%;
  bottom: -10px;
  animation: particleFloat 7.5s ease-in infinite 3s
}

.hero-particle:nth-child(6) {
  left: 42%;
  bottom: -10px;
  animation: particleFloat 11s ease-in infinite 5s
}

/* Hero text entrance animations */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(179, 32, 33, .12), rgba(220, 38, 38, .15));
  border: 1.5px solid rgba(179, 32, 33, .35);
  padding: 8px 20px;
  border-radius: 60px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(179, 32, 33, .12);
  animation: fadeInDown .8s ease-out both;
  animation-delay: .2s
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 5.8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 18px;
  animation: fadeInUp .9s ease-out both;
  animation-delay: .4s
}

.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  background: linear-gradient(90deg, #B32021, #DC2626, #B32021);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-weight: 500;
  opacity: 0.85;
  animation: fadeInUp .9s ease-out both;
  animation-delay: .6s
}

.fotter_bottom_text {
  font-size: .78rem;
  color: rgba(0, 0, 0, .6);
  text-align: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #B32021 0%, #DC2626 50%, #B32021 100%);
  background-size: 200% auto;
  color: #FFFFFF;
  padding: 15px 40px;
  border-radius: 60px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  border: 2px solid transparent;
  animation: fadeInUp .9s ease-out both;
  animation-delay: .8s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(179, 32, 33, .28), 0 2px 8px rgba(179, 32, 33, .15)
}

.hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), transparent);
  transition: left .6s
}

.hero-cta:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(179, 32, 33, .4), 0 4px 12px rgba(179, 32, 33, .2)
}

.hero-cta:hover::before {
  left: 100%
}

/* ─── TRUST STATS — Customer Confidence Builder ─── */
.trust-stats {
  padding: 64px 4%;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F8 50%, #FFFFFF 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.trust-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.trust-stats-header {
  text-align: center;
  margin-bottom: 44px;
}

.trust-stats-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  padding: 6px 16px;
  background: var(--gold-light);
  border-radius: 60px;
  border: 1px solid rgba(179, 32, 33, .2);
}

.trust-stats-title {
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 3.8vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.trust-stats-title em {
  font-style: italic;
  color: var(--gold);
}

.trust-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 44px;
}

.trust-stat {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.trust-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.trust-stat:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(179, 32, 33, .12);
}

.trust-stat:hover::before {
  transform: scaleX(1);
}

.trust-stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), #FFEAEA);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(179, 32, 33, .12);
  transition: transform .3s;
}

.trust-stat:hover .trust-stat-icon {
  transform: scale(1.08) rotate(-5deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #FFFFFF;
}

.trust-stat-num {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.trust-stat-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.trust-stat-sub {
  font-size: .82rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

/* Trust badges row below stats */
.trust-badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 20px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: var(--text);
  font-weight: 500;
}

.trust-badge-item strong {
  font-weight: 800;
  color: var(--gold-dark);
}

.trust-badge-icon {
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gold-light);
  flex-shrink: 0;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 600px) {
  .trust-stats {
    padding: 48px 0px;
  }
  .trust-stats-header {
    margin-bottom: 30px;
  }
  .trust-stats-grid {
    gap: 12px;
    margin-bottom: 28px;
  }
  .trust-stat {
    padding: 22px 14px;
    border-radius: 12px;
  }
  .trust-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 10px;
  }
  .trust-stat-icon svg {
    width: 22px;
    height: 22px;
  }
  .trust-stat-label {
    font-size: .88rem;
  }
  .trust-stat-sub {
    font-size: .72rem;
  }
  .trust-badges-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 16px;
    border-radius: 12px;
  }
  .trust-badge-item {
    font-size: .82rem;
  }
}

/* ─── SHOWCASE SECTION (Features row like website) ─── */
.showcase-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border)
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.showcase-item {
  text-align: center;
  padding: 24px 16px
}

.showcase-icon {
  font-size: 2rem;
  margin-bottom: 12px
}

.showcase-title {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px
}

.showcase-desc {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5
}

/* ─── PRODUCTS ─── */
.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 12px
}

.sec-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px
}

.sec-label::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--gold)
}

.sec-title {
  font-family: var(--font-d);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1
}

.sec-title em {
  font-style: italic;
  color: var(--gold)
}

.products-count {
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted)
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px
}

/* Product Card */
.p-card {
  background: var(--card);
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .4s cubic-bezier(.25, .46, .45, .94), box-shadow .4s, border-color .4s;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column
}

.p-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .15), 0 0 0 1px var(--gold);
  border-color: var(--gold)
}

.p-badge {
display: none;
}

.p-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--surface);
  overflow: hidden;
  position: relative;
  flex-shrink: 0
}

.p-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s cubic-bezier(.25, .46, .45, .94)
}

.p-card:hover .p-img-wrap img {
  transform: scale(1.08)
}

.p-body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.p-buy {
  margin-top: auto
}

.p-name {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.86em;
  text-overflow: ellipsis;
  letter-spacing: -0.01em
}

.p-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap
}

.p-sale {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1
}

.p-original {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500
}

.hp-sold-wrap {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px
}

.hp-sold-num {
  color: var(--text);
  font-weight: 700
}

.p-buy {
  width: 100%;
  padding: 14px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--bg);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(179, 32, 33, .25);
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: serif;
}

.p-buy:hover {
  background: var(--gold-dark);
  box-shadow: 0 6px 16px rgba(179, 32, 33, .35);
  transform: translateY(-1px)
}

.p-buy:active {
  transform: scale(.98)
}

/* ─── FEATURES ─── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px
}

.feat-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color .3s, transform .3s, box-shadow .3s
}

.feat-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12)
}

.feat-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
  transition: transform .3s
}

.feat-card:hover .feat-icon {
  transform: scale(1.15)
}

.feat-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px
}

.feat-desc {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.5
}

/* ─── SECTIONS ─── */
.section-pad {
  padding: 48px 0px
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 4%;
  padding-right: 4%
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px
}

.cat-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.25, .46, .45, .94)
}

.cat-card:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .14)
}

.cat-count {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px
}

.cat-name {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 700
}

.cat-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light) 0%, #FEE2E2 100%);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(179, 32, 33, .12);
  position: relative;
  overflow: hidden
}

.cat-arrow::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0
}

.cat-arrow svg {
  position: relative;
  z-index: 1;
  transition: transform .35s cubic-bezier(.25, .46, .45, .94)
}

.cat-card:hover .cat-arrow {
  border-color: var(--gold);
  box-shadow: 0 6px 20px rgba(179, 32, 33, .35);
  transform: scale(1.05)
}

.cat-card:hover .cat-arrow::before {
  opacity: 1
}

.cat-card:hover .cat-arrow svg {
  color: #FFFFFF;
  transform: translateX(4px)
}

/* Newsletter */
.cta-input-wrap {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 60px;
  padding: 5px 5px 5px 20px;
  max-width: 420px;
  margin: 0 auto
}

.cta-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 14px;
  min-width: 0
}

.cta-input::placeholder {
  color: var(--muted)
}

.cta-submit {
  background: var(--gold);
  color: var(--bg);
  border: none;
  padding: 11px 22px;
  border-radius: 60px;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: .2s
}

.cta-submit:hover {
  background: var(--gold-dark)
}

/* ─── PRODUCT DETAIL ─── */
.pv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start
}

.pv-gallery {
  position: relative;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

/* Drag slider wrapper */
.pv-drag-wrap {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: grab;
  user-select: none;
  position: relative;
  contain: layout;
  touch-action: pan-y;
}

.pv-drag-wrap:active {
  cursor: grabbing
}

.pv-drag-track {
  display: flex;
  width: 100%;
  height: 100%;
  will-change: transform;
  transform: translateX(0);
}

.pv-drag-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: 100%;
}

.pv-drag-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none
}

/* Dots */
.pv-drag-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3
}

.pv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(0, 0, 0, .5);
  cursor: pointer;
  transition: background .2s, transform .2s
}

.pv-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3)
}

.pv-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pv-thumbs::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.pv-thumb {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  background: var(--surface);
  transition: .2s;
  flex-shrink: 0;
}

.pv-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(179, 32, 33, .2)
}

@media (hover: hover) {
  .pv-thumb:hover {
    border-color: var(--gold)
  }
}

.pv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.pv-title {
  font-family: var(--font-d);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px
}

.pv-prices {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.pv-sale {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold)
}

.pv-was {
  font-size: 1rem;
  color: var(--muted);
  text-decoration: line-through
}

.pv-discount {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
    background: #b3202017;
  padding: 4px 10px;
  border-radius: 6px
}

.pv-buy {
  width: 100%;
  padding: 16px;
  border-radius: 5px;
  background: var(--gold);
  color: var(--bg);
  font-size: 17px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  transition: .2s;
  font-family: serif;
  margin-bottom: 0px;
}

.pv-buy:hover {
  background: var(--gold-dark)
}

/* ─── HURRY-UP TIMER (compact 1-liner, same style as Sold/Live Viewer widgets) ─── */
.hurry-timer-wrap {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 11px;
   background: #b3202017;
  border: 1px solid #b3202033;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  margin: 0px 0 12px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  flex-wrap: wrap;
  line-height: 1.5;
  width: fit-content;
  max-width: 100%;
}

.hurry-icon {
  font-size: .95rem;
  line-height: 1;
  flex-shrink: 0;
}

.hurry-label {
  color: var(--text);
  font-weight: 600;
}

.hurry-countdown {
  color: var(--gold);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: .5px;
  font-size: .95rem;
}

.hurry-countdown #hurrySecs {
  display: inline-block;
  min-width: 1.6ch;
}



/* ─── PRODUCT REVIEWS ─── */

/* Star select for review form */
.star-select {
  display: flex;
  gap: 2px
}

.star-btn {
  font-size: 22px;
  color: var(--border);
  cursor: pointer;
  transition: color .15s;
  user-select: none
}

.star-btn.active {
  color: var(--gold)
}

.star-btn:hover {
  color: var(--gold)
}

/* ─── MODAL QUANTITY SELECTOR ─── */
.m-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gold);
  border-radius: 0px;
  overflow: hidden
}

.m-qty button {
  width: 40px;
  height: 40px;
  background: var(--card);
  color: white;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--font-b);
  transition: .15s;
      background: var(--gold)
}

.m-qty button:hover {
  background: var(--gold)
}

.m-qty span {
  width: 44px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);

}

/* Sold badge */
/* ─── HOMEPAGE CARD LIFETIME SOLD BADGE ─── */
.hp-sold-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #DC2626;
  margin-bottom: 10px;
  margin-top: 5px;
  line-height: 1;
}

.hp-sold-num {
  font-size: 12.5px;
  font-weight: 800;
  display: inline-block;
  color: #DC2626;
}

@keyframes hpNumFlash {
  0%   { transform: scale(1)    }
  40%  { transform: scale(1.28) }
  100% { transform: scale(1)    }
}

.hp-num-flash {
  animation: hpNumFlash .55s cubic-bezier(.22, .68, 0, 1.2);
}

/* ─── SOCIAL PROOF SOLD INDICATOR ─── */
.sp-sold-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px 9px 12px;
    background: #b3202017;
  border: 1px solid #b3202033;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  max-width: 100%;
}

.sp-sold-icon {
  font-size: .95rem;
  line-height: 1;
  flex-shrink: 0;
}

.sp-sold-text {
  line-height: 1.4;
}

#spSoldNum {
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
  display: inline-block;
}

@keyframes spNumFlash {
  0%   { transform: scale(1);    color: #DC2626 }
  35%  { transform: scale(1.22); color: #B91C1C }
  100% { transform: scale(1);    color: #DC2626 }
}

.sp-num-flash {
  animation: spNumFlash .65s cubic-bezier(.22, .68, 0, 1.2);
}

/* ─── LIVE VIEWER INDICATOR ─── */
.lv-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px 8px 11px;
  background: #b3202017;
  border: 1px solid #b3202033;
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  margin-bottom: 6px;
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  flex-wrap: wrap;
  line-height: 1.5;
  width: fit-content;

}

/* Icon blink — used on 🔥 sold icon AND 👀/🔥 live viewer icon */
@keyframes iconBlink {
  0%, 100% { opacity: 1   }
  50%       { opacity: .2 }
}

.icon-blink {
  display: inline-block;
  animation: iconBlink 1s ease-in-out infinite;
}

.lv-num {
  color: var(--gold);
  font-weight: 800;
  font-size: .95rem;
  display: inline-block;
}

@keyframes lvFlash {
  0%   { transform: scale(1);    color: var(--gold)}
  35%  { transform: scale(1.25); color: var(--gold) }
  100% { transform: scale(1);    color: var(--gold) }
}

.lv-flash {
  animation: lvFlash .55s cubic-bezier(.22, .68, 0, 1.2);
}

/* ─── CHECKOUT MODAL (no scrollbar) ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, .7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible
}

.modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(.96);
  transition: transform .35s cubic-bezier(.17, .67, .29, 1.2);
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none
}

.modal::-webkit-scrollbar {
  display: none
}

.modal-overlay.open .modal {
  transform: translateY(0) scale(1)
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border)
}

.modal-title {
  font-family: var(--font-d);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text)
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.1rem;
  transition: all .2s
}

.modal-close:hover {
  color: var(--gold);
  border-color: var(--gold)
}

.modal-product {
  display: flex;
  gap: 14px;
  padding: 18px 24px;
  background: var(--card);
  border-bottom: 1px solid var(--border)
}

.modal-img {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--surface);
  flex-shrink: 0
}

.modal-pname {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3
}

.modal-pprice {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-d)
}

.modal-pprice span {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-family: var(--font-b);
  font-weight: 400
}

.modal-form {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.m-field {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 0px;
  background: var(--card);
  color: var(--text);
  font-family: var(--font-b);
  font-size: .88rem;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none
}

.m-field::placeholder {
  color: var(--muted)
}

.m-field:focus {
  border-color: var(--gold)
}

.m-field.error {
  border-color: var(--red);
  animation: shake .4s
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-5px)
  }

  50% {
    transform: translateX(5px)
  }

  75% {
    transform: translateX(-3px)
  }
}

.m-label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px
}

.m-cod {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--card);
  border: 1.5px solid var(--gold);
  border-radius: 10px
}

.m-cod-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center
}

.m-cod-dot::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold)
}

.m-cod-text {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text)
}

.m-cod-sub {
  font-size: .68rem;
  color: var(--muted);
  margin-top: 1px
}

.m-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--gold-glow);
  border-radius: 10px;
  border: 1px solid rgba(179, 32, 33, .15)
}

.m-total-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text)
}

.m-total-price {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold)
}

.m-total-price small {
  font-size: .72rem;
  color: var(--green);
  font-family: var(--font-b);
  font-weight: 600;
  display: block;
  text-align: right
}

.m-submit {
  font-family: serif;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--bg);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s
}

.m-submit:hover {
  background: var(--gold-dark)
}

.m-submit:active {
  transform: scale(.98)
}

.m-secure {
  text-align: center;
  font-size: .68rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 4px
}

.btn-loading {
  pointer-events: none;
  opacity: .7
}

.btn-loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, .2);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin .6s linear infinite;
  margin-left: 8px
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

/* ─── SUCCESS MODAL ─── */
.success-body {
  padding: 40px 24px;
  text-align: center
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 28px
}

.success-title {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px
}

.success-msg {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px
}

.success-btn {
  padding: 13px 36px;
  border-radius: 60px;
  background: var(--gold);
  color: var(--bg);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s
}

.success-btn:hover {
  background: var(--gold-dark)
}

/* ─── FOOTER (compact, theme-matched, responsive) ─── */
/* ═══════ FOOTER — PREMIUM PROFESSIONAL DESIGN ═══════ */
.site-footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F8 100%);
  border-top: 1.5px solid var(--border);
  margin-top: 64px;
  position: relative;
  overflow: hidden;
}

/* Top accent strip — red gradient */
.ft-accent-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 25%, #DC2626 50%, var(--gold) 75%, var(--gold-dark) 100%);
  background-size: 200% 100%;
  animation: ft-shimmer 6s linear infinite;
}

@keyframes ft-shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(179, 32, 33, .05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(179, 32, 33, .04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer .ft-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 4% 0;
  position: relative;
  z-index: 1;
}

/* ─── TRUST BANNER (Top Strip) ─── */
.ft-trust-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1.5px solid rgba(179, 32, 33, .12);
  margin-bottom: 44px;
}

.ft-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ft-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light) 0%, #FEE2E2 100%);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(179, 32, 33, .15);
  transition: transform .3s;
}

.ft-trust-item:hover .ft-trust-icon {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
}

.ft-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ft-trust-text strong {
  font-size: .92rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.ft-trust-text span {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 500;
}

/* ─── MAIN FOOTER GRID ─── */
.site-footer .ft-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1.5px solid rgba(179, 32, 33, .12);
}

/* ─── BRAND COLUMN ─── */
.site-footer .ft-brand .ft-logo {
  font-family: var(--font-logo);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  margin-bottom: 14px;
}

.site-footer .ft-logo-1 { 
  color: var(--gold);
  font-weight: 800;
  font-style: normal;
}

.site-footer .ft-logo-2 { 
  color: var(--text);
  font-weight: 700;
  font-style: normal;
}

.site-footer .ft-tag {
  font-size: .88rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 22px;
  max-width: 320px;
}

/* ─── SOCIAL ICONS ─── */
.site-footer .ft-social {
  display: flex;
  gap: 10px;
}

.site-footer .ft-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  overflow: hidden;
}

.site-footer .ft-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}

.site-footer .ft-social a svg {
  position: relative;
  z-index: 1;
  transition: transform .3s;
}

.site-footer .ft-social a:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(179, 32, 33, .25);
}

.site-footer .ft-social a:hover::before {
  opacity: 1;
}

.site-footer .ft-social a:hover svg {
  color: #FFFFFF;
  transform: scale(1.1);
}

/* Platform-specific hover colors */
.site-footer .ft-social-fb:hover::before { background: linear-gradient(135deg, #1877F2, #0E5FCC); }
.site-footer .ft-social-ig:hover::before { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045); }
.site-footer .ft-social-tt:hover::before { background: linear-gradient(135deg, #000, #25F4EE, #FE2C55); }
.site-footer .ft-social-wa:hover::before { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ─── COLUMN HEADINGS ─── */
.site-footer .ft-h {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text);
  margin: 0 0 18px;
  padding-bottom: 10px;
  position: relative;
}

.site-footer .ft-h::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
}

/* ─── COLUMN LINKS ─── */
.site-footer .ft-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer .ft-col ul a {
  font-size: .88rem;
  color: var(--muted);
  text-decoration: none;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.ft-bullet {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  transition: all .25s ease;
  opacity: .6;
}

.site-footer .ft-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.site-footer .ft-col ul a:hover .ft-bullet {
  opacity: 1;
  transform: scale(1.5);
  background: var(--gold-dark);
}

/* ─── CONTACT COLUMN ─── */
.site-footer .ft-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer .ft-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ft-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .3s;
}

.site-footer .ft-contact li:hover .ft-contact-icon {
  background: var(--gold);
  color: #FFFFFF;
  transform: scale(1.05);
}

.site-footer .ft-contact a,
.site-footer .ft-loc {
  font-size: .88rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  transition: color .25s;
  padding-top: 6px;
}

.ft-loc{
color: var(--muted) !important;
}

.site-footer .ft-contact a:hover {
  color: var(--gold);
}

/* ─── WHATSAPP BUTTON ─── */
.ft-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, .3);
  transition: all .3s;
}

.ft-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, .45);
}

.ft-wa-btn svg {
  flex-shrink: 0;
}

/* ─── PAYMENT METHODS ─── */
.ft-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1.5px solid rgba(179, 32, 33, .12);
  flex-wrap: wrap;
}

.ft-payment-label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ft-payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ft-pay-badge {
  padding: 8px 14px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  transition: all .25s;
  box-shadow: var(--shadow-sm);
    text-align: center;
}

.ft-pay-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(179, 32, 33, .15);
}

/* ─── BOTTOM STRIP ─── */
.site-footer .ft-foot {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-copy {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
  letter-spacing: .01em;
}

.ft-copy strong {
  color: var(--gold);
  font-weight: 800;
  font-family: var(--font-d);
}

.ft-made {
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ft-heart {
  display: inline-block;
  color: var(--gold);
  font-size: 1rem;
  animation: ft-heartbeat 1.5s ease-in-out infinite;
}

@keyframes ft-heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* ─── RESPONSIVE — TABLET ─── */
@media(max-width: 900px) {
  .ft-trust-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .site-footer .ft-main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }

  .site-footer .ft-brand {
    grid-column: 1 / -1;
  }

  .ft-payment {
    flex-direction: column;
    gap: 12px;
  }
}

/* ─── RESPONSIVE — MOBILE ─── */
@media(max-width: 600px) {
  .site-footer {
    margin-top: 48px;
  }

  .site-footer .ft-container {
    padding: 36px 5% 0;
  }

  .ft-trust-banner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
    margin-bottom: 32px;
  }

  .ft-trust-item {
    gap: 12px;
  }

  .ft-trust-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .ft-trust-icon svg {
    width: 18px;
    height: 18px;
  }

  .site-footer .ft-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 28px;
  }

  .site-footer .ft-brand .ft-logo {
    font-size: 1.8rem;
  }

  .site-footer .ft-tag {
    font-size: .85rem;
    max-width: 100%;
  }

  .site-footer .ft-social a {
    width: 38px;
    height: 38px;
  }

  .site-footer .ft-h {
    font-size: 1.05rem;
    margin-bottom: 14px;
  }

  .ft-wa-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
  }

  .ft-payment {
    padding: 20px 0;
  }

  .ft-payment-methods {
    justify-content: center;
  }

  .ft-pay-badge {
    font-size: .76rem;
    padding: 7px 4px;
    width: 134px;
    text-align: center;
  }

  .site-footer .ft-foot {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    padding: 18px 0;
  }

  .ft-foot{
    gap: 0px !important;

  }
}


/* (moved to reveal section) */

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 24px;
  border-radius: 12px;
  font-size: .84rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
  z-index: 2000;
  transition: transform .35s cubic-bezier(.17, .67, .29, 1.2), opacity .35s;
  opacity: 0
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.25, .46, .45, .94), transform .7s cubic-bezier(.25, .46, .45, .94)
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .7s cubic-bezier(.25, .46, .45, .94), transform .7s cubic-bezier(.25, .46, .45, .94)
}

.reveal-left.vis {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .7s cubic-bezier(.25, .46, .45, .94), transform .7s cubic-bezier(.25, .46, .45, .94)
}

.reveal-right.vis {
  opacity: 1;
  transform: translateX(0)
}

.reveal-scale {
  opacity: 0;
  transform: scale(.85);
  transition: opacity .7s cubic-bezier(.25, .46, .45, .94), transform .7s cubic-bezier(.25, .46, .45, .94)
}

.reveal-scale.vis {
  opacity: 1;
  transform: scale(1)
}

/* Nav scroll effect */
nav.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .08)
}

/* Section divider ornament */

/* Animated gold border glow on sections */

/* wa-float removed */

/* ─── STATIC PAGES ─── */
.static-page {
  min-height: 60vh
}

.static-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px
}

.static-updated {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 32px
}

.static-content h2 {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  margin: 28px 0 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border)
}

.static-content h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0
}

.static-content p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  margin-bottom: 12px
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color .2s
}

.contact-card:hover {
  border-color: rgba(179, 32, 33, .25)
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 10px
}

.contact-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px
}

.contact-value {
  font-size: .95rem;
  color: var(--gold);
  font-weight: 600
}

.social-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 60px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s;
  background: var(--card)
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* ─── DESKTOP-ONLY UTILITY ─── */

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .showcase-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .desktop-only {
    display: none !important
  }

  .nav-links {
    display: none !important
  }

  .hamburger {
    display: flex
  }

  .nav-wa span {
    display: none
  }

  .hero {
    padding: 40px 5% 50px;
    min-height: auto
  }

  .hero-title {
    font-size: 2.2rem
  }

  .hero-ornament--1,
  .hero-ornament--2 {
    width: 80px;
    height: 80px;
    opacity: .04
  }

  .hero-ornament--3,
  .hero-ornament--4 {
    display: none
  }

  .hero-ornament--5 {
    width: 250px;
    height: 250px
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .p-body {
    padding: 11px 12px 14px
  }

  .p-name {
    font-size: .92rem;
    -webkit-line-clamp: 2;
    min-height: 2.6em;
    margin-bottom: 6px
  }

  .p-prices {
    gap: 6px;
    margin-bottom: 6px;
    align-items: baseline
  }

  .p-sale {
    font-size: 1.1rem
  }

  .p-original {
    font-size: .72rem
  }

  .hp-sold-wrap {
    font-size: .72rem;
    margin-bottom: 8px
  }

  .p-buy {
    padding: 10px 8px;
    font-size: .72rem;
    border-radius: 6px;
    letter-spacing: .04em
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .feat-card {
    padding: 18px 14px
  }

  .trust {
    gap: 18px;
    padding: 16px 4%
  }

  .trust-item {
    font-size: .68rem
  }

  .modal {
    max-width: 100%;
    border-radius: 14px;
    max-height: 95vh
  }

  .cat-grid {
    grid-template-columns: 1fr
  }

  .pv-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 0
  }

  .pv-gallery {
    margin-bottom: 16px
  }

  .pv-drag-wrap {
    border-radius: 12px
  }

  .pv-title {
    font-size: 1.35rem;
    margin-bottom: 6px
  }

  .pv-sale {
    font-size: 1.6rem
  }

  .pv-buy {
    font-size: 15px
  }

  .hurry-timer-wrap {
    margin: px 0 10px;
    padding: 7px 12px 7px 10px;
    font-size: .8rem;
  }

  .hurry-icon {
    font-size: .9rem;
  }

  .hurry-countdown {
    font-size: .9rem;
  }

  .cta-input-wrap {
    flex-direction: column;
    border-radius: 14px;
    padding: 5px
  }

  .cta-input {
    padding: 12px 16px
  }

  .cta-submit {
    width: 100%
  }

  .container {
    padding-left: 16px;
    padding-right: 16px
  }
}

@media(max-width:420px) {
  .hero-title {
    font-size: 1.85rem
  }

  .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .p-body {
    padding: 10px 10px 12px
  }

  .p-name {
    font-size: .85rem;
    line-height: 1.3;
    min-height: 2.6em
  }

  .p-sale {
    font-size: 1rem
  }

  .p-original {
    font-size: .68rem
  }

  .hp-sold-wrap {
    font-size: .68rem;
    margin-bottom: 6px
  }

  .p-buy {
    padding: 9px 6px;
    font-size: .68rem;
    letter-spacing: .02em
  }

  .feat-grid {
    grid-template-columns: 1fr 1fr
  }

}

/* ─── SOCIAL FOLLOW CARDS ─── */
.social-section {
  position: relative;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px 18px 24px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  text-decoration: none;
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.social-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: transform .35s cubic-bezier(.25, .46, .45, .94);
  box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

.social-card--fb .social-card-icon {
  background: linear-gradient(135deg, #1877F2 0%, #0E5FCC 100%);
}

.social-card--ig .social-card-icon {
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
}

.social-card--tt .social-card-icon {
  background: linear-gradient(135deg, #000000 0%, #25F4EE 50%, #FE2C55 100%);
}

.social-card--wa .social-card-icon {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.social-card-label {
  font-size: .72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.social-card-platform {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.social-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(8px, -8px) scale(.7);
  transition: all .35s cubic-bezier(.25, .46, .45, .94);
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(179, 32, 33, .15);
}

.social-card:hover::before {
  transform: scaleX(1);
}

.social-card:hover .social-card-icon {
  transform: scale(1.08) rotate(-5deg);
}

.social-card:hover .social-card-arrow {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  background: var(--gold);
  color: #FFFFFF;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .social-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .social-cards-grid {
    gap: 10px;
  }
  .social-card {
    padding: 22px 14px 18px;
    border-radius: 14px;
    gap: 10px;
  }
  .social-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
  }
  .social-card-icon svg {
    width: 24px;
    height: 24px;
  }
  .social-card-label {
    font-size: .68rem;
  }
  .social-card-platform {
    font-size: 1.1rem;
  }
  .social-card-arrow {
    width: 26px;
    height: 26px;
    top: 10px;
    right: 10px;
  }
}

/* ─── ABOUT PRODUCT (Features Section) ─── */
.zm-about-section {
  margin: 12px 0 0px;
  padding: 22px 22px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F8 100%);
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);

}

.zm-about-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--gold-light);
}

.zm-about-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(179, 32, 33, .25);
}

.zm-about-title {
  font-family: var(--font-d);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.2;
}

.zm-about-intro {
  font-size: .98rem;
  color: var(--text);
  line-height: 1.65;
  font-weight: 500;
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--border);
}

.zm-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.zm-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: .95rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
  transition: transform .2s;
}

.zm-feature-item:hover {
  transform: translateX(3px);
}

.zm-feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(179, 32, 33, .35);
}

.zm-feature-text {
  flex: 1;
}

/* Mobile responsive for About section */
@media (max-width: 600px) {
  .zm-about-section {
    padding: 18px 18px;
    border-radius: 10px;
  }
  .zm-about-title {
    font-size: 1.1rem;
  }
  .zm-feature-item {
    font-size: .9rem;
  }
  .zm-about-intro {
    font-size: .92rem;
  }
}

/* ─── WHY SHOP WITH US ─── */
.why-shop-section{margin-top:12px;padding:20px 22px;background:var(--card);border:1.5px solid var(--border);border-radius:14px}
.why-shop-title{font-family:var(--font-d);font-size:1.25rem;font-weight:700;color:var(--gold);margin-bottom:16px;padding-bottom:10px;border-bottom:1px solid var(--border);letter-spacing:.02em}
.why-shop-list{list-style:none;display:flex;flex-direction:column;gap:14px;}
.why-shop-list li{display:flex;align-items:flex-start;gap:14px}
.why-shop-icon{width:42px;height:42px;border-radius:10px;background:var(--gold-glow);border:1px solid rgba(179, 32, 33, .15);display:flex;align-items:center;justify-content:center;font-size:1.2rem;flex-shrink:0}
.why-shop-list li div{display:flex;flex-direction:column;gap:1px}
.why-shop-list li strong{font-size:.92rem;color:var(--text);font-weight:700}
.why-shop-list li span{font-size:0.9rem;color:#4B5563;line-height:1.2}


/* ════════════════════════════════════════════════════════════
   PRODUCT REVIEWS SECTION (single product page only)
   ════════════════════════════════════════════════════════════ */
.rv-section{
  margin-top:32px;
  padding-top:32px;
  border-top:1px solid var(--border);
}
.rv-section-title{
  font-family:var(--font-d);
  font-size:1.7rem;
  color:var(--text);
  margin:0 0 22px;
  letter-spacing:.3px;
}

.rv-layout{
  display:grid;
  grid-template-columns:300px 1fr;
  gap:40px;
  align-items:start;
}

/* ── LEFT: SUMMARY PANEL ───────────────────────────── */
.rv-summary{
  display:flex;
  flex-direction:column;
  gap:16px;
  min-width:0;        /* allow shrinking in grid track */
  max-width:100%;
}

.rv-score-row{ display:flex; align-items:baseline; gap:10px; }
.rv-score{
  font-family:var(--font-d);
  font-size:2.4rem;
  font-weight:700;
  color:var(--text);
  line-height:1;
}
.rv-score-count{ font-size:.85rem; color:var(--muted); opacity:.85; }

/* Photo gallery in summary */
.rv-photo-gallery{
  position:relative;
  display:flex;
  align-items:center;
  gap:6px;
  min-width:0;
  max-width:100%;
}
.rv-gal-track-wrap{
  flex:1 1 0;
  min-width:0;        /* CRUCIAL: lets the flex item shrink below content size */
  overflow:hidden;
}
.rv-gal-track{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-behavior:smooth;
  -ms-overflow-style:none;
  scrollbar-width:none;
}
.rv-gal-track::-webkit-scrollbar{ display:none; }
.rv-gal-item{
  flex:0 0 110px;
  height:110px;
  border-radius:8px;
  overflow:hidden;
  cursor:pointer;
  border:2px solid var(--gold);
  background:var(--card);
  transition:transform .2s;
}
.rv-gal-item:hover{ transform:scale(1.03); }
.rv-gal-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.rv-gal-prev,.rv-gal-next{
  width:32px;
  height:32px;
  border-radius:6px;
  border:1px solid var(--border);
  background:var(--card);
  color:var(--text);
  cursor:pointer;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:.15s;
}
.rv-gal-prev:hover,.rv-gal-next:hover{
  background:var(--gold);
  color:var(--bg);
  border-color:var(--gold);
}

/* Write a review button */
.rv-write-btn{
  background:var(--gold);
  color:var(--bg);
  border:none;
  padding:13px 20px;
  font-family:var(--font-b);
  font-size:.92rem;
  font-weight:700;
  letter-spacing:.3px;
  cursor:pointer;
  transition:.2s;
  width:100%;
  border-radius:2px;
}
.rv-write-btn:hover{
  background:var(--gold-dark);
  transform:translateY(-1px);
}

/* Star breakdown bars (clickable for filter) */
.rv-bars{ display:flex; flex-direction:column; gap:9px; margin-top:4px; }
.rv-bar-row{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  width:100%;
  padding:4px 6px;
  background:transparent;
  border:1px solid transparent;
  border-radius:8px;
  cursor:pointer;
  text-align:left;
  transition:background .15s, border-color .15s, transform .12s;
  font-family:inherit;
  color:inherit;
}
.rv-bar-row:hover:not(:disabled){
  background:rgba(179, 32, 33, .08);
  border-color:rgba(179, 32, 33, .25);
}
.rv-bar-row:active:not(:disabled){ transform:scale(.99); }
.rv-bar-row.rv-bar-empty .rv-bar-label,
.rv-bar-row.rv-bar-empty .rv-bar-count{ opacity:.55; }
.rv-bar-row.rv-bar-active{
  background:rgba(179, 32, 33, .14);
  border-color:var(--gold);
}
.rv-bar-row.rv-bar-active .rv-bar-fill{
  background:var(--gold-light);
}
.rv-bar-label{
  display:inline-flex;
  align-items:center;
  gap:4px;
  width:32px;
  color:var(--text);
  font-weight:600;
  flex-shrink:0;
}
.rv-bar-star{ color:var(--gold); font-size:14px; }
.rv-bar-track{
  flex:1;
  display:block;
  height:6px;
  background:var(--border);
  border-radius:6px;
  overflow:hidden;
  min-width:0;
}
.rv-bar-fill{
  display:block;
  height:100%;
  background:var(--gold);
  border-radius:6px;
  transition:width .6s ease, background .15s;
}
.rv-bar-count{
  width:24px;
  text-align:right;
  color:var(--muted);
  font-size:13px;
  opacity:.85;
  flex-shrink:0;
}

/* ── RIGHT: REVIEWS LIST ───────────────────────────── */
.rv-list-wrap{
  min-width:0;
  max-width:100%;
}

.rv-list-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  flex-wrap:wrap;
}
.rv-active-filter{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(179, 32, 33, .14);
  border:1px solid var(--gold);
  border-radius:20px;
  padding:5px 6px 5px 12px;
  font-size:12px;
  color:var(--text);
}
.rv-active-filter[hidden]{ display:none !important; }
.rv-active-filter strong{ color:var(--gold); font-weight:700; }
.rv-clear-filter{
  width:22px;
  height:22px;
  border-radius:50%;
  background:rgba(0, 0, 0, .1);
  color:var(--text);
  border:none;
  cursor:pointer;
  font-size:11px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.15s;
  padding:0;
}
.rv-clear-filter:hover{ background:#DC2626; }

.rv-sort-select{
  background:var(--card);
  color:var(--text);
  border:1px solid var(--border);
  border-radius:6px;
  padding:8px 30px 8px 12px;
  font-size:13px;
  font-family:var(--font-b);
  cursor:pointer;
  outline:none;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23B32021' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 10px center;
}
.rv-sort-select:focus{ border-color:var(--gold); }

.rv-list{ display:flex; flex-direction:column; gap:24px; }

.rv-item{
  padding-bottom:24px;
  border-bottom:1px solid var(--border);
  min-width:0;
  max-width:100%;
}
.rv-item:last-child{ border-bottom:none; }

.rv-item-stars{
  color:var(--gold);
  font-size:18px;
  letter-spacing:3px;
  margin-bottom:10px;
}
.rv-item-stars .rv-star-empty{ color:var(--border); }

.rv-item-head{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
  flex-wrap:wrap;     /* let the verified badge wrap on tiny screens */
  min-width:0;
}
.rv-avatar{
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--card);
  border:1.5px solid var(--gold);
  color:var(--gold);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:13px;
  flex-shrink:0;
}
.rv-item-name{ font-size:.95rem; font-weight:700; color:var(--text); }
.rv-verified{
  font-size:11px;
  color:var(--gold);
  border:1px solid var(--gold);
  padding:2px 10px;
  border-radius:20px;
  font-weight:600;
  letter-spacing:.3px;
}

.rv-item-text{
  font-size:.92rem;
  color:var(--text);
  line-height:1.6;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  margin-bottom:4px;
  overflow-wrap:break-word;
  word-wrap:break-word;
  word-break:break-word;
}
.rv-item-text.rv-text-open{
  display:block;
  -webkit-line-clamp:unset;
  overflow:visible;
}
.rv-more-link{
  display:inline-block;
  font-size:13px;
  color:var(--text);
  text-decoration:underline;
  font-weight:600;
  margin-bottom:10px;
  cursor:pointer;
}
.rv-more-link:hover{ color:var(--gold); }

.rv-item-photo{
  margin-top:10px;
  width:120px;
  height:120px;
  border-radius:8px;
  overflow:hidden;
  cursor:pointer;
  border:1px solid var(--border);
  transition:transform .2s;
}
.rv-item-photo:hover{ transform:scale(1.04); border-color:var(--gold); }
.rv-item-photo img{ width:100%; height:100%; object-fit:cover; display:block; }

.rv-item-meta{
  margin-top:10px;
  font-size:12px;
  color:var(--muted);
  opacity:.7;
}

.rv-empty{
  color:var(--muted);
  font-size:14px;
  padding:30px 0;
  text-align:center;
}

/* ── REVIEW FORM ───────────────────────────────────── */
.rv-form-card{
  margin-top:36px;
  padding:24px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:14px;
}
.rv-form-title{
  font-family:var(--font-d);
  font-size:1.25rem;
  color:var(--text);
  margin:0 0 18px;
}
.rv-form-stars-wrap{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:8px;
  margin-bottom:14px;
}
.rv-form-stars-wrap .rv-form-label{ display:block; }
.rv-form-stars-wrap .star-select{
  display:flex;
  justify-content:flex-start;
  gap:6px;
}
.rv-form-stars-wrap .star-btn{
  font-size:30px;
  line-height:1;
  padding:2px;
}
.rv-form-label{
  font-size:12px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:600;
}
.rv-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}
.rv-textarea{ resize:vertical; min-height:90px; }

.rv-photo-upload{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  margin-top:12px;
  border:1.5px dashed var(--gold);
  border-radius:8px;
  background:var(--gold-glow);
  cursor:pointer;
  transition:.15s;
}
.rv-photo-upload:hover{ background:rgba(179, 32, 33, .18); }
.rv-photo-upload-icon{ font-size:20px; }
.rv-photo-upload-text{ font-size:.88rem; color:var(--text); font-weight:600; }

.rv-photo-preview{
  position:relative;
  margin-top:12px;
  width:140px;
  height:140px;
  border-radius:8px;
  overflow:hidden;
  border:1px solid var(--border);
}
.rv-photo-preview img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.rv-photo-remove{
  position:absolute;
  top:6px;
  right:6px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:rgba(0,0,0,.7);
  color:#fff;
  border:none;
  cursor:pointer;
  font-size:13px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.rv-photo-remove:hover{ background:#DC2626; }

.rv-form-note{
  margin:14px 0 0;
  font-size:12px;
  color:var(--muted);
  opacity:.85;
}
.rv-submit-btn{
  margin-top:16px !important;
  max-width:220px;
}

/* ── EMPTY STATE (filter found no matches) ───────── */
.rv-no-results{
  padding:48px 24px;
  text-align:center;
  background:var(--card);
  border:1px dashed var(--border);
  border-radius:14px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.rv-no-results[hidden]{ display:none; }
.rv-no-results-icon{ font-size:42px; opacity:.7; }
.rv-no-results-title{
  font-family:var(--font-d);
  font-size:1.2rem;
  color:var(--text);
  font-weight:700;
}
.rv-no-results-sub{
  font-size:.88rem;
  color:var(--muted);
  opacity:.85;
  max-width:340px;
}
.rv-no-results-btn{
  margin-top:8px;
  background:transparent;
  color:var(--gold);
  border:1.5px solid var(--gold);
  padding:9px 22px;
  border-radius:6px;
  font-family:var(--font-b);
  font-size:.85rem;
  font-weight:700;
  cursor:pointer;
  transition:.15s;
}
.rv-no-results-btn:hover{ background:var(--gold); color:var(--bg); }

/* ── LIGHTBOX ─────────────────────────────────────── */
.rv-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  z-index:9999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:30px;
  cursor:zoom-out;
}
.rv-lightbox[hidden]{ display:none; }
.rv-lightbox img{
  max-width:100%;
  max-height:100%;
  border-radius:8px;
  cursor:default;
}
.rv-lightbox-close{
  position:absolute;
  top:18px;
  right:18px;
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  border:none;
  cursor:pointer;
  font-size:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.15s;
}
.rv-lightbox-close:hover{ background:rgba(255,255,255,.25); }

/* ── MOBILE RESPONSIVE ─────────────────────────────── */
@media (max-width: 860px){
  .rv-section-title{ font-size:1.4rem; margin-bottom:18px; }
  .rv-layout{
    grid-template-columns:1fr;
    gap:24px;
  }
  .rv-summary{ gap:14px; }
  .rv-score{ font-size:2rem; }
  .rv-gal-item{ flex:0 0 90px; height:90px; }
  .rv-list-toolbar{ justify-content:flex-end; }
  .rv-item-stars{ font-size:16px; letter-spacing:2px; }
  .rv-form-grid{ grid-template-columns:1fr; }
  .rv-form-card{ padding:18px; }
  .rv-item-photo{ width:100px; height:100px; }
}

@media (max-width: 480px){
  .rv-section-title{ font-size:1.25rem; }
  .rv-write-btn{ font-size:.88rem; padding:12px 16px; }
  .rv-item-name{ font-size:.88rem; }
  .rv-item-text{ font-size:.88rem; }
  .rv-submit-btn{ max-width:100%; }
  .rv-photo-upload{ padding:12px 14px; }
  .rv-photo-upload-text{ font-size:.82rem; }
}

/* ════════════════════════════════════════════════════════════
   TOP TRUST BAR — infinite scroll marquee (mobile + desktop)
   ════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   TOP TRUST BAR — JavaScript-powered scroll (bulletproof)
   ════════════════════════════════════════════════════════════ */
.trust-bar {
  background: linear-gradient(90deg, #8B1617 0%, #B32021 50%, #8B1617 100%);
  color: #ffffff;
  overflow: hidden;
  width: 100%;
  position: relative;
  z-index: 100;
  /* min-height to avoid layout shift before JS measures content */
  min-height: 30px;
}

.trust-bar-track {
  display: flex;
  width: max-content;
  /* No CSS animation — JavaScript handles scroll via requestAnimationFrame */
}

.trust-bar-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 7px 0;
}

.trust-bar-item {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .3px;
  white-space: nowrap;
  padding: 0 14px;
  color: #ffffff;
  line-height: 1;
}

.trust-bar-sep {
  color: rgba(255, 255, 255, .55);
  font-weight: 400;
  font-size: .85rem;
  line-height: 1;
}

@media (max-width: 700px) {
  .trust-bar-item {
    font-size: .72rem;
    padding: 0 11px;
  }
  .trust-bar-content {
    padding: 6px 0;
  }
  .trust-bar {
    min-height: 28px;
  }
}

/* ════════════════════════════════════════════════════════════
   STICKY BUY NOW BUTTON — MOBILE ONLY
   Pakistani audience pe primary button maintain hai; yeh sirf
   scrolled customers ke liye safety net hai.
   Desktop pe NAHI (user explicit instruction).
   ════════════════════════════════════════════════════════════ */
.sticky-buy {
  display: none;  /* hidden by default — mobile only shows */
}

@media (max-width: 700px) {
  .sticky-buy {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 95;  /* below modal (which is typically 100+) */
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1.5px solid var(--gold);
    padding: 8px 12px;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));  /* iPhone notch */
    box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
  }

  .sticky-buy-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    color: #FFFFFF;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: .95rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family:serif;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(179, 32, 33, .35);
    transition: transform .15s ease, box-shadow .15s ease;
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  .sticky-buy-btn:active {
    transform: scale(.97);
    box-shadow: 0 2px 6px rgba(179, 32, 33, .25);
  }



  .sticky-buy-label {
    font-weight: 800;
    
  }

  .sticky-buy-price {
    font-weight: 700;
    opacity: .88;
  }

  /* Add bottom padding to page body ONLY when sticky button is present
     (product detail page has #stickyBuy; homepage, contact, etc. don't) */
  body:has(#stickyBuy) {
    padding-bottom: 72px;
  }

  /* Fallback for older browsers without :has() support — class added by JS below */
  body.has-sticky-buy {
    padding-bottom: 72px;
  }

  /* Hide sticky when checkout modal is open (avoid double-button overlap) */
  body:has(.modal-overlay.open) .sticky-buy {
    display: none;
  }
}

/* Main 'Buy Now' button: when admin toggles it OFF, hide ONLY on mobile (desktop always shows) */
@media (max-width: 700px) {
  .buy-hide-mobile { display: none !important; }
}

/* ════════════════════════════════════════════════════════════
   IMAGE LOADING RELIABILITY (mobile / dev tunnel)
   Subtle skeleton bg while image loads — hides the broken icon
   ════════════════════════════════════════════════════════════ */
.pv-drag-slide img,
.p-img-wrap img {
  background: linear-gradient(
    90deg,
    var(--surface, #FFFFFF) 0%,
    rgba(179, 32, 33, .04) 50%,
    var(--surface, #FFFFFF) 100%
  );
  background-size: 200% 100%;
  animation: imgSkeleton 1.6s ease-in-out infinite;
}

/* When image finishes loading, stop the skeleton animation */
.pv-drag-slide img.loaded,
.p-img-wrap img.loaded {
  background: none;
  animation: none;
}

@keyframes imgSkeleton {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
























/* ════════════════════════════════════════════════════════════
   BUY NOW BUTTON ANIMATIONS — Attention grabbing
   Koi bhi existing rule change nahi hua, sirf animations add ki hain
   ════════════════════════════════════════════════════════════ */

/* ── Primary Buy Now button pulse glow ── */
@keyframes pvBuyPulse {
  0%   { box-shadow: 0 0 0 0 rgba(179, 32, 33, 0.75); transform: scale(1); }
  50%  { box-shadow: 0 0 0 12px rgba(179, 32, 33, 0); transform: scale(1.025); }
  100% { box-shadow: 0 0 0 0 rgba(179, 32, 33, 0); transform: scale(1); }
}

.pv-buy {
  animation: pvBuyPulse 1.8s ease-in-out infinite;
}

.pv-buy:hover {
  animation: none; /* hover par animation rok do, natural feel */
}

/* ── Sticky Buy Now button — Smooth Elegant Shimmer ── */
@keyframes stickyShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@media (max-width: 700px) {
  .sticky-buy-btn {
    background: linear-gradient(
      105deg,
      var(--gold-dark) 0%,
      var(--gold) 30%,
      #c22525 50%,
      var(--gold) 70%,
      var(--gold-dark) 100%
    );
    background-size: 200% auto;
    animation: stickyShimmer 2.5s linear infinite;
  }

  .sticky-buy-btn:active {
    animation: none; /* tap par animation band */
  }
}
/* ═══════ CONTACT PAGE — Premium Design ═══════ */
.contact-page-hero {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F8 100%);
  position: relative;
  overflow: hidden;
}

.contact-page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(179, 32, 33, .06) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(179, 32, 33, .05) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-hero-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-page-title {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}

.contact-page-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-page-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 500;
}

.contact-section {
  padding: 40px 0 80px;
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* ─── Info Side ─── */
.contact-info-side {
  position: sticky;
  top: 80px;
}

.contact-side-title {
  font-family: var(--font-d);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.contact-side-title em {
  font-style: italic;
  color: var(--gold);
}

.contact-side-sub {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
  font-weight: 500;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}

.contact-info-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(179, 32, 33, .12);
}

.contact-info-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light) 0%, #FEE2E2 100%);
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(179, 32, 33, .12);
  transition: all .3s;
}

.contact-info-item:hover .contact-info-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #FFFFFF;
  transform: scale(1.05) rotate(-5deg);
}

.contact-info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.contact-info-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contact-info-value {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  transition: color .25s;
  line-height: 1.3;
  word-break: break-word;
}

a.contact-info-value:hover {
  color: var(--gold);
}

.contact-info-sub {
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 500;
}

/* ─── Social block ─── */
.contact-social-block {
  padding: 24px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-social-title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}

.contact-social-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.contact-social-link {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.contact-social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}

.contact-social-link svg {
  position: relative;
  z-index: 1;
}

.contact-social-link:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(179, 32, 33, .25);
  color: #FFFFFF;
}

.contact-social-link:hover::before {
  opacity: 1;
}

.contact-social-fb:hover::before { background: linear-gradient(135deg, #1877F2, #0E5FCC); }
.contact-social-ig:hover::before { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045); }
.contact-social-tt:hover::before { background: linear-gradient(135deg, #000, #25F4EE, #FE2C55); }
.contact-social-wa:hover::before { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ─── Form Side ─── */
.contact-form-side {
  position: relative;
}

.contact-form-wrap {
  background: var(--card);
  padding: 36px;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), #DC2626, var(--gold), var(--gold-dark));
}

.contact-form-title {
  font-family: var(--font-d);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}

.contact-form-title em {
  font-style: italic;
  color: var(--gold);
}

.contact-form-sub {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 28px;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form-group label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.contact-form-group input,
.contact-form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  font-family: var(--font-b);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text);
  transition: all .25s;
  outline: none;
  -webkit-appearance: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(179, 32, 33, .08);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: rgba(0, 0, 0, .35);
  font-weight: 400;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}

.contact-form-submit {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .3s;
  box-shadow: 0 6px 18px rgba(179, 32, 33, .3);
  margin-top: 6px;
}

.contact-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(179, 32, 33, .42);
}

.contact-form-submit:active:not(:disabled) {
  transform: translateY(0);
}

.contact-form-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.cf-msg {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
}

.cf-msg-success {
  background: #D1FAE5;
  color: #065F46;
  border: 1.5px solid #10B981;
}

.cf-msg-error {
  background: #FEE2E2;
  color: #991B1B;
  border: 1.5px solid #EF4444;
}

/* ─── Mobile Responsive ─── */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info-side {
    position: static;
  }
}

@media (max-width: 600px) {
  .contact-page-hero {
    padding: 60px 0 30px;
  }
  .contact-section {
    padding: 30px 0 60px;
  }
  .contact-form-wrap {
    padding: 24px 20px;
    border-radius: 14px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-form-title {
    font-size: 1.4rem;
  }
  .contact-side-title {
    font-size: 1.4rem;
  }
  .contact-info-item {
    padding: 14px;
    gap: 12px;
  }
  .contact-info-icon {
    width: 42px;
    height: 42px;
  }
}

/* ════════════════════════════════════════════════════════════════
   NEW HOMEPAGE SECTIONS — Why Choose / How It Works / About / FAQ
   ──────────────────────────────────────────────────────────────── */

/* Shared section intro paragraph (used by Why / HIW / FAQ) */
.why-intro {
  color: var(--muted);
  margin: 12px auto 0;
  max-width: 560px;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.55;
}

/* ─── WHY CHOOSE ZENTEMART ───────────────────────────────────── */
.why-section .sec-header { margin-bottom: 44px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), box-shadow .4s, border-color .4s;
  box-shadow: var(--shadow-sm);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.why-card:hover::before { opacity: 1; }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-light), #FFFFFF);
  border: 1.5px solid var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform .4s, background .4s;
}

.why-card:hover .why-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #FFFFFF;
}

.why-pill {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-light);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.why-title {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.why-desc {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 500;
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.hiw-section .sec-header { margin-bottom: 50px; }

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

/* Connecting line behind steps on desktop (subtle visual flow) */
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold-light) 0,
    var(--gold-light) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.hiw-step {
   position: relative;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 22px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  overflow: hidden;
  border:2px solid var(--border);
}


.hiw-step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}


.hiw-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.hiw-step:hover::before {
  transform: scaleX(1);
}


.hiw-step:hover .hiw-icon {
  transform: scale(1.15) rotate(-5deg);
}

.hiw-num {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  background: var(--card);
  border: 2px solid var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 2;
  transition: transform .4s, background .4s, color .4s;
}

.hiw-step:hover .hiw-num {
  transform: scale(1.1);
  background: var(--gold);
  color: #FFFFFF;
}

.hiw-icon {
  color: var(--gold);
  margin: 0 auto 14px;
  display: flex;
  justify-content: center;
  transition: transform .4s;
}

.hiw-step:hover .hiw-icon { transform: translateY(-3px); }

.hiw-title {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.hiw-desc {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 500;
}

/* ─── ABOUT ZENTEMART ────────────────────────────────────────── */
.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-inner .sec-label { margin-bottom: 12px; }

.about-title {
  margin-bottom: 36px;
}

.about-story {
  text-align: left;
  margin-bottom: 36px;
}

.about-story p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 500;
}

.about-story p strong {
  color: var(--gold);
  font-weight: 700;
}

.about-story p:last-child { margin-bottom: 0; }

.about-promises {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin: 0 auto 32px;
  max-width: 760px;
  padding: 28px 24px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.about-promise {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  font-size: .93rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.about-promise-tick {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  margin-top: 1px;
}

.about-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--gold-light);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--gold-dark);
}

.about-flag {
  font-size: 1.15rem;
  line-height: 1;
}

.about-tagline-text {
  letter-spacing: .01em;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section .sec-header { margin-bottom: 36px; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item:hover { border-color: var(--gold-light); }

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: background .25s, color .25s;
}

.faq-q:hover { background: var(--surface); }

.faq-item.open .faq-q {
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold-light), transparent);
}

.faq-q-text {
  flex: 1;
  line-height: 1.4;
}

.faq-q-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s, color .25s;
}

.faq-item.open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #FFFFFF;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}

.faq-item.open .faq-a {
  max-height: 600px;
}

.faq-a-inner {
  padding: 4px 22px 22px;
  font-size: .94rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 500;
}

.faq-a-inner p { margin-bottom: 10px; }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--text); font-weight: 700; }

.faq-a-inner a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  transition: border-color .25s;
}

.faq-a-inner a:hover { border-color: var(--gold); }

.faq-contact-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-contact-list li {
  padding: 8px 12px;
  background: var(--surface);
  border-radius: 8px;
  font-size: .9rem;
}

/* ─── RESPONSIVE — Tablet ─────────────────────────────────── */
@media (max-width: 960px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hiw-grid::before { display: none; }
  .about-promises { grid-template-columns: 1fr; gap: 12px; }
}

/* ─── RESPONSIVE — Mobile ─────────────────────────────────── */
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 22px 20px; }
  .why-icon { width: 50px; height: 50px; margin-bottom: 14px; }
  .why-title { font-size: 1.2rem; }

  .hiw-grid { grid-template-columns: 1fr; gap: 16px; }
  .hiw-step { padding: 18px 14px 22px; }
  .hiw-num { width: 40px; height: 40px;   font-size: 1.05rem;
 margin-bottom: 14px; }
  .hiw-title { font-size: 1.1rem; }

  .about-story p { font-size: .96rem; line-height: 1.7; }
  .about-promises { padding: 20px 18px; gap: 12px; }
  .about-promise { font-size: .9rem; }
  .about-tagline { font-size: .82rem; padding: 10px 18px; gap: 8px; }

  .faq-q { padding: 16px 0px; font-size: .94rem; }
  .faq-q-icon { width: 26px; height: 26px; font-size: 1.1rem; }
  .faq-a-inner { padding: 2px 18px 18px; font-size: .9rem; }
}

/* ═══════════════════════════════════════════════════════════════
   ADDED IN HOMEPAGE REDESIGN — Trending Products Focus
   New sections: Why Choose, How It Works, About, FAQ
   ═══════════════════════════════════════════════════════════════ */

/* ─── SECTION TAGLINE (subtitle under section titles) ─── */
.sec-tagline {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 10px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ─── ABOUT ZENTEMART — Real brand story section ─── */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 8px;
}

.about-content {
  max-width: 100%;
}

.about-content .sec-label {
  margin-bottom: 12px;
}

.about-content .sec-title {
  margin-bottom: 8px;
}

.about-tagline {
  font-family: var(--font-d);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.about-para {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 500;
}

.about-para em {
  font-family: var(--font-d);
  color: var(--gold-dark);
  font-style: italic;
}

.about-promises {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
}

.about-promises li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--surface);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.55;
  transition: transform .25s, background .25s;
}

.about-promises li:hover {
  transform: translateX(4px);
  background: var(--gold-light);
}

.ap-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.about-visual {
  display: grid;
  gap: 16px;
}

.about-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at top right, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.ac-emoji {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.ac-title {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.ac-text {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.55;
}

/* ─── FAQ Section ─── */
.faq-section .sec-header {
  margin-bottom: 32px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.faq-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--surface);
}

.faq-q {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .3s, background .3s, color .3s;
  line-height: 1;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}

.faq-a {
  padding: 0 22px 20px 22px;
  border-top: 1px solid var(--border);
  margin-top: 0;
  padding-top: 16px;
  animation: faqSlide 0.3s ease-out;
}

.faq-a p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 500;
}

.faq-a strong {
  color: var(--gold-dark);
  font-weight: 700;
}

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

/* ─── WHY CHOOSE section — minor enhancement ─── */
.why-choose-section .sec-header {
  margin-bottom: 32px;
}

.why-choose-section .feat-grid {
  margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — All new sections
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hiw-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-visual {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .about-card {
    padding: 18px 16px;
  }

  .ac-text {
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {
  .sec-tagline {
    font-size: 0.88rem;
    padding: 0 8px;
  }

  .hiw-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hiw-step {
    padding: 24px 20px 22px;
  }

  .hiw-num {
  font-size: 1.05rem;
  }

  .hiw-icon {
    font-size: 1.9rem;
  }

  .about-section {
    padding: 36px 0;
  }

  .about-tagline {
    font-size: 1rem;
  }

  .about-para {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .about-promises li {
    padding: 10px 14px;
    font-size: 0.86rem;
  }

  .about-visual {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-card {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .about-card::after {
    display: none;
  }

  .ac-emoji {
    font-size: 1.6rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .ac-title {
    font-size: 0.95rem;
    margin-bottom: 3px;
  }

  .ac-text {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .faq-item summary {
    padding: 14px 16px;
    gap: 12px;
  }

  .faq-q {
    font-size: 0.92rem;
  }

  .faq-icon {
    width: 26px;
    height: 26px;
    font-size: 1.2rem;
  }

  .faq-a {
    padding: 14px 16px 16px;
  }

  .faq-a p {
    font-size: 0.86rem;
  }
}

/* ════════════════════════════════════════════════════════════════
   FINAL STYLES — Matching actual class names used in index.html
   (Why Choose / How It Works / About / FAQ — production refinement)
   ──────────────────────────────────────────────────────────────── */

/* Shared subtitle under section titles */
.sec-tagline {
  color: var(--muted);
  margin: 12px auto 0;
  max-width: 580px;
  font-size: .96rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: center;
}

/* ─── HIW emoji icon refinement ──────────────────────────────── */
.hiw-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}

/* ─── ABOUT — actual class names ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 16px;
}

.about-content {
  text-align: left;
}

.about-content .sec-label {
  justify-content: flex-start;
  margin-bottom: 10px;
}

.about-content .sec-title {
  text-align: left;
  margin-bottom: 10px;
}

.about-tagline {
  display: block;
  font-family: var(--font-d);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 24px;
  letter-spacing: .01em;
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.about-para {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 18px;
  font-weight: 500;
}

.about-para strong {
  color: var(--gold-dark);
  font-weight: 700;
}

.about-para em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.about-promises {
  list-style: none;
  padding: 24px 22px;
  margin: 28px 0 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, transparent 100%);
  border: 1.5px solid var(--gold-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-promises li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .94rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

.about-promises li strong {
  color: var(--gold-dark);
  font-weight: 700;
}

.ap-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  margin-top: 1px;
  box-shadow: 0 2px 6px var(--gold-glow);
}

/* About visual side — stack of badge cards */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, border-color .35s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s;
}

.about-card:hover {
  transform: translateX(6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.about-card:hover::before { transform: scaleY(1); }

.ac-emoji {
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 10px;
}

.ac-title {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.ac-text {
  font-size: .88rem;
  line-height: 1.5;
  color: var(--muted);
  font-weight: 500;
}

/* ─── FAQ — native <details>/<summary> styling ───────────────── */
.faq-section .faq-list {
  max-width: 800px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* details.faq-item — override block accordion */
details.faq-item {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
  /* Reset max-height behavior since we use native details */
  max-height: none;
}

details.faq-item:hover { border-color: var(--gold-light); }

details.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

details.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: background .25s, color .25s;
  user-select: none;
}

/* Hide default disclosure triangle (Chrome/Safari/Firefox) */
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::marker { display: none; content: ''; }

details.faq-item summary:hover { background: var(--surface); }

details.faq-item[open] summary {
  color: var(--gold);
  background: linear-gradient(180deg, var(--gold-light), transparent);
  border-bottom: 1px solid var(--gold-light);
}

details.faq-item .faq-q {
  flex: 1;
  line-height: 1.4;
}

details.faq-item .faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .25s, color .25s;
}

details.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #FFFFFF;
}

details.faq-item .faq-a {
  padding: 16px 22px 22px;
  font-size: .94rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 500;
  max-height: none; /* override earlier */
}

details.faq-item .faq-a p { margin-bottom: 8px; }
details.faq-item .faq-a p:last-child { margin-bottom: 0; }
details.faq-item .faq-a strong { color: var(--text); font-weight: 700; }

/* ─── Responsive — Tablet ───────────────────────────────────── */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .about-content .sec-label,
  .about-content .sec-title { text-align: center; justify-content: center; }
  .about-content .sec-title { text-align: center; }
  .about-tagline { text-align: center; }
  .about-visual { flex-direction: row; flex-wrap: wrap; }
  .about-visual .about-card { flex: 1; min-width: 240px; }
}

/* ─── Responsive — Mobile ───────────────────────────────────── */
@media (max-width: 600px) {
  .sec-tagline { font-size: .9rem; }

  .about-grid { gap: 22px; }
  .about-para { font-size: .94rem; line-height: 1.7; }
  .about-promises { padding: 18px 16px; gap: 10px; }
  .about-promises li { font-size: .88rem; }
  .about-visual { flex-direction: column; }
  .about-card { padding: 18px 18px 16px; }
  .ac-emoji { font-size: 1.6rem; }
  .ac-title { font-size: 1.05rem; line-height: 20px; }

  details.faq-item summary { padding: 0px 11px; font-size: .94rem; }
  details.faq-item .faq-icon { width: 26px; height: 26px; font-size: 1.15rem; }
  details.faq-item .faq-a { padding: 14px 18px 18px; font-size: .9rem; }

  .hiw-icon { font-size: 1.7rem; }
}

/* ════════════════════════════════════════════════════════════════
   FEATURED PICKS — Premium hero cards (above Categories)
   Visually distinct from Trending Products grid below
   ──────────────────────────────────────────────────────────────── */

.featured-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--gold-light) 100%);
  position: relative;
  overflow: hidden;
}

.featured-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.featured-section .container { position: relative; z-index: 1; }
.featured-section .sec-header { margin-bottom: 40px; }

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.featured-card {
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .45s cubic-bezier(.25,.46,.45,.94), box-shadow .45s, border-color .45s;
  position: relative;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
  z-index: 3;
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 50px rgba(0,0,0,.18), 0 0 0 2px var(--gold);
  border-color: var(--gold);
}

.featured-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  overflow: hidden;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

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

.featured-noimg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: .9rem;
}

.featured-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px var(--gold-glow);
  z-index: 2;
}

.featured-discount {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #FFFFFF;
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.featured-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-cat {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.featured-name {
  font-family: var(--font-d);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.featured-sale {
  font-family: var(--font-d);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
}

.featured-was {
  font-size: .92rem;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 500;
}

.featured-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 11px 18px;
  background: var(--text);
  color: #FFFFFF;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .3s, gap .3s, transform .3s;
}

.featured-card:hover .featured-btn {
  background: var(--gold);
  gap: 12px;
}

.featured-btn svg {
  transition: transform .3s;
}

.featured-card:hover .featured-btn svg {
  transform: translateX(3px);
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .featured-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .featured-grid { grid-template-columns: 1fr; gap: 16px; }
  .featured-card:last-child { grid-column: auto; max-width: none; }
  .featured-card-image { aspect-ratio: 5 / 4; }
  .featured-card-body { padding: 16px 18px 18px; }
  .featured-name { font-size: 1.1rem; min-height: 2.4em; }
  .featured-sale { font-size: 1.2rem; }
  .featured-badge { font-size: .62rem; padding: 5px 10px; top: 12px; left: 12px; }
  .featured-discount { font-size: .76rem; padding: 5px 10px; top: 12px; right: 12px; }
}

/* ════════════════════════════════════════════════════════════════
   FEATURED PICKS — Top 3 hand-picked products (above categories)
   Magazine-style hero cards. DIFFERENT from trending grid below.
   ──────────────────────────────────────────────────────────────── */

.featured-picks {
  position: relative;
  overflow: hidden;
}

.featured-picks::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  pointer-events: none;
}

.featured-picks .sec-header { margin-bottom: 40px; }

.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.fp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .45s cubic-bezier(.25,.46,.45,.94),
              box-shadow .45s,
              border-color .35s;
  color: var(--text);
}

.fp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(179, 32, 33, .18), 0 0 0 1px var(--gold);
  border-color: var(--gold);
}

/* Rank ribbon — top-left badge */
.fp-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 13px;
  background: var(--gold);
  color: #FFFFFF;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(179, 32, 33, .35);
  white-space: nowrap;
}

/* The first card gets a special gold glow */
.fp-card:first-child .fp-rank {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 16px rgba(179, 32, 33, .5);
}

/* Image area — taller than regular product card for visual drama */
.fp-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--surface), var(--gold-light));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

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

.fp-no-img {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
}

/* Subtle gradient overlay on image bottom (improves text readability if needed) */
.fp-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.05));
  pointer-events: none;
}

/* Body */
.fp-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.fp-name {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.9em;
  transition: color .25s;
}

.fp-card:hover .fp-name { color: var(--gold-dark); }

.fp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.fp-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.fp-sale {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.01em;
}

.fp-original {
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: line-through;
  opacity: .7;
}

.fp-arrow {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1),
              background .25s,
              color .25s;
}

.fp-card:hover .fp-arrow {
  background: var(--gold);
  color: #FFFFFF;
  transform: translateX(4px) rotate(-3deg);
}

/* ─── Responsive — Tablet ───────────────────────────────────── */
@media (max-width: 960px) {
  .fp-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  /* Third card spans full width on tablet for visual balance */
  .fp-card:nth-child(3) { grid-column: 1 / -1; }
  .fp-card:nth-child(3) .fp-img-wrap { aspect-ratio: 16 / 7; }
}

/* ─── Responsive — Mobile ───────────────────────────────────── */
@media (max-width: 600px) {
  .fp-grid { grid-template-columns: 1fr; gap: 16px; }
  .fp-card:nth-child(3) .fp-img-wrap { aspect-ratio: 4 / 3; }
  .fp-body { padding: 16px 18px 18px; gap: 12px; }
  .fp-name { font-size: 1.05rem; min-height: 2.6em; }
  .fp-sale { font-size: 1.15rem; }
  .fp-arrow { width: 34px; height: 34px; }
  .fp-rank { font-size: .68rem; padding: 6px 11px; }
}

/* ════════════════════════════════════════════════════════════════
   PAGINATION — Below trending products grid
   Only shown when > 10 products (more than one page)
   ──────────────────────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding: 16px 0;
}

/* Prev / Next buttons */
.pg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s, transform .25s, box-shadow .25s;
  user-select: none;
}

.pg-btn:not(.pg-disabled):hover {
  background: var(--gold);
  color: #FFFFFF;
  border-color: var(--gold);
  box-shadow: 0 6px 16px var(--gold-glow);
  transform: translateY(-2px);
}

.pg-btn:not(.pg-disabled):active {
  transform: translateY(0);
}

.pg-btn svg {
  flex-shrink: 0;
  display: block;
  transition: transform .25s;
}

.pg-prev:not(.pg-disabled):hover svg { transform: translateX(-3px); }
.pg-next:not(.pg-disabled):hover svg { transform: translateX(3px); }

.pg-disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Number pills */
.pg-numbers {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 6px;
}

.pg-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}

.pg-num:hover:not(.pg-current) {
  background: var(--gold-light);
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.pg-num.pg-current,
.pg-current {
  background: var(--gold) !important;
  color: #FFFFFF !important;
  border-color: var(--gold) !important;
  cursor: default;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.pg-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .15em;
  user-select: none;
}

/* ─── Responsive — Mobile ─────────────────────────────────── */
@media (max-width: 600px) {
  .pagination { gap: 6px; margin-top: 32px; }
  .pg-btn { padding: 9px 13px; font-size: .85rem; gap: 4px; }
  .pg-btn span { display: none; }   /* show only arrows on small screens */
  .pg-num { min-width: 36px; height: 36px; font-size: .88rem; padding: 0 8px; }
  .pg-numbers { gap: 3px; margin: 0 4px; }
}

/* ═══════════════════════════════════════════════
   HEADER LIVE SEARCH — icon + modal (on-brand)
   ═══════════════════════════════════════════════ */
.nav-search-btn{display:flex;align-items:center;justify-content:center;width:44px;height:44px;background:linear-gradient(135deg,rgba(179,32,33,.15),rgba(179,32,33,.06));border:1px solid rgba(179,32,33,.35);border-radius:50%;cursor:pointer;padding:0;color:var(--gold);transition:background .2s,transform .15s,border-color .2s}
.nav-search-btn:hover{background:linear-gradient(135deg,rgba(179,32,33,.26),rgba(179,32,33,.12));transform:translateY(-1px);border-color:rgba(179,32,33,.5)}
.nav-search-btn:active{transform:scale(.93)}
.nav-search-btn svg{width:20px;height:20px}

.zsearch-overlay{position:fixed;inset:0;z-index:1200;background:rgba(15,15,15,.55);backdrop-filter:blur(3px);-webkit-backdrop-filter:blur(3px);display:flex;align-items:flex-start;justify-content:center;padding:80px 16px 16px;opacity:0;visibility:hidden;transition:opacity .2s ease,visibility .2s ease}
.zsearch-overlay.open{opacity:1;visibility:visible}
.zsearch-panel{width:100%;max-width:600px;background:var(--card);border:1px solid var(--border);border-radius:16px;box-shadow:var(--shadow-lg);overflow:hidden;display:flex;flex-direction:column;max-height:78vh;transform:translateY(-14px);transition:transform .22s ease}
.zsearch-overlay.open .zsearch-panel{transform:translateY(0)}
.zsearch-bar{display:flex;align-items:center;gap:10px;padding:14px 16px;border-bottom:1px solid var(--border)}
.zsearch-bar-icon{width:20px;height:20px;color:var(--muted);flex-shrink:0}
.zsearch-input{flex:1;min-width:0;border:none;outline:none;font-size:1rem;font-family:var(--font-b);color:var(--text);background:transparent}
.zsearch-input::placeholder{color:var(--muted);opacity:.65}
.zsearch-close{border:none;background:var(--surface);color:var(--muted);width:30px;height:30px;border-radius:50%;cursor:pointer;font-size:13px;line-height:1;flex-shrink:0;transition:background .15s,color .15s}
.zsearch-close:hover{background:var(--gold-light);color:var(--gold)}
.zsearch-results{overflow-y:auto;padding:8px;-webkit-overflow-scrolling:touch}
.zsearch-hint,.zsearch-empty,.zsearch-loading{text-align:center;color:var(--muted);font-size:.9rem;padding:30px 16px}
.zsearch-item{display:flex;align-items:center;gap:12px;padding:10px;border-radius:10px;text-decoration:none;transition:background .12s}
.zsearch-item:hover{background:var(--surface)}
.zsearch-thumb{width:54px;height:54px;border-radius:8px;object-fit:cover;background:var(--surface);flex-shrink:0;border:1px solid var(--border)}
.zsearch-info{flex:1;min-width:0}
.zsearch-name{font-size:.9rem;font-weight:600;color:var(--text);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.zsearch-cat{font-size:.74rem;color:var(--muted);margin-top:2px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.zsearch-price{display:flex;align-items:baseline;gap:8px;margin-top:3px}
.zsearch-price-now{font-size:.9rem;font-weight:700;color:var(--gold)}
.zsearch-price-was{font-size:.76rem;color:var(--muted);text-decoration:line-through}
body.zsearch-lock{overflow:hidden}
@media(max-width:768px){
  .zsearch-overlay{padding:64px 10px 10px}
  .zsearch-panel{max-height:82vh;border-radius:14px}
  .zsearch-input{font-size:16px}
}

/* ─── ZenteMart seller reply under reviews ─── */
.rv-item-reply{
  margin:12px 0 2px 14px;
  padding:11px 14px;
  background:#F7F7F8;
  border-left:3px solid var(--gold);
  border-radius:8px;
}
.rv-reply-head{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:5px;
}
.rv-reply-badge{
  width:22px;height:22px;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  font-size:.62rem;
  font-weight:800;
  letter-spacing:.3px;
  display:flex;align-items:center;justify-content:center;
  flex:0 0 auto;
}
.rv-reply-name{
  font-weight:700;
  font-size:.86rem;
  color:var(--text);
}
.rv-reply-official{
  font-size:.62rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.4px;
  color:var(--gold);
  background:rgba(179,32,33,.08);
  padding:2px 7px;
  border-radius:4px;
}
.rv-reply-text{
  font-size:.85rem;
  line-height:1.55;
  color:var(--muted);
}

/* seller reply badge as logo image */
.rv-reply-badge-img{
  background:#fff;
  border:1px solid #ECECEC;
  padding:0;
  overflow:hidden;
}
.rv-reply-badge-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:50%;
}

/* ── Reviews pager (reuses .pagination / .pg-btn look from homepage) ── */
.rv-pager{margin-top:22px;margin-bottom:4px}

/* ═══════════════════════════════════════════════════════════
   SALE FEATURE — corner badge, homepage banner, sale page
   ═══════════════════════════════════════════════════════════ */

/* Corner SALE badge — homepage card (when ticked) + every sale-page card */
.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: #B32021;
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .09em;
  padding: 5px 12px;
  border-radius: 6px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(179, 32, 33, .35);
  pointer-events: none;
}

/* Homepage SALE banner (below hero) — a clearly separated, wide promo strip */
.sale-promo {
  padding: 34px 0 30px;
  border-top: 1px solid var(--border);   /* line at hero's bottom → separates banner from hero */
  position: relative;
}
.sale-promo::before {                     /* the red accent line — placed where it originally was (hero's bottom), now ABOVE the banner */
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
/* When the SALE banner shows, the separator moves ABOVE it — so remove the duplicate
   line at the top of the trust-stats section that sits right below the banner. */
/* Below the banner: KEEP the gray separator line (trust-stats' own border-top) so the
   banner is cleanly separated from the next section — but hide the red ::before accent,
   since the red line now lives ABOVE the banner instead. */
.sale-promo + .trust-stats::before { display: none; }
.sale-promo .container { max-width: 1360px; padding-left: 16px; padding-right: 16px; }  /* wider → less side margin */
.sale-promo-link { display: block; line-height: 0; }
.sale-promo-img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .13);
  transition: transform .3s ease, box-shadow .3s ease;
}
.sale-promo-link:hover .sale-promo-img {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .18);
}
.sale-promo-cta { text-align: center; margin-top: 20px; }
.sale-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #B32021 0%, #DC2626 50%, #B32021 100%);
  color: #fff;
  padding: 14px 40px;
  border-radius: 60px;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(179, 32, 33, .28);
  transition: transform .3s ease, box-shadow .3s ease;
}
.sale-promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(179, 32, 33, .38);
}

/* Sale page — elegant, on-brand heading */
.sale-page-head { text-align: center; margin-bottom: 38px; }
.sale-page-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #B32021 0%, #DC2626 50%, #B32021 100%);
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(179, 32, 33, .28);
}
.sale-page-title {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin: 0;
  background: linear-gradient(90deg, #B32021, #DC2626, #B32021);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.sale-page-divider {
  width: 66px;
  height: 3px;
  margin: 18px auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, #B32021, transparent);
}
.sale-page-sub {
  font-size: 1rem;
  color: var(--muted);
  margin: 14px auto 0;
  max-width: 540px;
  line-height: 1.6;
}
.sale-page-banner-wide { max-width: 1360px; padding-left: 16px; padding-right: 16px; margin-bottom: 34px; }
.sale-page-banner { margin: 0 auto; max-width: 100%; }
.sale-page-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .13);
}

@media (max-width: 768px) {
  .sale-promo { padding: 20px 0 4px; }
  .sale-promo-img { border-radius: 12px; }
  .sale-promo-btn { padding: 12px 32px; font-size: .8rem; }
  .sale-badge { top: 8px; left: 8px; font-size: .6rem; padding: 4px 10px; }
  .sale-page-banner img { border-radius: 12px; }
  /* Compact the sale-page heading on phones — takes much less vertical space */
  .section-pad.sale-page { padding-top: 28px; padding-bottom: 30px; }
  .sale-page-head { margin-bottom: 20px; }
  .sale-page-eyebrow { margin-bottom: 11px; font-size: .63rem; padding: 6px 15px; letter-spacing: .15em; }
  .sale-page-title { font-size: 2.1rem; line-height: 1.04; }
  .sale-page-divider { margin-top: 11px; width: 52px; height: 2px; }
  .sale-page-sub { font-size: .86rem; margin-top: 9px; line-height: 1.5; }
  .sale-page-banner-wide { margin-bottom: 22px; padding-left: 14px; padding-right: 14px; }
}
