/* ==========================================================================
   النبالي لماكينات الخياطة — Design System
   Modular CSS — جاهز للتحويل إلى WordPress Theme
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Colors */
  --c-primary: #FF6A00;
  --c-primary-dark: #E45D00;
  --c-primary-soft: #FFF1E6;
  --c-navy: #071A35;
  --c-navy-2: #0A1F3D;
  --c-steel: #16335C;
  --c-bg: #F8F9FB;
  --c-surface: #FFFFFF;
  --c-ink: #1A1A1A;
  --c-muted: #5B6573;
  --c-line: #E2E6ED;
  --c-line-2: #D2D8E2;

  /* Type */
  --f-display: 'Cairo', system-ui, sans-serif;
  --f-body: 'Tajawal', system-ui, sans-serif;

  /* Scale */
  --step--1: clamp(.78rem, .74rem + .2vw, .88rem);
  --step-0: clamp(.95rem, .9rem + .25vw, 1.05rem);
  --step-1: clamp(1.15rem, 1.05rem + .5vw, 1.4rem);
  --step-2: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --step-3: clamp(2rem, 1.6rem + 2vw, 3rem);
  --step-4: clamp(2.6rem, 2rem + 3vw, 4.4rem);

  /* Spacing & radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(7,26,53,.06);
  --shadow-md: 0 12px 34px rgba(7,26,53,.10);
  --shadow-lg: 0 24px 60px rgba(7,26,53,.16);
  --container: 1240px;
  --header-h: 84px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: var(--f-display); line-height: 1.25; font-weight: 800; color: var(--c-navy); }
:focus-visible { outline: 3px solid var(--c-primary); outline-offset: 2px; border-radius: 4px; }

/* ---------- 3. Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 6vw, 6.5rem) 0; }
.section--tight { padding: clamp(2.5rem, 4vw, 4rem) 0; }
.grid { display: grid; gap: 1.5rem; }
.text-center { text-align: center; }

/* Stitch line — signature motif */
.stitch {
  height: 2px;
  background-image: repeating-linear-gradient(90deg,
    var(--c-primary) 0 14px, transparent 14px 26px);
  border: 0;
  width: 90px;
  margin: 0 0 1.2rem;
}
.stitch--center { margin-inline: auto; }

/* Section heading block */
.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: .04em;
  color: var(--c-primary);
  background: var(--c-primary-soft);
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-title { font-size: var(--step-3); margin-bottom: .8rem; }
.section-lead { color: var(--c-muted); max-width: 60ch; font-size: var(--step-1); }
.head-center { text-align: center; }
.head-center .section-lead { margin-inline: auto; }

/* ---------- 4. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--f-display); font-weight: 700; font-size: var(--step-0);
  padding: .85rem 1.6rem; border-radius: var(--r-sm);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; }
.btn--primary { background: var(--c-primary); color: #fff; box-shadow: 0 8px 20px rgba(255,106,0,.28); }
.btn--primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255,106,0,.36); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.4); }
.btn--ghost:hover { background: #fff; color: var(--c-navy); transform: translateY(-2px); }
.btn--navy { background: var(--c-navy); color: #fff; }
.btn--navy:hover { background: var(--c-steel); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--c-navy); border: 2px solid var(--c-line-2); }
.btn--outline:hover { border-color: var(--c-primary); color: var(--c-primary); }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1eb858; transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.1rem; font-size: var(--step--1); }
.btn--block { width: 100%; }

/* ==========================================================================
   5. Header
   ========================================================================== */
.topbar {
  background: var(--c-navy);
  color: #cdd6e4;
  font-size: var(--step--1);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.topbar__contact { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.topbar__contact a { display: inline-flex; align-items: center; gap: .4rem; transition: color .15s; }
.topbar__contact a:hover { color: var(--c-primary); }
.topbar__social { display: flex; gap: .4rem; }
.topbar__social a {
  width: 28px; height: 28px; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18); border-radius: 6px; transition: all .15s;
}
.topbar__social a:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; }
.topbar__social svg { width: 14px; height: 14px; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  transition: box-shadow .25s;
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 1rem; }

.brand { display: flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-primary), var(--c-primary-dark));
  display: grid; place-items: center; box-shadow: 0 6px 16px rgba(255,106,0,.3);
}
.brand__mark svg { width: 26px; height: 26px; color: #fff; }
.brand__name { font-family: var(--f-display); font-weight: 800; font-size: 1.15rem; color: var(--c-navy); line-height: 1.15; }
.brand__name span { display: block; font-size: .68rem; font-weight: 600; color: var(--c-primary); letter-spacing: .02em; }

.menu { display: flex; align-items: center; gap: .3rem; }
.menu > li > a {
  font-family: var(--f-display); font-weight: 600; font-size: .98rem;
  padding: .55rem .85rem; border-radius: var(--r-sm); color: var(--c-navy);
  display: inline-block; position: relative; transition: color .15s, background .15s;
}
.menu > li > a:hover { color: var(--c-primary); background: var(--c-primary-soft); }
.menu > li > a.is-active { color: var(--c-primary); }
.menu > li > a.is-active::after {
  content: ""; position: absolute; bottom: 2px; right: .85rem; left: .85rem; height: 2px;
  background-image: repeating-linear-gradient(90deg, var(--c-primary) 0 6px, transparent 6px 11px);
}

/* Mega menu */
.has-mega { position: relative; }
.mega {
  position: absolute; top: calc(100% + 14px); right: 0;
  width: 540px; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-md); box-shadow: var(--shadow-md); padding: 1.2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: .4rem;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s ease; z-index: 50;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega a { display: flex; gap: .7rem; padding: .7rem; border-radius: var(--r-sm); transition: background .15s; }
.mega a:hover { background: var(--c-bg); }
.mega__ic { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: var(--c-primary-soft); display: grid; place-items: center; color: var(--c-primary); }
.mega__ic svg { width: 20px; height: 20px; }
.mega__t { display: block; font-family: var(--f-display); font-weight: 700; font-size: .95rem; color: var(--c-navy); }
.mega__d { display: block; font-size: .8rem; color: var(--c-muted); line-height: 1.4; margin-top: 2px; }

.nav__actions { display: flex; align-items: center; gap: .6rem; }
.lang-switch {
  font-family: var(--f-display); font-weight: 700; font-size: .85rem; color: var(--c-navy);
  border: 1px solid var(--c-line-2); border-radius: var(--r-sm); padding: .5rem .7rem;
  display: flex; align-items: center; gap: .35rem; transition: all .15s;
}
.lang-switch:hover { border-color: var(--c-primary); color: var(--c-primary); }
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--c-line-2); }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--c-navy);
  margin-inline: auto; position: relative; transition: .25s;
}
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { top: 0; transform: rotate(45deg); }
body.menu-open .nav__toggle span::after { top: 0; transform: rotate(-45deg); }

/* ==========================================================================
   6. Page Banner (inner pages)
   ========================================================================== */
.page-banner {
  position: relative; color: #fff; overflow: hidden;
  background: linear-gradient(120deg, var(--c-navy) 0%, var(--c-steel) 100%);
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.page-banner::after {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,106,0,.08) 0 2px, transparent 2px 22px);
  pointer-events: none;
}
.page-banner__inner { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; font-size: var(--step-4); margin-bottom: .6rem; }
.page-banner p { color: #c6d0e0; max-width: 60ch; font-size: var(--step-1); }
.breadcrumb { display: flex; gap: .5rem; align-items: center; font-size: var(--step--1); color: #9fb0c8; margin-bottom: 1.1rem; }
.breadcrumb a:hover { color: var(--c-primary); }
.breadcrumb span { color: var(--c-primary); }
.breadcrumb svg { width: 16px; height: 16px; flex: 0 0 16px; color: #6b7c96; }

/* ==========================================================================
   7. Cards (generic)
   ========================================================================== */
.card {
  background: var(--c-surface); border: 1px solid var(--c-line);
  border-radius: var(--r-md); overflow: hidden; transition: transform .22s, box-shadow .22s, border-color .22s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

/* Product card */
.product-card { display: flex; flex-direction: column; }
.product-card__media { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg,#fff,#eef1f6); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__tag {
  position: absolute; top: 12px; in-inline-start: 12px; right: 12px;
  background: var(--c-primary); color: #fff; font-family: var(--f-display); font-weight: 700;
  font-size: .72rem; padding: .3rem .7rem; border-radius: 100px;
}
.product-card__brand { font-size: .75rem; color: var(--c-primary); font-weight: 700; font-family: var(--f-display); }
.product-card__body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; gap: .5rem; }
.product-card__title { font-size: 1.1rem; }
.product-card__desc { font-size: .88rem; color: var(--c-muted); flex: 1; }
.product-card__actions { display: flex; gap: .5rem; margin-top: .4rem; }
.product-card__actions .btn { flex: 1; }

/* ==========================================================================
   8. Footer
   ========================================================================== */
.footer { background: var(--c-navy); color: #b9c4d6; padding-top: clamp(3rem,5vw,4.5rem); position: relative; }
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background-image: repeating-linear-gradient(90deg, var(--c-primary) 0 16px, transparent 16px 30px);
}
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 1.2rem; position: relative; padding-bottom: .6rem; }
.footer h4::after { content: ""; position: absolute; bottom: 0; right: 0; width: 36px; height: 2px; background: var(--c-primary); }
.footer__brand .brand__name { color: #fff; }
.footer__about { font-size: .9rem; line-height: 1.8; margin: 1rem 0 1.2rem; }
.footer__links li { margin-bottom: .6rem; }
.footer__links a { font-size: .92rem; transition: color .15s, padding .15s; display: inline-block; }
.footer__links a:hover { color: var(--c-primary); padding-inline-start: 6px; }
.footer__contact li { display: flex; gap: .65rem; margin-bottom: .9rem; font-size: .9rem; align-items: flex-start; }
.footer__contact svg { width: 18px; height: 18px; color: var(--c-primary); flex-shrink: 0; margin-top: 3px; }
.newsletter { display: flex; gap: .5rem; margin-top: 1rem; }
.newsletter input {
  flex: 1; min-width: 0; padding: .7rem .9rem; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05); color: #fff; font-family: var(--f-body);
}
.newsletter input::placeholder { color: #8294ad; }
.footer__social { display: flex; gap: .5rem; margin-top: 1.2rem; }
.footer__social a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: var(--r-sm); background: rgba(255,255,255,.06); transition: all .15s; }
.footer__social a:hover { background: var(--c-primary); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.3rem 0; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.footer__bottom a:hover { color: var(--c-primary); }

/* ==========================================================================
   9. Floating actions
   ========================================================================== */
.float-actions { position: fixed; bottom: 22px; left: 22px; z-index: 90; display: flex; flex-direction: column; gap: .7rem; }
.float-actions a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: var(--shadow-md); transition: transform .18s; }
.float-actions a:hover { transform: scale(1.08); }
.fab-wa { background: #25D366; }
.fab-call { background: var(--c-primary); }
.float-actions svg { width: 26px; height: 26px; }
.to-top {
  position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-navy); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .25s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; }

/* ==========================================================================
   10. Reusable sections
   ========================================================================== */
/* Brands marquee */
.brands { background: #fff; border-block: 1px solid var(--c-line); padding: 2.2rem 0; }
.brands__head { text-align: center; color: var(--c-muted); font-size: .9rem; margin-bottom: 1.4rem; font-weight: 600; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 26s linear infinite; }
.brands:hover .marquee__track { animation-play-state: paused; }
.brand-logo {
  font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: var(--c-navy);
  opacity: .55; transition: opacity .2s, color .2s; display: flex; align-items: center; gap: .4rem; white-space: nowrap;
}
.brand-logo:hover { opacity: 1; color: var(--c-primary); }
.brand-logo b { color: var(--c-primary); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(50%); } }

/* Feature/why cards */
.feature { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-md); padding: 1.8rem 1.5rem; transition: transform .2s, box-shadow .2s; height: 100%; }
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.feature__ic { width: 58px; height: 58px; border-radius: 14px; background: var(--c-primary-soft); color: var(--c-primary); display: grid; place-items: center; margin-bottom: 1.1rem; }
.feature__ic svg { width: 30px; height: 30px; }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { font-size: .9rem; color: var(--c-muted); }

/* Stats / counters */
.stats { background: var(--c-navy); color: #fff; position: relative; overflow: hidden; }
.stats::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(135deg, rgba(255,106,0,.06) 0 2px, transparent 2px 24px); }
.stats__grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stat__num { font-family: var(--f-display); font-weight: 800; font-size: clamp(2.2rem,4vw,3.2rem); color: var(--c-primary); line-height: 1; }
.stat__num span { font-size: .6em; }
.stat__label { color: #c6d0e0; margin-top: .5rem; font-size: .95rem; }

/* Quick categories */
.quick-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 1.2rem; }
.quick-card { position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 180px; display: flex; align-items: flex-end; padding: 1.3rem; color: #fff; background: var(--c-steel); transition: transform .22s; }
.quick-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,26,53,.15), rgba(7,26,53,.85)); z-index: 1; }
.quick-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.quick-card:hover { transform: translateY(-6px); }
.quick-card:hover img { transform: scale(1.07); }
.quick-card img { transition: transform .4s; }
.quick-card__body { position: relative; z-index: 2; }
.quick-card__body h3 { color: #fff; font-size: 1.2rem; }
.quick-card__body span { font-size: .85rem; color: var(--c-primary); font-weight: 700; font-family: var(--f-display); display: inline-flex; align-items: center; gap: .3rem; margin-top: .3rem; }

/* CTA strip */
.cta-strip { background: linear-gradient(120deg, var(--c-primary), var(--c-primary-dark)); color: #fff; border-radius: var(--r-lg); padding: clamp(2.2rem,4vw,3.4rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-strip::after { content: ""; position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 14px, transparent 14px 28px); top: auto; height: 4px; bottom: 0; }
.cta-strip h2 { color: #fff; font-size: var(--step-2); }
.cta-strip p { color: rgba(255,255,255,.92); margin-top: .4rem; }
.cta-strip__actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.cta-strip .btn--ghost { border-color: rgba(255,255,255,.6); }
.cta-strip .btn--light { background: #fff; color: var(--c-primary); }
.cta-strip .btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ==========================================================================
   11. AOS-lite (scroll reveal)
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

/* ==========================================================================
   12. Page-loader
   ========================================================================== */
.loader { position: fixed; inset: 0; background: var(--c-navy); z-index: 9999; display: grid; place-items: center; transition: opacity .5s ease, visibility .5s; }
.loader.hide { opacity: 0; visibility: hidden; }
.loader__spool { width: 56px; height: 56px; border-radius: 50%; border: 4px solid rgba(255,255,255,.15); border-top-color: var(--c-primary); animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ==========================================================================
   13. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quick-grid { grid-template-columns: repeat(3,1fr); }
  .stats__grid { grid-template-columns: repeat(2,1fr); gap: 2rem; }
}
@media (max-width: 880px) {
  .nav__toggle { display: block; }
  .menu {
    position: fixed; top: 100%; bottom: auto; right: -110%; left: auto;
    width: min(86vw, 340px); height: calc(100vh - var(--header-h)); max-height: calc(100dvh - var(--header-h));
    background: #fff; flex-direction: column; align-items: stretch; padding: 1rem;
    gap: .15rem; box-shadow: var(--shadow-lg); transform: none;
    transition: right .3s ease; overflow-y: auto; border-inline-start: 1px solid var(--c-line);
    z-index: 60;
  }
  body.menu-open .menu { right: 0; }
  .menu > li { border-bottom: 1px solid var(--c-line); width: 100%; flex: 0 0 auto; }
  .menu > li:last-child { border-bottom: none; }
  .menu > li > a { display: block; padding: .95rem .6rem; border-radius: var(--r-sm); font-size: 1.02rem; }
  /* القائمة المنسدلة كأكورديون: مخفية افتراضياً وتُفتح بكلاس is-open */
  .has-mega > .mega {
    position: static; width: 100%; grid-template-columns: 1fr; box-shadow: none;
    border: none; transform: none; padding: 0 0 .4rem;
    display: none; opacity: 1; visibility: visible;
  }
  .has-mega.is-open > .mega { display: grid; }
  .has-mega > a { position: relative; }
  .has-mega > a::after {
    content: ""; position: absolute; inset-inline-start: .6rem; top: 50%;
    width: 9px; height: 9px; border-inline-end: 2px solid var(--c-navy);
    border-bottom: 2px solid var(--c-navy); transform: translateY(-65%) rotate(45deg);
    transition: transform .2s ease;
  }
  .has-mega.is-open > a::after { transform: translateY(-35%) rotate(-135deg); }
  .mega a { padding: .65rem .9rem; gap: .6rem; align-items: center; }
  .mega__ic { width: 34px; height: 34px; flex: 0 0 34px; display: grid; place-items: center; }
  .mega__ic svg { width: 18px; height: 18px; }
  .mega__d { font-size: .78rem; color: var(--c-muted); }
  .topbar { display: none; }
  .nav__actions .lang-switch span.full { display: none; }
}
@media (max-width: 620px) {
  .footer__grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .quick-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { flex-direction: column; align-items: flex-start; text-align: right; }
  .product-card__actions { flex-direction: column; }
}
