/* ==========================================================================
   منصة المركز الدولي — نظام التصميم للواجهة العامة
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

:root {
  --brand:        #6E2639;
  --brand-700:    #55182A;
  --brand-900:    #3B0F1D;
  --brand-50:     #FAF1F4;
  --brand-100:    #F0DCE3;
  --accent:       #C89B3C;
  --accent-600:   #A87C22;
  --accent-50:    #FBF4E6;

  --ink:          #1A1215;
  --ink-2:        #4A3A40;
  --ink-3:        #7A6870;
  --ink-4:        #A89AA0;

  --bg:           #FFFFFF;
  --bg-soft:      #FAF7F8;
  --bg-softer:    #FDFBFC;
  --line:         #EBE3E6;
  --line-strong:  #D9CCD1;

  --ok:           #16794C;
  --ok-bg:        #E8F6EF;
  --warn:         #9A6207;
  --warn-bg:      #FDF3E0;

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --sh-1: 0 1px 2px rgba(30, 14, 20, .05), 0 1px 3px rgba(30, 14, 20, .04);
  --sh-2: 0 4px 12px rgba(30, 14, 20, .06), 0 2px 4px rgba(30, 14, 20, .04);
  --sh-3: 0 12px 32px rgba(30, 14, 20, .10), 0 4px 8px rgba(30, 14, 20, .04);
  --sh-brand: 0 8px 24px rgba(110, 38, 57, .26);

  --wrap: 1220px;
  --header-h: 76px;
}

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

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

body {
  margin: 0;
  font-family: 'Cairo', 'Tajawal', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

h1, h2, h3, h4 { margin: 0; line-height: 1.3; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.15rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1em; }

::selection { background: var(--brand); color: #fff; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------- header */

.topbar {
  background: var(--brand-900);
  color: #DCC7CE;
  font-size: .82rem;
  padding: .45rem 0;
}
.topbar__in { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; justify-content: space-between; }
.topbar a { color: #fff; }
.topbar__list { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.topbar__list span { display: inline-flex; align-items: center; gap: .4rem; }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__in {
  min-height: var(--header-h);
  display: flex; align-items: center; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img, .brand svg { height: 46px; width: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 900; font-size: 1.32rem; color: var(--brand); letter-spacing: -.02em; }
.brand__tag { font-size: .72rem; color: var(--ink-3); font-weight: 600; }

.nav { display: flex; gap: .25rem; margin-inline-start: auto; }
.nav a {
  padding: .55rem .95rem; border-radius: var(--r-sm);
  font-weight: 600; font-size: .95rem; color: var(--ink-2);
  transition: background .16s, color .16s;
}
.nav a:hover { background: var(--brand-50); color: var(--brand); }
.nav a.is-active { color: var(--brand); background: var(--brand-50); }

.header__actions { display: flex; align-items: center; gap: .6rem; }

.burger {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  background: #fff; border-radius: var(--r-sm); cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; }

@media (max-width: 940px) {
  .burger { display: flex; margin-inline-start: auto; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; margin: 0;
    background: #fff; flex-direction: column; padding: .75rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--sh-3);
    transform: translateY(-130%); transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .8rem .9rem; font-size: 1.02rem; }
  .header__actions .btn { display: none; }
}

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .72rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: .95rem; cursor: pointer; white-space: nowrap;
  transition: transform .14s, box-shadow .18s, background .18s, color .18s, border-color .18s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: var(--sh-brand); }
.btn--primary:hover { background: var(--brand-700); }
.btn--accent { background: var(--accent); color: #2A1B04; box-shadow: 0 8px 22px rgba(200,155,60,.34); }
.btn--accent:hover { background: var(--accent-600); color: #fff; }
.btn--ghost { background: #fff; color: var(--brand); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--brand); background: var(--brand-50); }
.btn--onDark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(6px); }
.btn--onDark:hover { background: rgba(255,255,255,.2); }
.btn--sm { padding: .5rem 1rem; font-size: .86rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(115deg, var(--brand-900) 0%, var(--brand) 58%, #92374F 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(70% 90% at 88% 15%, rgba(200,155,60,.30), transparent 62%),
    radial-gradient(50% 70% at 5% 95%, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}
.hero__in {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 3.5rem; align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  padding: .38rem 1rem; border-radius: 999px;
  font-size: .82rem; font-weight: 700; letter-spacing: .01em; margin-bottom: 1.4rem;
}
.hero__eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { margin-bottom: 1.1rem; text-wrap: balance; }
.hero__sub { font-size: 1.06rem; color: #E8D6DC; max-width: 56ch; margin-bottom: 2rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__figure {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: 0 30px 70px rgba(28, 6, 13, .5);
  border: 1px solid rgba(255,255,255,.14);
  aspect-ratio: 16 / 11;
}
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }

.hero__strip {
  position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.14);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.hero__stat { padding: 1.35rem .5rem; text-align: center; border-inline-start: 1px solid rgba(255,255,255,.12); }
.hero__stat:first-child { border-inline-start: 0; }
.hero__stat b { display: block; font-size: 1.05rem; font-weight: 800; }
.hero__stat span { font-size: .82rem; color: #D4BCC4; }
.hero__stat i { font-style: normal; font-size: 1.3rem; display: block; margin-bottom: .2rem; }

@media (max-width: 900px) {
  .hero__in { grid-template-columns: 1fr; gap: 2.25rem; }
  .hero__figure { order: -1; aspect-ratio: 16/10; }
  .hero__strip { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero__stat:nth-child(odd) { border-inline-start: 0; }
}

/* ---------------------------------------------------------------- sections */

.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--soft { background: var(--bg-soft); }

.section__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: 2.25rem; flex-wrap: wrap;
}
.section__head p { color: var(--ink-3); margin: .4rem 0 0; max-width: 62ch; }
.eyebrow {
  display: block; font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--accent-600); margin-bottom: .45rem;
}

/* ---------------------------------------------------------------- categories */

.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.cat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem; display: block;
  transition: transform .18s, box-shadow .2s, border-color .2s;
}
.cat:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--brand-100); }
.cat__icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--brand-50); font-size: 1.5rem; margin-bottom: 1rem;
}
.cat h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.cat p { font-size: .87rem; color: var(--ink-3); margin: 0 0 .8rem; line-height: 1.6; }
.cat__count { font-size: .8rem; font-weight: 800; color: var(--brand); }
@media (max-width: 1000px) { .cats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .cats { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- product card */

.grid-products {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); gap: 1.15rem;
}

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .22s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); border-color: var(--brand-100); }
.card__media {
  position: relative; aspect-ratio: 1; background: var(--bg-softer);
  border-bottom: 1px solid var(--line); overflow: hidden;
}
.card__media img {
  width: 100%; height: 100%; object-fit: contain; padding: 6%;
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.card:hover .card__media img { transform: scale(1.055); }
.card__flags { position: absolute; top: .7rem; inset-inline-start: .7rem; display: flex; flex-direction: column; gap: .35rem; }
.flag {
  font-size: .7rem; font-weight: 800; padding: .22rem .6rem; border-radius: 999px;
  background: var(--brand); color: #fff; letter-spacing: .01em;
}
.flag--accent { background: var(--accent); color: #2A1B04; }
.flag--muted  { background: #F2ECEE; color: var(--ink-2); }
.card__body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; flex: 1; gap: .45rem; }
.card__brand { font-size: .74rem; font-weight: 800; letter-spacing: .07em; color: var(--ink-4); text-transform: uppercase; }
.card__title { font-size: .98rem; font-weight: 700; line-height: 1.5; }
.card__title a:hover { color: var(--brand); }
.card__desc {
  font-size: .84rem; color: var(--ink-3); line-height: 1.65; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card__foot {
  margin-top: auto; padding-top: .85rem; display: flex; align-items: center;
  justify-content: space-between; gap: .6rem; border-top: 1px dashed var(--line);
}
.price { font-weight: 800; color: var(--brand); font-size: 1rem; }
.price--ask { font-size: .84rem; color: var(--ink-3); font-weight: 700; }

.empty {
  grid-column: 1 / -1; text-align: center; padding: 4rem 1rem;
  color: var(--ink-3); background: var(--bg-softer);
  border: 1px dashed var(--line-strong); border-radius: var(--r-lg);
}
.empty b { display: block; font-size: 1.1rem; color: var(--ink); margin-bottom: .35rem; }

/* ---------------------------------------------------------------- highlights */

.hl { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.hl__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem 1.35rem; }
.hl__item i { font-style: normal; font-size: 1.7rem; display: block; margin-bottom: .7rem; }
.hl__item h3 { font-size: 1rem; margin-bottom: .3rem; }
.hl__item p { font-size: .87rem; color: var(--ink-3); margin: 0; line-height: 1.65; }
@media (max-width: 1000px) { .hl { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px)  { .hl { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- brands */

.brands { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; }
.brands span {
  border: 1px solid var(--line); background: #fff; color: var(--ink-2);
  padding: .55rem 1.15rem; border-radius: 999px;
  font-weight: 800; font-size: .88rem; letter-spacing: .02em;
}

/* ---------------------------------------------------------------- shop layout */

.shop { display: grid; grid-template-columns: 268px 1fr; gap: 2rem; align-items: start; }
.filters {
  position: sticky; top: calc(var(--header-h) + 1rem);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem;
}
.filters__group + .filters__group { margin-top: 1.35rem; padding-top: 1.35rem; border-top: 1px solid var(--line); }
.filters h4 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin: 0 0 .8rem; font-weight: 800; }
.filters__list { display: flex; flex-direction: column; gap: .1rem; }
.filters__list button {
  text-align: start; background: none; border: 0; cursor: pointer;
  padding: .5rem .7rem; border-radius: var(--r-sm); font-size: .92rem; font-weight: 600;
  color: var(--ink-2); display: flex; justify-content: space-between; gap: .5rem; align-items: center;
  transition: background .15s, color .15s;
}
.filters__list button:hover { background: var(--bg-soft); }
.filters__list button.is-active { background: var(--brand); color: #fff; }
.filters__list button.is-active small { color: rgba(255,255,255,.8); }
.filters__list small { color: var(--ink-4); font-weight: 700; font-size: .76rem; }

.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink-2); }
.input, .select, .textarea {
  width: 100%; padding: .65rem .85rem; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); background: #fff; font-size: .93rem;
  transition: border-color .16s, box-shadow .16s;
}
.input:focus, .select:focus, .textarea:focus {
  outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-100);
}
.textarea { min-height: 130px; resize: vertical; line-height: 1.7; }

.shop__bar {
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
  justify-content: space-between; margin-bottom: 1.35rem;
}
.shop__count { color: var(--ink-3); font-size: .92rem; }
.shop__count b { color: var(--ink); }

.filters__toggle { display: none; }
@media (max-width: 900px) {
  .shop { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.is-open { display: block; }
  .filters__toggle { display: inline-flex; }
}

/* ---------------------------------------------------------------- product page */

.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: start; }
.gallery__main {
  background: var(--bg-softer); border: 1px solid var(--line); border-radius: var(--r-xl);
  aspect-ratio: 1; display: grid; place-items: center; overflow: hidden;
}
.gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 5%; }
.gallery__thumbs { display: flex; gap: .6rem; margin-top: .8rem; flex-wrap: wrap; }
.gallery__thumbs button {
  width: 76px; height: 76px; border-radius: var(--r-sm); border: 2px solid var(--line);
  background: var(--bg-softer); cursor: pointer; padding: 4px; overflow: hidden;
}
.gallery__thumbs button.is-active { border-color: var(--brand); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }

.pdp__brand { font-size: .8rem; font-weight: 800; letter-spacing: .08em; color: var(--accent-600); text-transform: uppercase; }
.pdp h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: .35rem 0 .8rem; }
.pdp__lead { font-size: 1.02rem; color: var(--ink-2); }
.pdp__pricebox {
  background: var(--brand-50); border: 1px solid var(--brand-100);
  border-radius: var(--r-lg); padding: 1.2rem 1.35rem; margin: 1.4rem 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.pdp__price { font-size: 1.5rem; font-weight: 900; color: var(--brand); }
.pdp__price small { font-size: .9rem; font-weight: 700; color: var(--ink-3); display: block; }
.pdp__actions { display: flex; flex-wrap: wrap; gap: .7rem; }

.specs { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.specs tr:nth-child(odd) { background: var(--bg-softer); }
.specs th, .specs td { padding: .78rem 1rem; text-align: start; font-size: .92rem; border-bottom: 1px solid var(--line); }
.specs th { font-weight: 800; color: var(--ink-2); width: 40%; }
.specs td { color: var(--ink-2); }
.specs tr:last-child th, .specs tr:last-child td { border-bottom: 0; }

.prose { color: var(--ink-2); line-height: 1.95; }
.prose p { margin: 0 0 1.1em; }

.tabs { display: flex; gap: .35rem; border-bottom: 1px solid var(--line); margin-bottom: 1.5rem; flex-wrap: wrap; }
.tabs button {
  background: none; border: 0; cursor: pointer; padding: .75rem 1.1rem;
  font-weight: 700; font-size: .95rem; color: var(--ink-3);
  border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.tabs button.is-active { color: var(--brand); border-bottom-color: var(--brand); }

@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------------------------------------------------------------- about */

.about__hero { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about__hero img { border-radius: var(--r-xl); box-shadow: var(--sh-3); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.5rem 1.2rem; text-align: center;
}
.stat b { display: block; font-size: 2rem; font-weight: 900; color: var(--brand); line-height: 1.1; }
.stat span { font-size: .87rem; color: var(--ink-3); font-weight: 600; }
@media (max-width: 900px) {
  .about__hero { grid-template-columns: 1fr; gap: 2rem; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------------- contact */

.contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2.5rem; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.6rem; }
.info-row { display: flex; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row i { font-style: normal; font-size: 1.15rem; width: 38px; height: 38px; border-radius: 11px; background: var(--brand-50); display: grid; place-items: center; flex-shrink: 0; }
.info-row b { display: block; font-size: .8rem; color: var(--ink-4); font-weight: 700; }
.info-row span { font-weight: 600; color: var(--ink); word-break: break-word; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

.alert { border-radius: var(--r); padding: .85rem 1.1rem; font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.alert--ok   { background: var(--ok-bg); color: var(--ok); border: 1px solid #BFE6D3; }
.alert--err  { background: #FDECEC; color: #A32626; border: 1px solid #F5C6C6; }

/* ---------------------------------------------------------------- cta band */

.cta {
  background: linear-gradient(115deg, var(--brand-900), var(--brand));
  color: #fff; border-radius: var(--r-xl); padding: clamp(2rem, 4vw, 3.25rem);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.75rem;
  position: relative; overflow: hidden;
}
.cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 90% 0%, rgba(200,155,60,.32), transparent 60%);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { margin-bottom: .4rem; }
.cta p { color: #E4D2D8; margin: 0; max-width: 58ch; }

/* ---------------------------------------------------------------- breadcrumb */

.crumbs { display: flex; gap: .5rem; align-items: center; font-size: .85rem; color: var(--ink-3); padding: 1.15rem 0; flex-wrap: wrap; }
.crumbs a:hover { color: var(--brand); }
.crumbs span { color: var(--ink-4); }

/* ---------------------------------------------------------------- footer */

.footer { background: var(--ink); color: #B7A6AC; padding: 3.25rem 0 0; margin-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 2.25rem; padding-bottom: 2.5rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer a { color: #B7A6AC; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; font-size: .92rem; }
.footer__brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.footer__brand img, .footer__brand svg { height: 44px; }
.footer__brand b { color: #fff; font-size: 1.25rem; font-weight: 900; }
.footer p { font-size: .9rem; line-height: 1.8; max-width: 42ch; }
.footer__bar {
  border-top: 1px solid rgba(255,255,255,.1); padding: 1.15rem 0;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .84rem;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------- misc */

.skeleton {
  background: linear-gradient(90deg, #F3EDEF 25%, #FBF8F9 50%, #F3EDEF 75%);
  background-size: 200% 100%; animation: shine 1.3s linear infinite; border-radius: var(--r);
}
@keyframes shine { from { background-position: 200% 0; } to { background-position: -200% 0; } }

.whatsapp-fab {
  position: fixed; inset-block-end: 1.4rem; inset-inline-end: 1.4rem; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.42);
  transition: transform .18s;
}
.whatsapp-fab:hover { transform: scale(1.07); }
.whatsapp-fab svg { width: 28px; height: 28px; fill: currentColor; }

@media print { .header, .footer, .whatsapp-fab, .topbar { display: none; } }
