/* Grinta Animal Health - Light, cheerful responsive one-page site */
:root{
  --bg: #f0fdf9;
  --bg2: #fffbeb;
  --surface: #ffffff;
  --card: rgba(255,255,255,.95);
  --text: #0f172a;
  --muted: #475569;
  --muted2: #64748b;
  --accent: #10b981;
  --accent2: #06b6d4;
  --accent-warm: #f59e0b;
  --border: rgba(15, 23, 42, 0.10);
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
  --radius: 18px;
  --radius2: 22px;
  --max: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:"Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(900px 720px at 88% 0%, rgba(6, 182, 212, 0.22), transparent 58%),
    radial-gradient(820px 640px at 0% 8%, rgba(16, 185, 129, 0.24), transparent 55%),
    radial-gradient(700px 520px at 45% 100%, rgba(251, 191, 36, 0.20), transparent 52%),
    linear-gradient(180deg, var(--bg), #f8fafc 55%, var(--bg2));
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.shell{
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
}
.site-header .shell{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width: 0;
}
.brand__logo{
  height: 52px;
  width: auto;
  max-width: 220px;
  max-height: 60px;
  padding: 8px 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.07);
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.05; min-width:0; }
.brand__name{ font-weight: 800; letter-spacing: .2px; color: var(--text); }
.brand__tag{ color: var(--muted2); font-size: 12.5px; margin-top: 3px; }

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.78);
  border-radius: 999px;
}
.nav__link{
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav__link:hover{ background: rgba(16,185,129,.14); color: var(--text); }

.header-actions{ display:flex; gap:10px; align-items:center; }
.lang-toggle{
  height: 40px;
  min-width: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  color: var(--text);
  cursor:pointer;
  font-weight: 800;
  letter-spacing: .3px;
}
.lang-toggle:hover{ background: rgba(6,182,212,.12); border-color: rgba(6,182,212,.35); }

/* Buttons */
.btn{
  height: 40px;
  padding: 0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 800;
  cursor:pointer;
  gap: 10px;
  transition: transform .08s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn--primary{
  background: linear-gradient(135deg, #34d399, #22d3ee);
  border-color: rgba(6, 182, 212, 0.35);
  color: #042f2e;
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.25);
}
.btn--primary:hover{ filter: brightness(1.05); }
.btn--ghost{
  background: rgba(255,255,255,.85);
  color: var(--text);
}
.btn--ghost:hover{ background: rgba(6,182,212,.10); border-color: rgba(6,182,212,.28); }
.btn--wide{ width:100%; }

/* Hero */
.hero{
  position: relative;
  overflow:hidden;
  padding: 46px 0 26px;
}
.hero__bg{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(520px 380px at 75% 15%, rgba(251, 191, 36, 0.35), transparent 62%),
    radial-gradient(560px 420px at 12% 25%, rgba(52, 211, 153, 0.28), transparent 58%),
    radial-gradient(480px 360px at 50% 0%, rgba(125, 211, 252, 0.22), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.55), transparent 65%);
  pointer-events:none;
}
.hero__content{
  position:relative;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:center;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  color: var(--muted);
  font-weight: 700;
  width: fit-content;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.hero__title{
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  margin: 14px 0 12px;
}
.hero__title #heroTitleLine1{ display:block; }
.hero__title #heroTitleAccent{ display:block; margin-top: 6px; }
.accent{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__subtitle{
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.85;
  margin: 0 0 16px;
}
.hero__cta{ display:flex; gap:12px; flex-wrap:wrap; }
.stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.stat{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}
.stat__num{ font-weight: 900; font-size: 18px; letter-spacing:.2px; color: var(--accent); }
.stat__label{ display:block; margin-top: 4px; color: var(--muted2); font-weight: 700; font-size: 12.5px; }

.hero__media{
  position:relative;
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: #fff;
}
.hero__slideshow{
  position: relative;
  width: 100%;
  height: 520px;
  background: rgba(15, 23, 42, 0.06);
}
.hero__slides{
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide{
  position:absolute;
  inset:0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity .7s ease, transform 8s linear;
  pointer-events:none;
}
.hero__slide.is-active{
  opacity: 1;
  transform: scale(1.06);
}
.hero__slide--seal{
  /* For the seal slide we want "no crop" precision */
  transform: none;
}
.hero__slide--seal.is-active{
  transform: none;
}
.hero__slide img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: saturate(1.02) contrast(1.02);
}
.hero__slide--contain img{
  object-fit: contain;
  background: rgba(255,255,255,.92);
  padding: 18px;
  filter: none;
}
.hero__slide--seal img{
  filter: none;
}
.hero__slide--seal{
  position: relative;
}
.hero__sealBg{
  position: absolute;
  inset: -18px;
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.05);
  transform: scale(1.08);
  opacity: 0.42;
}
.hero__slide--seal.hero__slide--contain img{ padding: 0; background: transparent; }
.hero__sealFg{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  padding: 18px 6px;
  transform: scale(0.92);
  transform-origin: center;
}
.hero__nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,11,24,.45);
  color: rgba(255,255,255,.92);
  cursor:pointer;
  font-size: 22px;
  line-height: 1;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter: blur(8px);
}
.hero__nav:hover{ background: rgba(7,11,24,.62); }
.hero__nav--prev{ left: 10px; }
.hero__nav--next{ right: 10px; }
.hero__dots{
  position:absolute;
  left: 0;
  right: 0;
  bottom: 92px;
  z-index: 3;
  display:flex;
  gap: 8px;
  justify-content:center;
  flex-wrap:wrap;
  padding: 0 12px;
}
.hero__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.18);
  cursor:pointer;
  padding: 0;
}
.hero__dot.is-active{
  background: rgba(34,211,238,.85);
  border-color: rgba(34,211,238,.55);
}
@media (prefers-reduced-motion: reduce){
  .hero__slide{ transition: none; }
}
.hero__card{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(7,11,24,.50), rgba(7,11,24,.78));
  backdrop-filter: blur(12px);
}
.hero__cardTitle{ font-weight: 900; margin-bottom: 6px; color: #fff; }
.hero__cardText{ color: rgba(255,255,255,.88); line-height: 1.75; font-weight: 600; font-size: 14px; }
.hero__slideshow.is-seal-active + .hero__card{
  display: none;
}
.hero__slideshow.is-seal-active .hero__dots{
  display: none;
}

/* Sections */
.section{ padding: 54px 0; }
.section--soft{
  background: linear-gradient(180deg, rgba(16,185,129,.08), rgba(6,182,212,.06));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head{ margin-bottom: 20px; }
.section__head--row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 16px;
  flex-wrap:wrap;
}
.section__title{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 32px);
}
.section__desc{
  margin:0;
  color: var(--muted);
  line-height: 1.9;
  max-width: 75ch;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  padding: 16px 16px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}
.card__title{ margin: 0 0 6px; font-weight: 900; font-size: 18px; }
.card__text{ margin:0; color: var(--muted); line-height:1.85; font-weight: 600; }

.bullets{
  margin: 0;
  padding: 0 18px 0 0;
  list-style: none;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.bullets li{
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  line-height: 1.8;
}
.note{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(254, 243, 199, 0.75);
  color: #78350f;
  font-weight: 700;
  line-height: 1.8;
}
.image-frame{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.image-frame img{
  width:100%;
  height: 360px;
  object-fit: cover;
}
/* Mission: text-only (no placeholder graphic) */
.section--mission{
  padding-top: 40px;
  padding-bottom: 40px;
}
.section--mission .section__head{
  margin-bottom: 14px;
}
.section--mission .section__desc{
  max-width: 68ch;
}
.bullets--mission{
  max-width: min(68ch, 100%);
  padding: 0;
  gap: 8px;
}
.bullets--mission li{
  padding: 11px 14px;
}

/* Products */
.filters{ display:flex; gap: 8px; flex-wrap:wrap; }
.chip{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.88);
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  cursor:pointer;
  font-weight: 800;
}
.chip:hover{ background: rgba(6,182,212,.12); color: var(--text); border-color: rgba(6,182,212,.25); }
.chip.is-active{
  background: rgba(16,185,129,.18);
  border-color: rgba(16,185,129,.42);
  color: var(--text);
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.product{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  cursor:pointer;
  transition: transform .12s ease, border-color .2s ease, background .2s ease;
}
.product:hover{
  transform: translateY(-2px);
  border-color: rgba(6,182,212,.45);
  background: #fff;
}
/* Fixed-height media box: without this, tall product photos expand the whole card */
.product__media{
  width: 100%;
  height: clamp(150px, 26vw, 210px);
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product__media picture{
  display: block;
  width: 100%;
  height: 100%;
}
.product__media img,
.product__media .product__img{
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.product__body{ padding: 14px 14px 16px; }
.product__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}
.badge{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(241,245,249,.95);
  color: var(--muted2);
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product__name{
  margin: 0 0 10px;
  font-size: clamp(16px, 2.4vw, 19px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: 0.02em;
}
.product__summary{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product__cta{
  margin-top: 12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color: var(--text);
  font-weight: 900;
}
.arrow{
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 1px solid var(--border);
  background: rgba(6,182,212,.10);
  color: var(--text);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
  align-items:start;
}
.contact__info{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.contact-card{
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}
.contact-card__k{ color: var(--muted2); font-weight: 900; margin-bottom: 6px; }
.contact-card__v{ color: var(--text); font-weight: 850; }
/* Phone & email in RTL: keep digits/Latin in logical order (bidi isolation) */
.contact-phone,
.contact-email{
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}
/* <bdi> isolates phone/email in RTL; keep explicit LTR for older engines */
.contact-phone:where(bdi),
.contact-email:where(bdi){
  unicode-bidi: isolate;
}
.contact-card__v--phone,
.contact-card__v--email{ unicode-bidi: isolate; }
.contact__form{
  padding: 16px 16px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field{ display:flex; flex-direction:column; gap: 6px; margin-bottom: 12px; }
.field__label{ color: var(--muted2); font-weight: 900; font-size: 13px; }
.field__input{
  width:100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text);
  padding: 12px 12px;
  outline: none;
  font-family: inherit;
  font-weight: 750;
}
.field__input::placeholder{ color: rgba(100,116,139,.85); font-weight: 700; }
.field__input:focus{ border-color: rgba(6,182,212,.55); box-shadow: 0 0 0 4px rgba(6,182,212,.14); background: #fff; }
.field__textarea{ resize: vertical; min-height: 120px; }
.fineprint{ margin: 10px 0 0; color: var(--muted2); font-weight: 700; line-height: 1.7; font-size: 12.5px; }

/* Footer */
.site-footer{
  padding: 24px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255,255,255,.55);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
  flex-wrap:wrap;
}
.footer__links{ display:flex; gap: 14px; }
.footer__links a{ color: var(--muted); font-weight: 800; }
.footer__links a:hover{ color: var(--text); }

/* WhatsApp Floating Button (kept) */
.whatsapp-float {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 62px;
  height: 62px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  z-index: 9999;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.16);
}
.whatsapp-float:hover { background-color: #1ebe5d; }
.whatsapp-float svg { width: 36px; height: 36px; fill: #ffffff; }

html[dir="rtl"] .whatsapp-float{
  right: auto;
  left: 18px;
}

/* Product modal */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 100;
}
.modal.is-open{ display:flex; }
.modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  backdrop-filter: blur(6px);
}
.modal__panel{
  position:relative;
  width:min(980px, 100%);
  max-height: min(82vh, 840px);
  overflow:auto;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.18);
}
.modal__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
}
.modal__title{ margin:0; font-size: clamp(18px, 2.4vw, 24px); font-weight: 950; line-height: 1.2; }
.modal__close{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #f1f5f9;
  color: var(--text);
  cursor:pointer;
  font-weight: 950;
}
.modal__close:hover{ background: rgba(6,182,212,.14); }
.modal__content{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 18px;
  padding: 18px;
  align-items: start;
}
.modal__img{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, #f8fafc, #f1f5f9);
}
.modal__mediaFrame{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  max-height: min(46vh, 340px);
  padding: 16px;
}
.modal__mediaFrame picture{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-height: min(44vh, 300px);
}
.modal__mediaFrame picture img,
.modal__mediaFrame > img.modal__imgEl{
  max-width: 100%;
  max-height: min(44vh, 300px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.modal__meta{
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.modal__row{ display:flex; gap: 10px; flex-wrap:wrap; margin-bottom: 10px; }
.modal__desc{ color: var(--muted); line-height: 1.9; font-weight: 650; margin: 0 0 12px; }
.modal__list{
  margin: 0;
  padding: 0 18px 0 0;
  color: var(--muted);
  line-height: 1.9;
  font-weight: 700;
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.modal__actions{ margin-top: 16px; display:flex; gap: 10px; flex-wrap:wrap; }
.modal__actions .btn--primary{ flex: 1 1 200px; justify-content: center; }
.modal__actions .btn--ghost{ flex: 0 0 auto; }

/* Responsive */
@media (max-width: 980px){
  .hero__content{ grid-template-columns: 1fr; gap: 20px; }
  .hero__slideshow{ height: min(380px, 52vh); }
  .cards{ grid-template-columns: 1fr; gap: 12px; }
  .grid{ grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
  .contact{ grid-template-columns: 1fr; gap: 12px; }
  .modal__content{ grid-template-columns: 1fr; gap: 14px; padding: 14px; }
  .section{ padding: 42px 0; }
  .section__head{ margin-bottom: 16px; }
}

@media (max-width: 720px){
  .shell{ width: min(var(--max), calc(100% - 24px)); }
  .nav{ display:none; }
  .brand__tag{ display:none; }
  .site-header .shell{
    padding: 8px 0;
    gap: 8px;
    align-items: center;
  }
  .brand{
    flex: 1;
    min-width: 0;
    gap: 10px;
  }
  .brand__logo{
    height: 42px;
    max-height: 48px;
    max-width: 150px;
    padding: 5px 8px;
  }
  .brand__name{
    font-size: clamp(14px, 4.2vw, 16px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .header-actions{
    flex-shrink: 0;
    gap: 8px;
  }
  .header-actions .btn{
    height: 36px;
    padding: 0 10px;
    font-size: 12px;
  }
  .lang-toggle{
    height: 36px;
    min-width: 40px;
    padding: 0 10px;
  }

  .hero{ padding: 22px 0 14px; }
  .hero__content{ gap: 14px; }
  .hero__title{ margin: 10px 0 8px; }
  .hero__title #heroTitleAccent{ margin-top: 4px; }
  .hero__subtitle{
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 12px;
  }
  .hero__cta{ gap: 8px; }
  .hero__slideshow{ height: min(280px, 44vh); }
  /* When the seal is active, allow more vertical room on mobile */
  .hero__slideshow.is-seal-active{ height: min(560px, 78vh); }
  .hero__slide--contain img{ padding: 12px; }
  /* Remove side gaps: use full-width contain, increase height instead */
  .hero__sealFg{ padding: 10px 0 18px; transform: none; }
  .hero__sealBg{ filter: blur(14px) saturate(1.05); opacity: 0.48; }
  .hero__dots{ bottom: 78px; }
  .hero__nav{
    width: 36px;
    height: 36px;
    font-size: 18px;
    border-radius: 12px;
  }
  .hero__nav--prev{ left: 6px; }
  .hero__nav--next{ right: 6px; }
  .hero__card{
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    border-radius: 14px;
  }
  .hero__cardTitle{ margin-bottom: 4px; font-size: 15px; }
  .hero__cardText{ font-size: 12.5px; line-height: 1.55; }

  .stats{
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }
  .stat{ padding: 10px 12px; border-radius: 14px; }
  .stat__num{ font-size: 17px; }
  .stat__label{ font-size: 12px; }

  .section{ padding: 30px 0; }
  .section__head{ margin-bottom: 12px; }
  .section__title{ margin-bottom: 6px; }
  .section__desc{ line-height: 1.7; font-size: 15px; }
  .section--mission{
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .section__head--row{ gap: 10px; align-items: flex-start; }

  .cards{ gap: 10px; }
  .card{ padding: 14px 14px; }
  .card__title{ font-size: 17px; }

  .bullets{ gap: 8px; padding-inline-end: 0; }
  .bullets li{ padding: 10px 12px; }

  .grid{ grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
  .filters{ gap: 6px; }
  .chip{ padding: 7px 10px; font-size: 13px; }

  .form-row{ grid-template-columns: 1fr; }
  .product__media{ height: clamp(168px, 42vw, 200px); }
  .product__top{
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 6px;
  }
  .product__body{ padding: 12px 12px 14px; }
  .product__name{ margin-bottom: 8px; }
  .product__summary{ font-size: 13.5px; line-height: 1.55; }
  .product__cta{ margin-top: 10px; }
  .badge{ white-space: normal; font-size: 11.5px; padding: 5px 8px; }

  .contact-card{ padding: 12px 12px; }
  .contact__form{ padding: 14px 14px; }
  .field{ margin-bottom: 10px; }
  .field__textarea{ min-height: 100px; }

  .site-footer{ padding: 18px 0; }
  .footer__inner{ gap: 10px; }

  .whatsapp-float{
    width: 54px;
    height: 54px;
    bottom: 14px;
    right: 14px;
  }
  .whatsapp-float svg{ width: 30px; height: 30px; }
  html[dir="rtl"] .whatsapp-float{ left: 14px; }

  .modal{ padding: 12px; align-items: flex-end; }
  .modal__panel{
    width: 100%;
    max-height: min(90dvh, 720px);
    border-radius: 18px 18px 0 0;
  }
  .modal__head{ padding: 14px 14px 10px; }
  .modal__title{ font-size: 17px; }
  .modal__close{ width: 38px; height: 38px; }
  .modal__mediaFrame{ max-height: 32vh; min-height: 140px; padding: 10px; }
  .modal__mediaFrame picture img,
  .modal__mediaFrame > img.modal__imgEl{ max-height: 30vh; }
  .modal__meta{ padding: 12px; }
  .modal__actions{ margin-top: 12px; gap: 8px; }
  .modal__actions .btn--primary{ flex: 1 1 100%; }
}

@media (max-width: 400px){
  .shell{ width: min(var(--max), calc(100% - 20px)); }
  .hero__slideshow{ height: min(248px, 40vh); }
  .hero__slideshow.is-seal-active{ height: min(540px, 78vh); }
  .hero__sealFg{ padding: 8px 0 16px; transform: none; }
  .section{ padding: 26px 0; }
  .header-actions .btn{
    padding: 0 8px;
    font-size: 11.5px;
  }
}
