:root {
  --navy: #0d1a35;
  --navy-2: #13254a;
  --blue: #3a9bc8;
  --blue-light: #69c8ee;
  --gold: #c8a43a;
  --green: #25d366;
  --text: #ffffff;
  --muted: #CBD5E1;
  --line: rgba(255, 255, 255, .09);
  --panel: rgba(255, 255, 255, .045);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", Arial, sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.site-nav {
  position: fixed;
  inset: 0 0 auto;
  height: 74px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(13, 26, 53, .9);
  border-bottom: 1px solid rgba(58, 155, 200, .14);
  backdrop-filter: blur(18px);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-nav.scrolled { background: rgba(13, 26, 53, .98); box-shadow: 0 12px 40px rgba(0, 0, 0, .18); }
.home-catalog-nav {
  display: block;
  height: auto;
  min-height: 74px;
  padding: 0;
}
.home-catalog-nav-inner {
  width: min(100%, 1280px);
  min-height: 74px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  direction: ltr;
}
.home-catalog-nav .catalog-brand {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  flex-direction: row;
  direction: rtl;
}
.home-catalog-nav .catalog-brand-logo {
  width: 48px;
  height: 48px;
}
.home-catalog-nav .catalog-brand strong {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}
.home-catalog-nav .catalog-brand small {
  color: var(--blue-light);
  font-size: 10px;
  font-weight: 700;
}
.home-catalog-nav .catalog-nav-links {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  direction: rtl;
}
.home-catalog-nav .catalog-nav-links a {
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}
.home-catalog-nav .catalog-nav-actions {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  direction: rtl;
}
.home-catalog-nav .catalog-whatsapp {
  min-height: 46px;
  border-radius: 10px !important;
  padding: 0 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 3px solid rgba(255, 255, 255, .9);
  background: #fff;
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(58, 155, 200, .34), 0 10px 24px rgba(0, 0, 0, .18);
}
.brand-mark, .modal-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--navy);
  border: 3px solid #203e74;
  font-weight: 900;
  font-size: 25px;
  flex: 0 0 auto;
}
.brand strong { display: block; font-size: 14px; line-height: 1.3; }
.brand small { display: block; color: var(--blue-light); font-size: 10px; margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  transition: color .2s ease, background .2s ease;
}
.nav-links a:hover { color: #fff; background: rgba(58, 155, 200, .14); }
.whatsapp-btn, .primary-btn, .secondary-btn {
  border: 0;
  border-radius: 10px;
  min-height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 800;
  color: #fff;
}
.whatsapp-btn, .primary-btn.green { background: linear-gradient(135deg, var(--green), #1aa856); box-shadow: 0 10px 28px rgba(37, 211, 102, .22); }
.primary-btn { background: linear-gradient(135deg, var(--blue), #176895); box-shadow: 0 10px 30px rgba(58, 155, 200, .25); }
.secondary-btn { background: transparent; border: 1px solid rgba(255, 255, 255, .18); color: rgba(255, 255, 255, .78); }
.hero {
  position: relative;
  z-index: 1;
  min-height: 94vh;
  display: grid;
  place-items: center;
  text-align: start;
  padding: 102px 24px 64px;
}
.catalog-hero { min-height: 76vh; }
.hero-shell {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 56px;
}
.hero-inner { width: 100%; max-width: 640px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-light);
  border: 1px solid rgba(105, 200, 238, .26);
  background: rgba(58, 155, 200, .11);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 28px;
  animation: fadeDown .7s ease both;
}
.eyebrow span:first-child {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-light);
  animation: pulse 2s infinite;
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.22;
  font-weight: 900;
  animation: fadeUp .75s .05s ease both;
}
.hero h1 span {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #fff;
}
.hero p {
  margin: 0 auto 30px;
  color: var(--muted);
  line-height: 2;
  font-size: 15px;
  max-width: 640px;
  animation: fadeUp .75s .12s ease both;
}
.pill-row, .hero-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp .75s .2s ease both;
}
.pill-row { margin-bottom: 34px; }
.pill-row span {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .68);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
}
/* === Hero visual (right-column showcase card) === */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  animation: fadeUp .9s .25s ease both;
}
.hero-visual-glow {
  position: absolute;
  inset: -8% -6%;
  background:
    radial-gradient(circle at 28% 30%, rgba(58, 155, 200, .38), transparent 58%),
    radial-gradient(circle at 75% 80%, rgba(200, 164, 58, .22), transparent 55%),
    radial-gradient(circle at 60% 20%, rgba(37, 211, 102, .18), transparent 55%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
.hero-visual-card {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  background: linear-gradient(160deg, rgba(20, 40, 77, .92), rgba(13, 26, 53, .82));
  border: 1px solid rgba(105, 200, 238, .22);
  border-radius: 28px;
  padding: 26px 22px 20px;
  box-shadow: 0 36px 70px -22px rgba(0, 0, 0, .65), 0 0 0 1px rgba(255, 255, 255, .02) inset;
  backdrop-filter: blur(10px);
  transform: rotate(-1.2deg);
  transition: transform .35s ease;
}
.hero-visual-card:hover { transform: rotate(-0.4deg) translateY(-4px); }
.hero-visual-head { margin-bottom: 18px; }
.hero-visual-head small {
  display: block;
  color: var(--blue-light);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hero-visual-head strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.hero-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-cat {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 14px 8px 12px;
  text-align: center;
  display: grid;
  gap: 6px;
  justify-items: center;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.hero-cat:hover {
  transform: translateY(-3px);
  border-color: rgba(105, 200, 238, .32);
  background: rgba(58, 155, 200, .09);
}
.hero-cat-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(58, 155, 200, .14);
  color: var(--blue-light);
}
.hero-cat-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-cat[data-tone="green"] .hero-cat-icon { background: rgba(37, 211, 102, .14); color: var(--green); }
.hero-cat[data-tone="gold"] .hero-cat-icon { background: rgba(200, 164, 58, .16); color: #d8b766; }
.hero-cat[data-tone="cyan"] .hero-cat-icon { background: rgba(105, 200, 238, .14); color: var(--blue-light); }
.hero-cat b {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}
.hero-cat-summary {
  background: linear-gradient(135deg, rgba(58, 155, 200, .18), rgba(58, 155, 200, .06));
  border-color: rgba(105, 200, 238, .35);
}
.hero-cat-summary strong {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-cat-summary small {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .72);
}
.hero-visual-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.hero-pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, .18);
  animation: pulse 2s infinite;
}
.hero-visual-footer small {
  font-size: 12px;
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
}
/* Mobile: stack vertically, restore centered text */
@media (max-width: 880px) {
  .hero { min-height: auto; padding: 96px 20px 56px; text-align: center; }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-inner { margin: 0 auto; max-width: 640px; }
  .pill-row, .hero-actions { justify-content: center; }
  .hero-visual-card { transform: none; width: min(380px, 100%); }
  .hero-visual-card:hover { transform: translateY(-4px); }
}
@media (max-width: 420px) {
  .hero-visual-card { padding: 20px 16px 16px; }
  .hero-visual-grid { gap: 8px; }
  .hero-cat { padding: 12px 6px 10px; }
}
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  animation: bounce 1.8s infinite;
}
.scroll-cue-arrow {
  width: 14px;
  height: 14px;
  border-right: 2px solid rgba(255, 255, 255, .35);
  border-bottom: 2px solid rgba(255, 255, 255, .35);
  transform: rotate(45deg);
}
.stats-band {
  position: relative;
  z-index: 1;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}
.stat, .segment, .category, .branch, .product, .catalog-side, .cta-box {
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.stat {
  border-radius: 16px;
  padding: 26px 12px;
  text-align: center;
}
.stat:hover, .segment:hover, .category:hover, .branch:hover, .product:hover {
  transform: translateY(-5px);
  background: rgba(58, 155, 200, .08);
  border-color: rgba(58, 155, 200, .26);
}
.stat strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 9px;
  background: linear-gradient(135deg, #fff, var(--blue-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat span, .section-head p, .segment p, .branch p, .product p, .cta-box p { color: var(--muted); }
.section {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
}
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head small, .catalog-head small, .catalog-side small {
  color: #8DDCF8;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
}
.section-head h2, .catalog-head h2, .catalog-side h2, .cta-box h2, .suppliers h2 {
  margin: 8px 0 10px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.35;
}
.section-head p { margin: 0; max-width: 560px; line-height: 1.9; font-size: 14px; }
.section-head.center p { margin-inline: auto; }
.segment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.segment {
  border-radius: 18px;
  padding: 32px;
}
.segment-tag {
  display: inline-flex;
  padding: 4px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 14px;
}
.segment-tag.blue { color: var(--blue-light); background: rgba(58, 155, 200, .14); border: 1px solid rgba(58, 155, 200, .23); }
.segment-tag.gold { color: #e7cb70; background: rgba(200, 164, 58, .14); border: 1px solid rgba(200, 164, 58, .23); }
.segment h3, .branch h3, .product h3 { margin: 0 0 10px; font-size: 20px; }
.segment p, .branch p, .product p { margin: 0; line-height: 1.85; font-size: 13px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.category {
  min-height: 136px;
  border-radius: 14px;
  padding: 22px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.category b { font-size: 15px; margin-bottom: 8px; }
.category span { color: #CBD5E1; font-size: 11px; line-height: 1.6; }
.branch-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.branch-grid.main-branch-grid {
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
}
.branch {
  border-radius: 16px;
  padding: 28px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.branch::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -70px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(91, 184, 224, .22), transparent 70%);
  animation: branchGlowFloat 8s ease-in-out infinite alternate;
}
.branch > * { position: relative; z-index: 1; }
.branch > span {
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--blue), #1a6fa0);
  font-weight: 900;
}
.branch button, .product button {
  margin-top: 18px;
  border: 1px solid rgba(58, 155, 200, .28);
  color: var(--blue-light);
  background: transparent;
  min-height: 36px;
  border-radius: 999px;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
}
.suppliers {
  position: relative;
  z-index: 1;
  padding: 60px 0 50px;
  background: rgba(13, 26, 53, .72);
  overflow: hidden;
  text-align: center;
}
.suppliers h2 { margin-bottom: 34px; }
.suppliers h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  background: var(--blue);
  border-radius: 999px;
  margin: 14px auto 0;
}
.marquee {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
  padding: 20px 0;
  direction: ltr;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 58px;
  width: max-content;
  padding: 0 30px;
  animation: marqueeScroll 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee img {
  height: 58px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(.1);
}
.cta-section {
  position: relative;
  z-index: 1;
  padding: 64px 24px 84px;
  text-align: center;
}
.cta-box {
  width: min(680px, 100%);
  margin: 0 auto;
  border-radius: 24px;
  padding: 54px 30px;
  background: linear-gradient(135deg, rgba(58, 155, 200, .13), rgba(27, 46, 94, .34));
}
.cta-box p { line-height: 1.9; margin: 0 auto 30px; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.site-footer {
  position: relative;
  z-index: 1;
  min-height: 78px;
  padding: 18px 40px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, .44);
}
.site-footer .brand { color: #fff; }
.site-footer .brand-logo { width: 38px; height: 38px; border-width: 2px; }
.site-footer .brand-mark { width: 38px; height: 38px; font-size: 20px; border-width: 2px; }
.catalog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: min(640px, 100%);
  margin: 0 auto;
}
.catalog-search input, .wa-input {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  padding: 0 16px;
  outline: none;
}
.catalog-search input::placeholder, .wa-input::placeholder { color: rgba(255, 255, 255, .34); }
.catalog-shell {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 72px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 18px;
  align-items: start;
}
.catalog-side {
  position: sticky;
  top: 92px;
  border-radius: 18px;
  padding: 24px;
}
.filter-list { display: grid; gap: 8px; }
.filter-btn {
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .68);
  cursor: pointer;
  font-weight: 800;
  text-align: right;
  padding: 0 14px;
}
.filter-btn.active, .filter-btn:hover { color: #fff; border-color: rgba(58, 155, 200, .34); background: rgba(58, 155, 200, .12); }
.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}
.catalog-head h2 { margin-bottom: 0; }
#productCount { color: var(--blue-light); font-weight: 900; white-space: nowrap; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.product {
  border-radius: 16px;
  padding: 24px;
  min-height: 190px;
}
.product[hidden] { display: none; }
.product span {
  display: inline-flex;
  margin-bottom: 14px;
  color: #e7cb70;
  background: rgba(200, 164, 58, .14);
  border: 1px solid rgba(200, 164, 58, .22);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 900;
}
.logo-cloud {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.logo-cloud img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}
.wa-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, .68);
  place-items: center;
  padding: 20px;
}
.wa-modal.show { display: grid; }
.wa-dialog {
  width: min(440px, 100%);
  border: 1px solid rgba(58, 155, 200, .24);
  background: #0d1a35;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .4);
}
.icon-btn {
  border: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}
.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 19px;
}
.modal-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.modal-head h2 { margin: 0; font-size: 17px; }
.modal-head p { margin: 3px 0 0; color: var(--muted); font-size: 12px; }
.modal-mark { width: 44px; height: 44px; font-size: 22px; border-width: 2px; }
.wa-options { display: grid; gap: 8px; margin-bottom: 10px; }
.wa-choice {
  width: 100%;
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-rows: auto auto;
  gap: 2px 12px;
  text-align: right;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .045);
  color: #fff;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}
.wa-choice span {
  grid-row: 1 / 3;
  height: 38px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: var(--blue-light);
  background: rgba(58, 155, 200, .14);
  font-size: 11px;
  font-weight: 900;
}
.wa-choice strong { font-size: 13px; }
.wa-choice small { color: rgba(203, 213, 225, .85); }
.wa-choice.active { border-color: var(--green); background: rgba(37, 211, 102, .08); }
.wa-input { display: none; width: 100%; margin-bottom: 10px; }
.wa-input.show { display: block; }
.wa-preview {
  display: none;
  color: rgba(255, 255, 255, .68);
  background: rgba(255, 255, 255, .045);
  border-radius: 10px;
  padding: 12px;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 12px;
}
.wa-preview.show { display: block; }
.wa-send { display: none; width: 100%; }
.wa-send.show { display: flex; }
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 50% { opacity: .35; transform: scale(1.5); } }
@keyframes bounce { 50% { transform: translateX(-50%) translateY(7px); } }
@keyframes marqueeScroll { to { transform: translate3d(-50%, 0, 0); } }
@keyframes branchGlowFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(34px, 24px, 0) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .branch::before { animation: none; }
}
@media (max-width: 860px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-nav {
    height: auto;
    min-height: 66px;
    padding: 0;
  }

  .home-catalog-nav {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .home-catalog-nav-inner {
    width: 100%;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 10px 16px 12px;
    direction: rtl;
  }

  .home-catalog-nav .catalog-brand {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    justify-self: stretch;
    justify-content: center;
    text-align: start;
  }

  .home-catalog-nav .catalog-brand-logo {
    width: 44px;
    height: 44px;
  }

  .home-catalog-nav .catalog-brand strong {
    font-size: 13px;
  }

  .home-catalog-nav .catalog-brand small {
    font-size: 10px;
  }

  .home-catalog-nav .catalog-nav-links {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 4px;
    padding: 0 0 2px;
    scrollbar-width: none;
  }

  .home-catalog-nav .catalog-nav-links::-webkit-scrollbar {
    display: none;
  }

  .home-catalog-nav .catalog-nav-links a {
    flex: 0 0 auto;
    padding: 8px 11px;
    font-size: 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .72);
  }

  .home-catalog-nav .catalog-nav-links a[href="/cataloug/"] {
    color: #fff;
    background: rgba(58, 155, 200, .16);
  }

  .home-catalog-nav .catalog-nav-actions {
    grid-column: auto;
    grid-row: auto;
    justify-self: stretch;
  }

  .home-catalog-nav .catalog-whatsapp {
    width: 100%;
    min-height: 44px;
    border-radius: 13px !important;
  }

  .whatsapp-btn { padding: 0 16px; min-height: 40px; }
  .brand-logo, .brand-mark { width: 44px; height: 44px; }

  .home-hero {
    min-height: auto;
    place-items: start center;
    padding: 210px 16px 42px;
  }

  .hero-inner {
    width: 100%;
  }

  .eyebrow {
    max-width: 100%;
    margin-bottom: 20px;
    padding: 7px 13px;
    font-size: 11px;
    line-height: 1.6;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.25;
  }

  .hero p {
    max-width: 100%;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.95;
  }

  .pill-row {
    gap: 8px;
    margin-bottom: 24px;
  }

  .pill-row span {
    padding: 6px 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .primary-btn,
  .hero-actions .secondary-btn {
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
  }

  .scroll-cue {
    display: none;
  }

  .stats-band {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 0 38px;
  }

  .stat {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 16px;
    text-align: start;
  }

  .stat strong {
    margin: 0;
    font-size: 27px;
  }

  .stat span {
    font-size: 13px;
    line-height: 1.7;
  }

  .segment-grid, .branch-grid, .catalog-shell, .product-grid { grid-template-columns: 1fr; }
  .catalog-side { position: static; }
  .filter-list { grid-template-columns: repeat(2, 1fr); }
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .logo-cloud { grid-template-columns: repeat(2, 1fr); }
  .catalog-search { grid-template-columns: 1fr; }

  .section {
    width: calc(100% - 32px);
    padding: 42px 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head h2,
  .cta-box h2,
  .suppliers h2 {
    font-size: 27px;
  }

  .segment,
  .branch {
    border-radius: 18px;
    padding: 24px;
  }

  .category {
    min-height: 118px;
    padding: 18px 10px;
  }

  .category b {
    font-size: 14px;
  }

  .suppliers {
    padding: 42px 0 38px;
  }

  .marquee {
    width: calc(100% - 32px);
    padding: 14px 0;
  }

  .marquee-track {
    gap: 34px;
  }

  .marquee img {
    height: 44px;
    max-width: 120px;
  }

  .cta-section {
    padding: 44px 16px 58px;
  }

  .cta-box {
    border-radius: 20px;
    padding: 30px 20px;
  }

  .site-footer {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 18px;
    text-align: center;
  }
}
@media (max-width: 520px) {
  .home-hero {
    padding-top: 205px;
    padding-bottom: 34px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .brand strong { font-size: 12px; }
  .brand small { font-size: 9px; }
  .stats-band { gap: 10px; }
  .section, .catalog-shell { width: calc(100% - 32px); }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .filter-list { grid-template-columns: 1fr; }
  .segment, .product, .catalog-side, .cta-box { padding: 22px; }
  .cta-actions .primary-btn {
    width: 100%;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Catalog redesign aligned with the Alwaha landing page */
.catalog-page {
  background: #f5f7fb;
  color: #15213b;
}
.catalog-page #bgCanvas {
  height: 620px;
}
.catalog-page .site-nav {
  direction: rtl;
}
.nav-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, #25d366, #1ea855);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .22);
}
.catalog-hero {
  position: relative;
  z-index: 1;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 118px 24px 70px;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, rgba(13, 26, 53, 0) 0%, rgba(13, 26, 53, .2) 100%);
}
.catalog-hero-inner {
  width: min(920px, 100%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #69c8ee;
  border: 1px solid rgba(105, 200, 238, .28);
  background: rgba(58, 155, 200, .12);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 26px;
}
.catalog-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: 0;
}
.catalog-hero p {
  width: min(680px, 100%);
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, .68);
  line-height: 2;
  font-size: 15px;
}
.catalog-search-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) minmax(150px, .75fr) minmax(150px, .75fr) auto;
  gap: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}
.search-field,
.select-field {
  display: grid;
  gap: 6px;
  text-align: right;
}
.search-field span,
.select-field span {
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  font-weight: 800;
  padding-inline: 4px;
}
.search-field input,
.select-field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  outline: none;
}
.search-field input::placeholder {
  color: rgba(255, 255, 255, .34);
}
.select-field select option {
  color: #15213b;
}
.reset-btn {
  align-self: end;
  min-height: 48px;
  padding-inline: 20px;
}
.catalog-content {
  position: relative;
  z-index: 2;
  background: #f5f7fb;
  padding: 56px 0 0;
}
.category-strip,
.products-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.catalog-section-head {
  margin-bottom: 24px;
}
.catalog-section-head small {
  display: block;
  color: #3a9bc8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
}
.catalog-section-head h2 {
  margin: 7px 0 0;
  color: #13254a;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  font-weight: 900;
}
.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 58px;
}
.catalog-category-card {
  min-height: 178px;
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  text-align: right;
  border: 1px solid #e6ebf3;
  border-radius: 18px;
  background: #fff;
  color: #13254a;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(19, 37, 74, .07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.catalog-category-card:hover {
  transform: translateY(-5px);
  border-color: rgba(58, 155, 200, .38);
  box-shadow: 0 22px 52px rgba(19, 37, 74, .12);
}
.catalog-category-card span {
  min-width: 52px;
  height: 36px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(58, 155, 200, .1);
  color: #1c7da9;
  font-size: 12px;
  font-weight: 900;
}
.catalog-category-card strong {
  margin-top: 16px;
  font-size: 17px;
  font-weight: 900;
}
.catalog-category-card small {
  color: #6d7588;
  line-height: 1.65;
  font-size: 12px;
}
.catalog-category-card b {
  color: #c8a43a;
  font-size: 12px;
}
.products-section {
  padding-bottom: 70px;
}
.products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.result-count {
  flex: 0 0 auto;
  color: #3a9bc8;
  background: #eaf6fb;
  border: 1px solid #d6edf7;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
  font-size: 13px;
}
.catalog-page .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 378px;
  overflow: hidden;
  border: 1px solid #e6ebf3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(19, 37, 74, .075);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 155, 200, .34);
  box-shadow: 0 24px 58px rgba(19, 37, 74, .13);
}
.product-media {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 25% 20%, rgba(105, 200, 238, .26), transparent 26%),
    linear-gradient(135deg, #eef8fc, #f7fafc 54%, #fff9e9);
}

/* ===========================================================
   v02 design enhancements — homepage
   =========================================================== */

/* ---- Navbar phone link (change #6) ---- */
.home-catalog-nav-inner {
  grid-template-columns: auto 1fr auto;
}
.home-catalog-nav .catalog-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-catalog-nav .catalog-nav-links {
  justify-self: end;
}
.catalog-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
  font-weight: 800;
  font-size: 13px;
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .035);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.catalog-nav-phone:hover {
  background: rgba(58, 155, 200, .12);
  border-color: rgba(105, 200, 238, .32);
  color: #fff;
}
.catalog-nav-phone svg {
  width: 14px;
  height: 14px;
  fill: var(--blue-light);
}
@media (max-width: 1080px) {
  .catalog-nav-phone span { display: none; }
  .catalog-nav-phone { padding: 9px 11px; }
}
@media (max-width: 760px) {
  .home-catalog-nav-inner { padding: 0 16px; gap: 10px; }
  .home-catalog-nav .catalog-nav-links { display: none; }
  .home-catalog-nav-inner { grid-template-columns: auto 1fr auto; }
}

/* ---- Category card icons (change #4) ---- */
.category {
  position: relative;
  overflow: hidden;
}
.category::after {
  content: "";
  position: absolute;
  inset: -30% -25% auto auto;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at top right, rgba(105, 200, 238, .14), transparent 55%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.category:hover::after { opacity: 1; }
.category > * { position: relative; z-index: 1; }
.category-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  margin: 0 auto 14px;
  background: rgba(58, 155, 200, .13);
  color: var(--blue-light);
  transition: transform .3s ease, background .25s ease;
}
.category:hover .category-icon { transform: translateY(-2px) scale(1.05); }
.category-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.category[data-tone="green"] .category-icon { background: rgba(37, 211, 102, .14); color: var(--green); }
.category[data-tone="gold"] .category-icon { background: rgba(200, 164, 58, .16); color: #d8b766; }
.category[data-tone="cyan"] .category-icon { background: rgba(105, 200, 238, .14); color: var(--blue-light); }
.category[data-tone="blue"] .category-icon { background: rgba(58, 155, 200, .15); color: var(--blue-light); }
.category { min-height: 152px; padding: 24px 14px 22px; }
@media (max-width: 880px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 540px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category { min-height: 132px; padding: 18px 10px; }
  .category-icon { width: 40px; height: 40px; margin-bottom: 10px; }
  .category-icon svg { width: 20px; height: 20px; }
}

/* ---- Branch card rebalance (change #8) ---- */
.branch-featured {
  padding: 36px 32px 30px;
  display: grid;
  gap: 18px;
  justify-items: center;
}
.branch-featured .branch-body { display: grid; gap: 10px; justify-items: center; }
.branch-featured h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin: 0;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.branch-featured p {
  font-size: 14px;
  line-height: 1.85;
  max-width: 380px;
  margin: 0;
  color: var(--muted);
}
.branch-featured .branch-badge {
  width: auto;
  height: auto;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(58, 155, 200, .22), rgba(58, 155, 200, .08));
  border: 1px solid rgba(105, 200, 238, .28);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue-light);
  display: inline-flex;
  align-items: center;
  margin: 0;
}
.branch-cta-wrap {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  width: 100%;
  display: flex;
  justify-content: center;
}
.branch-cta {
  margin-top: 0 !important;
  min-height: 46px;
  padding: 0 28px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--blue), #176895) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 900 !important;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(58, 155, 200, .25);
  transition: transform .2s ease, box-shadow .2s ease;
}
.branch-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(58, 155, 200, .32);
}

/* ---- Supplier logos uniform treatment (change #5) ---- */
.marquee {
  background: #ffffff;
  padding: 26px 0;
}
.marquee-track {
  gap: 48px;
  padding: 0 36px;
}
.marquee img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.95;
  padding: 0 8px;
  transition: opacity .2s ease, transform .2s ease;
}
.marquee img:hover {
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 640px) {
  .marquee { padding: 20px 0; }
  .marquee-track { gap: 32px; padding: 0 20px; }
  .marquee img { height: 36px; max-width: 110px; }
}

/* ---- Full footer (change #10) ---- */
.site-footer {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, var(--navy) 0%, #091428 100%);
  color: rgba(255, 255, 255, .68);
}
.site-footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding: 58px 0 36px;
}
.footer-col h3 {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 900;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand .brand-logo {
  width: 48px;
  height: 48px;
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}
.footer-brand small {
  display: block;
  color: var(--blue-light);
  font-size: 11px;
  margin-top: 2px;
  font-weight: 700;
}
.footer-tagline {
  max-width: 400px;
  margin: 0 0 20px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .58);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-badges span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .03);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .72);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  font-weight: 600;
  transition: color .2s ease;
}
.footer-links a:hover { color: var(--blue-light); }
.footer-hours {
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}
.footer-address {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .58);
}
.footer-social {
  display: inline-flex;
  gap: 10px;
}
.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: rgba(255, 255, 255, .82);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background: rgba(37, 211, 102, .14);
  border-color: rgba(37, 211, 102, .4);
  color: var(--green);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
}
.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0;
}
.site-footer-bottom > * {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.site-footer-bottom {
  display: block;
}
.site-footer-bottom p,
.site-footer-bottom .footer-legal {
  display: flex;
  align-items: center;
}
.site-footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin: 0 auto;
}
.footer-legal {
  margin: 6px auto 0;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, .56);
  transition: color .2s ease;
}
.footer-legal a:hover { color: var(--blue-light); }
@media (min-width: 720px) {
  .site-footer-bottom {
    padding: 18px 24px;
  }
  .site-footer-bottom > * { width: min(1180px, 100%); padding: 0; }
  .site-footer-bottom {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
  }
  .site-footer-bottom p { margin: 0; }
  .footer-legal { margin: 0; }
}
@media (max-width: 880px) {
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    padding: 44px 0 28px;
  }
  .footer-col-brand {
    grid-column: 1 / -1;
  }
}
@media (max-width: 480px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.product-media span {
  min-width: 72px;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #1b2e5e;
  border: 1px solid #dfe8f2;
  box-shadow: 0 12px 30px rgba(27, 46, 94, .12);
  font-weight: 900;
  font-size: 13px;
}
.product-body {
  padding: 18px 18px 14px;
  flex: 1;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
}
.product-meta span {
  border-radius: 999px;
  background: #f1f6fb;
  color: #58708f;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
}
.product-meta span:first-child {
  background: rgba(58, 155, 200, .1);
  color: #1c7da9;
}
.product-card h3 {
  margin: 0 0 14px;
  color: #13254a;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 900;
}
.spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
}
.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid #eef2f6;
}
.spec-list dt {
  color: #7a8496;
  font-size: 12px;
  font-weight: 700;
}
.spec-list dd {
  margin: 0;
  color: #2b3854;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 18px 18px;
}
.wa-product-btn,
.detail-btn {
  min-height: 44px;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}
.wa-product-btn {
  border: 0;
  background: linear-gradient(135deg, #25d366, #1ea855);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .18);
}
.detail-btn {
  border: 1px solid #dfe8f2;
  background: #fff;
  color: #31507f;
}
.load-more {
  display: flex;
  margin: 28px auto 0;
}
.load-more[hidden] {
  display: none;
}
.catalog-page .suppliers.compact {
  background: #fff;
  border-top: 1px solid #e9eef5;
  padding-top: 56px;
}
.catalog-page .suppliers.compact h2 {
  color: #13254a;
}
.logo-cloud {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.logo-cloud img {
  width: 100%;
  height: 86px;
  object-fit: contain;
  border: 1px solid #e8edf4;
  border-radius: 14px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(19, 37, 74, .06);
}
.mobile-wa {
  display: none;
}
.catalog-page .foot {
  background: #0d1a35;
}
.catalog-page .foot-logo-circle {
  background: #fff;
  color: #1b2e5e;
  font-weight: 900;
}
.catalog-page .modal-box {
  text-align: right;
}
.catalog-page .modal-header h2 {
  margin: 0;
  font-size: 16px;
}
.catalog-page .modal-header p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, .52);
  font-size: 12px;
}
@media (max-width: 1080px) {
  .catalog-category-grid,
  .catalog-page .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .catalog-search-panel {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .catalog-page .site-nav {
    height: 66px;
  }
  .catalog-hero {
    min-height: auto;
    padding: 100px 16px 42px;
  }
  .catalog-hero h1 {
    font-size: 36px;
  }
  .catalog-hero p {
    font-size: 14px;
    line-height: 1.9;
  }
  .catalog-search-panel {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .category-strip,
  .products-section {
    width: calc(100% - 32px);
  }
  .catalog-category-grid,
  .catalog-page .product-grid,
  .logo-cloud {
    grid-template-columns: 1fr 1fr;
  }
  .products-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-card {
    min-height: 0;
  }
  .mobile-wa {
    position: fixed;
    z-index: 30;
    right: 16px;
    bottom: 16px;
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366, #1ea855);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(37, 211, 102, .28);
  }
}
@media (max-width: 520px) {
  .catalog-category-grid,
  .catalog-page .product-grid,
  .logo-cloud {
    grid-template-columns: 1fr;
  }
  .catalog-category-card {
    min-height: 150px;
  }
  .product-media {
    aspect-ratio: 16 / 9;
  }
  .nav-wa {
    display: none;
  }
}

/* ===========================================================
   v03-magic — visual flourishes & new sections
   =========================================================== */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, .04);
  z-index: 1000;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--blue-light), var(--blue), var(--blue-light));
  background-size: 200% 100%;
  animation: scrollGradient 3s linear infinite;
  box-shadow: 0 0 12px rgba(105, 200, 238, .55);
  transition: width .12s linear;
}
@keyframes scrollGradient {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* Floating WhatsApp button (FAB) */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #1aa856);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(37, 211, 102, .35), 0 0 0 6px rgba(37, 211, 102, .12);
  transition: transform .25s ease, box-shadow .25s ease, padding .3s ease;
}
.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 52px rgba(37, 211, 102, .45), 0 0 0 8px rgba(37, 211, 102, .18);
}
.fab-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  position: relative;
  z-index: 1;
}
.fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: fabPulse 2.4s ease-out infinite;
}
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.fab-label {
  white-space: nowrap;
  transition: max-width .3s ease, opacity .25s ease, margin .3s ease;
  max-width: 200px;
  overflow: hidden;
}
.fab-whatsapp.collapsed .fab-label {
  max-width: 0;
  opacity: 0;
  margin: 0;
}
.fab-whatsapp.collapsed {
  padding: 14px;
}
@media (max-width: 540px) {
  .fab-whatsapp { padding: 12px; }
  .fab-whatsapp .fab-label { display: none; }
}

/* Back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  z-index: 59;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(13, 26, 53, .85);
  border: 1px solid rgba(105, 200, 238, .35);
  color: var(--blue-light);
  cursor: pointer;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease, border-color .25s ease;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover {
  background: rgba(58, 155, 200, .22);
  border-color: rgba(105, 200, 238, .6);
  color: #fff;
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}

/* Wave divider under hero */
.section-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 80px;
  pointer-events: none;
  z-index: 2;
}

.scroll-cue-text {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, .55);
  border-radius: 999px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(13, 26, 53, .6);
  backdrop-filter: blur(6px);
}

/* Category card shimmer-on-hover */
.category {
  isolation: isolate;
}
.category::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, .12) 50%, transparent 100%);
  transform: skewX(-15deg);
  transition: left .8s ease;
  pointer-events: none;
  z-index: 0;
}
.category:hover::before {
  left: 140%;
}

/* ===========================================================
   How it works — 4-step timeline
   =========================================================== */
.how-it-works { position: relative; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.timeline-track {
  position: absolute;
  top: 38px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(90deg, rgba(105, 200, 238, .1) 0%, rgba(105, 200, 238, .55) 50%, rgba(105, 200, 238, .1) 100%);
  z-index: 0;
}
.timeline-step {
  position: relative;
  padding: 16px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
  z-index: 1;
}
.timeline-step:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 200, 238, .32);
  background: rgba(58, 155, 200, .07);
}
.timeline-num {
  position: absolute;
  top: -18px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #176895);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  box-shadow: 0 10px 28px rgba(58, 155, 200, .35);
  border: 3px solid var(--navy);
}
.timeline-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(105, 200, 238, .12);
  color: var(--blue-light);
  margin: 22px auto 14px;
}
.timeline-icon svg { width: 22px; height: 22px; }
.timeline-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.timeline-step p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.85;
  text-align: center;
  color: var(--muted);
}
@media (max-width: 880px) {
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .timeline-track { display: none; }
}
@media (max-width: 480px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ===========================================================
   Trust strip — avatars + rating + CTA
   =========================================================== */
.trust-strip {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
  padding: 22px 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(20, 40, 77, .85), rgba(13, 26, 53, .6));
  border: 1px solid rgba(105, 200, 238, .18);
  border-radius: 22px;
  box-shadow: 0 24px 60px -22px rgba(0, 0, 0, .55);
}
.trust-avatars {
  display: inline-flex;
  align-items: center;
}
.trust-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.5px;
}
.trust-avatar + .trust-avatar {
  margin-inline-start: -14px;
}
.trust-avatar-more {
  background: rgba(105, 200, 238, .16);
  color: var(--blue-light);
  font-size: 18px;
}
.trust-stars {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 6px;
}
.trust-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}
.trust-text p {
  margin: 0;
  line-height: 1.7;
}
.trust-text strong {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}
.trust-sub {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--muted);
}
.trust-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--blue), #176895);
  color: #fff;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(58, 155, 200, .28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.trust-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(58, 155, 200, .38);
}
.trust-cta svg {
  width: 14px;
  height: 14px;
  transform: rotate(180deg); /* arrow points start in RTL */
}
@media (max-width: 760px) {
  .trust-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
    padding: 20px;
  }
  .trust-avatars { justify-content: center; justify-self: center; }
  .trust-stars { justify-content: center; }
  .trust-cta { justify-self: center; }
}

/* ===========================================================
   Project gallery — 6-tile grid with hover overlay
   =========================================================== */
.project-gallery .section-head { margin-bottom: 30px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(20, 40, 77, .95), rgba(13, 26, 53, .85));
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  isolation: isolate;
}
.gallery-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(105, 200, 238, .32);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, .55);
}
.gallery-pattern {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(105, 200, 238, .35);
  transition: color .3s ease, transform .6s ease;
}
.gallery-tile:hover .gallery-pattern {
  color: rgba(105, 200, 238, .65);
  transform: scale(1.08);
}
.gallery-pattern svg { width: 56%; height: 56%; }
.gallery-tile[data-tone="gold"] .gallery-pattern { color: rgba(200, 164, 58, .4); }
.gallery-tile[data-tone="gold"]:hover .gallery-pattern { color: rgba(200, 164, 58, .75); }
.gallery-tile[data-tone="green"] .gallery-pattern { color: rgba(37, 211, 102, .4); }
.gallery-tile[data-tone="green"]:hover .gallery-pattern { color: rgba(37, 211, 102, .75); }
.gallery-tile[data-tone="cyan"] .gallery-pattern { color: rgba(105, 200, 238, .45); }
.gallery-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(13, 26, 53, .92) 0%, rgba(13, 26, 53, .65) 60%, transparent 100%);
  transform: translateY(40%);
  transition: transform .3s ease;
}
.gallery-tile:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}
.gallery-overlay small {
  display: block;
  color: var(--blue-light);
  font-size: 11px;
  font-weight: 700;
}
@media (max-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-overlay { transform: translateY(0); }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
}

/* ===========================================================
   FAQ accordion
   =========================================================== */
.faq-section { position: relative; }
.faq-list {
  width: min(820px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s ease, background .25s ease;
}
.faq-item[open] {
  border-color: rgba(105, 200, 238, .28);
  background: rgba(58, 155, 200, .06);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  line-height: 1.95;
  font-size: 13.5px;
  color: var(--muted);
}
.faq-chev {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--blue-light);
  transition: transform .25s ease;
}
.faq-chev svg { width: 18px; height: 18px; }
.faq-item[open] .faq-chev { transform: rotate(180deg); }
