/* ==========================================================================
   شركة فرحات — نظام التصميم
   Design tokens: cold-chain trust (ink/frost) + trade-house warmth (amber/wine)
   ========================================================================== */

:root {
  /* Color */
  --ink: #1B2430;          /* deep charcoal-navy — trust, refrigeration */
  --ink-soft: #384354;
  --frost: #EEF2F1;        /* pale cold-storage tint, page background */
  --frost-2: #E2E9E7;
  --paper: #FBFBF9;        /* card surface */
  --amber: #D98E3F;        /* trade-house warmth, accent */
  --amber-deep: #B96F26;
  --wine: #7A2E2E;         /* used sparingly — CTAs tied to product quality */
  --wine-deep: #5F2222;
  --text: #1B2430;
  --text-muted: #5B6570;
  --line: #D8DFDC;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'El Messiri', 'Tahoma', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', 'Tahoma', sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow: 0 4px 18px rgba(27, 36, 48, 0.07);
  --shadow-lg: 0 14px 40px rgba(27, 36, 48, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .5em;
  line-height: 1.3;
}

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   Top info bar
   ========================================================================== */

.topbar {
  background: var(--ink);
  color: #C9D2CE;
  font-size: 13.5px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
  gap: 6px;
}

.topbar-tagline {
  font-weight: 600;
  letter-spacing: .3px;
  color: #C9D2CE;
}

.topbar-social { display: flex; gap: 12px; align-items: center; }
.topbar-social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #C9D2CE;
  transition: border-color .15s, color .15s;
}
.topbar-social a:hover { border-color: var(--amber); color: var(--amber); }
.topbar-social svg { width: 13px; height: 13px; fill: currentColor; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  color: #C9D2CE !important;
}
.lang-switch:hover { border-color: var(--amber); color: var(--amber) !important; }

/* ==========================================================================
   Header / nav
   ========================================================================== */

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 65;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Desktop only: swap header — nav on the "start" side, logo on the "end" side.
   Same order values naturally mirror correctly for both RTL and LTR. */
@media (min-width: 861px) {
  .brand { order: 2; }
  .main-nav { order: 1; }
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(155deg, var(--ink), var(--ink-soft));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-logo-wrap { margin-bottom: 16px; }
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.brand-text { display: flex; flex-direction: column; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--ink);
  letter-spacing: .2px;
}
.brand-text span {
  font-size: 11.5px;
  color: var(--text-muted);
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 6px;
  margin: 0; padding: 0;
}

.main-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: var(--frost-2);
  color: var(--wine);
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    right: -100%;
    width: min(78vw, 320px);
    height: 100vh;
    background: var(--paper);
    box-shadow: var(--shadow-lg);
    padding: 90px 26px 26px;
    transition: right .25s ease;
    z-index: 60;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 13px 16px; font-size: 16px; }
  .nav-toggle { display: inline-flex; }
  .nav-scrim {
    display: none;
    position: fixed; inset: 0;
    background: rgba(15,20,26,.45);
    z-index: 55;
  }
  .nav-scrim.open { display: block; }
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); }

.btn-amber { background: var(--amber); color: var(--white); box-shadow: 0 8px 20px rgba(217,142,63,.35); }
.btn-amber:hover { background: var(--amber-deep); }

.btn-wine { background: var(--wine); color: var(--white); box-shadow: 0 8px 20px rgba(122,46,46,.3); }
.btn-wine:hover { background: var(--wine-deep); }

.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.6); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); }

/* ==========================================================================
   Hero slider (home)
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-slide {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  background-image: var(--hero-img, none), linear-gradient(155deg, var(--ink) 0%, var(--ink-soft) 100%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}

.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,20,26,.82) 0%, rgba(15,20,26,.25) 55%, rgba(15,20,26,.1) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 56px;
  width: 100%;
  color: var(--white);
}

.hero-slide-content .eyebrow {
  display: inline-block;
  background: rgba(217,142,63,.18);
  border: 1px solid rgba(217,142,63,.5);
  color: #F1C48B;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero-slide-content h1,
.hero-slide-content h2 {
  color: var(--white);
  font-size: clamp(28px, 4.4vw, 46px);
  max-width: 620px;
  margin-bottom: 12px;
}

.hero-slide-content p {
  color: #D6DDE3;
  max-width: 520px;
  font-size: 16.5px;
  margin-bottom: 26px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 0;
}
.hero-dots button.active { background: var(--amber); width: 24px; border-radius: 5px; }

/* ==========================================================================
   Sections generic
   ========================================================================== */

section { padding: 72px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head .kicker {
  display: inline-block;
  color: var(--wine);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .3px;
  margin-bottom: 10px;
}

.section-head h2 { font-size: clamp(24px, 3vw, 32px); }

.bg-paper { background: var(--paper); }
.bg-ink { background: var(--ink); color: #C9D2CE; }
.bg-ink h2, .bg-ink h3 { color: var(--white); }
.bg-ink p { color: #B7C0C6; }

/* ==========================================================================
   About / intro block
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}

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

.about-copy .stat-row {
  display: flex;
  gap: 34px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.stat-row .stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--wine);
}
.stat-row .stat span {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* Cold-chain route — signature element */
.route {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 26px;
  box-shadow: var(--shadow);
}

.route h3 { font-size: 18px; margin-bottom: 22px; text-align: center; }

.route-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.route-step {
  display: flex;
  gap: 16px;
  position: relative;
  padding-bottom: 30px;
}

.route-step:last-child { padding-bottom: 0; }

[dir="rtl"] .route-step::before {
  content: '';
  position: absolute;
  right: 21px;
  top: 46px;
  bottom: 4px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 12px);
}
[dir="ltr"] .route-step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 4px;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 12px);
}
.route-step:last-child::before { display: none; }

.route-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--frost-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.route-icon svg { width: 21px; height: 21px; stroke: var(--wine); }

.route-text strong { display: block; font-size: 15.5px; color: var(--ink); margin-bottom: 2px; }
.route-text span { font-size: 13.5px; color: var(--text-muted); }

/* ==========================================================================
   Value / feature cards
   ========================================================================== */

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

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

.value-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform .18s, box-shadow .18s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.value-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--wine);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.value-card .icon svg { width: 24px; height: 24px; stroke: var(--white); }

.value-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.value-card p { margin: 0; font-size: 14.5px; }

/* ==========================================================================
   Global sourcing cards
   ========================================================================== */

.sourcing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 780px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .sourcing-grid { grid-template-columns: 1fr; }
}

.sourcing-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: transform .18s, box-shadow .18s;
}
.sourcing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.sourcing-flag {
  display: block;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 14px;
}

.sourcing-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.sourcing-card p { font-size: 14.5px; margin: 0 0 16px; }

.brand-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.brand-chip {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wine);
  background: rgba(122,46,46,.08);
  border: 1px solid rgba(122,46,46,.15);
  padding: 5px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   Products grid + cards
   ========================================================================== */

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

@media (max-width: 980px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s;
  text-align: right;
  padding: 0;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.product-thumb {
  aspect-ratio: 1/1;
  background: linear-gradient(155deg, var(--frost-2), var(--frost));
  position: relative;
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.product-thumb .fallback-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.product-thumb .fallback-icon svg { width: 40px; height: 40px; stroke: var(--text-muted); opacity: .5; }

.product-body { padding: 16px 18px 20px; }
.product-body h3 { font-size: 15.5px; margin-bottom: 6px; }
.product-body .tag {
  display: inline-block;
  font-size: 12px;
  color: var(--wine);
  background: rgba(122,46,46,.08);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.products-toolbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}
.products-toolbar span {
  background: var(--frost-2);
  color: var(--ink-soft);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.category-filters button {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.category-filters button:hover { border-color: var(--wine); color: var(--wine); }
.category-filters button.active {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
}

/* ==========================================================================
   Product modal
   ========================================================================== */

.modal-scrim {
  position: fixed; inset: 0;
  background: rgba(15,20,26,.6);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: 20px;
}
.modal-scrim.open { display: flex; }

.modal {
  background: var(--paper);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
}

.modal-close {
  position: absolute;
  top: 14px; left: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(27,36,48,.75);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.modal-close svg { width: 16px; height: 16px; stroke: var(--white); }

.modal-image {
  aspect-ratio: 4/5;
  background: linear-gradient(155deg, var(--frost-2), var(--frost));
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-image img { width: 100%; height: 100%; object-fit: contain; padding: 20px; }

.modal-body { padding: 26px 28px 30px; }
.modal-body h3 { font-size: 21px; margin-bottom: 10px; }
.modal-body .modal-meta {
  display: flex; gap: 16px; margin-bottom: 18px;
  font-size: 13px; color: var(--text-muted);
}
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }

/* ==========================================================================
   Partners strip
   ========================================================================== */

.partners-track {
  display: flex;
  gap: 34px;
  overflow-x: auto;
  padding: 6px 2px 14px;
  scrollbar-width: thin;
}
.partner-badge {
  flex: 0 0 auto;
  width: 130px; height: 76px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  position: relative;
}
.partner-badge img { max-width: 78%; max-height: 62%; filter: grayscale(1); opacity: .75; }
.partner-badge .fallback-icon { display: flex; align-items: center; justify-content: center; }
.partner-badge .fallback-icon svg { width: 26px; height: 26px; stroke: var(--text-muted); opacity: .45; }

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(120deg, var(--wine) 0%, var(--wine-deep) 100%);
  border-radius: var(--radius-lg);
  padding: 46px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 6px; font-size: 24px; }
.cta-banner p { color: rgba(255,255,255,.8); margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.field input,
.field textarea,
.field select {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14.5px;
  background: var(--white);
  color: var(--text);
  resize: vertical;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--amber); outline: none; }

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ==========================================================================
   Contact info cards
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; gap: 14px; }
.info-item .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--frost-2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-item .icon svg { width: 20px; height: 20px; stroke: var(--wine); }
.info-item strong { display: block; font-size: 14px; color: var(--ink); margin-bottom: 3px; }
.info-item span, .info-item a { font-size: 14px; color: var(--text-muted); }
.info-item a:hover { color: var(--wine); }

/* Phone numbers: isolate direction so bidi (Arabic + digits) never reorders the number */
.num { direction: ltr; unicode-bidi: isolate; display: inline-block; }
.phone-list { display: flex; flex-direction: column; gap: 5px; }
.phone-list .num { color: var(--text-muted); }
.phone-list .num:hover { color: var(--wine); }

/* ==========================================================================
   Breadcrumb / page header
   ========================================================================== */

.page-header {
  background: var(--ink);
  padding: 50px 0 40px;
  color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: 6px; }
.breadcrumb { font-size: 13.5px; color: #9AA5AC; display: flex; gap: 8px; }
.breadcrumb a:hover { color: var(--amber); }

/* ==========================================================================
   Empty state (blog)
   ========================================================================== */

.empty-state {
  text-align: center;
  padding: 70px 20px;
  max-width: 420px;
  margin: 0 auto;
}
.empty-state .icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--frost-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.empty-state .icon svg { width: 30px; height: 30px; stroke: var(--text-muted); }
.empty-state h3 { margin-bottom: 8px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: #A9B3B8;
  padding: 60px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

.footer-brand p { color: #93A0A6; font-size: 14px; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #A9B3B8; transition: color .15s; }
.footer-col a:hover { color: var(--amber); }
.footer-col address { font-style: normal; font-size: 14px; }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #7C878D;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { border-color: var(--amber); color: var(--amber); }
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }

/* Floating actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
}
.fab-whatsapp { background: #25D366; }
.fab-whatsapp svg { width: 26px; height: 26px; fill: var(--white); }
.fab-top { background: var(--paper); border: 1px solid var(--line); opacity: 0; pointer-events: none; transition: opacity .2s; }
.fab-top.show { opacity: 1; pointer-events: auto; }
.fab-top svg { width: 18px; height: 18px; stroke: var(--ink); }

/* Terms / static content */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 16px; color: var(--text-muted); }
