/* ── Irene Moraldi — Psicologa Firenze ───────────────────────────────────── */
/* Palette: verde muschio caldo                                               */

:root {
  --im:       #5E7A5A;
  --im-dark:  #3C5A38;
  --im-mid:   #809C7C;
  --im-light: #C0D4BC;
  --im-pale:  #E4EEE2;
  --bg:       #FAF9F4;
  --beige:    #F0EBE0;
  --cipria:   #D4A898;
  --text:     #2A2A2A;
  --text-soft:#666666;
  --white:    #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* ── Overlay + Mobile Menu ───────────────────────────────────────────────── */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s ease; z-index: 200;
}
.overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
  background: var(--white); z-index: 300;
  transition: right 0.28s ease;
  padding: 5rem 2rem 2rem;
  box-shadow: -4px 0 20px rgba(0,0,0,0.12);
}
.mobile-menu.open { right: 0; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu nav a {
  font-family: Arial, sans-serif; font-size: 1rem;
  color: var(--im-dark); text-decoration: none; font-weight: 600;
}
.mobile-menu nav a:hover { color: var(--im); }
.mobile-menu-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: none; border: none; font-size: 1.4rem;
  color: var(--im-dark); cursor: pointer;
}

/* ── Navbar ──────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; gap: 2rem;
  padding: 1rem 2.5rem;
  background: rgba(250,249,244,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--im-light);
}
.nav-logo {
  font-family: Georgia, serif; font-size: 1.1rem;
  color: var(--im-dark); text-decoration: none; font-weight: 700;
  white-space: nowrap;
}
.nav-links {
  list-style: none; display: flex; gap: 2rem; margin-left: auto;
}
.nav-links a {
  font-family: Arial, sans-serif; font-size: 0.88rem;
  color: var(--text-soft); text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--im); }
.nav-links a.nav-active { color: var(--im); font-weight: 700; border-bottom: 2px solid var(--im); padding-bottom: 2px; }
.mobile-menu nav a.nav-active { color: var(--im); font-weight: 700; }

/* Rule #7: hamburger sempre a destra */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  margin-left: auto; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--im-dark); border-radius: 2px; transition: 0.3s;
}

/* ── Page body (copre il layer fixed dopo la hero) ──────────────────────── */
.page-body {
  background: var(--bg);
  position: relative;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
/*
 * Tecnica "fixed cover" (da isabella-pompignoli.sito):
 * .hero-bg è position:fixed z-index:-1 — resta immobile nel viewport.
 * .hero-outer è trasparente → la foto si vede attraverso.
 * Quando la sezione .info-strip (sfondo verde scuro) scorre in su,
 * copre fisicamente il layer fixed → effetto "foto scompare" senza JS.
 * Funziona su tutti i dispositivi incluso iOS Safari.
 */
.hero-outer {
  position: relative;
  background: transparent;
}
.hero-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: url('studio-3.jpg') center 58% / cover no-repeat;
  z-index: 0;
}
/* Overlay gradiente per leggibilità testo */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(250,249,244,0.65) 0%, rgba(250,249,244,0.30) 55%, rgba(250,249,244,0) 100%),
    linear-gradient(to bottom, rgba(250,249,244,0.40) 0%, rgba(250,249,244,0.55) 50%, rgba(250,249,244,0.75) 100%);
  z-index: 1;
}
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 3rem;
  padding: 7rem 2.5rem 4rem;
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-content { max-width: 520px; }
.hero-badge {
  display: inline-block;
  background: var(--im-pale); color: var(--im-dark);
  font-family: Arial, sans-serif; font-size: 0.82rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1.2rem; letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--im-dark); line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 0 24px rgba(250,249,244,0.9), 0 0 48px rgba(250,249,244,0.6);
}
.hero-quote {
  font-style: italic; font-size: 1.05rem;
  color: var(--im-dark); margin-bottom: 0.8rem;
  border-left: 3px solid var(--im);
  padding-left: 1rem;
  text-shadow: 0 0 20px rgba(250,249,244,0.95), 0 0 40px rgba(250,249,244,0.8);
}
.hero-sub {
  font-family: Arial, sans-serif; font-size: 0.92rem;
  color: var(--text); margin-bottom: 0.6rem; line-height: 1.6;
  font-style: italic;
  text-shadow: 0 0 20px rgba(250,249,244,0.95), 0 0 40px rgba(250,249,244,0.8);
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

.btn-primary {
  display: inline-block; padding: 0.75rem 1.8rem;
  background: var(--im); color: var(--white);
  font-family: Arial, sans-serif; font-size: 0.9rem; font-weight: 600;
  border-radius: 50px; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--im-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-block; padding: 0.75rem 1.8rem;
  border: 2px solid var(--im); color: var(--im);
  font-family: Arial, sans-serif; font-size: 0.9rem; font-weight: 600;
  border-radius: 50px; text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--im); color: var(--white); }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.blob-wrap { width: 100%; max-width: 480px; }
.hero-blob { width: 100%; height: auto; display: block; }
.hero-credential {
  font-family: Arial, sans-serif; font-size: 0.84rem;
  color: #555; margin-top: 0.5rem; line-height: 1.6;
  text-shadow: 0 0 16px rgba(250,249,244,1), 0 0 32px rgba(250,249,244,0.9);
}

/* ── Info Strip ──────────────────────────────────────────────────────────── */
.info-strip { background: var(--im-dark); padding: 3rem 2.5rem; }
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 900px; margin: 0 auto;
}
.info-card { text-align: center; color: var(--white); }
.info-card-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.info-card h3 {
  font-family: Arial, sans-serif; font-size: 0.82rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--im-light); margin-bottom: 0.4rem;
}
.info-card p {
  font-family: Arial, sans-serif; font-size: 0.85rem;
  color: rgba(255,255,255,0.85); line-height: 1.5;
}

/* ── Chi Sono ────────────────────────────────────────────────────────────── */
.chi-sono {
  display: grid; grid-template-columns: 1fr 320px; gap: 4rem;
  max-width: 1100px; margin: 0 auto;
  padding: 5rem 2.5rem;
}
.chi-sono-text h2 {
  font-size: 2rem; color: var(--im-dark); margin-bottom: 1.5rem;
}
.chi-sono-text p {
  font-size: 1rem; color: var(--text); margin-bottom: 1.2rem; line-height: 1.8;
}

/* Aside cards */
.chi-aside { display: flex; flex-direction: column; gap: 1.2rem; }

.free-badge {
  background: var(--im-pale); border: 2px solid var(--im-light);
  border-radius: 14px; padding: 1.4rem 1.2rem; text-align: center;
}
.free-badge h4 {
  font-family: Arial, sans-serif; font-size: 0.82rem; font-weight: 700;
  color: var(--im-dark); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.free-badge p {
  font-family: Arial, sans-serif; font-size: 0.88rem;
  color: var(--text-soft); line-height: 1.5;
}

.aside-card {
  background: var(--white); border: 1px solid var(--im-light);
  border-radius: 14px; padding: 1.2rem;
}
.aside-card h4 {
  font-family: Arial, sans-serif; font-size: 0.82rem; font-weight: 700;
  color: var(--im-dark); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.aside-card p {
  font-family: Arial, sans-serif; font-size: 0.85rem;
  color: var(--text-soft); line-height: 1.5;
}
.aside-big {
  font-size: 1.4rem; color: var(--im); margin-bottom: 0.3rem;
}

/* ── Aree ────────────────────────────────────────────────────────────────── */
.aree-section {
  background: var(--im-pale);
  padding: 5rem 2.5rem;
  text-align: center;
}
.section-label {
  font-family: Arial, sans-serif; font-size: 0.78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--im-mid); margin-bottom: 0.5rem;
}
.aree-section h2 {
  font-size: 2rem; color: var(--im-dark); margin-bottom: 0.7rem;
}
.section-sub {
  font-family: Arial, sans-serif; font-size: 0.92rem;
  color: var(--text-soft); max-width: 560px; margin: 0 auto 3rem;
  line-height: 1.6;
}
.aree-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
  max-width: 900px; margin: 0 auto;
}
.area-card {
  background: var(--white); border-radius: 16px;
  padding: 2rem 1.6rem; text-align: left;
  border: 1px solid rgba(192,212,188,0.5);
  transition: box-shadow 0.2s, transform 0.2s;
}
.area-card:hover { box-shadow: 0 6px 24px rgba(60,90,56,0.1); transform: translateY(-2px); }
.area-card-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.area-card h3 {
  font-size: 1.05rem; color: var(--im-dark); margin-bottom: 0.6rem;
}
.area-card p {
  font-family: Arial, sans-serif; font-size: 0.88rem;
  color: var(--text-soft); line-height: 1.6;
}
.area-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.area-tag {
  font-family: Arial, sans-serif; font-size: 0.72rem;
  background: var(--im-pale); color: var(--im-dark);
  padding: 0.2rem 0.6rem; border-radius: 50px;
}

/* ── Come Lavoro ─────────────────────────────────────────────────────────── */
.come-lavoro {
  padding: 5rem 2.5rem;
  max-width: 1100px; margin: 0 auto;
  text-align: center;
}
.come-lavoro h2 {
  font-size: 2rem; color: var(--im-dark); margin-bottom: 0.5rem;
}
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
  margin-top: 3rem; text-align: left;
}
.step { position: relative; padding-left: 1.5rem; }
.step::before {
  content: ''; position: absolute; left: 0; top: 0.3rem;
  width: 3px; height: calc(100% - 0.3rem);
  background: var(--im-light); border-radius: 2px;
}
.step-num {
  font-family: Arial, sans-serif; font-size: 0.78rem; font-weight: 700;
  color: var(--im); letter-spacing: 0.1em; margin-bottom: 0.5rem;
}
.step h3 { font-size: 1rem; color: var(--im-dark); margin-bottom: 0.5rem; }
.step p {
  font-family: Arial, sans-serif; font-size: 0.88rem;
  color: var(--text-soft); line-height: 1.6;
}
.miodottore-cta { margin-top: 3rem; }
.miodottore-badge {
  display: inline-block;
  background: var(--im-pale); color: var(--im-dark);
  font-family: Arial, sans-serif; font-size: 0.88rem; font-weight: 600;
  padding: 0.6rem 1.4rem; border-radius: 50px;
  text-decoration: none; transition: background 0.2s;
}
.miodottore-badge:hover { background: var(--im-light); }

/* ── Slider Recensioni ───────────────────────────────────────────────────── */
.recensioni-section {
  background: var(--im-dark); padding: 5rem 2.5rem;
  text-align: center;
}
.recensioni-section .section-label { color: var(--im-light); }
.recensioni-section h2 { color: var(--white); margin-bottom: 0.5rem; }
.recensioni-section .section-sub { color: rgba(255,255,255,0.7); margin-bottom: 3rem; }

.slider-wrap { max-width: 700px; margin: 0 auto; }
.slider-outer { position: relative; }
.slider-track {
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 100%; min-width: 0; box-sizing: border-box;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(192,212,188,0.25);
  border-radius: 16px; padding: 2rem;
  text-align: left;
}
.review-stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 0.8rem; }
.review-text {
  font-size: 1rem; color: rgba(255,255,255,0.9);
  line-height: 1.7; margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  font-family: Arial, sans-serif; font-size: 0.82rem;
  color: var(--im-light); font-weight: 600;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--im); color: var(--white);
  border: none; cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--im-mid); }
.slider-btn-prev { left: -21px; }
.slider-btn-next { right: -21px; }
.slider-dots { display: flex; justify-content: center; gap: 6px; margin-top: 1.2rem; }
.slider-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: background 0.2s;
}
.slider-dot.active { background: var(--white); }

/* ── Dove ────────────────────────────────────────────────────────────────── */
.dove-section {
  padding: 5rem 2.5rem; text-align: center;
}
.dove-section h2 { font-size: 2rem; color: var(--im-dark); margin-bottom: 0.5rem; }
.dove-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1000px; margin: 3rem auto 0;
}
.dove-grid-2 { grid-template-columns: 1fr 1fr; max-width: 680px; }

/* ── Slider foto studio ──────────────────────────────────────────────────── */
.studio-slider-wrap { max-width: 800px; margin: 3rem auto 0; }
.studio-slider-outer { position: relative; border-radius: 16px; overflow: hidden; }
.studio-track {
  display: flex;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.studio-track::-webkit-scrollbar { display: none; }
.studio-slide { flex: 0 0 100%; min-width: 0; box-sizing: border-box; }
.studio-slide img {
  width: 100%; height: 460px; object-fit: cover; display: block;
}
/* riuso slider-btn, slider-dot dal pattern canonico già in CSS */
.studio-slider-outer .slider-btn-prev { left: 12px; }
.studio-slider-outer .slider-btn-next { right: 12px; }
.studio-slider-outer .slider-btn { background: rgba(255,255,255,0.85); color: var(--im-dark); }
.studio-slider-outer .slider-btn:hover { background: rgba(255,255,255,1); }
.studio-slider-wrap .slider-dots .slider-dot { background: var(--im-light); }
.studio-slider-wrap .slider-dots .slider-dot.active { background: var(--im); }
.dove-card {
  background: var(--white); border: 1px solid var(--im-light);
  border-radius: 16px; padding: 2rem 1.5rem; text-align: left;
}
.dove-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.dove-card h3 { font-size: 1rem; color: var(--im-dark); margin-bottom: 0.8rem; }
.dove-card p {
  font-family: Arial, sans-serif; font-size: 0.88rem;
  color: var(--text-soft); line-height: 1.6;
}

/* ── Contatti ────────────────────────────────────────────────────────────── */
.contatti { background: var(--im-pale); padding: 5rem 2.5rem; }
.contatti h2 {
  font-size: 2rem; color: var(--im-dark);
  text-align: center; margin-bottom: 0.5rem;
}
.contatti > p {
  text-align: center; font-family: Arial, sans-serif;
  font-size: 0.92rem; color: var(--text-soft); margin-bottom: 3rem;
}
/* Rule #20 */
.contatti-wrap {
  display: grid; grid-template-columns: 1fr 360px; gap: 3rem;
  max-width: 1000px; margin: 0 auto;
}
.contatti-form { display: flex; flex-direction: column; gap: 0.8rem; }
/* Rule #18 */
.contatti-form input:not([type="checkbox"]),
.contatti-form select,
.contatti-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--im-light); border-radius: 8px;
  font-family: Arial, sans-serif; font-size: 0.9rem;
  background: var(--white); color: var(--text);
  transition: border-color 0.2s;
}
.contatti-form input:not([type="checkbox"]):focus,
.contatti-form select:focus,
.contatti-form textarea:focus {
  outline: none; border-color: var(--im);
}
.contatti-form select { cursor: pointer; }
.contatti-form textarea { resize: vertical; }
.hp-field { display: none !important; }
.gdpr-check {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-family: Arial, sans-serif; font-size: 0.82rem;
  color: var(--text-soft); cursor: pointer;
}
.gdpr-check input[type="checkbox"] {
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
}
.gdpr-check a { color: var(--im); }
.btn-submit {
  padding: 0.8rem 2rem; background: var(--im); color: var(--white);
  border: none; border-radius: 50px;
  font-family: Arial, sans-serif; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
.btn-submit:hover { background: var(--im-dark); }

.contatti-alt { display: flex; flex-direction: column; gap: 1.5rem; }
.contatti-direct h3 {
  font-size: 1rem; color: var(--im-dark); margin-bottom: 0.8rem;
}
/* Rule #20 */
.contatti-direct p {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline;
  font-family: Arial, sans-serif; font-size: 0.9rem;
  color: var(--text-soft); margin-bottom: 0.5rem;
}
.contatti-direct a { color: var(--im); word-break: break-all; }

.social-btns { display: flex; flex-direction: column; gap: 0.8rem; }
.social-btn {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.65rem 1.1rem; border-radius: 50px;
  font-family: Arial, sans-serif; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; transition: opacity 0.2s;
}
.social-btn:hover { opacity: 0.85; }
.btn-ig { background: #E1306C; color: #fff; }
.btn-md { background: #00A89D; color: #fff; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--im-dark); color: rgba(255,255,255,0.7);
  padding: 2rem 2.5rem; text-align: center;
  font-family: Arial, sans-serif; font-size: 0.82rem; line-height: 1.8;
}
footer a { color: var(--im-light); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 6rem; }
  .hero-ctas { justify-content: center; }
  /* Rule #4: hero photo order */
  .hero-visual { order: -1; }
  .hero-blob { max-width: 280px; }
  /* Rule #5: no SVG deco su mobile */
  .hero-blob .deco { display: none; }
  .hero-bg::before { background-position: center 48%; }

  .info-grid { grid-template-columns: 1fr 1fr; }
  .dove-grid-2 { grid-template-columns: 1fr 1fr; }
  .blob-wrap { max-width: 300px; }
  .studio-slide img { height: 310px; }
  .chi-sono { grid-template-columns: 1fr; }
  .chi-aside { flex-direction: row; flex-wrap: wrap; }
  .free-badge, .aside-card { flex: 1; min-width: 220px; }
  .aree-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .dove-grid { grid-template-columns: 1fr; }
  .dove-grid-2 { grid-template-columns: 1fr; }
  .contatti-wrap { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 600px) {
  .navbar { padding: 1rem 1.2rem; }
  .hero { padding: 5rem 1.2rem 2rem; }
  /* Rule #3: hero overflow visible — hero-outer trasparente, ok */
  .info-strip { padding: 2rem 1.2rem; }
  .info-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .info-grid .info-card:last-child { grid-column: 1 / -1; max-width: 260px; margin: 0 auto; }
  .chi-sono { padding: 3rem 1.2rem; }
  .chi-aside { flex-direction: column; }
  .aree-section { padding: 3rem 1.2rem; }
  .come-lavoro { padding: 3rem 1.2rem; }
  .studio-slide img { height: 250px; }
  .slider-btn-prev { left: -15px; }
  .slider-btn-next { right: -15px; }
  .studio-slider-outer .slider-btn-prev { left: 6px; }
  .studio-slider-outer .slider-btn-next { right: 6px; }
  .dove-section { padding: 3rem 1.2rem; }
  .contatti { padding: 3rem 1.2rem; }
  .contatti-wrap { grid-template-columns: 1fr; }
}

/* ── Cookie Banner ───────────────────────────────────────────────────────── */
#cookieBanner {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  width: calc(100% - 3rem); max-width: 700px;
  background: var(--white);
  border: 1px solid var(--im-light);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(60,90,56,0.13);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
  z-index: 9999;
  font-family: Arial, sans-serif; font-size: 0.85rem; color: var(--text-soft);
  line-height: 1.5;
}
#cookieBanner p { margin: 0; flex: 1; min-width: 200px; }
#cookieBanner a { color: var(--im); }
.cookie-btns { display: flex; gap: 0.6rem; flex-shrink: 0; }
#cookieAccept {
  background: var(--im); color: var(--white);
  border: none; border-radius: 50px;
  padding: 0.5rem 1.2rem; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
}
#cookieAccept:hover { background: var(--im-dark); }
#cookieReject {
  background: transparent; color: var(--text-soft);
  border: 1px solid var(--im-light); border-radius: 50px;
  padding: 0.5rem 1.2rem; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
#cookieReject:hover { border-color: var(--im-mid); color: var(--im); }
@media (max-width: 600px) {
  #cookieBanner { flex-direction: column; align-items: flex-start; bottom: 1rem; left: 1rem; right: 1rem; width: auto; transform: none; }
  .cookie-btns { width: 100%; }
  #cookieAccept, #cookieReject { flex: 1; text-align: center; }
}
