/* ============================================================
   O SOLE MIO — Mediteranska trgovina
   Skupni dizajn sistem
   ============================================================ */

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

@font-face {
  font-family: 'Milestone';
  src: url('./milestone/MilestoneFreeVersion-Script.otf');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Mediteranska paleta */
  --sand:       #F5F0E8;
  --sand-deep:  #ECE3D4;
  --sand-line:  #E2D7C3;
  --white:      #FFFFFF;
  --cream:      #FBF8F2;

  --navy:       #1A3A5C;
  --navy-deep:  #122B45;
  --navy-soft:  #2C5274;

  --olive:      #0F6E56;
  --olive-deep: #0B5544;

  --amber:      #EF9F27;
  --amber-soft: #F6BE5E;
  --terracotta: #C9714A;

  --ink:        #233140;
  --ink-soft:   #5A6470;
  --muted:      #8C8475;

  /* Tipografija */
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --milestone: 'Milestone', cursive;

  /* Oblike */
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(26,58,92,.06);
  --shadow-md: 0 14px 36px rgba(26,58,92,.10);
  --shadow-lg: 0 28px 70px rgba(26,58,92,.16);

  --maxw: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Tipografski razredi ---------- */
.serif { font-family: var(--serif); }

h1, h2, h3, h4, .section-title, .hero h1, .editorial__card h2, .gift-teaser__text h2 {
  font-family: 'Milestone', cursive !important;
  font-weight: normal;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}

.display {
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 600;
  line-height: .98;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--amber);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.light { color: var(--amber-soft); }

.lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 400;
  text-wrap: pretty;
}

/* ---------- Postavitev ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.bg-sand  { background: var(--sand); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-deep  { background: var(--sand-deep); }

.section-head { max-width: 640px; margin-bottom: clamp(36px, 4vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.page-head { padding-block: clamp(40px, 6vw, 72px) clamp(28px, 3vw, 40px); }
.page-head h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
.page-head .lead { max-width: 560px; margin-top: 14px; }
.section-title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
.row-between { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ---------- Gumbi ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 15px 30px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  transition: background .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 0 6px 18px rgba(26,58,92,.18);
}
.btn:hover { background: var(--olive); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(15,110,86,.26); }
.btn:active { transform: translateY(0); }

.btn--amber { background: var(--amber); color: var(--navy-deep); box-shadow: 0 6px 18px rgba(239,159,39,.3); }
.btn--amber:hover { background: var(--olive); color: var(--white); }

.btn--ghost {
  background: transparent; color: var(--navy);
  box-shadow: inset 0 0 0 1.5px rgba(26,58,92,.32);
}
.btn--ghost:hover { background: var(--navy); color: var(--white); box-shadow: inset 0 0 0 1.5px var(--navy); }

.btn--light {
  background: var(--cream); color: var(--navy);
}
.btn--light:hover { background: var(--white); color: var(--olive); }

.btn--sm { padding: 11px 20px; font-size: .82rem; }
.btn--block { width: 100%; }

.textlink {
  font-weight: 700; font-size: .9rem; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px; letter-spacing: .02em;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.textlink .arrow { transition: transform .3s var(--ease); }
.textlink:hover { color: var(--olive); gap: 12px; }

/* ---------- Slikovni placeholderji (mediteranski toni) ---------- */
.ph {
  position: relative;
  overflow: hidden;
  background: var(--sand-deep);
  display: flex; align-items: center; justify-content: center;
  isolation: isolate;
}
.ph::after { /* zrnatost */
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .14;
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.ph__label {
  display: none !important;
  position: relative; z-index: 2;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
  text-align: center;
  padding: 8px 14px;
  display: inline-flex; align-items: center; gap: 9px;
  text-shadow: 0 1px 8px rgba(0,0,0,.25);
}
.ph__label::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.7); box-shadow: 0 0 0 4px rgba(255,255,255,.18);
}
.ph--grove   { background: radial-gradient(120% 100% at 75% 12%, #f7d488 0%, rgba(247,212,136,0) 46%), linear-gradient(158deg, #93a86d 0%, #5c7a48 70%, #4a6839 100%); }
.ph--sea     { background: radial-gradient(120% 90% at 70% 10%, #f6e6c2 0%, rgba(246,230,194,0) 44%), linear-gradient(160deg, #8fc0cc 0%, #4d8aa0 68%, #356d83 100%); }
.ph--village { background: radial-gradient(120% 90% at 30% 8%, #f4e7c6 0%, rgba(244,231,198,0) 42%), linear-gradient(162deg, #e7b079 0%, #cd7e54 66%, #b15f3e 100%); }
.ph--table   { background: radial-gradient(110% 100% at 60% 18%, #fbeccb 0%, rgba(251,236,203,0) 52%), linear-gradient(155deg, #f0d6a6 0%, #e0b878 72%, #cf9f5f 100%); }
.ph--portrait{ background: radial-gradient(110% 90% at 50% 20%, #e7dcca 0%, rgba(231,220,202,0) 60%), linear-gradient(160deg, #d8c8ad 0%, #b6a585 100%); }
.ph--product { background: linear-gradient(158deg, #f3ebdb 0%, #e6d9bf 100%); }
.ph--olive2  { background: radial-gradient(120% 100% at 20% 10%, #f7d488 0%, rgba(247,212,136,0) 40%), linear-gradient(150deg, #4a6839 0%, #2f4a26 100%); }
.ph--navy    { background: radial-gradient(120% 100% at 80% 10%, #2f5b80 0%, rgba(47,91,128,0) 50%), linear-gradient(155deg, #1f456b 0%, #122B45 100%); }
.ph--wine    { background: radial-gradient(120% 90% at 70% 12%, #e8b27a 0%, rgba(232,178,122,0) 44%), linear-gradient(160deg, #7c3b3f 0%, #532229 100%); }

.ph__label--corner { position: absolute; left: 18px; bottom: 16px; padding: 7px 12px; background: rgba(18,43,69,.34); backdrop-filter: blur(3px); border-radius: var(--r-pill); }

.ph--product .ph__label { color: rgba(80,68,48,.55); text-shadow: none; }
.ph--product .ph__label::before { background: rgba(80,68,48,.4); box-shadow: 0 0 0 4px rgba(80,68,48,.1); }
.ph--portrait .ph__label { color: rgba(60,52,40,.62); text-shadow: none; }
.ph--portrait .ph__label::before { background: rgba(60,52,40,.45); box-shadow: 0 0 0 4px rgba(60,52,40,.12); }

/* ============================================================
   NAVIGACIJA
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--sand-line);
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-bottom-color 0.4s ease;
}
.nav--fixed {
  position: fixed;
  width: 100%;
}
.nav--transparent {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom-color: transparent !important;
}
.nav--transparent .nav__links a {
  color: var(--white) !important;
}
.nav--transparent .nav__links a:hover {
  color: var(--amber) !important;
}
.nav--transparent .nav__links a.is-active {
  color: var(--white) !important;
}
.nav--transparent .nav__links a.is-active::after {
  background: var(--amber) !important;
}
.nav__inner {
  max-width: 100%; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 78px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__sun {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #ffd980 0%, var(--amber) 55%, #d9871a 100%);
  box-shadow: 0 0 0 5px rgba(239,159,39,.16);
  flex: none;
}
.brand__name {
  font-family: var(--serif); font-weight: 600; font-size: 1.55rem;
  color: var(--navy); line-height: 1; letter-spacing: .01em;
}
.brand__name em { font-style: italic; color: var(--olive); }

.nav__links { display: flex; align-items: center; gap: 6px; margin-left: auto; margin-right: 12px; }
.nav__links a {
  font-weight: 600; font-size: .94rem; color: var(--ink);
  padding: 9px 15px; border-radius: var(--r-pill);
  transition: color .25s var(--ease), background .25s var(--ease);
  position: relative;
}
.nav__links a:hover { color: var(--olive); }
.nav__links a.is-active { color: var(--navy); }
.nav__links a.is-active::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 2px; height: 2px;
  background: var(--amber); border-radius: 2px;
}

.nav__right { display: flex; align-items: center; gap: 8px; }
.iconbtn {
  width: 44px; height: 44px; border-radius: 50%;
  border: none; background: transparent; color: var(--navy);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative; transition: background .25s var(--ease);
}
.iconbtn:hover { background: rgba(26,58,92,.08); }
.iconbtn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: 4px; right: 4px;
  min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--amber); color: var(--navy-deep);
  font-size: .68rem; font-weight: 800; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--sand);
}
.nav__burger { display: none; }

/* Mobilni meni */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  background: var(--cream);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
  padding: 26px var(--gutter);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 38px; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 2rem; font-weight: 500; color: var(--navy);
  padding: 10px 0; border-bottom: 1px solid var(--sand-line);
}
.mobile-menu nav a:hover { color: var(--olive); }
.mobile-menu__foot { margin-top: auto; color: var(--ink-soft); font-size: .9rem; }

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.grid { display: grid; gap: clamp(18px, 2vw, 30px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
  border: 1px solid rgba(226,215,195,.6);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.product__media { position: relative; aspect-ratio: 4/5; }
.product__media .ph { position: absolute; inset: 0; }
.product__cat {
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(251,248,242,.92); color: var(--olive);
  font-size: .64rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.product__body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.product__name { font-size: 1.4rem; font-weight: 600; margin-bottom: 4px; }
.product__desc { font-size: .9rem; color: var(--ink-soft); margin: 0 0 16px; line-height: 1.5; }
.product__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { font-family: var(--serif); font-size: 1.6rem; font-weight: 600; color: var(--navy); white-space: nowrap; }
.price small { font-size: .9rem; }

.add-btn {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: var(--navy); color: #fff; border: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.add-btn svg { width: 20px; height: 20px; }
.add-btn:hover { background: var(--olive); transform: scale(1.08) rotate(90deg); }

/* Ni na voljo */
.card.is-out .product__media .ph { filter: grayscale(.55) brightness(.96); }
.badge-out {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  background: var(--navy-deep); color: #fff;
  font-size: .62rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.card.is-out .add-btn { background: var(--sand-deep); color: var(--muted); pointer-events: none; }
.card.is-out .add-btn:hover { transform: none; }
.card.is-out .price { color: var(--muted); }

/* ============================================================
   PRODUCER CARD
   ============================================================ */
.producer {
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(226,215,195,.6);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.producer:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.producer__media { aspect-ratio: 5/4; position: relative; }
.producer__media .ph { position: absolute; inset: 0; }
.producer__flag {
  position: absolute; bottom: 14px; left: 14px; z-index: 3;
  background: rgba(18,43,69,.78); color: #fff; backdrop-filter: blur(4px);
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  padding: 7px 13px; border-radius: var(--r-pill);
  display: inline-flex; align-items: center; gap: 7px;
}
.producer__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.producer__name { font-size: 1.7rem; margin-bottom: 6px; }
.producer__region { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.producer__story { color: var(--ink-soft); font-size: .96rem; margin: 0 0 20px; flex: 1; }

/* ============================================================
   GIFT BOX CARD
   ============================================================ */
.giftbox {
  background: var(--cream); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--sand-line); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex; flex-direction: column;
}
.giftbox:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.giftbox__top { position: relative; aspect-ratio: 16/10; }
.giftbox__top .ph { position: absolute; inset: 0; }
.giftbox__tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: var(--amber); color: var(--navy-deep);
  font-size: .64rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--r-pill);
}
.giftbox__body { padding: 26px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.giftbox__name { font-size: 1.85rem; margin-bottom: 16px; }
.giftbox__list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.giftbox__list li { display: flex; gap: 11px; font-size: .95rem; color: var(--ink-soft); }
.giftbox__list li::before {
  content: ""; flex: none; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%;
  background: var(--olive);
}
.giftbox__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; border-top: 1px solid var(--sand-line); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-deep); color: rgba(245,240,232,.7); padding-block: clamp(56px, 7vw, 90px) 36px; }
.footer .brand__name { color: var(--cream); }
.footer__grid { display: grid; grid-template-columns: 1fr max-content max-content; gap: 80px; }
.footer__about { max-width: 320px; margin: 18px 0 22px; font-size: .96rem; line-height: 1.7; }
.footer h4 { color: var(--cream); font-family: var(--sans) !important; font-size: .76rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 20px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li { font-size: .96rem; color: rgba(245,240,232,.7); transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--amber-soft); }
.footer__social { display: flex; gap: 12px; margin-top: 6px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(245,240,232,.22);
  display: inline-flex; align-items: center; justify-content: center; color: var(--cream);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.footer__social a:hover { background: var(--amber); border-color: var(--amber); color: var(--navy-deep); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom {
  max-width: var(--maxw); margin: 48px auto 0; padding: 26px var(--gutter) 0;
  border-top: 1px solid rgba(245,240,232,.14);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(245,240,232,.5);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 120%);
  background: var(--navy-deep); color: var(--cream);
  padding: 14px 22px; border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg); z-index: 300;
  display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .92rem;
  transition: transform .45s var(--ease);
}
.toast.show { transform: translate(-50%, 0); }
.toast .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--olive); display: inline-flex; align-items: center; justify-content: center; }
.toast .dot svg { width: 13px; height: 13px; color: #fff; }

/* ============================================================
   UTILITY / ANIM
   ============================================================ */
.reveal { animation: osmRise .6s var(--ease) both; }
@keyframes osmRise { from { transform: translateY(14px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
  * { scroll-behavior: auto; }
}
/* Med zajemom posnetkov onemogočimo animacije, da ni artefaktov */
html.no-anim .reveal { animation: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 1040px) {
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
}
@media (max-width: 900px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .section { padding-block: clamp(48px, 12vw, 80px); }
  .nav__inner { height: 66px; }
  .brand__name { font-size: 1.3rem; }
  .brand__sun { width: 28px; height: 28px; }
}


/* ---- Logo Image ---- */
.brand__img { height: 52px; width: auto; display: block; object-fit: contain; }
@media (max-width: 800px) { .brand__img { height: 32px; } }

/* ---- FAQ Accordion ---- */
.faq-container {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--sand-line);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.faq-item:hover {
  border-color: var(--amber-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.06);
}
.faq-item[open] {
  border-color: var(--olive);
  box-shadow: 0 8px 24px rgba(27, 42, 74, 0.08);
}
.faq-question {
  padding: 24px 32px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none !important;
  position: relative;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:focus, .faq-question:active {
  outline: none !important;
}
/* Hide default details markers completely */
.faq-question::-webkit-details-marker { display: none !important; }
.faq-question::marker { display: none !important; content: "" !important; }

.faq-question::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--olive);
  transition: transform 0.3s ease, color 0.3s ease;
  font-weight: 300;
  margin-left: 20px;
}
.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--amber);
}
.faq-answer {
  padding: 0 32px 28px 32px;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.7;
  border-top: 1px solid rgba(226, 215, 195, 0.3);
  margin-top: 0;
  padding-top: 20px;
}
