/* SatvikCult — eco-premium organic food theme */
:root {
  --green-950: #0c1810;
  --green-900: #13261a;
  --green-800: #1a3525;
  --green-700: #224632;
  --green-600: #2d5a41;
  --green-500: #3a734f;
  --sage: #a3bfa3;
  --mint: #c5dcc0;
  --lime: #dce9c8;
  --cream: #f6f3eb;
  --warm: #faf8f3;
  --white: #ffffff;
  --text: #1e2b22;
  --muted: #5c6b61;
  --border: rgba(26, 53, 37, 0.12);
  --shadow-sm: 0 8px 24px rgba(12, 24, 16, 0.06);
  --shadow-md: 0 18px 48px rgba(12, 24, 16, 0.1);
  --shadow-lg: 0 28px 80px rgba(12, 24, 16, 0.14);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--green-700);
}

a:hover {
  color: var(--green-600);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--green-900);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus {
  left: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--green-950);
  font-weight: 600;
  line-height: 1.15;
}

p {
  margin: 0 0 1rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(246, 243, 235, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo {
  height: 46px;
  width: auto;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green-900);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
}

.site-nav a {
  text-decoration: none;
  color: var(--green-800);
  font-weight: 500;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-600);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white) !important;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.site-nav__cta:hover {
  filter: brightness(1.05);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--green-900);
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--green-900);
}
.nav-toggle span::before {
  top: -6px;
}
.nav-toggle span::after {
  top: 6px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    background: rgba(246, 243, 235, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }
  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 14px 12px;
    border-radius: 12px;
  }
  .site-nav a:hover {
    background: rgba(61, 115, 79, 0.08);
  }
  .site-nav__cta {
    justify-content: center;
    margin-top: 8px;
  }
}

body.nav-open {
  overflow: hidden;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--lime), var(--mint));
  color: var(--green-950);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--green-700);
  color: var(--white);
}

.btn-sm:hover {
  filter: brightness(1.06);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: center;
  padding: clamp(48px, 10vw, 120px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: brightness(0.52) saturate(1.12) contrast(1.05);
}

/* Local wheat-field photography — path relative to site root */
.hero__bg--wheat {
  background-image: url("/images/wheat-farm.jpg");
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 20% 40%, rgba(26, 53, 37, 0.25) 0%, transparent 55%),
    linear-gradient(
      115deg,
      rgba(8, 22, 14, 0.92) 0%,
      rgba(18, 42, 28, 0.72) 42%,
      rgba(12, 28, 18, 0.55) 100%
    );
}

.hero__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 20%, transparent 0%, rgba(6, 14, 10, 0.45) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__product-list {
    text-align: left;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__title {
  margin: 18px 0 16px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--white);
  font-weight: 700;
}

.hero__title em {
  font-style: italic;
  color: var(--lime);
}

.hero__lead {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
}

@media (max-width: 960px) {
  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero right column: plain-language product snapshot */
.hero__aside {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 4vw, 36px);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero__aside-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero__aside-lead {
  margin: 0 0 18px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.hero__product-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__product-list li {
  padding: 0;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.hero__product-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
  outline: none;
}

.hero__product-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero__product-link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.hero__product-list img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero__product-list .hero__product-text strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.hero__product-list .hero__product-text span {
  display: block;
  font-size: 0.81rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.76);
}

.hero__aside-foot {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(72px, 12vw, 120px) clamp(20px, 5vw, 72px);
}

.section--soft {
  background: linear-gradient(180deg, var(--warm) 0%, var(--cream) 100%);
}

.section--deep {
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-950) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.section--deep h2,
.section--deep h3 {
  color: var(--white);
}

.section__header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section--deep .section-label {
  color: var(--mint);
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section--deep .section-intro {
  color: rgba(255, 255, 255, 0.78);
}

/* About split */
.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

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

.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual__accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: min(42%, 220px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-md);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

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

.value-card {
  padding: 18px 18px 16px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.value-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-800);
  margin-bottom: 6px;
}

.value-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* Products */
.products-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(28px, 4vw, 40px);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-800);
}

.product-card__body {
  padding: clamp(22px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__body h3 {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
}

.product-card__body > p:first-of-type {
  color: var(--muted);
  font-size: 0.98rem;
}

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

.product-highlights li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.93rem;
}

.product-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}

.product-highlights strong {
  color: var(--green-800);
}

.product-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price-note {
  font-weight: 700;
  color: var(--green-700);
  font-size: 0.92rem;
}

.disclaimer-box {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(61, 115, 79, 0.08);
  border: 1px solid rgba(61, 115, 79, 0.15);
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.product-gallery {
  max-width: 980px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.product-gallery img {
  border-radius: var(--radius);
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Feature strip */
.strip {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.strip-card {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--white);
}

.strip-card p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
}

/* How it works */
.steps {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.step {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-900);
  background: var(--lime);
  margin-bottom: 14px;
}

.step h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

/* CTA band */
.cta-band {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 48px);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.88);
}

/* FAQ */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

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

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--green-900);
  list-style: none;
}

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

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(56px, 10vw, 88px) clamp(20px, 5vw, 72px) 28px;
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(28px, 5vw, 48px);
}

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

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

.footer-brand h3 {
  margin: 0 0 12px;
  font-size: 1.65rem;
  color: var(--lime);
}

.footer-brand p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  font-family: var(--font-sans);
  font-weight: 700;
}

.footer-col a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
}

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

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  color: var(--white);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  max-width: 1180px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ---------- Legal / inner pages ---------- */
.page-hero {
  padding: clamp(48px, 8vw, 72px) clamp(20px, 5vw, 72px) 32px;
  background: linear-gradient(180deg, var(--warm), var(--cream));
  border-bottom: 1px solid var(--border);
}

.page-hero__inner {
  max-width: 820px;
  margin: 0 auto;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
}

.page-hero .lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.policy-container {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px) clamp(20px, 5vw, 72px) 80px;
}

.policy-container h2 {
  margin: 36px 0 14px;
  font-size: 1.35rem;
}

.policy-container h3 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--green-800);
}

.policy-container ul,
.policy-container ol {
  margin: 0 0 1rem 1.25rem;
  color: var(--muted);
}

.policy-container li {
  margin-bottom: 8px;
}

.policy-container .updated {
  font-size: 0.88rem;
  color: var(--muted);
}

.notice-box {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(61, 115, 79, 0.09);
  border: 1px solid rgba(61, 115, 79, 0.18);
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 24px;
}

/* ---------- 404 ---------- */
.error-wrap {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  padding: 48px 20px 80px;
}

.error-card {
  max-width: 480px;
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.error-card .section-label {
  margin-bottom: 12px;
}

.error-card h1 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.error-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

/* ---------- Cookie banner ---------- */
#cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9500;
  max-width: min(560px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
  padding: 18px 20px;
  display: none;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

#cookie-banner.is-visible {
  display: flex;
}

#cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.55;
}

#cookie-banner a {
  font-weight: 600;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

#cookie-banner button {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  font-family: inherit;
  background: var(--green-700);
  color: var(--white);
  transition: filter 0.2s ease;
}

#cookie-banner button:hover {
  filter: brightness(1.06);
}

#cookie-banner button:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 2px;
}

.cookie-banner__reject {
  background: transparent !important;
  color: var(--green-800) !important;
  border: 2px solid var(--border) !important;
}
