@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

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

:root {
  --accent: #FF6F00;
  --accent-dark: #E65100;
  --accent-light: #FAF3E3;
  --cream-bg: #FFFDF9;
  --cream-card: #FFFFFF;
  --cream-accent: #FAF3E3;
  --yellow-light: #FFF9E6;
  --yellow-main: #FFC107;
  --yellow-dark: #FF9800;
  --orange-main: #FF6F00;
  --orange-dark: #E65100;
  --spiritual-maroon: #4E1A0F;
  --text-dark: #2A1B18;
  --text-muted: #5C4E4B;
  --white: #FFFFFF;
  --border-gold: rgba(255, 179, 0, 0.25);
  --shadow-soft: 0 10px 30px rgba(230, 81, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(230, 81, 0, 0.12);
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --bg: #FFFDF9;
  --bg2: #FFFFFF;
  --border: rgba(255, 179, 0, 0.25);
  --text: #2A1B18;
  --text2: #5C4E4B;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(230, 81, 0, 0.06);
  --header-h: 80px;
  --bottom-nav-h: 60px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-bottom: var(--bottom-nav-h);
  overflow-x: hidden;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 0l2 10 8-8-8 8-2 10-2-10-8-8 8 8zM0 40l2 10 8-8-8 8-2 10-2-10-8-8 8 8z' fill='%23ff6f00' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.section-tagline {
  color: var(--orange-main);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 8px;
  display: inline-block;
}

.text-center { text-align: center; }
.section-copy {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
}

h1, h2, h3, h4, .brand-font {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Container ────────────────────────────────── */
.container { max-width: 1200px; margin-inline: auto; padding: 0 1rem; }

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

/* ── Main bar (logo + search + actions) ── */
.header-main {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 0 1rem;
  height: var(--header-h);
}

.nav-logo {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.4px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-logo svg { flex-shrink: 0; }

/* Desktop search — hidden on mobile */
.header-search {
  display: none;
  flex: 0 1 680px;
  position: relative;
}
@media (min-width: 768px) { .header-search { display: flex; } }

.header-search input {
  width: 100%;
  height: 42px;
  padding: 0 3rem 0 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
  background: #fff;
}
.header-search input:focus { border-color: var(--accent); }

.header-search button {
  position: absolute;
  right: 0;
  top: 0;
  height: 42px;
  width: 46px;
  background: var(--accent);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .15s;
}
.header-search button:hover { opacity: .88; }

.header-actions {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: .45rem .9rem;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .15s;
  line-height: 1;
  flex-shrink: 0;
}
.cart-btn:hover { opacity: .88; }
.cart-label { display: none; }
@media (min-width: 480px) { .cart-label { display: inline; } }

.cart-badge {
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--accent);
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: .65rem;
  font-weight: 900;
  flex-shrink: 0;
}

.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 38px; height: 38px;
  cursor: pointer;
  color: var(--text);
  flex-shrink: 0;
}
@media (min-width: 768px) { .hamburger { display: none; } }

/* ── Mobile search row ── */
.header-search-mobile {
  padding: .4rem 1rem .55rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .header-search-mobile { display: none; } }

.header-search-mobile form {
  position: relative;
  display: flex;
}
.header-search-mobile input {
  flex: 1;
  height: 38px;
  padding: 0 2.75rem 0 .9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.header-search-mobile input:focus { border-color: var(--accent); }
.header-search-mobile button {
  position: absolute;
  right: 0;
  top: 0;
  height: 38px;
  width: 42px;
  background: var(--accent);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Desktop category nav ── */
.cat-nav {
  display: none;
  overflow-x: auto;
  scrollbar-width: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 0 1rem;
}
.cat-nav::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { 
  .cat-nav { 
    display: flex; 
    justify-content: center; 
  } 
}

.cat-nav-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0 .95rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text2);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.cat-nav-item:hover,
.cat-nav-item.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ══════════════════════════════════════════════
   MOBILE NAV DRAWER
══════════════════════════════════════════════ */
#nav-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
}
#nav-drawer-overlay.open { display: block; }

#nav-drawer {
  position: fixed;
  top: 0; left: 0;
  width: min(300px, 85vw);
  height: 100dvh;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .28s ease;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}
#nav-drawer.open { transform: translateX(0); }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--border);
}
.drawer-header-title {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text2);
}
.drawer-close {
  background: none; border: none; cursor: pointer;
  color: var(--text2); padding: .25rem;
  display: flex; align-items: center;
  border-radius: 6px;
}
.drawer-close:hover { color: var(--text); background: var(--bg2); }

.drawer-search {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
}
.drawer-search form { display: flex; position: relative; }
.drawer-search input {
  flex: 1;
  height: 36px;
  padding: 0 2.5rem 0 .8rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: .85rem;
  font-family: inherit;
  outline: none;
}
.drawer-search input:focus { border-color: var(--accent); }
.drawer-search button {
  position: absolute; right: 0; top: 0;
  height: 36px; width: 38px;
  background: var(--accent); border: none;
  border-radius: 0 8px 8px 0;
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.drawer-nav { padding: .5rem .75rem; flex: 1; overflow-y: auto; }
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem .9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .875rem;
  color: var(--text);
  transition: background .15s, color .15s;
  margin-bottom: .1rem;
}
.drawer-nav a:hover,
.drawer-nav a.active {
  background: var(--accent-light);
  color: var(--accent);
}
.drawer-nav a svg { flex-shrink: 0; color: var(--text2); }
.drawer-nav a:hover svg,
.drawer-nav a.active svg { color: var(--accent); }
.drawer-cats a { padding-left: 2.5rem; font-size: .85rem; color: var(--text2); }
.drawer-cats a:hover { color: var(--accent); }

/* ══════════════════════════════════════════════
   HERO CAROUSEL
══════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 240px;
  background: var(--accent-dark);
}
@media (min-width: 480px) { .hero-carousel { height: 300px; } }
@media (min-width: 768px) { .hero-carousel { height: 380px; } }
@media (min-width: 1024px) { .hero-carousel { height: 440px; } }

.hero-slides { width: 100%; height: 100%; position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .7s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.62) 0%, rgba(0,0,0,.28) 60%, transparent 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  max-width: 520px;
}
@media (min-width: 768px) { .hero-content { padding: 2rem 3rem; } }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .75rem;
  width: fit-content;
}

.hero-content h1 {
  color: #fff;
  font-size: clamp(1.4rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: .5rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.3);
}

.hero-content p {
  color: rgba(255,255,255,.88);
  font-size: clamp(.8rem, 2vw, 1rem);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  max-width: 360px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #e53935;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: .65rem 1.5rem;
  border-radius: 4px;
  width: fit-content;
  transition: opacity .15s, transform .15s;
}
.hero-cta:hover { opacity: .9; transform: translateY(-1px); }

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.38);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .15s;
}
.hero-prev:hover,
.hero-next:hover { background: rgba(0,0,0,.6); }
.hero-prev { left: .6rem; }
.hero-next { right: .6rem; }
@media (min-width: 768px) {
  .hero-prev { left: 1.25rem; width: 42px; height: 42px; }
  .hero-next { right: 1.25rem; width: 42px; height: 42px; }
}

.hero-dots {
  position: absolute;
  bottom: .85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .45rem;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
  background: transparent;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ══════════════════════════════════════════════
   USP BAR
══════════════════════════════════════════════ */
.usp-bar {
  padding: .875rem 1rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .55rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }

.usp-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
}
.usp-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.usp-text h4 { font-size: .78rem; font-weight: 700; line-height: 1.3; }
.usp-text p  { font-size: .68rem; color: var(--text2); }

/* ══════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════ */
.section { padding: 2rem 1rem; }
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.section-title { font-size: 1.2rem; font-weight: 800; }
.section-sub { color: var(--text2); font-size: .8rem; margin-top: .15rem; }
.section-more {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap .15s;
}
.section-more:hover { gap: .55rem; }

/* ══════════════════════════════════════════════
   CATEGORY GRID
══════════════════════════════════════════════ */
.slider-wrapper {
  position: relative;
  width: 100%;
}
.slider-container {
  width: 100%;
  overflow: hidden;
}
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.slider-prev:hover,
.slider-next:hover {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 4px 12px rgba(46,125,50,.18);
}
.slider-prev {
  left: 4px;
}
.slider-next {
  right: 4px;
}
@media (min-width: 768px) {
  .slider-prev { left: -12px; }
  .slider-next { right: -12px; }
}
@media (min-width: 1024px) {
  .slider-prev { left: -18px; }
  .slider-next { right: -18px; }
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1rem;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .2s;
}
.slider-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* Category Slider Customizations */
.slider-container .cat-grid {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: transform 0.4s ease-in-out;
  padding: 0.5rem 0.25rem;
  width: 100%;
}
.slider-container .cat-card {
  flex: 0 0 calc(33.33% - 0.67rem) !important;
}
@media (min-width: 480px) {
  .slider-container .cat-card {
    flex: 0 0 calc(25% - 0.75rem) !important;
  }
}
@media (min-width: 768px) {
  .slider-container .cat-card {
    flex: 0 0 calc(16.66% - 0.83rem) !important;
  }
}

/* Product Slider Customizations */
.slider-container .product-grid {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1rem;
  transition: transform 0.4s ease-in-out;
  padding: 0.5rem 0.25rem;
  width: 100%;
}
.slider-container .product-card,
.slider-container .skel-card {
  flex: 0 0 calc(50% - 0.5rem) !important;
}
@media (min-width: 580px) {
  .slider-container .product-card,
  .slider-container .skel-card {
    flex: 0 0 calc(33.33% - 0.67rem) !important;
  }
}
@media (min-width: 900px) {
  .slider-container .product-card,
  .slider-container .skel-card {
    flex: 0 0 calc(25% - 0.75rem) !important;
  }
}
.cat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg2);
  border: 2px solid var(--border);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.cat-card:hover .cat-img {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(46,125,50,.18);
}
.cat-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900;
  color: var(--accent); background: var(--accent-light);
}
.cat-label { font-size: .72rem; font-weight: 700; color: var(--text); line-height: 1.3; }

/* ══════════════════════════════════════════════
   PRODUCT GRID & CARDS
══════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .875rem;
}
@media (min-width: 580px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.product-img {
  aspect-ratio: 1 / 1;
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}
.product-img .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 900;
  color: var(--accent); background: var(--accent-light);
}

.product-badge {
  position: absolute;
  top: .45rem; left: .45rem;
  background: #f97316;
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  padding: .2rem .5rem;
  border-radius: 4px;
  line-height: 1.4;
  z-index: 1;
}

.product-info {
  padding: .65rem .75rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .22rem;
  flex: 1;
}
.product-cat {
  font-size: .62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--accent);
}
.product-name {
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-top: .2rem;
  flex-wrap: wrap;
}
.price-final   { font-size: .95rem; font-weight: 800; color: var(--text); }
.price-original { font-size: .73rem; color: var(--text2); text-decoration: line-through; }
.price-save    { font-size: .68rem; font-weight: 700; color: var(--accent); }

/* ══════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════ */
.faq-section {
  background: #fff;
  padding: 2.5rem 1rem;
  border-top: 1px solid var(--border);
}

.faq-seo {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.faq-seo h2 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .5rem;
}
.faq-seo p {
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.75;
  max-width: 780px;
}
.faq-seo p strong { color: var(--text); }

.faq-heading {
  font-size: .875rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .9rem 1rem;
  background: #fff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg2); }

.faq-q span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text2);
  transition: transform .25s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  display: none;
  padding: 0 1rem 1rem;
  font-size: .875rem;
  color: var(--text2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
}
.faq-a a { color: var(--accent); font-weight: 600; }
.faq-item.open .faq-a { display: block; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  margin-top: auto;
  background: #f4faf4;
  font-family: system-ui, -apple-system, sans-serif;
  padding-bottom: 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 1rem;
}
@media (min-width: 768px) {
  .footer-main { grid-template-columns: repeat(4, 1fr); }
}

/* Brand col */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: .75rem;
}
.footer-store-name {
  font-family: 'Cinzel Decorative', Georgia, serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
}
.footer-desc {
  font-size: .75rem;
  color: var(--text2);
  line-height: 1.625;
  margin-bottom: 1.25rem;
}

.footer-play-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: #fff;
  background: var(--accent);
  padding: .5rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  margin-bottom: .75rem;
  transition: opacity .2s;
  width: max-content;
}
.footer-play-btn:hover { opacity: .9; }
.play-btn-text { line-height: 1.1; }
.play-btn-sub { font-size: 9px; opacity: 0.85; }
.play-btn-main { font-size: 13px; font-weight: bold; }

.footer-seller-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: .4rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color .2s;
  width: max-content;
}
.footer-seller-btn:hover { background-color: var(--accent-light); }

/* Footer columns */
.footer-col h4 {
  font-size: .875rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 1rem;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .625rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}
.footer-col li a {
  font-size: .75rem;
  color: var(--text2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .375rem;
  transition: color .2s;
}
.footer-col li a .chevron {
  font-size: 10px;
  color: #9ca3af; /* gray-400 */
}
.footer-col li a:hover { color: var(--accent-dark); }

/* Social icons */
.footer-social-heading { margin-bottom: .75rem; }
.footer-socials {
  display: flex;
  gap: .5rem;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .75rem;
  font-weight: bold;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity .2s;
}
.footer-social:hover { opacity: .85; }

/* Newsletter */
.footer-newsletter {
  background: #fff;
  border-radius: .75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1.25rem;
}
.footer-newsletter h4 { margin-bottom: .25rem; font-size: .875rem; color: var(--text); }
.footer-newsletter p {
  font-size: .75rem;
  color: var(--text2);
  margin-bottom: .75rem;
}
.newsletter-form {
  display: flex;
  gap: .5rem;
}
.newsletter-form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: .5rem;
  font-size: .75rem;
  color: var(--text);
  padding: .5rem .75rem;
  outline: none;
  min-width: 0;
  transition: border-color .2s;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--accent);
  border: none;
  border-radius: .5rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact info */
.footer-contact-card {
  background: #fff;
  border-radius: .75rem;
  padding: .75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: .75rem;
  font-size: .75rem;
  color: var(--text2);
  line-height: 1.625;
}
.contact-card-title {
  font-weight: bold;
  color: var(--text);
  margin-bottom: .25rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}
.contact-icon-bg {
  width: 32px; height: 32px;
  flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.contact-lbl {
  font-size: .75rem;
  font-weight: bold;
  color: var(--text);
  margin-bottom: 0;
}
.footer-contact-row a {
  font-size: .75rem;
  color: var(--text2);
  text-decoration: none;
  transition: color .2s;
}
.footer-contact-row a:hover { color: var(--accent-dark); }

/* Footer bottom bar */
.footer-bottom-wrapper {
  padding: 0 1rem;
}
.footer-bottom {
  background: var(--accent-dark);
  border-radius: 1rem;
  padding: .75rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  margin: 0;
}
.footer-bottom strong { color: #fff; }
.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
}
.footer-bottom-links a {
  font-size: 11px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: opacity .2s;
}
.footer-bottom-links a:hover { opacity: 1; color: #fff; }

/* ══════════════════════════════════════════════
   PRODUCT DETAIL
══════════════════════════════════════════════ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 1.75rem auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .product-detail { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.product-detail-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg2);
  border: 1px solid var(--border);
}
.product-detail-img .no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; font-weight: 900;
  color: var(--accent); background: var(--accent-light);
}
.product-detail-body { display: flex; flex-direction: column; gap: .9rem; }
.product-detail-cat  { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.product-detail-name { font-size: 1.55rem; font-weight: 800; line-height: 1.25; }
.product-detail-price { display: flex; align-items: baseline; gap: .75rem; flex-wrap: wrap; }
.product-detail-price .price-final { font-size: 1.55rem; }
.product-detail-desc {
  font-size: .9rem; color: var(--text2); line-height: 1.75;
  border-top: 1px solid var(--border); padding-top: .85rem;
}
.product-detail-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.btn-buy {
  flex: 1; min-width: 140px;
  background: var(--accent); color: #fff; border: none;
  padding: .9rem 1.5rem; border-radius: 50px;
  font-weight: 800; font-size: .9rem; cursor: pointer;
  transition: opacity .15s;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.btn-buy:hover { opacity: .88; }
.back-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .82rem; color: var(--accent); font-weight: 600;
}
.back-link:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   PAGE HEADER
══════════════════════════════════════════════ */
.page-header {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1rem;
}
.page-header h1 { font-size: 1.35rem; font-weight: 800; }
.page-header p  { color: var(--text2); font-size: .85rem; margin-top: .2rem; }

/* ══════════════════════════════════════════════
   CATEGORY FILTER TABS
══════════════════════════════════════════════ */
.cat-tabs {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--border);
  scrollbar-width: none;
  justify-content: center;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  flex-shrink: 0;
  padding: .38rem .95rem;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 700;
  border: 1.5px solid var(--border);
  background: none;
  color: var(--text2);
  cursor: pointer;
  font-family: inherit;
  transition: all .15s;
}
.cat-tab.active,
.cat-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ══════════════════════════════════════════════
   SKELETON
══════════════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg, #f3f4f6 25%, #e5e7eb 50%, #f3f4f6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.2s infinite;
  border-radius: 8px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.skel-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.skel-img  { aspect-ratio: 1 / 1; }
.skel-body { padding: .75rem; display: flex; flex-direction: column; gap: .45rem; }
.skel-line { height: .7rem; border-radius: 4px; }
.skel-line.short  { width: 50%; }
.skel-line.medium { width: 75%; }

/* ══════════════════════════════════════════════
   EMPTY / ERROR STATE
══════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--text2); }
.empty-state h2 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: .5rem; }

/* ══════════════════════════════════════════════
   MOBILE BOTTOM NAV
══════════════════════════════════════════════ */
.bottom-nav {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  background: #fff;
  border-top: 1px solid var(--border);
  z-index: 100;
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
}
@media (min-width: 768px) { .bottom-nav { display: none; } }

.bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .18rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text2);
  font-family: inherit;
  font-size: .6rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .15s;
  padding: .4rem 0;
  position: relative;
}
.bottom-nav-item.active,
.bottom-nav-item:hover { color: var(--accent); }
.bottom-nav-item svg { width: 22px; height: 22px; }

.bottom-cart-badge {
  position: absolute;
  top: 4px;
  right: calc(50% - 20px);
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  width: 15px; height: 15px;
  font-size: .58rem;
  font-weight: 900;
}

/* ══════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════ */
#cart-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 200;
}
#cart-overlay.active { display: block; }

#cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -8px 0 40px rgba(0,0,0,.12);
}
#cart-drawer.active { transform: translateX(0); }

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border);
}
.cart-header h2 { font-size: 1rem; font-weight: 800; }
.cart-close {
  background: none; border: none; cursor: pointer;
  color: var(--text2); padding: .25rem;
  display: flex; align-items: center; border-radius: 6px;
}
.cart-close:hover { color: var(--text); }

#cart-items { flex: 1; overflow-y: auto; padding: .75rem 1.25rem; }
.cart-empty { text-align: center; padding: 3rem 0; color: var(--text2); }
.cart-empty a { color: var(--accent); font-weight: 700; }

.cart-item {
  display: flex; gap: .75rem;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 58px; height: 58px; border-radius: 8px;
  overflow: hidden; background: var(--bg2);
  border: 1px solid var(--border); flex-shrink: 0;
}
.cart-item-no-img {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900;
  color: var(--accent); background: var(--accent-light);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name  { font-size: .84rem; font-weight: 700; line-height: 1.3; }
.cart-item-price { font-size: .76rem; color: var(--text2); margin-top: .12rem; }
.cart-qty { display: flex; align-items: center; gap: .35rem; margin-top: .4rem; }
.cart-qty button {
  width: 24px; height: 24px;
  border: 1px solid var(--border); border-radius: 6px;
  background: #fff; cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s;
}
.cart-qty button:hover { border-color: var(--accent); color: var(--accent); }
.cart-qty span { font-size: .85rem; font-weight: 700; min-width: 1.4rem; text-align: center; }
.cart-qty button.cart-remove {
  margin-left: .5rem; font-size: .75rem; color: var(--text2);
  text-decoration: underline; cursor: pointer; border: none; background: none;
  font-family: inherit; width: auto; height: auto; padding: 0;
}
.cart-qty button.cart-remove:hover { color: #dc2626; border-color: transparent; }
.cart-item-total { font-size: .88rem; font-weight: 800; white-space: nowrap; color: var(--accent); }

#cart-footer { padding: 1rem 1.25rem; border-top: 1px solid var(--border); background: var(--bg2); }
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .875rem; margin-bottom: .75rem; font-weight: 600;
}
.btn-checkout {
  display: block; width: 100%;
  background: var(--accent); color: #fff;
  text-align: center; padding: .825rem;
  border-radius: 50px; font-weight: 800; font-size: .9rem;
  transition: opacity .15s;
}
.btn-checkout:hover { opacity: .88; }

/* ══════════════════════════════════════════════
   CHECKOUT
══════════════════════════════════════════════ */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 960px;
  margin: 1.75rem auto;
  padding: 0 1rem;
  align-items: start;
}
@media (min-width: 700px) {
  .checkout-layout { grid-template-columns: 1fr 340px; gap: 2rem; }
}
.checkout-section {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem; margin-bottom: 1rem;
}
.checkout-section h2 { font-size: .95rem; font-weight: 800; margin-bottom: .875rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .75rem; }
.form-group label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text2); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: .6rem .8rem; border: 1px solid var(--border);
  border-radius: 8px; font-size: .875rem; font-family: inherit;
  color: var(--text); outline: none; transition: border-color .15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 78px; }

.payment-options { display: flex; flex-direction: column; gap: .5rem; }
.payment-option {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  border: 2px solid var(--border); border-radius: 10px;
  cursor: pointer; transition: border-color .15s, background .15s;
}
.payment-option:hover { border-color: var(--accent); }
.payment-option.selected { border-color: var(--accent); background: var(--accent-light); }
.payment-option input[type=radio] { accent-color: var(--accent); }
.payment-option-label { font-weight: 700; font-size: .875rem; }
.payment-option-sub { font-size: .72rem; color: var(--text2); margin-top: .06rem; }

.coupon-row { display: flex; gap: .5rem; }
.coupon-row input {
  flex: 1;
  padding: .6rem .8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .875rem;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .15s;
}
.coupon-row input:focus { border-color: var(--accent); }
.btn-apply {
  padding: .6rem .95rem;
  background: var(--text); color: #fff;
  border: none; border-radius: 8px;
  font-weight: 700; font-size: .82rem; cursor: pointer;
  white-space: nowrap; transition: opacity .15s; font-family: inherit;
}
.btn-apply:hover { opacity: .85; }
.btn-apply:disabled { opacity: .5; cursor: not-allowed; }
.coupon-msg { font-size: .8rem; margin-top: .4rem; }
.coupon-msg.ok  { color: #16a34a; }
.coupon-msg.err { color: #dc2626; }

.order-summary {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 700px) { .order-summary { position: sticky; top: 80px; } }
.order-summary-header {
  background: var(--bg2); padding: .825rem 1.25rem;
  font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
}
.summary-items { padding: .875rem 1.25rem; border-bottom: 1px solid var(--border); }
.summary-item { display: flex; gap: .6rem; align-items: center; margin-bottom: .6rem; }
.summary-item:last-child { margin-bottom: 0; }
.summary-item-img {
  width: 42px; height: 42px; border-radius: 6px;
  border: 1px solid var(--border); overflow: hidden;
  background: var(--bg2); flex-shrink: 0;
}
.summary-item-name  { font-size: .82rem; font-weight: 700; flex: 1; }
.summary-item-price { font-size: .82rem; font-weight: 700; white-space: nowrap; }
.summary-totals { padding: .825rem 1.25rem; }
.summary-row {
  display: flex; justify-content: space-between;
  font-size: .82rem; margin-bottom: .4rem; color: var(--text2);
}
.summary-row.discount { color: #16a34a; }
.summary-row.total {
  font-size: .95rem; font-weight: 800; color: var(--text);
  border-top: 1px solid var(--border); padding-top: .6rem; margin-top: .15rem;
}
.btn-place-order {
  display: block; width: calc(100% - 2.5rem); margin: 0 1.25rem 1.25rem;
  background: var(--accent); color: #fff;
  text-align: center; padding: .875rem;
  border-radius: 50px; font-weight: 800; font-size: .9rem;
  border: none; cursor: pointer; transition: opacity .15s; font-family: inherit;
}
.btn-place-order:hover { opacity: .88; }
.btn-place-order:disabled { opacity: .5; cursor: not-allowed; }

/* ══════════════════════════════════════════════
   INFO PAGES (track / confirm)
══════════════════════════════════════════════ */
.info-page { max-width: 640px; margin: 1.75rem auto; padding: 0 1rem; }
.info-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.35rem; margin-bottom: 1rem;
}
.info-card h2 { font-size: .95rem; font-weight: 800; margin-bottom: .875rem; }
.status-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .25rem .7rem; border-radius: 50px;
  font-size: .72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em;
}
.status-badge.green  { background: #dcfce7; color: #15803d; }
.status-badge.yellow { background: #fef9c3; color: #a16207; }
.status-badge.red    { background: #fee2e2; color: #b91c1c; }
.status-badge.gray   { background: var(--bg2); color: var(--text2); }

.detail-row {
  display: flex; justify-content: space-between;
  padding: .45rem 0; border-bottom: 1px solid var(--bg2);
  font-size: .875rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-row span:first-child { color: var(--text2); }
.detail-row strong { font-weight: 700; }

.success-icon { font-size: 2.75rem; text-align: center; margin-bottom: .875rem; }

.track-form input {
  width: 100%; padding: .65rem .875rem;
  border: 1px solid var(--border); border-radius: 8px;
  font-size: .875rem; font-family: inherit; outline: none;
  margin-bottom: .65rem; color: var(--text);
}
.track-form input:focus { border-color: var(--accent); }
.btn-track {
  width: 100%; padding: .825rem;
  background: var(--accent); color: #fff;
  border: none; border-radius: 50px;
  font-weight: 800; font-size: .875rem; cursor: pointer;
  transition: opacity .15s; font-family: inherit;
}
.btn-track:hover { opacity: .85; }
.btn-track:disabled { opacity: .5; cursor: not-allowed; }

/* ── Google Translate Overrides ──────────────── */
#google_translate_element {
  display: flex;
  align-items: center;
}
.goog-te-gadget {
  font-family: inherit !important;
  color: transparent !important;
  font-size: 0 !important;
  display: flex;
  align-items: center;
}
.goog-te-gadget .goog-te-combo {
  font-family: inherit !important;
  color: var(--text) !important;
  font-size: 0.875rem !important;
  padding: 0.25rem 0.5rem !important;
  border: 1px solid var(--border) !important;
  border-radius: 0.5rem !important;
  outline: none !important;
  background-color: #fff !important;
  margin: 0 !important;
  cursor: pointer;
  height: 2.25rem;
}
.goog-logo-link {
  display: none !important;
}
.goog-te-gadget img {
  display: none !important;
}
.goog-te-banner-frame {
  display: none !important;
}
body {
  top: 0 !important;
}

/* Ved Aura homepage theme copied from the demo and adapted for the storefront */
.announcement-bar {
  background: linear-gradient(135deg, var(--orange-main), var(--orange-dark));
  color: var(--white);
  text-align: center;
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  z-index: 101;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.announcement-bar a {
  color: var(--yellow-main);
  text-decoration: underline;
  font-weight: 600;
  margin-left: 5px;
}

.hero {
  position: relative;
  padding: 100px 8% 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 85vh;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, var(--yellow-light) 0%, var(--cream-bg) 60%);
}
.hero::before {
  content: '';
  position: absolute;
  top: 50px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1) 0%, rgba(255, 111, 0, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float-slow 15s infinite ease-in-out;
}
.hero-content {
  flex: 0 1 560px;
  max-width: 560px;
  z-index: 1;
  position: relative;
  inset: auto;
  display: block;
  padding: 0;
}
.hero-badge {
  background-color: var(--cream-accent);
  border: 1px solid var(--border-gold);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--orange-dark);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
}
.hero-badge i { color: var(--yellow-main); }
.hero-content h1 {
  font-size: 56px;
  line-height: 1.15;
  color: var(--spiritual-maroon);
  margin-bottom: 20px;
  text-shadow: none;
  font-weight: 700;
}
.hero-content h1 span {
  background: linear-gradient(120deg, var(--orange-main) 0%, var(--yellow-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.btn-primary,
.btn-secondary,
.report-btn,
.course-enroll-btn,
.submit-btn {
  font-family: 'Outfit', sans-serif;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-main), var(--orange-dark));
  color: var(--white);
  border: none;
  padding: 15px 35px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(255, 111, 0, 0.3);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 111, 0, 0.45);
}
.btn-secondary {
  background: var(--cream-accent);
  color: var(--spiritual-maroon);
  border: 1px solid var(--border-gold);
  padding: 15px 35px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-secondary:hover {
  background-color: var(--white);
  border-color: var(--orange-main);
  color: var(--orange-main);
  transform: translateY(-3px);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-gold);
  padding-top: 30px;
}
.stat-item h3 {
  font-size: 32px;
  color: var(--orange-main);
  margin-bottom: 5px;
}
.stat-item p {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero-graphic {
  flex: 0 1 460px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.kundli-circle {
  width: min(460px, 100%);
  height: auto;
  aspect-ratio: 1;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='48' fill='none' stroke='%23ff9800' stroke-width='0.4' stroke-dasharray='1 1'/%3E%3Ccircle cx='50' cy='50' r='45' fill='none' stroke='%23ff6f00' stroke-width='0.8'/%3E%3Cpath d='M50 2 L50 98 M2 50 L98 50 M16 16 L84 84 M16 84 L84 16' stroke='%23ff9800' stroke-width='0.3'/%3E%3Ccircle cx='50' cy='50' r='30' fill='none' stroke='%23ff6f00' stroke-width='0.5'/%3E%3Ccircle cx='50' cy='50' r='12' fill='none' stroke='%23ffc107' stroke-width='1'/%3E%3Cpolygon points='50,5 95,50 50,95 5,50' fill='none' stroke='%23ff6f00' stroke-width='0.5'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  position: relative;
  animation: rotate-slow 40s infinite linear;
  display: flex;
  justify-content: center;
  align-items: center;
}


.kundli-center-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow-light) 30%, var(--yellow-main) 100%);
  border: 4px solid var(--white);
  box-shadow: 0 10px 30px rgba(255, 111, 0, 0.2);
  animation: counter-rotate 40s infinite linear;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
  color: var(--orange-main);
}

.trust-banner {
  background-color: var(--cream-accent);
  padding: 30px 8%;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.trust-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--orange-main);
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  border: 1px solid var(--border-gold);
}
.trust-text h4 {
  font-size: 16px;
  color: var(--spiritual-maroon);
  margin-bottom: 2px;
}
.trust-text p {
  font-size: 13px;
  color: var(--text-muted);
}

body > section:not(.section) {
  padding: 80px 8%;
  position: relative;
}
.section-title {
  font-size: 38px;
  color: var(--spiritual-maroon);
  margin-bottom: 15px;
  position: relative;
}
.text-center > .section-title::after,
#shop > .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-main), var(--orange-main));
  margin: 15px auto 0;
  border-radius: 2px;
}

.services-container,
.reports-container,
.courses-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.service-card,
.report-card,
.course-card,
.testimonial-card {
  background-color: var(--cream-card);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.service-card {
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--yellow-main), var(--orange-main));
  opacity: 0;
  transition: var(--transition-smooth);
}
.service-card:hover,
.report-card:hover,
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-main);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 25px;
  color: var(--orange-main);
  font-size: 28px;
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon {
  background-color: var(--orange-main);
  color: var(--white);
  transform: scale(1.1);
}
.service-card h3,
.report-body h3,
.course-details h3 {
  font-size: 22px;
  color: var(--spiritual-maroon);
  margin-bottom: 15px;
}
.service-card p,
.report-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 25px;
}
.card-link {
  color: var(--orange-main);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}
.service-card:hover .card-link { gap: 10px; color: var(--orange-dark); }

.reports,
.faq {
  background-color: var(--cream-accent);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.reports-container { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.report-card {
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.report-banner {
  height: 180px;
  background: linear-gradient(135deg, var(--spiritual-maroon), #2E0B05);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.report-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l2 8 8-8-8 8-2 8-2-8-8 8 8-8z' fill='%23ff9800' fill-opacity='0.08'/%3E%3C/svg%3E") repeat;
}
.report-banner-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(255, 253, 249, 0.1);
  border: 2px solid rgba(255, 193, 7, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--yellow-main);
  font-size: 38px;
  z-index: 2;
  text-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
}
.report-badge-promo {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--yellow-main), var(--orange-main));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.report-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.report-meta {
  border-top: 1px solid var(--border-gold);
  padding-top: 18px;
  margin-top: auto;
  margin-bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}
.report-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.price-original {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 13px;
}
.price-discounted,
.course-price {
  color: var(--orange-main);
  font-size: 22px;
  font-weight: 700;
}
.report-delivery {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}
.report-btn {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-dark));
  color: var(--white);
  border-radius: 30px;
  padding: 13px 18px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#shop .section.container {
  padding-left: 0;
  padding-right: 0;
}
.product-card,
.cat-card {
  border-radius: 20px;
  background: var(--white);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-soft);
}
.product-card:hover,
.cat-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-main);
}
.product-badge,
.slider-dot.active,
.btn-buy,
.btn-checkout,
.btn-place-order,
.btn-track {
  background: var(--orange-main);
}
.price-final,
.product-cat,
.section-more {
  color: var(--orange-main);
}

.courses-filter,
.shop-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 40px 0 45px;
  flex-wrap: wrap;
}
.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--orange-main), var(--orange-dark));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 111, 0, 0.25);
}
.course-card {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.course-img-placeholder {
  height: 200px;
  background: radial-gradient(circle at center, var(--yellow-light), var(--cream-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--orange-main);
  font-size: 64px;
}
.course-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--spiritual-maroon);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}
.course-details {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.course-meta-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 15px;
}
.course-instructor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 20px;
}
.instructor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream-accent);
  border: 1px solid var(--border-gold);
  color: var(--orange-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.instructor-name {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 600;
}
.course-footer {
  border-top: 1px solid var(--border-gold);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.course-enroll-btn {
  border: none;
  background: var(--spiritual-maroon);
  color: var(--white);
  border-radius: 30px;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
}
.course-enroll-btn:hover { background: var(--orange-main); }

.mentor {
  background: var(--cream-bg);
}
.mentor-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
}
.mentor-img-side,
.mentor-info-side {
  flex: 1;
}
.mentor-frame {
  width: 380px;
  height: 460px;
  max-width: 100%;
  margin: 0 auto;
  border: 2px solid var(--yellow-main);
  border-radius: 220px 220px 24px 24px;
  padding: 12px;
  background: var(--white);
  box-shadow: var(--shadow-hover);
}
.mentor-frame-inner {
  width: 100%;
  height: 100%;
  border-radius: 200px 200px 18px 18px;
  background: radial-gradient(circle at 50% 25%, var(--yellow-light), var(--cream-accent) 60%, var(--orange-main));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--spiritual-maroon);
  font-size: 112px;
}
.mentor-info-side h2 {
  font-size: 42px;
  color: var(--spiritual-maroon);
  margin-bottom: 10px;
}
.mentor-subtitle {
  color: var(--orange-main);
  font-weight: 700;
  margin-bottom: 20px;
}
.mentor-bio {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 25px;
}
.mentor-bullets {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}
.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bullet-icon {
  width: 34px;
  height: 34px;
  background-color: var(--yellow-light);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--orange-main);
  font-size: 14px;
  flex-shrink: 0;
}
.bullet-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.testimonials { background-color: var(--cream-bg); }
.testimonials-slider {
  max-width: 900px;
  margin: 50px auto 0;
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 300%;
}
.testimonial-slide {
  width: 33.333%;
  padding: 0 40px;
  text-align: center;
}
.testimonial-card {
  border-radius: 24px;
  padding: 50px 40px;
  position: relative;
}
.quote-icon {
  font-size: 50px;
  color: var(--yellow-light);
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 1;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: var(--spiritual-maroon);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.client-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.client-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--cream-accent);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: var(--orange-main);
  border: 2px solid var(--yellow-main);
}
.client-info h4 { font-size: 16px; color: var(--text-dark); }
.client-info p { font-size: 13px; color: var(--text-muted); }
.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.control-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--spiritual-maroon);
  font-size: 16px;
  transition: var(--transition-smooth);
}
.control-btn:hover {
  background-color: var(--orange-main);
  color: var(--white);
  border-color: transparent;
}

.faq-container {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq .faq-item {
  background-color: var(--white);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}
.faq-header {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-header h3 {
  font-size: 17px;
  color: var(--spiritual-maroon);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}
.faq-icon {
  font-size: 16px;
  color: var(--orange-main);
  transition: var(--transition-smooth);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 30px;
}
.faq-body p {
  padding-bottom: 22px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}
.faq .faq-item.active {
  border-color: var(--orange-main);
  box-shadow: var(--shadow-soft);
}
.faq .faq-item.active .faq-icon { transform: rotate(180deg); }

.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(78, 26, 15, 0.6);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background-color: var(--cream-bg);
  border: 2px solid var(--yellow-main);
  border-radius: 24px;
  width: 90%;
  max-width: 550px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: scale(0.9);
  transition: var(--transition-smooth);
}
.modal.active .modal-content { transform: scale(1); }
.modal-header {
  background: linear-gradient(135deg, var(--spiritual-maroon), #2E0B05);
  color: var(--white);
  padding: 25px 30px;
  position: relative;
}
.modal-header h2 { font-size: 24px; }
.modal-header p {
  font-size: 13.5px;
  color: #D3C5C2;
  margin-top: 5px;
}
.close-modal {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition-smooth);
  background: transparent;
  border: 0;
  line-height: 1;
}
.close-modal:hover { color: var(--yellow-main); }
.modal-body { padding: 30px; }
.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--orange-main), var(--orange-dark));
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(255, 111, 0, 0.25);
  transition: var(--transition-smooth);
  margin-top: 10px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(255, 111, 0, 0.4);
}

@keyframes float-slow {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}
@keyframes rotate-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes counter-rotate {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    padding-top: 60px;
    text-align: center;
    gap: 42px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  .mentor-wrapper {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  body > section:not(.section) { padding: 60px 5%; }
  .section-title { font-size: 30px; }
  .hero-content h1 { font-size: 38px; }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .kundli-circle {
    width: 320px;
    height: 320px;
  }
  .kundli-center-img {
    width: 100px;
    height: 100px;
    font-size: 45px;
  }
  .trust-banner {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .reports-container,
  .services-container,
  .courses-container {
    grid-template-columns: 1fr;
  }
  .report-meta,
  .course-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .mentor-frame {
    width: 300px;
    height: 350px;
  }
  .mentor-bullets { grid-template-columns: 1fr; }
  .testimonial-slide { padding: 0 12px; }
  .testimonial-card { padding: 42px 24px; }
  .testimonial-text { font-size: 18px; }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
