/* ============================================================
   OFURO BOTANICA — style.css
   Site de prezentare · One-page static
   ============================================================ */

/* ── Google Fonts sunt importate din index.html ── */

/* ────────────────────────────────────────────────
   1. VARIABILE & RESET
   ──────────────────────────────────────────────── */
:root {
  --verde:       #123524;
  --verde-med:   #006D4B;
  --galben:      #F6D76F;
  --crem:        #F5F5F0;
  --alb:         #FFFFFF;
  --text-dark:   #1a1a1a;
  --text-med:    #3a3a3a;
  --text-light:  #7a7a6e;
  --border:      #e2e2da;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-script:  'Great Vibes', cursive;
  --font-body:    'Lora', Georgia, serif;
  --font-label:   'Montserrat', sans-serif;

  --max-w:    1100px;
  --max-text: 680px;
  --gap-xl:   120px;
  --gap-lg:   80px;
  --gap-md:   48px;
  --gap-sm:   24px;

  --radius:   4px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  background: var(--alb);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }


/* ────────────────────────────────────────────────
   2. UTILITĂŢI
   ──────────────────────────────────────────────── */
.container {
  width: min(var(--max-w), 100% - 48px);
  margin-inline: auto;
}

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

.label {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-med);
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--verde);
  margin: var(--gap-sm) auto;
  opacity: 0.3;
}

section {
  padding-block: var(--gap-xl);
}

/* Alternare fundal secțiuni */
.bg-crem { background: var(--crem); }
.bg-verde { background: var(--verde); color: var(--alb); }


/* ────────────────────────────────────────────────
   3. HEADER & NAV
   ──────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}

/* ── Logo ── */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--verde);
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-label);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--verde);
}

/* ── Navigation ── */
nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-med);
  transition: color var(--transition);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--verde);
  transition: width var(--transition);
}

nav a:hover { color: var(--verde); }
nav a:hover::after { width: 100%; }

/* ── Header phone ── */
.header-phone {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--verde);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-phone::before {
  content: '✆';
  font-size: 13px;
}

/* ── Hamburger (mobil) ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--verde);
  transition: var(--transition);
}

/* ── Mobile nav overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--alb);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--verde);
  font-style: italic;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--verde);
  line-height: 1;
}


/* ────────────────────────────────────────────────
   4. HERO
   ──────────────────────────────────────────────── */
#hero {
  padding-block: 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 92vh;
}

/* ── Hero stânga: text ── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde-med);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  color: var(--verde);
  margin-bottom: 28px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-med);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 460px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 400px;
}

/* ── Butoane hero ── */
.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--verde);
  color: var(--alb);
  border: 1.5px solid var(--verde);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #0e2a1c;
  border-color: #0e2a1c;
}

.btn-ghost {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--verde);
  border: 1.5px solid var(--verde);
  padding: 14px 28px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-ghost:hover {
  background: var(--verde);
  color: var(--alb);
}

/* ── Hero dreapta: imagine ── */
.hero-image {
  position: relative;
  overflow: hidden;
}

/* PLACEHOLDER — înlocuiți src-ul imaginii din HTML */
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.15) 0%, transparent 40%);
}

/* ── Scroll indicator ── */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  padding-left: 24px;
}

.scroll-hint::before {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: var(--border);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { height: 40px; opacity: 1; }
  50%  { height: 20px; opacity: 0.5; }
  100% { height: 40px; opacity: 1; }
}


/* ────────────────────────────────────────────────
   5. CE ESTE UN SOAK
   ──────────────────────────────────────────────── */
#soak {
  background: var(--crem);
}

.soak-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.soak-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}

/* PLACEHOLDER — înlocuiți cu imaginea reală */
.soak-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soak-placeholder {
  width: 100%;
  height: 100%;
  background: #d8d5cb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #9a9a90;
  text-transform: uppercase;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
}

.soak-content { }

.soak-content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  font-style: italic;
  color: var(--verde);
  line-height: 1.25;
  margin-bottom: var(--gap-sm);
}

.soak-content p {
  color: var(--text-med);
  margin-bottom: 20px;
  font-size: 16.5px;
}

.soak-content p:last-of-type { margin-bottom: 0; }

.soak-detail {
  margin-top: 32px;
  padding: 24px;
  background: white;
  border-left: 2px solid var(--galben);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.soak-detail p {
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 0;
}


/* ────────────────────────────────────────────────
   6. EXPERIENȚA COMPLETĂ
   ──────────────────────────────────────────────── */
#experienta {
  background: var(--alb);
  text-align: center;
}

.section-header {
  margin-bottom: var(--gap-lg);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--verde);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-light);
  font-size: 16px;
  max-width: 520px;
  margin-inline: auto;
}

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

.experienta-item {
  text-align: center;
}

.experienta-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.experienta-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--verde);
  margin-bottom: 10px;
}

.experienta-item p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
}

.experienta-nota {
  margin-top: var(--gap-lg);
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  max-width: 500px;
  margin-inline: auto;
  margin-top: var(--gap-md);
}


/* ────────────────────────────────────────────────
   7. PENTRU CINE ESTE
   ──────────────────────────────────────────────── */
#pentru-cine {
  background: var(--verde);
  color: var(--alb);
  text-align: center;
}

#pentru-cine .section-header h2 {
  color: var(--alb);
}

#pentru-cine .section-header p {
  color: rgba(255,255,255,0.65);
}

#pentru-cine .label {
  color: var(--galben);
}

.pentru-cine-text {
  max-width: 660px;
  margin-inline: auto;
}

.pentru-cine-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  margin-bottom: 20px;
}

.pentru-cine-text p:last-child { margin-bottom: 0; }

.pentru-cine-text em {
  color: var(--galben);
  font-style: normal;
}


/* ────────────────────────────────────────────────
   8. RITUALURILE (produsele)
   ──────────────────────────────────────────────── */
#ritualuri {
  background: var(--crem);
}

.ritualuri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: var(--gap-lg);
}

.ritual-card {
  background: var(--alb);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition);
}

.ritual-card:hover {
  transform: translateY(-4px);
}

.ritual-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #ddd8cc;
  position: relative;
}

/* PLACEHOLDER — înlocuiți cu imagini reale */
.ritual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ritual-card:hover .ritual-img img {
  transform: scale(1.04);
}

.ritual-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #9a9a90;
  text-transform: uppercase;
  min-height: 360px;
}

.ritual-body {
  padding: 28px;
}

.ritual-body .label {
  display: block;
  margin-bottom: 12px;
}

.ritual-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--verde);
  margin-bottom: 6px;
}

.ritual-tagline {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 16px;
  display: block;
}

.ritual-body p {
  font-size: 14.5px;
  color: var(--text-med);
  line-height: 1.75;
}

.ritualuri-cta {
  text-align: center;
  margin-top: var(--gap-lg);
}

.ritualuri-cta p {
  font-size: 15px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
}


/* ────────────────────────────────────────────────
   9. INGREDIENTE
   ──────────────────────────────────────────────── */
#ingrediente {
  background: var(--alb);
}

.ingrediente-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ingrediente-col h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--verde);
  line-height: 1.25;
  margin-bottom: var(--gap-sm);
}

.ingrediente-col > p {
  color: var(--text-light);
  font-size: 15.5px;
  margin-bottom: var(--gap-md);
}

.ingredient-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.ingredient-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.ingredient-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.ingredient-text h4 {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 6px;
}

.ingredient-text p {
  font-size: 14.5px;
  color: var(--text-med);
  line-height: 1.7;
}

/* ── Ce nu conțin ── */
.nu-contine {
  background: var(--crem);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 0;
}

.nu-contine h3 {
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-med);
  margin-bottom: 20px;
}

.nu-contine-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nu-contine-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.nu-contine-item::before {
  content: '×';
  font-size: 14px;
  color: var(--text-light);
  flex-shrink: 0;
  margin-top: 2px;
  font-family: var(--font-label);
}

.nu-contine-item span {
  font-size: 14px;
  color: var(--text-med);
}

.nu-contine-item em {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 2px;
}


/* ────────────────────────────────────────────────
   10. FILOSOFIA BRANDULUI
   ──────────────────────────────────────────────── */
#filozofie {
  background: var(--crem);
}

.filozofie-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.filozofie-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ccc9be;
}

/* PLACEHOLDER — înlocuiți cu imaginea reală */
.filozofie-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.filozofie-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #9a9a90;
  text-transform: uppercase;
  min-height: 480px;
}

.filozofie-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--verde);
  margin-bottom: var(--gap-sm);
  line-height: 1.25;
}

.filozofie-text p {
  font-size: 16px;
  color: var(--text-med);
  line-height: 1.85;
  margin-bottom: 20px;
}

.filozofie-text p:last-of-type {
  margin-bottom: 0;
}

.semnatura {
  margin-top: 36px;
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--verde);
  line-height: 1;
}

.semnatura-sub {
  font-family: var(--font-label);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-top: 6px;
}


/* ────────────────────────────────────────────────
   11. CONTACT
   ──────────────────────────────────────────────── */
#contact {
  background: var(--verde);
  color: var(--alb);
  text-align: center;
}

#contact .label { color: var(--galben); }

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  font-style: italic;
  color: var(--alb);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-sub {
  font-size: 16.5px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: var(--gap-lg);
  line-height: 1.8;
}

.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--gap-md);
}

.btn-whatsapp {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #25D366;
  color: var(--alb);
  border: none;
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover { background: #1ebe5a; }

.btn-tel {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--alb);
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-tel:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}

.contact-nota {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}


/* ────────────────────────────────────────────────
   12. FOOTER
   ──────────────────────────────────────────────── */
footer {
  background: #0c2519;
  color: rgba(255,255,255,0.55);
  padding-block: 48px;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.1em;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: var(--font-script);
  font-size: 24px;
  color: rgba(255,255,255,0.6);
  line-height: 1;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-phone a {
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: 0.1em;
  transition: color var(--transition);
}

.footer-phone a:hover { color: var(--alb); }


/* ────────────────────────────────────────────────
   13. BUTON FLOTANT WHATSAPP
   ──────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab svg {
  width: 28px;
  height: 28px;
  fill: white;
}


/* ────────────────────────────────────────────────
   14. RESPONSIVE — TABLET (≤900px)
   ──────────────────────────────────────────────── */
@media (max-width: 900px) {

  :root {
    --gap-xl: 80px;
    --gap-lg: 60px;
  }

  nav, .header-phone { display: none; }
  .hamburger { display: flex; }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image {
    height: 50vw;
    min-height: 300px;
  }

  .hero-text {
    padding: 60px 0 40px;
    order: 2;
  }

  .hero-image { order: 1; }

  .scroll-hint { display: none; }

  .soak-inner,
  .ingrediente-layout,
  .filozofie-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experienta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ritualuri-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ────────────────────────────────────────────────
   15. RESPONSIVE — MOBIL (≤600px)
   ──────────────────────────────────────────────── */
@media (max-width: 600px) {

  :root {
    --gap-xl: 64px;
    --gap-lg: 48px;
    --gap-md: 32px;
    --gap-sm: 20px;
  }

  .hero-image { min-height: 260px; }

  .hero-text { padding: 48px 0 36px; }

  .hero-headline { font-size: 36px; }

  .experienta-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .ritualuri-grid {
    grid-template-columns: 1fr;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-whatsapp,
  .btn-tel {
    width: 100%;
    justify-content: center;
    max-width: 340px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .whatsapp-fab {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
