/* ============================================================
   SHIVDHENU — style.css
   ✏️  ALL COLORS → change :root variables below
   ✏️  ALL SIZES  → change the variables or specific rules
   ============================================================ */

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

html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* ── DESIGN TOKENS ─────────────────────────────── */
:root {
  /* Colors */
  --gold: #C9A84C;
  --gold-dk: #9A7430;
  --gold-lt: #E8C87A;
  --glow: rgba(201, 168, 76, .25);
  --bg: #0C0A08;
  --bg2: #111009;
  --bg3: #1B1610;
  --bg4: #231D12;
  --text: #F0E6D3;
  --text2: #B8A48C;
  --text3: #7A6A58;
  --bdr: rgba(201, 168, 76, .18);
  --bdr-h: rgba(201, 168, 76, .45);
  --green: #5ebb47;
  --wa: #25D366;

  /* Layout */
  --nav: 78px;
  /* navbar height */
  --r: 10px;
  /* card radius   */
  --max: 1180px;
  /* max container */
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background: var(--bg)
}

body {
  background: transparent;
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  line-height: 1.7;
  overflow-x: hidden
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2
}

h4,
h5 {
  font-family: 'Cinzel', serif;
  font-weight: 600
}

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

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

ul {
  list-style: none
}

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

input,
select,
textarea {
  font-family: inherit
}

/* ── SITE-WIDE BACKGROUND (gold particles on black) ── */
#site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201, 168, 76, .10) 0%, transparent 60%),
    linear-gradient(180deg, #0C0A08 0%, #131008 55%, #0C0A08 100%);
}

#site-bg .particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  pointer-events: none;
  animation: floatUp linear infinite;
  opacity: 0;
}

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

  10% {
    opacity: .6
  }

  90% {
    opacity: .25
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh)
  }
}

/* ── LAYOUT UTILS ──────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px
}

.section {
  padding: 80px 0
}

.section-alt {
  padding: 80px 0;
  background: var(--bg2)
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

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

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap
}

.text-center {
  text-align: center
}

.gold {
  color: var(--gold)
}

/* ── TYPOGRAPHY UTILS ──────────────────────────── */
.overline {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 14px auto
}

.divider.left {
  margin-left: 0
}

.sec-head {
  text-align: center;
  margin-bottom: 52px
}

.sec-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text);
  margin-bottom: 12px
}

.sec-head p {
  color: var(--text2);
  max-width: 540px;
  margin: 0 auto;
  font-size: .95rem
}

/* ── BUTTONS ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  border: none;
  max-width: 100%;
  box-sizing: border-box
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-lt));
  color: var(--bg);
  box-shadow: 0 0 10px rgba(201, 168, 76, .35), 0 0 25px rgba(201, 168, 76, .18)
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 168, 76, .5);
  color: var(--bg)
}

.btn-outline {
  border: 1.5px solid var(--gold) !important;
  color: var(--gold);
  background: transparent;
  box-shadow: 0 0 10px rgba(201, 168, 76, .14);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, .1);
  transform: translateY(-2px)
}

/*.btn-gold:hover,.btn-outline:hover{transform:translateY(-2px);transition:.3s ease;box-shadow: 0 0 18px rgba(201,168,76,.45),0 0 35px rgba(201,168,76,.22);}*/
.btn-ghost {
  border: 1.5px solid var(--bdr) !important;
  color: var(--text2)
}

.btn-ghost:hover {
  border-color: var(--gold) !important;
  color: var(--gold)
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  border-radius: 50px
}

.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px)
}

.btn-full {
  width: 100%
}

.btn-sm {
  padding: 8px 18px;
  font-size: 10px
}

@media(max-width:420px) {
  .btn {
    padding: 12px 18px;
    font-size: 10px;
    letter-spacing: 1.5px;
    white-space: normal;
    text-align: center
  }
}

/* ── BROCHURE LANGUAGE PICKER ─────────────────── */
.brochure-picker {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.brochure-toggle {
  gap: 10px;
}

.brochure-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.brochure-ico svg {
  width: 16px;
  height: 16px
}

.brochure-toggle-label {
  white-space: nowrap;
}

.brochure-caret {
  font-size: 9px;
  transition: transform .25s ease;
}

.brochure-picker.open .brochure-caret {
  transform: rotate(180deg);
}

.brochure-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #15110C;
  border: 1px solid rgba(201, 168, 76, .55);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 50;
  isolation: isolate;
}

.brochure-picker.open .brochure-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.brochure-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 7px;
  color: #F5EDDD !important;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  transition: all .2s ease;
}

.brochure-menu a:hover {
  background: rgba(201, 168, 76, .18);
  color: var(--gold) !important
}

.brochure-menu .bm-lang {
  font-weight: 600;
  color: #F5EDDD
}

.brochure-menu .bm-native {
  color: #C9BBA3;
  font-size: .84rem
}

.brochure-menu a:hover .bm-lang,
.brochure-menu a:hover .bm-native {
  color: var(--gold)
}

@media(max-width:480px) {
  .brochure-toggle-label {
    font-size: 9.5px;
  }

  .brochure-menu {
    min-width: 0;
    width: min(280px, calc(100vw - 48px));
  }
}

/* ── NAVBAR ────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav);
  display: flex;
  align-items: center;
  transition: all .4s ease;
}

#navbar.scrolled {
  background: rgba(12, 10, 8, .97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bdr);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px
}

.nav-logo img {
  height: 72px;
  width: 72px;
  max-width: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, .4));
  transition: all .3s ease;
}

.nav-logo img:hover {
  filter: drop-shadow(0 0 16px rgba(201, 168, 76, .7));
  transform: scale(1.05)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px
}

.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text2);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px
}

/* WhatsApp in navbar */
.nav-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--wa);
  color: #fff;
  padding: 7px 14px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1px;
  transition: all .3s ease
}

.nav-wa:hover {
  background: #1da851;
  transform: translateY(-1px)
}

.nav-wa span {
  display: none
}

@media(min-width:900px) {
  .nav-wa span {
    display: inline
  }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  flex-shrink: 0
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all .3s ease
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile drawer */
.mob-drawer {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #0C0A08;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow-y: auto;
  padding: 90px 20px 40px;
  box-sizing: border-box
}

.mob-drawer.open {
  display: flex
}

.mob-drawer img {
  height: 108px;
  width: 108px;
  max-width: 108px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(201, 168, 76, .5));
  margin-bottom: 4px;
  flex-shrink: 0
}

.mob-drawer a {
  font-family: 'Cinzel', serif;
  font-size: 17px;
  letter-spacing: 4px;
  color: var(--text2);
  flex-shrink: 0
}

.mob-drawer a:hover {
  color: var(--gold)
}

.mob-close {
  position: fixed;
  top: 14px;
  right: 14px;
  font-size: 20px;
  color: var(--gold);
  cursor: pointer;
  width: 44px;
  height: 44px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0C0A08;
  z-index: 1000
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .nav-logo img {
    height: 60px;
    width: 60px;
    max-width: 60px;
  }
}

@media(min-width:769px) and (max-width:1024px) {
  .nav-logo img {
    height: 66px;
    width: 66px;
    max-width: 66px;
  }
}

@media(max-width:380px) {
  .nav-logo img {
    height: 54px;
    width: 54px;
    max-width: 54px;
  }

  .mob-drawer img {
    height: 88px;
    width: 88px;
    max-width: 88px
  }
}

@media(max-height:700px) {
  .mob-drawer {
    gap: 14px;
    padding: 80px 20px 30px
  }

  .mob-drawer img {
    height: 80px;
    width: 80px;
    max-width: 80px
  }

  .mob-drawer a {
    font-size: 15px
  }
}

@media(max-height:560px) {
  .mob-drawer {
    justify-content: flex-start;
    gap: 12px
  }

  .mob-drawer img {
    height: 60px;
    width: 60px;
    max-width: 60px
  }
}

/* ── HERO ──────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, rgba(201, 168, 76, .12) 0%, transparent 60%)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: calc(var(--nav) + 10px) 18px 32px
}

.hero-logo {
  height: 200px;
  width: 200px;
  max-width: 200px;
  object-fit: contain;
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 24px rgba(201, 168, 76, .7));
  animation: fadeUp .9s ease .1s both
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bdr);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  background: rgba(201, 168, 76, .06);
  margin-bottom: 20px;
  animation: fadeUp .9s ease .3s both
}

.hero-dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite
}

.hero-title {
  font-size: clamp(1.3rem, 4.2vw, 4.4rem);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 10px;
  animation: fadeUp 1s ease .5s both;
  letter-spacing: -1px;
}

.hero-sub {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--text2);
  font-style: italic;
  margin-bottom: 16px;
  animation: fadeUp 1s ease .65s both
}

.hero-desc {
  color: var(--text2);
  font-size: .92rem;
  max-width: 480px;
  margin: 0 auto 28px;
  animation: fadeUp 1s ease .8s both
}

.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s ease .95s both;
  width: 100%;
}

/* Stats */
.hero-stats {
  display: flex;
  border: 1px solid var(--bdr);
  border-radius: 10px;
  overflow: hidden;
  background: rgba(12, 10, 8, .6);
  backdrop-filter: blur(10px);
  max-width: 560px;
  margin: 30px auto 0;
  animation: fadeUp 1s ease 1.1s both
}

.h-stat {
  flex: 1;
  text-align: center;
  padding: 15px 8px;
  border-right: 1px solid var(--bdr)
}

.h-stat:last-child {
  border-right: none
}

.h-sn {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px
}

.h-sl {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--text3)
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text3);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 3px;
  animation: fadeIn 1s ease 1.3s both
}

.scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollAnim 2s ease infinite
}

@media(max-width:600px) {
  .hero-logo {
    height: 135px;
    width: 135px;
    max-width: 135px;
  }

  .hero-stats {
    flex-wrap: wrap
  }

  .h-stat {
    min-width: 50%;
    border-bottom: 1px solid var(--bdr)
  }

  .hero-btns .btn {
    width: 100%;
  }

  .hero-title {
    line-height: 1.3;
    letter-spacing: -1px;
    max-width: 330px;
    margin-inline: auto;
  }
}

/* ── GOU SEVA BANNER ───────────────────────────── */
.gou-strip {
  background: linear-gradient(135deg, var(--bg3), var(--bg4), var(--bg3));
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  padding: 36px 0;
  position: relative;
  overflow: hidden
}

.gou-strip::after {
  content: '🐄';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 110px;
  opacity: .05;
  pointer-events: none
}

.gou-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center
}

.gou-ico {
  width: 62px;
  height: 62px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 0 18px var(--glow);
  animation: glow 3s ease infinite;
  flex-shrink: 0
}

.gou-text h3 {
  font-family: 'Cinzel', serif;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 6px
}

.gou-text p {
  color: var(--text2);
  font-size: .88rem;
  max-width: 420px
}

.gou-badge {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--bg);
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  white-space: nowrap;
  animation: bounce 3s ease infinite
}

@media(max-width:600px) {
  .gou-inner {
    flex-direction: column;
    gap: 16px
  }
}

/* ── FEATURE CARDS ─────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px
}

.feat-card {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 26px 18px;
  text-align: center;
  transition: all .3s ease;
  position: relative;
  overflow: hidden
}

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

.feat-card:hover {
  border-color: var(--bdr-h);
  transform: translateY(-4px);
  box-shadow: 0 0 28px var(--glow)
}

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

.feat-ico {
  width: 54px;
  height: 54px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
  background: var(--bg4);
  transition: all .3s ease
}

.feat-card:hover .feat-ico {
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--glow)
}

.feat-card h4 {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 8px
}

.feat-card p {
  color: var(--text3);
  font-size: .83rem;
  line-height: 1.6
}

/* ── PRODUCT CARDS ─────────────────────────────── */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px
}

@media(max-width:520px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }
}

.prod-card {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .35s ease;
  display: flex;
  flex-direction: column;
  position: relative
}

.prod-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform .35s ease;
  z-index: 2
}

.prod-card:hover {
  border-color: var(--bdr-h);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45), 0 0 28px var(--glow)
}

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

.prod-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: radial-gradient(ellipse at 50% 38%, #15110b 0%, #0c0a08 78%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.prod-img img {
  width: 120%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55));
  transition: transform .5s ease;
}

.prod-card:hover .prod-img img {
  transform: scale(1.07)
}

.prod-img.upcoming img {
  opacity: .55;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .55)) saturate(.7)
}

.prod-img.upcoming::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 10, 8, .75) 100%)
}

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--bg);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .35);
  z-index: 1
}

.prod-badge.soon {
  background: var(--bg4);
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none
}

.prod-badge.org {
  background: #3d6b2e;
  color: #c6f0b4
}

.prod-badge-weight {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(12, 10, 8, .72);
  color: var(--text2);
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--bdr);
  z-index: 1
}

.prod-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px
}

.prod-cat {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 7px
}

.prod-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 9px;
  line-height: 1.3
}

.prod-desc {
  font-size: .83rem;
  color: var(--text3);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1
}

.prod-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  background: none;
  border: none !important;
  color: var(--wa);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  transition: all .25s ease;
  cursor: pointer;
  margin-top: auto;
  text-decoration: none
}

.prod-wa::after {
  content: '→';
  transition: transform .25s ease
}

.prod-wa:hover {
  color: #3de37e
}

.prod-wa:hover::after {
  transform: translateX(3px)
}

.prod-soon-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text3);
  margin-top: auto
}

.prod-wa-ico {
  display: inline-flex;
  width: 14px;
  height: 14px;
  flex-shrink: 0
}

.prod-wa-ico svg {
  width: 14px;
  height: 14px
}

@media(max-width:520px) {
  .prod-body {
    padding: 18px 16px
  }

  .prod-name {
    font-size: .92rem
  }

  .prod-img {
    padding: 6px
  }
}

/* ── CATEGORY TABS (Products page filter) ──────── */
.cat-tabs {
  display: flex;
  gap: 9px;
  flex-wrap: wrap
}

.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 18px;
  border-radius: 50px;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  background: var(--bg3);
  border: 1.5px solid var(--bdr);
  color: var(--text2);
  min-height: 44px;
  box-sizing: border-box
}

.cat-tab:hover {
  border-color: var(--bdr-h);
  color: var(--text)
}

.cat-tab.active-tab {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  border-color: var(--gold);
  color: var(--bg);
  box-shadow: 0 4px 18px var(--glow)
}

/* ── CATEGORY PREVIEW CARDS (Homepage grid) ────── */
.cat-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 200px));
  gap: 16px;
  margin-bottom: 48px;
  justify-content: center
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 26px 14px;
  transition: all .3s ease;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cat-cards .cat-card:nth-child(4) {
  grid-column: 2
}

.cat-cards .cat-card:nth-child(5) {
  grid-column: 3
}

@media(min-width:920px) {
  .cat-cards {
    grid-template-columns: repeat(5, minmax(160px, 200px))
  }

  .cat-cards .cat-card:nth-child(4),
  .cat-cards .cat-card:nth-child(5) {
    grid-column: auto
  }
}

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

.cat-card:hover {
  border-color: var(--bdr-h);
  transform: translateY(-4px);
  box-shadow: 0 0 24px var(--glow)
}

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

.cat-card .cat-ico {
  font-size: 22px;
  line-height: 1
}

.cat-card .cat-lbl {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text2);
  text-transform: uppercase;
  transition: color .3s ease
}

.cat-card:hover .cat-lbl {
  color: var(--gold)
}

/* ── SEARCH BOX ─────────────────────────────────── */
.search-box {
  position: relative;
  margin-bottom: 28px
}

.search-box .s-ico {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text3);
  pointer-events: none;
  display: flex
}

.search-box .s-ico svg {
  width: 16px;
  height: 16px
}

.search-box input {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px 12px 42px;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  color: var(--text);
  border-radius: 10px;
  font-size: .9rem;
  outline: none;
  transition: all .3s ease
}

.search-box input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--glow)
}

/* ── INFO / NOTICE CARDS ────────────────────────── */
.info-card {
  background: rgba(37, 211, 102, .07);
  border: 1px solid rgba(37, 211, 102, .28);
  border-radius: var(--r);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.info-card .info-ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wa)
}

.info-card .info-ico svg {
  width: 20px;
  height: 20px
}

.info-card .info-ttl {
  color: #5ebb47;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 3px
}

.info-card .info-txt {
  color: var(--text2);
  font-size: .88rem
}

.info-card .btn {
  margin-left: auto;
  flex-shrink: 0
}

@media(max-width:560px) {
  .info-card .btn {
    margin-left: 0;
    width: 100%
  }
}

.soon-card {
  margin-top: 52px;
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  text-align: center;
  position: relative;
  overflow: hidden
}

.soon-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.soon-card .soon-ico {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  box-shadow: 0 0 18px var(--glow)
}

.soon-card .soon-ico svg {
  width: 24px;
  height: 24px
}

/* ── TESTIMONIALS ──────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px
}

@media(max-width:480px) {
  .testi-grid {
    grid-template-columns: 1fr
  }
}

.testi-card {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 26px;
  position: relative;
  transition: all .3s ease
}

.testi-card:hover {
  border-color: var(--bdr-h);
  transform: translateY(-2px)
}

.testi-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  color: var(--gold);
  opacity: .12;
  line-height: 1
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.testi-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), #6B4A2A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 15px;
  color: var(--text);
  border: 2px solid var(--bdr);
  flex-shrink: 0
}

.testi-info h4 {
  color: var(--text);
  font-size: .88rem;
  margin-bottom: 2px
}

.testi-info p {
  color: var(--text3);
  font-size: .76rem
}

.testi-stars {
  color: var(--gold);
  font-size: 12px;
  margin-bottom: 12px
}

.testi-text {
  color: var(--text2);
  font-style: italic;
  line-height: 1.7;
  font-family: 'Playfair Display', serif;
  font-size: .97rem
}

/* ── STORY SECTIONS ────────────────────────────── */
.story-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden
}

.story-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg) 40%, transparent)
}

.story-hero-cnt {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 96px 0 56px
}

.story-hero-cnt h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  color: var(--text);
  margin-bottom: 14px
}

.story-hero-cnt p {
  color: var(--text2);
  font-size: .97rem;
  line-height: 1.8
}

.story-sec {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  margin: 64px 0
}

.story-sec.rev {
  direction: rtl
}

.story-sec.rev>* {
  direction: ltr
}

.story-img {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 12px;
}

.story-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.story-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 14px
}

.story-text p {
  color: var(--text2);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: .93rem
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 8px
}

.check-list li {
  display: flex;
  gap: 8px;
  color: var(--text2);
  font-size: .88rem;
  align-items: flex-start
}

.check-list li .ck {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0
}

.process-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  margin: 40px 0
}

.process-row::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent)
}

.proc-step {
  text-align: center;
  padding: 0 6px
}

.proc-n {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  color: var(--gold);
  margin: 0 auto 11px;
  background: var(--bg2);
  position: relative;
  z-index: 1;
  transition: all .3s ease
}

.proc-step:hover .proc-n {
  background: var(--gold);
  color: var(--bg)
}

.proc-step h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 4px
}

.proc-step p {
  color: var(--text3);
  font-size: .75rem;
  line-height: 1.4
}

@media(max-width:768px) {

  .story-sec,
  .story-sec.rev {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
    margin: 40px 0
  }

  .story-img img {
    height: 260px
  }

  .process-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px
  }

  .process-row::before {
    display: none
  }
}

@media(max-width:480px) {
  .process-row {
    grid-template-columns: repeat(2, 1fr)
  }
}

/* ── WHY US COMPARISON ─────────────────────────── */
.cmp-wrap {
  overflow-x: auto;
  margin: 24px 0
}

.cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px
}

.cmp-table th {
  background: var(--bg4);
  padding: 12px 16px;
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-align: left;
  border-bottom: 1px solid var(--bdr)
}

.cmp-table th:first-child {
  color: var(--text3)
}

.cmp-table th:nth-child(2) {
  color: var(--gold)
}

.cmp-table th:nth-child(3) {
  color: var(--text2)
}

.cmp-table td {
  padding: 11px 16px;
  font-size: .85rem;
  border-bottom: 1px solid rgba(201, 168, 76, .05);
  color: var(--text2)
}

.cmp-table tr:hover td {
  background: rgba(201, 168, 76, .03)
}

.ck-g {
  color: var(--gold)
}

.ck-n {
  color: var(--text3)
}

/* ── CONTACT ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.contact-card {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 32px
}

.contact-card h3 {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 22px
}

.c-row {
  display: flex;
  gap: 13px;
  margin-bottom: 18px;
  align-items: flex-start
}

.c-ico {
  width: 40px;
  height: 40px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0
}

.c-ico svg {
  width: 18px;
  height: 18px;
}

.c-txt h4 {
  color: var(--text);
  font-size: .88rem;
  margin-bottom: 3px
}

.c-txt p {
  color: var(--text3);
  font-size: .82rem;
  line-height: 1.5
}



.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 14px
}

.fg label {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--text3)
}

/*.fg input,.fg select,.fg textarea { background:var(--bg4); border:1px solid var(--bdr); color:var(--text); padding:11px 13px; border-radius:6px; font-size:.9rem; outline:none; transition:all .3s ease; width:100% }*/
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;

  background: var(--bg4);
  border: 1px solid var(--bdr);
  color: var(--text);

  padding: 11px 13px;
  border-radius: 6px;
  font-size: .9rem;
  outline: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--glow)
}

.fg select option {
  background: var(--bg4)
}

@media(max-width:768px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .contact-card {
    padding: 20px;
    width: 100%;
    overflow: hidden;
  }

  .contact-grid>div {
    width: 100%;
    min-width: 0;
  }

  .c-row {
    width: 100%;
    min-width: 0;
  }

  .c-txt {
    width: 100%;
    min-width: 0;
  }

  .c-txt p {
    word-break: break-word;
  }

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

}

/*@media(max-width:768px){ .contact-grid{grid-template-columns:1fr;gap:24px} }*/
/*@media(max-width:768px){

              .contact-grid{
                grid-template-columns:1fr;
                gap:24px;
                padding:0 14px;
                box-sizing:border-box;
              }

              .contact-card{
                padding:22px;
              }

            }*/

/* ── FAQ ───────────────────────────────────────── */
.faq-item {
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 18px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .3s ease
}

.faq-item:hover {
  border-color: var(--bdr-h)
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px
}

.faq-q h4 {
  color: var(--text);
  font-size: .9rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700
}

.faq-ico {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  font-family: 'Cinzel', serif;
  transition: transform .3s ease
}

.faq-a {
  display: none;
  color: var(--text2);
  font-size: .85rem;
  margin-top: 10px;
  line-height: 1.7
}

/* ── GALLERY ───────────────────────────────────── */
.gallery-grid {
  columns: 3;
  column-gap: 12px
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 12px;
  border-radius: var(--r);
  border: 1px solid var(--bdr);
  cursor: pointer;
  transition: all .4s ease;
  break-inside: avoid
}

.gallery-grid img:hover {
  opacity: .8;
  transform: scale(1.02)
}

@media(max-width:700px) {
  .gallery-grid {
    columns: 2
  }
}

@media(max-width:400px) {
  .gallery-grid {
    columns: 2;
    column-gap: 7px
  }
}

/* ── LIGHTBOX ──────────────────────────────────── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 10, 8, .97);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

#lightbox.open {
  display: flex
}

#lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  max-height: 88dvh;
  object-fit: contain;
  border-radius: var(--r);
  border: 1px solid var(--bdr)
}

#lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  color: var(--gold);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(12, 10, 8, .7);
  transition: all .3s ease
}

#lb-close:hover {
  background: var(--glow)
}

/* ── NEWSLETTER ────────────────────────────────── */
.nl-box {
  background: linear-gradient(135deg, var(--bg3), var(--bg4));
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 44px 28px;
  text-align: center
}

.nl-box h3 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--text);
  margin-bottom: 8px
}

.nl-box p {
  color: var(--text2);
  margin-bottom: 22px;
  font-size: .93rem
}

.nl-form {
  display: flex;
  max-width: 400px;
  margin: 0 auto
}

.nl-form input {
  flex: 1;
  padding: 12px 15px;
  background: var(--bg4);
  border: 1px solid var(--bdr);
  border-right: none;
  color: var(--text);
  border-radius: 6px 0 0 6px;
  outline: none;
  font-size: .9rem
}

.nl-form input:focus {
  border-color: var(--gold)
}

.nl-form button {
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  color: var(--bg);
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  border: none;
  white-space: nowrap
}

@media(max-width:440px) {
  .nl-form {
    flex-direction: column
  }

  .nl-form input {
    border-right: 1px solid var(--bdr);
    border-radius: 6px 6px 0 0;
    border-bottom: none
  }

  .nl-form button {
    border-radius: 0 0 6px 6px
  }
}

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--bdr);
  padding: 52px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
  align-items: start
}

.ft-logo {
  height: 92px;
  width: 92px;
  max-width: 92px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, .4))
}

@media(max-width:480px) {
  .ft-logo {
    height: 80px;
    width: 80px;
    max-width: 80px
  }
}

.ft-brand p {
  color: var(--text3);
  font-size: .84rem;
  margin-bottom: 18px;
  line-height: 1.7
}

.ft-spiritual {
  color: var(--gold) !important;
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .5px;
  margin-top: -10px;
  margin-bottom: 18px !important;
  opacity: .85
}

/*.ft-wa-btn { display:inline-flex; align-items:center; gap:8px; background:var(--wa); color:#fff; padding:10px 18px; border-radius:50px; font-family:'Cinzel',serif; font-size:10px; letter-spacing:1px; transition:all .3s ease }*/
.ft-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: #25D366;
  color: #ffffff;

  padding: 10px 18px;
  border-radius: 999px;

  font-size: .6rem;
  font-weight: 600;

  letter-spacing: 2px;
  text-decoration: none;

  box-shadow: 0 8px 24px rgba(37, 211, 102, .28);

  transition: .2s ease;
}

/*.ft-wa-btn:hover { background:#1da851; transform:translateY(-1px) }*/
.ft-wa-btn:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .38);
}

.wa-svg-icon {
  width: 15px;
  height: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;

  flex-shrink: 0;
}

.wa-svg-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

/* Pages + Contact two-column block */
.ft-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.ft-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px
}

.ft-col ul li {
  margin-bottom: 2px
}

.ft-col ul li a {
  color: var(--text3);
  font-size: .84rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0;
  min-height: 24px
}

.ft-col ul li a:hover {
  color: var(--gold)
}

.ft-col ul li a .c-ico,
.ft-col ul li a .wa-svg-icon {
  color: var(--text3)
}

.ft-col ul li a:hover .c-ico,
.ft-col ul li a:hover .wa-svg-icon {
  color: var(--gold)
}

.social-spacer {
  height: 90px;
  /* adjust if needed */
}

/* Follow Us — icon chip row */
.ft-social h4 {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px
}

.ft-social-row {
  display: flex;
  gap: 12px
}

.ft-social-chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  color: var(--text2);
  flex-shrink: 0;
  transition: all .25s ease;
}

.ft-social-chip svg {
  width: 18px;
  height: 18px
}

.ft-social-chip:hover {
  background: rgba(201, 168, 76, .12);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px)
}

.ft-bottom {
  border-top: 1px solid var(--bdr);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px
}

.ft-bottom p {
  color: var(--text3);
  font-size: .8rem
}

.ft-gold {
  color: var(--gold) !important;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px
}

/* ── Mobile footer layout ── */
@media(max-width:700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center
  }

  .ft-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--bdr);
    margin-bottom: 28px
  }

  .ft-brand p {
    max-width: 320px
  }

  .ft-links {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    text-align: left;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--bdr);
    margin-bottom: 28px
  }

  .ft-social {
    display: flex;
    flex-direction: column;
    align-items: center
  }

  .ft-social-row {
    justify-content: center
  }
}

@media(max-width:340px) {
  .ft-links {
    gap: 10px
  }

  .ft-col h4 {
    font-size: 9px;
    letter-spacing: 2px
  }

  .ft-col ul li a {
    font-size: .78rem
  }
}

/* ── FLOATING BUTTONS ──────────────────────────── */
/* WhatsApp floating */
.wa-float {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 52px;
  height: 52px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all .3s ease;
  text-decoration: none;
  animation: waFloat 3s ease infinite
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .6)
}

/* Back to top */
#btt {
  position: fixed;
  bottom: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  background: var(--bg3);
  border: 1px solid var(--bdr);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  transform: translateY(14px);
  transition: all .3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .3)
}

#btt.show {
  opacity: 1;
  transform: translateY(0)
}

#btt:hover {
  background: var(--glow);
  border-color: var(--gold)
}

/* Scroll progress */
#spb {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 9998;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold), var(--gold-lt));
  width: 0;
  box-shadow: 0 0 8px rgba(201, 168, 76, .6)
}

/* Mobile bottom nav */
.mob-bottom {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(12, 10, 8, .97);
  border-top: 1px solid var(--bdr);
  backdrop-filter: blur(16px);
  padding: 6px 0 max(6px, env(safe-area-inset-bottom))
}

.mob-bottom-inner {
  display: flex;
  justify-content: space-around
}

.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--text3);
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 1px;
  padding: 3px 6px;
  transition: all .3s ease;
  text-decoration: none
}

.mob-nav-item .ico {
  font-size: 18px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 3s ease;
}

.mob-nav-item.act .ico {
  color: var(--gold-lt);
  text-shadow: 0 0 10px rgba(201, 168, 76, .45);
}

.mob-nav-item:hover,
.mob-nav-item.act {
  color: var(--gold)
}

@media(max-width:768px) {
  .mob-bottom {
    display: block
  }

  body {
    padding-bottom: calc(58px + env(safe-area-inset-bottom))
  }

  .wa-float {
    bottom: 74px
  }
}

/* ── TOAST NOTIFICATION ────────────────────────── */
#toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg3);
  border: 1px solid var(--gold);
  border-radius: var(--r);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9000;
  opacity: 0;
  transition: all .4s ease;
  max-width: 320px;
  width: calc(100vw - 32px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .4)
}

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

.t-ico {
  font-size: 18px;
  flex-shrink: 0
}

.t-ttl {
  color: var(--text);
  font-size: .88rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1px
}

.t-msg {
  color: var(--text3);
  font-size: .76rem
}

/* ── PAGE HERO (sub-pages) ─────────────────────── */
.page-hero {
  padding: calc(var(--nav) + 44px) 0 48px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg3) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--bdr)
}

.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--text);
  margin-bottom: 10px
}

.page-hero p {
  color: var(--text2);
  max-width: 500px;
  margin: 0 auto;
  font-size: .94rem
}

/* ── REVEAL ANIMATION ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease
}

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

/* ── KEYFRAMES ─────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px)
  }

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

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes pulse {

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

  50% {
    opacity: .5;
    transform: scale(1.4)
  }
}

@keyframes scrollAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  50% {
    transform: scaleY(1);
    transform-origin: top
  }

  51% {
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 16px var(--glow)
  }

  50% {
    box-shadow: 0 0 32px rgba(201, 168, 76, .44)
  }
}

@keyframes bounce {

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

  50% {
    transform: translateY(-5px)
  }
}

@keyframes waFloat {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 6px 32px rgba(37, 211, 102, .7)
  }
}

/* ── SCROLLBAR ─────────────────────────────────── 
::-webkit-scrollbar { width:5px }
::-webkit-scrollbar-track { background:var(--bg2) }
::-webkit-scrollbar-thumb { background:var(--gold-dk); border-radius:3px }
::-webkit-scrollbar-thumb:hover { background:var(--gold) }
::selection { background:rgba(201,168,76,.25); color:var(--text) }*/

/* Hide mobile scrollbar*/

/* Hide scrollbar but keep scrolling */

html,
body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
}

/* STORY MOBILE TEXT */

.story-text-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 2px;
}

.story-text-block h3 {
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  font-family: 'Cinzel', serif;
}

.story-text-block h2 {
  color: var(--gold);
  font-size: 1.7rem;
  line-height: 1.4;
  margin-top: 6px;
}

.story-text-block p {
  color: var(--text2);
  line-height: 1.95;
  font-size: 1rem;
}

.guru-line {
  color: var(--text);
  line-height: 1.8;
  margin: 18px 0 28px;
  font-size: 1.02rem;
}

.guru-line span {
  color: var(--gold);
  font-weight: 600;
}

.quote-line {
  font-style: italic;
  color: var(--text);
  line-height: 2;
}

.birth-line {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.birth-line span {
  color: var(--gold);
}

/* MOBILE ONLY */

@media(max-width:600px) {

  .story-text-block {
    gap: 16px;
  }

  .story-text-block h2 {
    font-size: 1.45rem;
    line-height: 1.5;
  }

  .story-text-block p {
    font-size: .98rem;
    line-height: 1.95;
  }

}

/* icons in mobile nav*/

.mob-nav-item .ico {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.mob-nav-item .ico svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.mob-nav-item.act .ico {
  color: var(--gold-lt);
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, .5));
}

/* icons in whatsapp button optional*/
.wa-svg-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.wa-svg-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

/*icons in footer whatsapp button optional*/
.ft-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.wa-svg-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.wa-svg-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/*social icons in footer*/
.social-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

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

/* ════════════════════════════════════════════════
   PRODUCT DETAIL MODAL
   ════════════════════════════════════════════════ */
.pm-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 6, 4, .88);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

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

.pm-box {
  background: var(--bg3);
  border: 1px solid var(--bdr-h);
  border-radius: 14px;
  max-width: 880px;
  width: 100%;
  max-height: 82vh;
  max-height: 82dvh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6), 0 0 60px var(--glow);
  transform: translateY(24px) scale(.97);
  transition: transform .35s ease;
  flex-shrink: 0;
}

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

.pm-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pm-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(12, 10, 8, .7);
  border: 1px solid var(--bdr);
  color: var(--text2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .25s ease;
}

.pm-close:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(12, 10, 8, .9)
}

.pm-close svg {
  width: 18px;
  height: 18px
}

.pm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 720px) {
  .pm-grid {
    grid-template-columns: 1fr
  }
}

/* ── Gallery ── */
.pm-gallery {
  padding: 32px 28px;
  background: radial-gradient(ellipse at 50% 38%, #15110b 0%, #0c0a08 78%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pm-main-img {
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .2);
  border: 1px solid var(--bdr);
  touch-action: pan-y;
}

.pm-main-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, .5));
  transition: opacity .25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.pm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(12, 10, 8, .65);
  border: 1px solid var(--bdr-h);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s ease;
}

.pm-nav:hover {
  background: rgba(12, 10, 8, .9);
  color: var(--gold);
  border-color: var(--gold)
}

.pm-nav svg {
  width: 16px;
  height: 16px
}

.pm-nav-prev {
  left: 10px
}

.pm-nav-next {
  right: 10px
}

.pm-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 6px;
}

.pm-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(240, 230, 211, .35);
  transition: all .25s ease
}

.pm-dot.active {
  background: var(--gold);
  width: 16px;
  border-radius: 3px
}

/* Back arrow — sits below the modal box, bottom center */
.pm-back {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg3);
  border: 1px solid var(--bdr-h);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
  transition: all .25s ease, transform .35s ease;
  transform: translateY(16px) scale(.9);
  opacity: 0;
}

.pm-overlay.open .pm-back {
  transform: translateY(0) scale(1);
  opacity: 1
}

.pm-back:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px) scale(1)
}

.pm-back svg {
  width: 20px;
  height: 20px
}

.pm-thumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pm-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid var(--bdr);
  cursor: pointer;
  background: rgba(0, 0, 0, .25);
  transition: all .25s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px
}

.pm-thumb:hover {
  border-color: var(--bdr-h)
}

.pm-thumb.active {
  border-color: var(--gold);
  box-shadow: 0 0 12px var(--glow)
}

/* ── Info panel ── */
.pm-info {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
}

.pm-cat {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.pm-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 14px;
}

.pm-desc {
  color: var(--text2);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.pm-sec-label {
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text3);
  margin-bottom: 10px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pm-sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--bdr)
}

.pm-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0
}

.pm-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--text2);
  font-size: .87rem;
  line-height: 1.5;
  margin-bottom: 8px;
}

.pm-list.highlights li::before {
  content: '◆';
  color: var(--gold);
  font-size: 9px;
  margin-top: 4px;
  flex-shrink: 0
}

.pm-list.benefits li::before {
  content: '✦';
  color: var(--green);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0
}

.pm-cta {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--bdr);
}

.pm-cta-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  transition: all .3s ease;
}

.pm-cta-wa:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transform: translateY(-2px)
}

.pm-cta-wa svg {
  width: 18px;
  height: 18px
}

.pm-cta-note {
  text-align: center;
  color: var(--text3);
  font-size: .76rem;
  margin-top: 10px
}

.pm-soon-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg4);
  color: var(--gold);
  border: 1px solid var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 5px;
  margin-bottom: 14px;
  width: fit-content;
}

/* Clickable product card cue */
.prod-card {
  cursor: pointer
}

.prod-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px
}

.prod-card .prod-wa,
.prod-card .prod-soon-label {
  cursor: pointer
}

.pm-view-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 10, 8, .55);
  opacity: 0;
  transition: opacity .3s ease;
  font-family: 'Cinzel', serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-lt);
  pointer-events: none;
}

.prod-card:hover .pm-view-hint {
  opacity: 1
}

@media (max-width: 520px) {
  .pm-overlay {
    padding: 14px;
    gap: 12px
  }

  .pm-box {
    max-height: 78vh;
    max-height: 78dvh
  }

  .pm-back {
    width: 42px;
    height: 42px
  }

  .pm-back svg {
    width: 18px;
    height: 18px
  }

  .pm-gallery {
    padding: 22px 18px
  }

  .pm-info {
    padding: 26px 20px 22px
  }

  .pm-title {
    font-size: 1.25rem
  }
}



/* ===== MOBILE PRODUCT CATEGORY CARDS ===== */
@media (max-width: 768px) {

  .cat-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 32px;
  }

  .cat-cards .cat-card:nth-child(4),
  .cat-cards .cat-card:nth-child(5) {
    grid-column: auto;
  }

  .cat-card {
    padding: 20px 10px;
    min-height: 110px;
  }

  .cat-card .cat-ico {
    font-size: 24px;
  }

  .cat-card .cat-lbl {
    font-size: 10px;
    letter-spacing: 1px;
    line-height: 1.4;
  }
}

@media (max-width: 380px) {

  .cat-card {
    padding: 16px 8px;
    min-height: 95px;
  }

  .cat-card .cat-ico {
    font-size: 20px;
  }

  .cat-card .cat-lbl {
    font-size: 9px;
    letter-spacing: 0.8px;
  }
}