/*
  Tattvana Website Styles
  -----------------------
  This stylesheet keeps the brand look consistent across every page.
  Edit the CSS variables below to change colors globally.
*/

:root {
  --cream: #fff8ea;
  --cream-2: #f8efdf;
  --paper: #fffdf7;
  --green: #425039;
  --green-dark: #063f31;
  --green-soft: #dcebd8;
  --gold: #d7a66b;
  --red: #b31921;
  --tomato: #c8192b;
  --orange: #d87526;
  --pink: #ee737b;
  --brown: #7c3f22;
  --ink: #25231f;
  --muted: #6e6a60;
  --line: #e6dac5;
  --shadow: 0 18px 45px rgba(36, 30, 20, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
}

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

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

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  color: var(--ink);
}

h1,
h2,
.logo-word,
.brand-serif {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.announcement {
  background: var(--green-dark);
  color: #fff;
  font-size: 0.92rem;
}

.announcement .container {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.announcement a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.icon-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 1.1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 234, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-text {
  display: grid;
}

.logo-word {
  font-size: 1.75rem;
  color: var(--green);
  letter-spacing: -0.02em;
}

.logo-tagline {
  color: #8f2026;
  font-size: 0.82rem;
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-weight: 700;
  color: #514b42;
}

.nav-menu a {
  position: relative;
  padding: 0.4rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--green-dark);
  color: #fff;
  box-shadow: 0 12px 28px rgba(6, 63, 49, 0.2);
}

.btn-primary:hover {
  background: #0b4e3c;
}

.btn-secondary {
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 12px 28px rgba(179, 25, 33, 0.18);
}

.btn-outline {
  border-color: rgba(6, 63, 49, 0.26);
  color: var(--green-dark);
  background: rgba(255, 253, 247, 0.86);
}

.btn-soft {
  background: rgba(215, 166, 107, 0.16);
  color: #6b3f13;
  border-color: rgba(215, 166, 107, 0.28);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 54px;
}

.hero::before,
.hero::after,
.wave::before,
.wave::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
  z-index: -1;
}

.hero::before {
  width: 360px;
  height: 360px;
  background: var(--green-dark);
  top: -180px;
  left: -110px;
}

.hero::after {
  width: 300px;
  height: 300px;
  background: var(--tomato);
  bottom: -160px;
  right: -90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  letter-spacing: -0.05em;
  max-width: 760px;
}

.hero h1 span {
  color: var(--green);
}

.hero-copy {
  max-width: 650px;
  color: #4d473d;
  font-size: 1.14rem;
  margin: 22px 0 28px;
}

.hero-actions,
.section-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-card {
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.1);
  border-radius: 42px;
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 90px;
  height: 90px;
  background: var(--green-soft);
  border-radius: 50%;
  z-index: 0;
}

.hero-product-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.stack-card {
  border-radius: 28px;
  background: var(--cream-2);
  padding: 18px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-card img {
  max-height: 250px;
  object-fit: contain;
}

.stack-card.big {
  grid-column: span 2;
  min-height: 260px;
  background: linear-gradient(130deg, #fce9dc, #fff8ea);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.trust-item {
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: var(--radius-md);
  padding: 16px;
}

.trust-item strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.12rem;
}

.section {
  padding: 74px 0;
}

.section.alt {
  background: rgba(255, 253, 247, 0.68);
  border-top: 1px solid rgba(66, 80, 57, 0.08);
  border-bottom: 1px solid rgba(66, 80, 57, 0.08);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 34px;
}

.section-header.center {
  text-align: center;
  display: block;
  max-width: 760px;
  margin-inline: auto;
}

.section h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.045em;
  color: var(--green-dark);
}

.section-intro {
  color: var(--muted);
  max-width: 650px;
  font-size: 1.04rem;
}

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

.category-card {
  min-height: 260px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.1);
  box-shadow: 0 18px 40px rgba(50, 41, 30, 0.08);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.category-card::after {
  content: "";
  width: 180px;
  height: 180px;
  position: absolute;
  right: -60px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(215, 166, 107, 0.22);
}

.category-card h3 {
  font-size: 2.2rem;
  color: var(--green-dark);
  margin: 8px 0 12px;
}

.category-card p {
  color: var(--muted);
  max-width: 290px;
}

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

.product-card {
  background: var(--paper);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(66, 80, 57, 0.1);
  box-shadow: 0 18px 42px rgba(36, 30, 20, 0.08);
}

.product-image-wrap {
  background: var(--cream-2);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.product-image-wrap img {
  max-height: 310px;
  object-fit: contain;
}

.product-card-body {
  padding: 24px;
}

.product-card h3 {
  font-size: 1.65rem;
  color: var(--green-dark);
  margin: 2px 0 10px;
}

.product-card p {
  color: var(--muted);
}

.product-mint .product-image-wrap {
  background: #e5f0dc;
}

.product-tomato .product-image-wrap,
.product-peri .product-image-wrap {
  background: #fde5da;
}

.product-sendha .product-image-wrap {
  background: #fde7e9;
}

.product-granola .product-image-wrap,
.product-namkeen .product-image-wrap {
  background: #f6ead8;
}

.rating-label {
  color: #bd7b23;
  font-weight: 900;
  margin: 12px 0;
  font-size: 0.92rem;
}

.rating-label span {
  color: var(--muted);
  font-weight: 700;
}

.mini-list {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-list li {
  border: 1px solid rgba(66, 80, 57, 0.12);
  background: #fffaf0;
  color: var(--green-dark);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

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

.step-card {
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px;
  min-height: 220px;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: #fff;
  font-weight: 900;
  margin-bottom: 24px;
}

.step-card h3 {
  font-size: 1.35rem;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.panel {
  background: var(--paper);
  border-radius: 36px;
  border: 1px solid rgba(66, 80, 57, 0.11);
  box-shadow: var(--shadow);
  padding: 32px;
}

.panel.green {
  background: var(--green-dark);
  color: #fff;
}

.panel.green h2,
.panel.green h3 {
  color: #fff;
}

.panel.green p,
.panel.green li {
  color: rgba(255, 255, 255, 0.82);
}

.feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

.feature-list li::before {
  content: "✓";
  color: var(--green-dark);
  font-weight: 900;
}

.panel.green .feature-list li {
  border-color: rgba(255, 255, 255, 0.15);
}

.panel.green .feature-list li::before {
  color: var(--gold);
}

.logo-showcase {
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border-radius: 36px;
  min-height: 430px;
  padding: 40px;
}

.logo-showcase img {
  max-width: 430px;
  mix-blend-mode: multiply;
}

.order-frame {
  width: 100%;
  min-height: 780px;
  border: 0;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(66, 80, 57, 0.12);
  box-shadow: 0 12px 28px rgba(36, 30, 20, 0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}

th,
td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

th {
  color: var(--green-dark);
  background: #fff8ea;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  color: #4b463d;
}

td a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
}

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

.review-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(66, 80, 57, 0.11);
  padding: 26px;
}

.review-card .stars {
  color: #bd7b23;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.cta-band {
  background: var(--green-dark);
  color: #fff;
  border-radius: 42px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-band::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(215, 166, 107, 0.18);
  right: -90px;
  bottom: -130px;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
}

.site-footer {
  background: #17221b;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0 24px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-logo {
  width: 92px;
  border-radius: 50%;
  margin-bottom: 14px;
}

.footer-grid h3,
.footer-grid h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.page-hero {
  padding: 70px 0 44px;
  background: linear-gradient(135deg, #fff8ea 0%, #f7ead4 100%);
  border-bottom: 1px solid rgba(66, 80, 57, 0.1);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.05em;
  color: var(--green-dark);
  max-width: 920px;
}

.page-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

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

.contact-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(66, 80, 57, 0.1);
  padding: 26px;
}

.contact-card strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.notice {
  background: #fff8e8;
  border: 1px solid #ebd5ad;
  border-radius: 18px;
  padding: 16px;
  color: #6d4a16;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .category-grid,
  .process-grid,
  .review-grid,
  .contact-grid,
  .footer-grid,
  .trust-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 12px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-actions .btn-outline {
    display: none;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, var(--max));
  }

  .announcement .container,
  .footer-bottom,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-product-stack,
  .product-grid,
  .category-grid,
  .process-grid,
  .review-grid,
  .contact-grid,
  .footer-grid,
  .trust-row {
    grid-template-columns: 1fr;
  }

  .stack-card.big {
    grid-column: auto;
  }

  .brand {
    min-width: auto;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .logo-word {
    font-size: 1.35rem;
  }

  .logo-tagline {
    display: none;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .cta-band,
  .panel {
    padding: 26px;
    border-radius: 28px;
  }

  .order-frame {
    min-height: 940px;
  }
}

/* Launch updates: product pricing, address line and marketplace-style sections */
.product-badge {
  display: inline-flex;
  width: fit-content;
  margin: 8px 0 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(215, 166, 107, 0.16);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 12px 0 4px;
}

.price-row strong {
  color: var(--red);
  font-size: 1.2rem;
}

.price-row span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.promise-grid .review-card h3 {
  color: var(--green-dark);
  font-size: 1.45rem;
  margin-bottom: 10px;
}

.footer-address {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
}

.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}


/* Responsive polish added for launch testing.
   These rules improve phone/tablet use, tap targets, horizontal scrolling, and focus states. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

:focus-visible {
  outline: 3px solid rgba(215, 166, 107, 0.95);
  outline-offset: 4px;
  border-radius: 10px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: #fff;
  color: var(--green-dark);
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 900;
}

.skip-link:focus {
  left: 12px;
}

.nav-menu a,
.btn,
.menu-toggle {
  min-height: 44px;
}

.product-image-wrap img,
.stack-card img,
.logo-showcase img {
  width: 100%;
  height: auto;
}

@media (max-width: 820px) {
  .announcement .container {
    align-items: flex-start;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-card {
    border-radius: 30px;
    padding: 20px;
  }

  .product-image-wrap {
    min-height: 250px;
  }

  .product-image-wrap img {
    max-height: 235px;
  }

  .stack-card {
    min-height: 180px;
  }

  .stack-card.big {
    min-height: 220px;
  }

  .section {
    padding: 52px 0;
  }
}

@media (max-width: 520px) {
  .announcement {
    font-size: 0.82rem;
  }

  .announcement .container {
    gap: 8px;
    padding: 8px 0;
  }

  .nav {
    min-height: 70px;
  }

  .nav-menu {
    top: 70px;
    left: 10px;
    right: 10px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .logo-word {
    font-size: 1.18rem;
  }

  .menu-toggle {
    padding: 9px 11px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.2rem);
    letter-spacing: -0.04em;
  }

  .hero-copy,
  .page-hero p,
  .section-intro {
    font-size: 1rem;
  }

  .hero-actions,
  .section-actions,
  .product-actions {
    width: 100%;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .product-actions .btn,
  .contact-card .btn,
  .cta-band .btn {
    width: 100%;
  }

  .product-card {
    border-radius: 24px;
  }

  .product-card-body {
    padding: 20px;
  }

  .product-image-wrap {
    min-height: 220px;
    padding: 18px;
  }

  .product-image-wrap img {
    max-height: 210px;
  }

  .trust-item,
  .category-card,
  .step-card,
  .review-card,
  .contact-card {
    padding: 20px;
  }

  .table-wrap {
    border-radius: 18px;
  }

  th,
  td {
    padding: 12px;
    font-size: 0.92rem;
  }

  .footer-grid a {
    padding: 4px 0;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 18px, var(--max));
  }

  .btn {
    padding: 11px 15px;
    font-size: 0.94rem;
  }
}


/* v4 UI additions: product filters, FAQ accordions, and clearer category links. */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link::after {
  content: "→";
}

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -10px 0 28px;
}

.filter-chip {
  border: 1px solid rgba(6, 63, 49, 0.22);
  background: var(--paper);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
  cursor: pointer;
  min-height: 44px;
  transition: 0.18s ease;
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.faq-section {
  align-items: start;
}

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

.faq-item {
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(36, 30, 20, 0.06);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  color: var(--green-dark);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(215, 166, 107, 0.2);
  color: var(--green-dark);
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--muted);
}

@media (max-width: 520px) {
  .category-filter,
  .filter-chip {
    width: 100%;
  }

  .filter-chip {
    justify-content: center;
  }

  .faq-item summary {
    padding: 16px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }
}


/* Marketing video + Instagram QR additions */
.video-section {
  align-items: center;
}

.video-card {
  background: var(--paper);
  border: 1px solid rgba(66, 80, 57, 0.12);
  border-radius: 36px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
  display: block;
  border-radius: 26px;
  background: #000;
  aspect-ratio: 16 / 9;
}

.contact-qr {
  width: min(100%, 240px);
  border-radius: 18px;
  margin: 12px 0 18px;
  border: 1px solid rgba(66, 80, 57, 0.12);
  box-shadow: 0 12px 28px rgba(36, 30, 20, 0.08);
}
