@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --navy: #1a3268;
  --navy-soft: #243f78;
  --brand-blue: #1f3d7a;
  --brand-red: #e30613;
  --teal: #1f3d7a;
  --teal-soft: #2d4f94;
  --teal-glow: rgba(31, 61, 122, .16);
  --ice: #f5f7fb;
  --paper: #ffffff;
  --sand: #f7f4f2;
  --gold: #e30613;
  --gold-bright: #ff3340;
  --text: #18233a;
  --muted: #5b6578;
  --line: rgba(26, 50, 104, .12);
  --shadow: 0 22px 50px rgba(26, 50, 104, .1);
  --shadow-soft: 0 10px 28px rgba(26, 50, 104, .07);
  --radius: 1.35rem;
  --wrap: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 560px at 90% -8%, rgba(31,61,122,.1), transparent 58%),
    radial-gradient(900px 500px at 0% 12%, rgba(227,6,19,.06), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 42%, #eef2f8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(31,61,122,.12), transparent 34%),
    radial-gradient(circle at 88% 68%, rgba(227,6,19,.1), transparent 38%),
    linear-gradient(180deg, #fbfcfd, #f1f4f9);
}
.bg-mesh::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 30% 40%, rgba(31,61,122,.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(26,50,104,.05) 0 1px, transparent 1.5px);
  background-size: 46px 46px, 62px 62px;
  animation: drift 28s linear infinite;
  opacity: .7;
}
.bg-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,50,104,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,50,104,.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 20%, black 10%, transparent 70%);
  opacity: .5;
}
@keyframes drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-40px, 28px, 0); }
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.4rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(26,50,104,.07);
  box-shadow: 0 10px 30px rgba(26,50,104,.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.brand-logo {
  height: auto;
  max-height: 70px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.brand-text strong {
  display: block;
  font-size: 1.12rem;
  font-weight: 900;
  color: var(--navy);
  font-family: "Montserrat", "Cairo", sans-serif;
  letter-spacing: .02em;
}
.brand-text small {
  color: var(--brand-red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  font-family: "Montserrat", "Cairo", sans-serif;
}
.brand-mark-lg {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(145deg, #2d4f94, #1f3d7a 60%, #152a58);
  box-shadow: 0 16px 34px rgba(31,61,122,.22);
  position: relative;
  z-index: 1;
  font-family: "Montserrat", "Cairo", sans-serif;
}
.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  letter-spacing: .02em;
  color: #fff;
  background: linear-gradient(145deg, #2d4f94, #1f3d7a 60%, #152a58);
  box-shadow: 0 12px 28px rgba(31,61,122,.28);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .3rem;
  flex-wrap: wrap;
}
.nav-links a {
  padding: .58rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  transition: .2s ease;
}
.nav-links a:hover, .nav-links a.is-active {
  color: var(--navy);
  background: rgba(31,61,122,.08);
}
.nav-cta {
  background: linear-gradient(135deg, #e30613, #b00510) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(227,6,19,.25);
}
.cart-chip {
  border: 1px solid rgba(31,61,122,.28);
  color: var(--brand-blue) !important;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: .8rem;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .95rem 1.55rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, filter .22s ease, box-shadow .22s ease;
}
.btn-solid {
  background: linear-gradient(135deg, #2d4f94, #1f3d7a);
  color: #fff;
  box-shadow: 0 16px 34px rgba(31,61,122,.24);
}
.btn-gold {
  background: linear-gradient(135deg, #ff4d57, #e30613 55%, #b00510);
  color: #fff;
  box-shadow: 0 12px 28px rgba(227,6,19,.22);
}
.btn-ghost {
  border-color: rgba(26,50,104,.14);
  background: rgba(255,255,255,.82);
  color: var(--navy);
  backdrop-filter: blur(8px);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }

/* Hero — full bleed */
.hero-bleed {
  position: relative;
  min-height: calc(100dvh - 84px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

/* Home: compact scale */
.home-page .hero-home {
  min-height: auto;
}
.home-page .hero-content {
  padding: 2.4rem 0 2.6rem;
  max-width: 640px;
}
.home-page .hero-logo {
  width: min(220px, 48vw);
  margin: 0 0 1rem;
}
.home-page .hero-logo img {
  width: 100%;
  height: auto;
}
.home-page .hero-tagline {
  margin: 0 0 .85rem;
  color: var(--brand-red);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 800;
  letter-spacing: .14em;
  font-size: .78rem;
}
.home-page .hero-content h1 {
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  margin-bottom: .75rem;
  max-width: 22ch;
}
.home-page .hero-content .lead {
  font-size: .98rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 34rem;
}
.home-page .hero-actions .btn {
  padding: .75rem 1.2rem;
}
.home-page .section { padding: 2.6rem 0; }
.home-page .section-tight { padding: 1.2rem 0 .4rem; }
.home-page .section-band { padding: 2.6rem 0; margin: .4rem 0; }
.home-page .section-head { margin-bottom: 1.2rem; }
.home-page .section-head h2,
.home-page .section-head-center h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}
.home-page .section-head p,
.home-page .section-head-center p {
  font-size: .95rem;
}
.home-page .trust { margin-top: -1.1rem; }
.home-page .trust-item { padding: 1.05rem 1.1rem; }
.home-page .cat-tile { min-height: 132px; padding: 1.2rem; }
.home-page .cat-tile strong { font-size: 1.15rem; }
.home-page .quality-copy { min-height: 0; padding: 1.5rem 1.4rem; }
.home-page .quality-copy h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.home-page .quality-visual {
  min-height: 0;
  overflow: visible;
  padding: 1.8rem 1rem;
}
.home-page .quality-visual img {
  width: min(240px, 92%);
  max-width: 240px;
  max-height: none;
  height: auto;
  object-fit: contain;
}
.home-page .process-step { padding: 1.25rem 1.15rem; }
.home-page .process-step::before { font-size: 3.2rem; }
.home-page .team-photo { width: 96px; height: 96px; }
.home-page .team-card { padding: 1.25rem 1.05rem 1.35rem; }
.home-page .cta-band { padding: 2.4rem 0; }
.home-page .cta-inner h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); }
.home-page .cta-inner p { font-size: .95rem; }
.home-page .faq-item summary { padding: .85rem 0; }
.home-page .product-card .body { padding: 1rem 1.05rem 1.15rem; }
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, rgba(251,252,253,.94) 0%, rgba(244,248,249,.78) 42%, rgba(236,245,245,.55) 100%),
    linear-gradient(180deg, rgba(26,50,104,.08), rgba(31,61,122,.12)),
    url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(242,247,248,.95));
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.5rem;
  max-width: 720px;
}
.hero-logo {
  width: min(280px, 55vw);
  margin: 0 0 1.1rem;
}
.hero-logo img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 30px rgba(26,50,104,.12));
}
.hero-tagline {
  margin: 0 0 1rem;
  color: var(--brand-red);
  font-family: "Montserrat", "Cairo", sans-serif;
  font-weight: 800;
  letter-spacing: .16em;
  font-size: .85rem;
}
.hero-brand {
  font-family: "Montserrat", "Cairo", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  line-height: .95;
  margin: 0 0 1rem;
  letter-spacing: .02em;
  color: var(--navy);
  font-weight: 800;
}
.hero-content h1 {
  margin: 0 0 1.1rem;
  max-width: 15ch;
  font-size: clamp(1.75rem, 3.8vw, 2.65rem);
  font-weight: 800;
  line-height: 1.35;
  color: var(--navy);
}
.hero-content .lead {
  margin: 0 0 2rem;
  max-width: 36rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.95;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .22s; }
.reveal.delay-3 { transition-delay: .32s; }
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.section { padding: 4.5rem 0; }
.section-tight { padding: 2.5rem 0 1rem; }
.section-band {
  position: relative;
  margin: 1rem 0;
  padding: 4.5rem 0;
  background:
    radial-gradient(700px 280px at 85% 20%, rgba(31,61,122,.1), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.55), rgba(236,245,245,.9));
  border-block: 1px solid rgba(26,50,104,.06);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.section-kicker {
  display: inline-block;
  margin: 0 0 .45rem;
  color: var(--teal);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .08em;
}
.section-head h2, .section-head-center h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.4vw, 2.45rem);
  color: var(--navy);
  letter-spacing: -.01em;
}
.section-head p, .section-head-center p {
  margin: .45rem 0 0;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.8;
}
.section-head-center {
  text-align: center;
  margin-bottom: 2.2rem;
}
.section-head-center p { margin-inline: auto; }

/* Trust ribbon */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: -2.2rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(26,50,104,.08);
  border-radius: calc(var(--radius) + .15rem);
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.trust-item {
  padding: 1.5rem 1.4rem;
  position: relative;
}
.trust-item + .trust-item {
  border-right: 1px solid var(--line);
}
.trust-item strong {
  display: block;
  margin-bottom: .4rem;
  color: var(--teal);
  font-size: 1.05rem;
}
.trust-item span {
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.75;
}

/* Categories */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.cat-tile {
  position: relative;
  min-height: 180px;
  padding: 1.6rem;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-soft);
}
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(160deg, rgba(26,50,104,.2), rgba(26,50,104,.72)),
    radial-gradient(circle at 80% 20%, rgba(227,6,19,.35), transparent 40%),
    linear-gradient(145deg, #2d4f94, #1a3268);
}
.cat-tile:nth-child(2)::before {
  background:
    linear-gradient(160deg, rgba(26,50,104,.18), rgba(26,50,104,.7)),
    linear-gradient(145deg, #2a9696, #1a3268);
}
.cat-tile:nth-child(3)::before {
  background:
    linear-gradient(160deg, rgba(26,50,104,.2), rgba(26,50,104,.72)),
    linear-gradient(145deg, #e30613, #1a3268);
}
.cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.cat-tile strong {
  font-size: 1.35rem;
  margin-bottom: .25rem;
}
.cat-tile span {
  opacity: .88;
  font-size: .95rem;
}

/* About / quality */
.about-grid, .quality-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1.6rem;
  align-items: stretch;
}
.about-card, .panel, .product-card, .admin-card, .process-step, .team-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.about-card, .quality-copy {
  padding: 2rem 1.9rem;
}
.about-card h2, .quality-copy h2 {
  margin: 0 0 .9rem;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}
.about-card p, .quality-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
  font-size: 1.02rem;
}
.about-visual, .quality-visual {
  min-height: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(31,61,122,.14);
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.2rem;
  background:
    radial-gradient(circle at 28% 28%, rgba(227,6,19,.08), transparent 42%),
    radial-gradient(circle at 78% 70%, rgba(31,61,122,.1), transparent 40%),
    linear-gradient(145deg, #eaf0f8, #ffffff 48%, #f7f4f2);
}
.about-visual img, .quality-visual img {
  width: min(260px, 92%);
  max-width: 260px;
  max-height: none;
  height: auto;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 1;
  display: block;
}
.about-visual::before,
.about-visual::after,
.quality-visual::before,
.quality-visual::after {
  content: none !important;
  display: none !important;
}
@keyframes pulseRing {
  0%, 100% { transform: scale(.9); opacity: .55; }
  50% { transform: scale(1.12); opacity: .15; }
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.product-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.product-card:hover {
  border-color: rgba(31,61,122,.35);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-card .thumb {
  aspect-ratio: 16/11;
  background:
    radial-gradient(circle at 50% 40%, rgba(31,61,122,.18), transparent 55%),
    linear-gradient(180deg, #eef2f8, #e4eaf4);
  display: grid;
  place-items: center;
  color: var(--teal);
  font-weight: 900;
  font-size: 1.4rem;
  position: relative;
}
.product-card .thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.35));
  pointer-events: none;
}
.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card .body { padding: 1.2rem 1.25rem 1.35rem; }
.product-card h3 { margin: 0 0 .4rem; font-size: 1.12rem; color: var(--navy); }
.product-card .desc {
  margin: 0 0 .95rem;
  color: var(--muted);
  font-size: .93rem;
  line-height: 1.7;
  min-height: 2.9em;
}
.product-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .6rem;
}
.price { color: var(--teal); font-weight: 900; font-size: 1.15rem; }

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.process-step {
  padding: 1.6rem 1.4rem 1.7rem;
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: .6rem;
  left: 1rem;
  font-family: "Montserrat", serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(31,61,122,.1);
  font-weight: 700;
}
.process-step strong {
  display: block;
  margin: .4rem 0 .55rem;
  color: var(--navy);
  font-size: 1.15rem;
  position: relative;
}
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  position: relative;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.team-card {
  padding: 1.7rem 1.3rem 1.8rem;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-photo {
  width: 124px;
  height: 124px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(31,61,122,.18);
  background:
    radial-gradient(circle at 35% 30%, rgba(227,6,19,.35), transparent 45%),
    linear-gradient(145deg, #eaf0f8, #f7f4f2);
  display: grid;
  place-items: center;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal);
  box-shadow: 0 14px 30px rgba(31,61,122,.12);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  margin: 0 0 .3rem;
  color: var(--navy);
  font-size: 1.2rem;
}
.team-role {
  margin: 0 0 .75rem;
  color: var(--teal);
  font-weight: 800;
  font-size: .96rem;
}
.team-bio {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: .94rem;
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.2rem;
  align-items: stretch;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 110px;
  padding: 1.1rem 1rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(31, 61, 122, .1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,250,253,.88));
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
a.partner-item:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 61, 122, .22);
  box-shadow: 0 14px 28px rgba(31, 61, 122, .1);
}
.partner-logo {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 52px;
}
.partner-logo img {
  max-width: 140px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(12%);
  opacity: .92;
  transition: filter .25s ease, opacity .25s ease;
}
a.partner-item:hover .partner-logo img {
  filter: none;
  opacity: 1;
}
.partner-fallback,
.partner-name {
  color: var(--navy);
  font-weight: 800;
  font-size: .98rem;
  text-align: center;
  line-height: 1.4;
}
.partner-fallback {
  font-size: 1.05rem;
  letter-spacing: .02em;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.home-page .partner-item {
  min-height: 96px;
  padding: .95rem .85rem;
}
.home-page .partner-logo img {
  max-width: 120px;
  max-height: 44px;
}

/* CTA band */
.cta-band {
  margin: 1rem 0 0;
  padding: 4.2rem 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 320px at 15% 30%, rgba(227,6,19,.22), transparent 55%),
    linear-gradient(120deg, #1a3268 0%, #1f3d7a 55%, #2d4f94 100%);
  color: #fff;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.12), transparent 30%),
    linear-gradient(90deg, transparent 40%, rgba(255,255,255,.04));
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-inner h2 {
  margin: 0 0 .55rem;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}
.cta-inner p {
  margin: 0;
  opacity: .9;
  max-width: 34rem;
  line-height: 1.8;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.4rem;
}
.filters a {
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 700;
  font-size: .93rem;
  transition: .2s ease;
}
.filters a.is-active, .filters a:hover {
  background: rgba(31,61,122,.1);
  border-color: rgba(31,61,122,.35);
  color: var(--navy);
}

.detail {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 1.6rem;
  align-items: start;
}
.detail-media, .detail-info, .panel { padding: 1.5rem; }
.detail-media .thumb {
  aspect-ratio: 1;
  border-radius: 1.1rem;
  background: #eef2f8;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--teal);
  font-size: 2rem;
  font-weight: 900;
}
.detail-media .thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-info h1 { margin: 0 0 .5rem; font-size: clamp(1.7rem, 3vw, 2.35rem); color: var(--navy); }
.detail-info .price { font-size: 1.55rem; display: block; margin: .8rem 0; }
.detail-info p { color: var(--muted); line-height: 1.95; }
.qty-row { display: flex; gap: .7rem; align-items: center; margin: 1.2rem 0; flex-wrap: wrap; }
.qty-row input {
  width: 90px;
  padding: .75rem;
  border-radius: .8rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.table { width: 100%; border-collapse: collapse; }
.table th, .table td {
  text-align: right;
  padding: .85rem .5rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.table th { color: var(--teal); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
.form-grid .full { grid-column: 1 / -1; }
label { display: block; margin-bottom: .35rem; color: var(--muted); font-weight: 700; font-size: .92rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: .8rem;
  padding: .85rem .95rem;
}
.flash {
  padding: .9rem 1.05rem;
  border-radius: .9rem;
  margin-bottom: 1rem;
}
.flash.ok { background: rgba(31,61,122,.1); color: #1a3268; }
.flash.err { background: rgba(180,50,50,.1); color: #8a2222; }

.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #f8f9fc, #fff 40%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 1.8rem;
  padding: 3rem 0 1.8rem;
}
.footer-grid h4 { margin: 0 0 .8rem; color: var(--navy); font-size: 1.1rem; }
.footer-grid p, .footer-grid a, .footer-grid span {
  display: block;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: .3rem;
}
.footer-grid a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 1.4rem;
  color: #8a98a4;
  font-size: .88rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-body {
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(31,61,122,.08), transparent 55%),
    radial-gradient(700px 360px at 0% 100%, rgba(227,6,19,.05), transparent 50%),
    #eef1f6;
  color: var(--text);
}
.admin-shell {
  display: grid;
  grid-template-columns: 270px 1fr;
  min-height: 100vh;
}
.admin-side {
  border-left: 1px solid rgba(31,61,122,.1);
  padding: 1.1rem .85rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow-x: hidden;
  overflow-y: auto;
  position: sticky;
  top: 0;
  height: 100vh;
}
.admin-side h2 { margin: 0 0 1rem; font-size: 1.1rem; color: var(--navy); }
.admin-brand {
  display: grid;
  justify-items: center;
  gap: .35rem;
  margin-bottom: .85rem;
  text-align: center;
  padding: .2rem .15rem .95rem;
  border-bottom: 1px solid var(--line);
}
.admin-brand img {
  width: 150px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.admin-brand h2 { margin: 0; font-size: .95rem; }
.admin-brand-sub {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
}
.admin-nav-group {
  margin: .85rem .35rem .35rem;
  color: #8a97a8;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.admin-side a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .68rem .8rem;
  border-radius: .8rem;
  margin-bottom: .2rem;
  color: #5b6b7c;
  font-weight: 700;
}
.admin-side a.active, .admin-side a:hover {
  background: rgba(31,61,122,.1);
  color: var(--navy);
}
.nav-badge {
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 .35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #e30613;
  color: #fff;
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
}
.nav-badge.warn { background: #d97706; }
.admin-main { padding: 1.15rem 1.25rem 2rem; min-width: 0; }
.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.admin-page-title {
  margin: 0;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.2;
}
.admin-page-sub {
  margin: .25rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}
.admin-topbar-actions {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  align-items: center;
}
.admin-chip {
  display: inline-flex;
  align-items: center;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(227,6,19,.1);
  color: #b0000c;
  font-weight: 800;
  font-size: .86rem;
}
.admin-chip.soft {
  background: rgba(31,61,122,.1);
  color: var(--navy);
}
.admin-card {
  padding: 1.2rem 1.2rem 1.3rem;
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid rgba(31,61,122,.08);
  border-radius: 1.15rem;
  box-shadow: 0 10px 28px rgba(31,61,122,.05);
}
.admin-card h3 { margin: 0 0 1rem; color: var(--navy); }
.admin-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.admin-card-head h3 { margin: 0; }
.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
}
.admin-stats > div,
.stat-card {
  padding: 1.05rem 1rem;
  border-radius: 1.05rem;
  background: linear-gradient(180deg, #f7f9fc, #eef3f9);
  border: 1px solid rgba(31,61,122,.08);
}
.stat-card strong,
.admin-stats strong {
  display: block;
  font-size: 1.55rem;
  color: var(--navy);
  line-height: 1.1;
}
.stat-card span,
.admin-stats span { color: var(--muted); font-size: .88rem; font-weight: 700; }
.stat-card em {
  display: block;
  margin-top: .35rem;
  font-style: normal;
  color: var(--teal);
  font-size: .82rem;
  font-weight: 800;
}
.admin-filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .9fr) auto;
  gap: .7rem;
  align-items: end;
  margin-bottom: 1rem;
}
.admin-filters label {
  display: block;
  margin-bottom: .3rem;
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
}
.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: .2rem .55rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  background: #e8eef7;
  color: var(--navy);
}
.admin-badge.on { background: rgba(16,185,129,.15); color: #047857; }
.admin-badge.off { background: rgba(100,116,139,.15); color: #475569; }
.admin-badge.feat { background: rgba(227,6,19,.12); color: #b0000c; }
.admin-badge.stock-low { background: rgba(217,119,6,.15); color: #b45309; }
.status-badge {
  display: inline-flex;
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}
.status-new { background: rgba(227,6,19,.12); color: #b0000c; }
.status-processing { background: rgba(59,130,246,.14); color: #1d4ed8; }
.status-shipped { background: rgba(139,92,246,.14); color: #6d28d9; }
.status-done { background: rgba(16,185,129,.15); color: #047857; }
.status-cancelled { background: rgba(100,116,139,.16); color: #475569; }
.admin-thumb {
  width: 46px;
  height: 46px;
  border-radius: .7rem;
  object-fit: cover;
  background: #eef2f7;
  border: 1px solid var(--line);
}
.admin-thumb.fallback {
  display: inline-grid;
  place-items: center;
  color: var(--teal);
  font-weight: 900;
}
.admin-pagination {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  align-items: center;
}
.admin-pagination a,
.admin-pagination span {
  display: inline-flex;
  min-width: 2rem;
  height: 2rem;
  padding: 0 .55rem;
  border-radius: .6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
}
.admin-pagination a:hover { background: rgba(31,61,122,.08); }
.admin-pagination .is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.admin-tabs {
  display: flex;
  gap: .45rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  position: sticky;
  top: .5rem;
  z-index: 5;
  background: rgba(238,241,246,.92);
  backdrop-filter: blur(8px);
  padding: .45rem;
  border-radius: .9rem;
  border: 1px solid rgba(31,61,122,.08);
}
.admin-tabs button {
  border: 0;
  background: transparent;
  color: #5b6b7c;
  font-weight: 800;
  padding: .55rem .9rem;
  border-radius: .7rem;
  cursor: pointer;
}
.admin-tabs button.active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(31,61,122,.08);
}
.admin-split {
  display: grid;
  grid-template-columns: 1.35fr .9fr;
  gap: 1rem;
}
.admin-muted { color: var(--muted); font-size: .92rem; }
.admin-actions-row {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  align-items: center;
  margin: .8rem 0 1rem;
}
.order-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
}
.order-meta-grid > div {
  padding: .85rem .95rem;
  border-radius: .9rem;
  background: #f7f9fc;
  border: 1px solid var(--line);
}
.order-meta-grid strong {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  margin-bottom: .25rem;
}
.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(700px 320px at 20% 20%, rgba(31,61,122,.16), transparent 55%),
    radial-gradient(600px 280px at 90% 80%, rgba(227,6,19,.12), transparent 50%),
    #eef1f6;
}
.login-card {
  width: min(420px, 100%);
  text-align: center;
  padding: 1.6rem 1.35rem 1.5rem;
}
.login-card img { width: 120px; margin: 0 auto 1rem; }

@media (max-width: 1100px) {
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-filters { grid-template-columns: 1fr 1fr; }
  .admin-split, .order-meta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  .admin-side {
    position: relative;
    height: auto;
  }
}

.page-hero {
  padding: 2.8rem 0 1.4rem;
}
.page-hero h1 {
  margin: 0 0 .5rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
}
.page-hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40rem;
  line-height: 1.8;
}

/* Product detail extras */
.search-bar {
  display: flex;
  gap: .6rem;
  margin: 0 0 1.1rem;
  flex-wrap: wrap;
}
.search-bar input[type="search"] {
  flex: 1;
  min-width: 220px;
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  padding: 1.4rem 0 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 700;
}
.crumbs a:hover { color: var(--teal); }
.pill {
  display: inline-flex;
  padding: .35rem .8rem;
  border-radius: 999px;
  background: rgba(31,61,122,.1);
  color: var(--teal);
  font-weight: 800;
  font-size: .85rem;
  margin-bottom: .7rem;
}
.detail-info h1 { margin-top: .2rem; }
.detail-lead {
  margin: 0 0 .4rem !important;
  font-size: 1.05rem;
  color: var(--muted);
}
.detail-body {
  color: var(--muted);
  line-height: 1.95;
  margin: 1rem 0 1.2rem;
}
.stock-row {
  display: inline-flex;
  margin: .4rem 0 0;
  padding: .4rem .85rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
}
.stock-row.is-ok { background: rgba(31,61,122,.1); color: #1a3268; }
.stock-row.is-out { background: rgba(180,50,50,.1); color: #8a2222; }
.buy-box {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-top: .5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.thumb-fallback {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
}

/* Cart / checkout */
.cart-layout, .checkout-layout, .contact-layout {
  display: grid;
  grid-template-columns: 1.45fr .85fr;
  gap: 1.2rem;
  align-items: start;
}
.cart-list { padding: .4rem 1rem; }
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: 0; }
.cart-thumb {
  width: 88px;
  height: 88px;
  border-radius: 1rem;
  overflow: hidden;
  background: #eef2f8;
  display: grid;
  place-items: center;
  color: var(--teal);
  font-weight: 900;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-info h3 { margin: 0 0 .3rem; font-size: 1.05rem; color: var(--navy); }
.cart-info p { margin: 0 0 .45rem; color: var(--muted); font-size: .9rem; }
.cart-actions {
  display: grid;
  gap: .45rem;
  justify-items: end;
  text-align: left;
}
.qty-mini { display: flex; gap: .4rem; align-items: center; }
.qty-mini input { width: 72px; padding: .55rem; }
.cart-line { font-weight: 900; color: var(--navy); }
.link-danger {
  border: 0;
  background: none;
  color: #a33;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}
.cart-summary, .checkout-form, .contact-info, .contact-form { padding: 1.4rem; }
.cart-summary h3, .checkout-form h3, .contact-info h2, .contact-form h2 {
  margin: 0 0 1rem;
  color: var(--navy);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
.summary-total { border-bottom: 0; margin-top: .4rem; font-size: 1.05rem; }
.summary-note {
  margin: 1rem 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: .92rem;
}
.empty-state, .success-card {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 1rem 0 3rem;
}
.empty-state h2, .success-card h1 { margin: 0 0 .6rem; color: var(--navy); }
.empty-state p, .success-card p { color: var(--muted); line-height: 1.9; margin: 0 0 1.2rem; }
.success-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #2d4f94, #1f3d7a);
  box-shadow: 0 14px 30px rgba(31,61,122,.25);
}
.success-actions { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

.contact-line {
  display: grid;
  gap: .2rem;
  margin-bottom: 1rem;
}
.contact-line strong { color: var(--teal); }
.contact-line span { color: var(--navy); font-weight: 700; }
.contact-note { color: var(--muted); line-height: 1.8; margin: 0 0 1.2rem; }

/* FAQ */
.faq-list {
  width: min(820px, 100%);
  margin-inline: auto;
  display: grid;
  gap: .8rem;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: var(--shadow-soft);
  padding: .35rem 1.1rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 800;
  color: var(--navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1.3rem;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.85;
  padding-left: 1.4rem;
}

.wa-float {
  position: fixed;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(18,140,126,.35);
  transition: transform .2s ease;
}
.wa-float:hover { transform: translateY(-2px); }

@media (max-width: 980px) {
  .trust, .product-grid, .team-grid, .cat-grid, .process-grid,
  .about-grid, .quality-grid, .detail, .footer-grid, .form-grid,
  .admin-shell, .admin-stats, .cart-layout, .checkout-layout, .contact-layout {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cart-item { grid-template-columns: 72px 1fr; }
  .cart-actions { grid-column: 1 / -1; justify-items: start; text-align: right; }
  .trust-item + .trust-item { border-right: 0; border-top: 1px solid var(--line); }
  .nav-inner { flex-wrap: wrap; padding: .85rem 0; }
  .nav-toggle { display: grid; place-items: center; margin-inline-start: auto; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .hero-content { padding: 3.2rem 0 4rem; }
  .cta-inner { text-align: center; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-mesh::before, .hero-media, .about-visual::before, .about-visual::after,
  .quality-visual::before, .quality-visual::after { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
