/* ==================================================
   1. ROOT VARIABLES & GLOBAL RESET
================================================== */
:root {
  --black: #0B0B0B;
  --charcoal: #171717;
  --charcoal-2: #1f1f1f;
  --gold: #D4AF37;
  --gold-soft: #e8cd7a;
  --white: #FFFFFF;
  --gray-light: #F5F5F5;
  --whatsapp: #25D366;
  --emerald: #0F766E;
  --line: rgba(212, 175, 55, 0.18);
  --ink-70: rgba(245, 245, 245, 0.7);
  --ink-50: rgba(245, 245, 245, 0.5);
  --ease: cubic-bezier(.16, .84, .32, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

h1, h2, h3, h4, .font-display {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.02em;
}

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

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

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 6vw;
}

@media(max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ==================================================
   2. SCROLL REVEAL ANIMATIONS
================================================== */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-right.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.94);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-scale.in {
  opacity: 1;
  transform: scale(1);
}

@media(prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

/* ==================================================
   3. SCROLL PROGRESS & CURSOR GLOW
================================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  z-index: 9000;
  width: 0%;
}

#cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.09), transparent 70%);
  transform: translate(-50%, -50%);
  left: -500px;
  top: -500px;
  transition: opacity .3s;
}

@media(max-width: 900px) {
  #cursor-glow {
    display: none;
  }
}

/* ==================================================
   4. STANDARDIZED NAVBAR & BRANDING
================================================== */
header, #navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 80px !important;
  background: rgba(14, 14, 14, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2) !important;
}

.nav-container {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

.brand {
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 110px !important;
  height: 50px !important;
}

.brand img {
  height: 44px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
}

nav.nav-links {
  display: flex !important;
  align-items: center !important;
  gap: 28px !important;
  margin: 0 auto !important;
}

nav.nav-links a {
  color: #e0e0e0 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease !important;
}

nav.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
}

nav.nav-links a:hover {
  color: #f3d078 !important;
}

nav.nav-links a:hover::after,
nav.nav-links a.active::after {
  width: 100%;
}

nav.nav-links a.active {
  color: var(--gold) !important;
  font-weight: 700 !important;
}

.nav-right {
  display: flex !important;
  align-items: center !important;
  min-width: 130px !important;
  justify-content: flex-end !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn-gold {
  background: linear-gradient(120deg, #f3d078, #d4af37 60%, #b8912b) !important;
  color: #0b0b0b !important;
  border: 1px solid rgba(243, 208, 120, 0.5) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(212, 175, 55, 0.55);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--white);
}

@media(max-width: 980px) {
  nav.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--charcoal);
    flex-direction: column;
    padding: 110px 40px;
    gap: 26px;
    transition: right .5s var(--ease);
    border-left: 1px solid var(--line);
  }
  nav.nav-links.open { right: 0; }
  .menu-toggle { display: flex; }
  .nav-right { display: none; }
}

/* ==================================================
   5. FLOATING WHATSAPP
================================================== */
#whatsapp-float {
  position: fixed;
  top: 96px;
  right: 26px;
  z-index: 700;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
}

#whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  animation: wa-pulse 2.4s ease-out infinite;
  z-index: -1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: .65; }
  100% { transform: scale(2.1); opacity: 0; }
}

#whatsapp-float svg {
  width: 26px;
  height: 26px;
}

@media(max-width: 768px) {
  #whatsapp-float {
    top: auto;
    bottom: 26px;
    right: 20px;
  }
}

/* ==================================================
   6. HERO SECTION
================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(212, 175, 55, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(15, 118, 110, 0.22), transparent 50%),
    linear-gradient(180deg, #0B0B0B 0%, #0d1210 55%, #0B0B0B 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .7;
}

.hero-mountains {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  line-height: 0;
  opacity: .9;
  pointer-events: none;
}

.hero-mountains svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  padding-top: 70px;
}

@media(max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
}

.hero-text .eyebrow {
  margin-bottom: 22px;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  font-weight: 800;
  background: linear-gradient(100deg, #fff 30%, #f0e3ba 55%, var(--gold) 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text p.sub {
  margin-top: 26px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-70);
  max-width: 480px;
}

@media(max-width: 980px) {
  .hero-text p.sub {
    margin-inline: auto;
  }
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media(max-width: 980px) {
  .hero-actions {
    justify-content: center;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: var(--ink-50);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-scroll .line {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

.hero-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.hero-product .glow {
  position: absolute;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.28), transparent 70%);
  filter: blur(10px);
  animation: breathe 5s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.12); opacity: 1; }
}

.hero-product .jar-wrap {
  position: relative;
  width: 440px !important;
  max-width: 100% !important;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform .2s ease-out;
}

.hero-product img.jar {
  width: 100% !important;
  max-width: 420px !important;
  height: auto !important;
  object-fit: contain;
  filter: drop-shadow(0 35px 50px rgba(0, 0, 0, 0.7));
  transform: scale(1.15) !important;
  display: block;
  margin: 0 auto;
}

.hero-product .jar-platform {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 35px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.5), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

/* ==================================================
   7. SECTIONS SHARED & BENEFITS BENTO
================================================== */
section {
  padding: 140px 0;
  position: relative;
}

@media(max-width: 768px) {
  section {
    padding: 90px 0;
  }
}

.sec-head {
  max-width: 640px;
  margin-bottom: 64px;
}

.sec-head.center {
  margin-inline: auto;
  text-align: center;
}

.sec-head h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  margin-top: 18px;
  line-height: 1.15;
}

.sec-head p {
  margin-top: 18px;
  color: var(--ink-70);
  font-size: 1.02rem;
  line-height: 1.7;
}

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

@media(max-width: 900px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 170px;
  }
}

.bento-card {
  grid-column: span 2;
  position: relative;
  padding: 30px;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: transform .5s var(--ease), border-color .5s var(--ease), background .5s var(--ease);
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.09), rgba(255, 255, 255, 0.02));
}

.bento-card.big {
  grid-column: span 3;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
}

@media(max-width: 900px) {
  .bento-card, .bento-card.big {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.bento-card.big .bento-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 0;
}

.bento-card.big:hover .bento-bg {
  transform: scale(1.05);
}

.bento-card.big .bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.2) 0%, rgba(14, 14, 14, 0.92) 80%);
  z-index: 1;
}

.bento-card.big .num,
.bento-card.big .bento-content {
  position: relative;
  z-index: 2;
}

.bento-card .icon {
  width: 38px;
  height: 38px;
  margin-bottom: auto;
  color: var(--gold);
}

.bento-card .icon svg {
  width: 100%;
  height: 100%;
}

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bento-card p {
  font-size: .9rem;
  color: var(--ink-50);
  line-height: 1.6;
}

.bento-card .num {
  position: absolute;
  top: 22px;
  right: 26px;
  font-family: 'Manrope';
  font-weight: 800;
  font-size: .72rem;
  color: rgba(212, 175, 55, 0.5);
  letter-spacing: .1em;
}

/* ==================================================
   8. PRODUCT SHOWCASE & TIMELINE
================================================== */
.showcase {
  background: radial-gradient(ellipse at 50% 30%, rgba(15, 118, 110, 0.16), transparent 60%), var(--black);
}

.showcase-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

@media(max-width: 980px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

.showcase-stage {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.spotlight {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 65%);
}

.showcase-jar {
  width: 100% !important;
  max-width: 480px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: grab;
}

.showcase-jar img.showcase-img {
  width: 100% !important;
  max-width: 440px !important;
  height: auto !important;
  object-fit: contain !important;
  transform: scale(1.2) !important;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.8)) !important;
  display: block;
  transition: transform 0.4s ease;
}

.showcase-jar img.showcase-img:hover {
  transform: scale(1.25) translateY(-5px) !important;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.showcase-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.showcase-item:last-child {
  border-bottom: none;
}

.showcase-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
  flex-shrink: 0;
}

.showcase-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.showcase-item p {
  color: var(--ink-50);
  font-size: .92rem;
  line-height: 1.6;
}

.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(212, 175, 55, 0.1));
}

@media(max-width: 640px) {
  .timeline::before {
    left: 15px;
  }
}

.t-item {
  position: relative;
  padding-left: 64px;
  padding-bottom: 52px;
}

@media(max-width: 640px) {
  .t-item {
    padding-left: 48px;
  }
}

.t-item:last-child {
  padding-bottom: 0;
}

.t-item .marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

@media(max-width: 640px) {
  .t-item .marker {
    width: 32px;
    height: 32px;
  }
}

.t-item .marker svg {
  width: 18px;
  height: 18px;
}

.t-item h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.t-item p {
  color: var(--ink-50);
  line-height: 1.7;
  font-size: .95rem;
  max-width: 520px;
}

/* ==================================================
   9. INGREDIENTS STORY & REVIEWS
================================================== */
.story {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.story-mountains {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .5;
  pointer-events: none;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}

@media(max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  padding: 34px 30px;
  background: rgba(11, 11, 11, 0.4);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.story-card .yr {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}

.story-card h4 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.story-card p {
  color: var(--ink-50);
  font-size: .92rem;
  line-height: 1.65;
}

.reviews-track-wrap {
  overflow: hidden;
  position: relative;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform .6s var(--ease);
}

.review-card {
  flex: 0 0 min(380px, 84vw);
  padding: 30px;
  border-radius: 6px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

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

.review-card p.txt {
  color: var(--ink-70);
  font-size: .95rem;
  line-height: 1.7;
  min-height: 110px;
}

.review-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.review-name {
  font-size: .92rem;
  font-weight: 600;
}

.review-verified {
  font-size: 11px;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-play {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: var(--gold);
}

.review-nav {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  justify-content: center;
}

.review-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s;
}

.review-nav button:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

/* ==================================================
   10. FAQ & CONTACT
================================================== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 4px;
  background: none;
  color: var(--white);
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  font-family: 'Manrope';
}

.faq-q .plus {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-q .plus::before, .faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--gold);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-q .plus::before {
  width: 14px;
  height: 1.5px;
}

.faq-q .plus::after {
  width: 1.5px;
  height: 14px;
  transition: transform .4s var(--ease);
}

.faq-item.open .plus::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}

.faq-a p {
  padding: 0 4px 26px;
  color: var(--ink-50);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 640px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

@media(max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-map {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 340px;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
  justify-content: center;
}

.ci-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ci-row .ic {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.ci-row h5 {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 4px;
}

.ci-row p {
  font-size: 1rem;
}

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

.social-row a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s;
}

.social-row a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.social-row svg {
  width: 16px;
  height: 16px;
}

/* ==================================================
   11. STICKY CTA & FOOTER
================================================== */
#sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 140%);
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(23, 23, 23, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  padding: 12px 14px 12px 22px;
  border-radius: 60px;
  transition: transform .55s var(--ease);
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
}

#sticky-cta.show {
  transform: translate(-50%, 0);
}

#sticky-cta span {
  font-size: 13px;
  color: var(--ink-70);
}

@media(max-width: 640px) {
  #sticky-cta span {
    display: none;
  }
}

footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 90px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 70px;
}

@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand {
  min-width: unset !important;
  margin-bottom: 18px !important;
}

.footer-brand .brand img {
  height: 38px !important;
  width: auto !important;
  object-fit: contain !important;
}

.footer-brand p {
  color: var(--ink-50);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h5 {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--ink-50);
  font-size: .9rem;
  transition: color .3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  color: var(--ink-50);
  font-size: .82rem;
}
/* ==================================================
   MOBILE RESPONSIVE FIX (All Devices & iPhone SE)
================================================== */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

@media (max-width: 980px) {
  /* 1. Header & Navigation Fix */
  header, #navbar {
    height: 70px !important;
    padding: 0 16px !important;
  }

  .nav-container {
    padding: 0 !important;
  }

  .brand {
    min-width: unset !important;
    height: 40px !important;
  }

  .brand img {
    height: 34px !important;
    max-height: 34px !important;
  }

  /* मोबाइलमा दायाँको बटन लुकाएर सिधै मेनु देखाउने */
  .nav-right {
    display: none !important;
  }

  .menu-toggle {
    display: flex !important;
    margin-left: auto !important;
    z-index: 100000 !important;
    cursor: pointer !important;
  }

  nav.nav-links {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    height: 100vh !important;
    width: 80% !important;
    max-width: 320px !important;
    background: #141414 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 100px 30px 40px !important;
    gap: 22px !important;
    transition: right 0.4s var(--ease) !important;
    border-left: 1px solid var(--line) !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.8) !important;
  }

  nav.nav-links.open {
    right: 0 !important;
  }

  /* 2. Hero Section Mobile Reset (Fix Overflow) */
  .hero {
    min-height: auto !important;
    padding: 110px 0 60px !important;
  }

  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding-top: 0 !important;
    text-align: center !important;
  }

  .hero-text h1 {
    font-size: 2.1rem !important;
    line-height: 1.15 !important;
    word-break: break-word !important;
  }

  .hero-text p.sub {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 16px auto 0 !important;
    max-width: 100% !important;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 26px !important;
    width: 100% !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    padding: 14px !important;
  }

  /* Remove 480px horizontal blowout */
  .hero-product {
    min-width: unset !important;
    width: 100% !important;
    max-width: 280px !important;
    margin: 20px auto 0 !important;
    min-height: auto !important;
  }

  .hero-product .jar-wrap {
    width: 100% !important;
    max-width: 260px !important;
  }

  .hero-product img.jar {
    width: 100% !important;
    max-width: 240px !important;
    transform: none !important;
    height: auto !important;
  }

  .hero-product .jar-platform {
    width: 200px !important;
    height: 25px !important;
    bottom: -10px !important;
  }

  /* 3. Bento Grid on Mobile */
  .bento {
    grid-template-columns: 1fr !important;
    grid-auto-rows: auto !important;
    gap: 16px !important;
  }

  .bento-card, 
  .bento-card.big {
    grid-column: span 1 !important;
    grid-row: auto !important;
    min-height: 170px !important;
    padding: 24px 20px !important;
  }

  /* 4. Showcase & Timeline on Mobile */
  .showcase-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .showcase-stage {
    min-height: 280px !important;
  }

  .showcase-jar {
    max-width: 260px !important;
  }

  .showcase-jar img.showcase-img {
    max-width: 240px !important;
    transform: none !important;
  }

  /* 5. Sticky Floating CTA on Mobile */
  #sticky-cta {
    width: calc(100% - 32px) !important;
    bottom: 16px !important;
    padding: 10px 14px !important;
    justify-content: space-between !important;
  }

  #sticky-cta span {
    display: block !important;
    font-size: 11.5px !important;
  }

  #sticky-cta .btn {
    padding: 8px 16px !important;
    font-size: 11px !important;
  }
}
/* ==================================================
   MOBILE DRAWER MENU FIX (SMOOTH SLIDE-IN)
================================================== */
@media (max-width: 980px) {
  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    padding: 8px !important;
    z-index: 1000000 !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
  }

  /* Mobile Slide Menu Container */
  nav.nav-links,
  #nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    max-width: 80vw !important;
    height: 100vh !important;
    background: #111111 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 100px 30px 40px !important;
    gap: 22px !important;
    border-left: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.85) !important;
    z-index: 999998 !important;
    transition: right 0.35s ease-in-out !important;
  }

  /* When Menu is Active / Open */
  nav.nav-links.open,
  #nav-menu.open {
    right: 0 !important;
  }

  nav.nav-links a,
  #nav-menu a {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #e5e5e5 !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  }

  nav.nav-links a:hover,
  nav.nav-links a.active {
    color: #d4af37 !important;
  }
}
/* ==================================================
   HIDE HEADER ORDER BUTTON ON MOBILE ONLY (< 980px)
================================================== */
@media (max-width: 980px) {
  /* हेडर भित्रको दायाँ/बीचको अर्डर बटन पूर्ण रूपमा लुकाउने */
  header .nav-right,
  #navbar .nav-right,
  header .btn-gold,
  #navbar .btn-gold {
    display: none !important;
  }

  /* हेडर कन्टेनरलाई बायाँमा लोगो र दायाँमा मेनु मात्र रहने गरी मिलाउने */
  header .nav-container,
  #navbar .nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    padding: 0 20px !important;
  }

  /* ह्यामबर्गर मेनुलाई दायाँ कुनामा प्रस्ट देखाउने */
  .menu-toggle {
    display: flex !important;
    margin-left: auto !important;
  }
}
/* ==================================================
   ALL BENTO CARDS BACKGROUND IMAGE & HOVER ZOOM
================================================== */
.bento-card {
  position: relative !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.bento-card .bento-bg {
  position: absolute !important;
  inset: 0 !important;
  background-size: cover !important;
  background-position: center !important;
  transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.32, 1) !important;
  z-index: 0 !important;
}

.bento-card:hover .bento-bg {
  transform: scale(1.08) !important;
}

.bento-card .bento-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.3) 0%, rgba(14, 14, 14, 0.9) 80%) !important;
  z-index: 1 !important;
  transition: background 0.4s ease !important;
}

.bento-card:hover .bento-overlay {
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.15) 0%, rgba(14, 14, 14, 0.94) 80%) !important;
}

.bento-card .num,
.bento-card .bento-content {
  position: relative !important;
  z-index: 2 !important;
}
/* ==================================================
 /* ==================================================
   FIX MOBILE NAVBAR & HAMBURGER (PERFECT ALIGNMENT)
================================================== */
@media (max-width: 980px) {
  header#navbar,
  header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 70px !important;
    background: rgba(14, 14, 14, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    z-index: 99999 !important;
    display: block !important;
  }

  .nav-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 20px !important;
    margin: 0 !important;
    max-width: 100% !important;
  }

  .brand {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    min-width: unset !important;
  }

  .brand img {
    height: 36px !important;
    width: auto !important;
  }

  /* Hide Desktop Right Order Button */
  .nav-right {
    display: none !important;
  }

  /* Direct Hamburger Display */
  .menu-toggle,
  button#menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 42px !important;
    height: 42px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    z-index: 100000 !important;
  }

  .menu-toggle span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #d4af37 !important;
    border-radius: 2px !important;
  }

  /* Slide-out Menu */
  nav.nav-links,
  #nav-menu {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important;
    width: 280px !important;
    height: 100vh !important;
    background: #111111 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 90px 30px 40px !important;
    gap: 18px !important;
    border-left: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: -15px 0 35px rgba(0, 0, 0, 0.9) !important;
    transition: right 0.35s ease !important;
    z-index: 99998 !important;
  }

  nav.nav-links.open,
  #nav-menu.open {
    right: 0 !important;
  }
}
/* ==================================================
   FOOTER LOGO & BRAND VISIBILITY FIX
================================================== */
footer {
  background: #080808 !important;
  border-top: 1px solid rgba(212, 175, 55, 0.2) !important;
  padding: 60px 0 30px !important;
}

.footer-brand {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 16px !important;
}

.footer-brand .brand {
  display: inline-block !important;
  padding: 0 !important;
  margin-bottom: 8px !important;
}

#footer-brand-logo {
  height: 52px !important;            /* लोगोको साइज ठूलो बनाइएको */
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  filter: brightness(0) invert(1) !important; /* लोगोलाई १००% चम्किलो शुद्ध सेतो बनाउने */
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  max-width: 340px !important;
}
:root {
  /* iPhone Obsidian & Space Black Palette */
  --bg-main: #000000;
  --bg-surface: #0c0c0e;
  --charcoal: rgba(18, 18, 20, 0.75);
  --charcoal-light: rgba(28, 28, 32, 0.7);
  
  /* iPhone Gold Titanium Accents (Muted, Matte Luxury) */
  --gold: #dfba73;
  --gold-soft: #f0d59b;
  --gold-dark: #b89146;
  --gold-border: rgba(229, 197, 137, 0.22);
  --gold-glow: rgba(223, 186, 115, 0.15);

  /* Apple Typography Greys */
  --ink-100: #f5f5f7;
  --ink-70: #a1a1a6;
  --ink-50: #86868b;
  --line: rgba(255, 255, 255, 0.08);

  /* Apple Corner Curvature */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 980px;

  /* Apple Smooth Fluid Transition */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
/* ================= Modern Reviews Carousel ================= */
.reviews-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.reviews-carousel-container {
  position: relative;
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 10px 40px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 6px;
  scrollbar-width: none; /* Firefox */
}

.reviews-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.review-modern-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
  scroll-snap-align: start;
  background: linear-gradient(165deg, #181714 0%, #111111 60%, #0a0a0a 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 20px;
  padding: 36px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.review-modern-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Avatar with Ring & Checkmark Badge */
.user-avatar-wrap {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
}

.avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #2b271d, #141414);
  border: 2px solid var(--gold, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f3d078;
}

.verified-badge-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
}

.verified-badge-icon svg {
  width: 12px;
  height: 12px;
}

.reviewer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.reviewer-role {
  font-size: 0.82rem;
  color: #9e9e9e;
  margin-bottom: 16px;
}

/* Small Middle Pill */
.pill-badge {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #f3d078;
  margin-bottom: 20px;
}

/* Quote Box like screenshot */
.quote-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  flex-grow: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.quote-mark {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--gold, #d4af37);
  font-family: serif;
}

.quote-box p {
  font-size: 0.86rem;
  line-height: 1.5;
  color: #cfcfcf;
  margin: 0;
}

/* Footer Rating */
.card-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 14px;
}

.stars {
  color: #f3d078;
  font-size: 0.95rem;
  letter-spacing: 2px;
}

.tag-verified {
  font-size: 0.74rem;
  color: #888;
}
/* Reviews Slider Layout */
.reviews-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.reviews-carousel-container {
  position: relative;
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 0 55px; /* बाणका लागि ठाउँ */
}

/* स्क्रोल कन्टेनर */
.reviews-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 24px !important;
  overflow-x: scroll !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  padding: 20px 0 !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}

.reviews-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

/* कार्डको साइज */
.review-modern-card {
  flex: 0 0 calc((100% - 48px) / 3) !important; /* ठ्याक्कै १ पटकमा ३ वटा देखिने */
  min-width: 320px !important;
  max-width: 380px !important;
  scroll-snap-align: start !important;
  background: linear-gradient(165deg, #181714 0%, #111111 60%, #0a0a0a 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.22) !important;
  border-radius: 20px !important;
  padding: 34px 22px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  box-sizing: border-box !important;
}

/* अवतार */
.user-avatar-wrap {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 14px;
}

.avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #232019;
  border: 2px solid #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f3d078;
}

.verified-badge-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #10b981;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #111;
}

.verified-badge-icon svg {
  width: 11px;
  height: 11px;
}

.reviewer-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.reviewer-role {
  font-size: 0.8rem;
  color: #9e9e9e;
  margin-bottom: 14px;
}

.pill-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #f3d078;
  margin-bottom: 16px;
}

.quote-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  flex-grow: 1;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.quote-mark {
  font-size: 1.5rem;
  line-height: 1;
  color: #d4af37;
}

.quote-box p {
  font-size: 0.84rem;
  line-height: 1.45;
  color: #cfcfcf;
  margin: 0;
}

.card-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
}

.stars {
  color: #f3d078;
  font-size: 0.95rem;
}

.tag-verified {
  font-size: 0.75rem;
  color: #888;
}

/* नेभिगेसन बाण */
.c-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #181714 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #fff !important;
  font-size: 1.6rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 20 !important;
}

.c-arrow:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

.c-arrow.prev { left: 0 !important; }
.c-arrow.next { right: 0 !important; }

@media (max-width: 1024px) {
  .review-modern-card {
    flex: 0 0 calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 640px) {
  .review-modern-card {
    flex: 0 0 100% !important;
  }
}
/* Reviews Carousel - Clean & No-Clipping */
.reviews-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.reviews-carousel-container {
  position: relative;
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 0 60px; /* बाणका लागि दुवै छेउमा पर्याप्त खाली ठाउँ */
  box-sizing: border-box;
}

.reviews-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  overflow-x: auto !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  padding: 15px 2px !important;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

/* ३ वटा कार्डलाई पर्फेक्ट फिट बनाउने (काटिन नदिने) */
.review-modern-card {
  flex: 0 0 calc((100% - 40px) / 3) !important; /* २ वटा ग्याप (20px*2=40px) कटाएर बराबर ३ भाग */
  width: calc((100% - 40px) / 3) !important;
  min-width: 0 !important; /* फिक्स्ड विड्थले बाहिर जान दिँदैन */
  box-sizing: border-box !important;
  scroll-snap-align: start !important;
  background: linear-gradient(165deg, #181714 0%, #111111 60%, #0a0a0a 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.22) !important;
  border-radius: 20px !important;
  padding: 28px 18px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.review-modern-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.5) !important;
}

/* Quote Box भित्रको टेक्स्ट नछेकियोस् */
.quote-box {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
  flex-grow: 1;
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

.quote-box p {
  font-size: 0.83rem;
  line-height: 1.45;
  color: #cfcfcf;
  margin: 0;
  word-break: break-word;
}

/* कार्डको तल्लो भाग (Rating & Tag) */
.card-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  box-sizing: border-box;
}

.tag-verified {
  font-size: 0.72rem;
  color: #888;
  white-space: nowrap; /* "Verified Buyer" नटुक्रियोस् */
}

/* नेभिगेसन बाणहरू कार्डभन्दा बाहिर मिलाउने */
.c-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #181714 !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #fff !important;
  font-size: 1.6rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.c-arrow.prev {
  left: 6px !important; /* कार्डभन्दा बाहिर */
}

.c-arrow.next {
  right: 6px !important; /* कार्डभन्दा बाहिर */
}

.c-arrow:hover {
  background: #d4af37 !important;
  color: #000 !important;
}

/* रेस्पोन्सिभ नियम (ट्याब्लेट र मोबाइल) */
@media (max-width: 1024px) {
  .review-modern-card {
    flex: 0 0 calc((100% - 20px) / 2) !important;
    width: calc((100% - 20px) / 2) !important;
  }
}

@media (max-width: 680px) {
  .reviews-carousel-container {
    padding: 0 35px;
  }
  .review-modern-card {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
}