@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* ═══════════════════════════════════════════════
   MEDEQUIP ETHIOPIA — Design System
   Aesthetic: Precision Meets Heritage
   ═══════════════════════════════════════════════ */

:root {
  --ink:        #0c1118;
  --ink-80:     rgba(12,17,24,0.80);
  --ink-40:     rgba(12,17,24,0.40);
  --ink-12:     rgba(12,17,24,0.12);
  --ink-06:     rgba(12,17,24,0.06);
  --paper:      #f6f4f0;
  --white:      #ffffff;
  --forest:     #1e5c3a;
  --forest-mid: #2d7a52;
  --forest-lite:#e6f4ed;
  --gold:       #b8742a;
  --gold-lite:  #fdf0e0;
  --cobalt:     #1a4f8a;
  --cobalt-mid: #2666b0;
  --cobalt-lite:#e8f0fb;
  --crimson:    #8c2020;
  --crimson-lite:#fceaea;
  --amber:      #9c6020;
  --amber-lite: #fef6e8;
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --f-display:  'Fraunces', Georgia, serif;
  --f-body:     'Instrument Sans', system-ui, sans-serif;
  --shadow-xs:  0 1px 3px rgba(12,17,24,0.08);
  --shadow-sm:  0 2px 8px rgba(12,17,24,0.10);
  --shadow-md:  0 6px 24px rgba(12,17,24,0.12);
  --shadow-lg:  0 16px 48px rgba(12,17,24,0.16);
  --ease:       cubic-bezier(0.22,1,0.36,1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--f-body); cursor: pointer; }
input, select, textarea { font-family: var(--f-body); }
ul { list-style: none; }

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink-12); border-radius: 3px; }


/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(12,17,24,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.3px;
  flex-shrink: 0;
  margin-right: 36px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg { color: #fff; }
.logo em { color: var(--cobalt-mid); font-style: normal; }

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  padding: 6px 13px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links a.active { color: #fff; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.h-btn-ghost {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 7px 15px;
  border-radius: var(--radius-xs);
  border: 1px solid rgba(255,255,255,0.14);
  background: transparent;
  transition: 0.2s;
}

.h-btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.28); }

.h-btn-main {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--cobalt);
  padding: 8px 17px;
  border-radius: var(--radius-xs);
  border: none;
  transition: background 0.2s;
}

.h-btn-main:hover { background: var(--cobalt-mid); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 16px 28px 20px;
}

.mobile-nav a {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mobile-nav a:last-child { border: none; }
.mobile-nav.open { display: flex; }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

.hero {
  background: var(--ink);
  padding: 80px 0 72px;
  overflow: hidden;
  position: relative;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(38,102,176,0.18) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-chips {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  letter-spacing: 0.3px;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid;
}

.chip-blue {
  color: #7bb3f0;
  border-color: rgba(100,160,240,0.25);
  background: rgba(38,102,176,0.12);
}

.chip-green {
  color: #6ecfa0;
  border-color: rgba(80,180,120,0.25);
  background: rgba(30,92,58,0.15);
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  color: #fff;
  line-height: 1.07;
  letter-spacing: -1px;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-title .italic-line {
  font-style: italic;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

.hero-title .accent-word { color: #7bb3f0; }

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

/* ── SEARCH BOX ── */
.hero-search-box {
  max-width: 660px;
  margin: 0 auto 48px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: var(--radius-md);
  display: flex;
  overflow: hidden;
  transition: border-color 0.25s;
}

.hero-search-box:focus-within { border-color: rgba(100,160,240,0.4); }

.hero-search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 15px 20px;
  font-size: 14.5px;
  color: #fff;
}

.hero-search-box input::placeholder { color: rgba(255,255,255,0.28); }

.hero-search-box select {
  background: rgba(255,255,255,0.05);
  border: none;
  border-left: 1px solid rgba(255,255,255,0.08);
  outline: none;
  padding: 15px 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
}

.hero-search-box select option { background: #1a2332; }

.hero-search-btn {
  background: var(--cobalt);
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 15px 26px;
  transition: background 0.2s;
  flex-shrink: 0;
}

.hero-search-btn:hover { background: var(--cobalt-mid); }

/* ── STATS BAR ── */
.hero-stats {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.h-stat {
  padding: 14px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.09);
}

.h-stat:last-child { border-right: none; }

.h-stat-n {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  color: #fff;
  font-weight: 500;
}

.h-stat-l {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 2px;
  letter-spacing: 0.3px;
}


/* ═══════════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════════ */

.ticker {
  background: var(--forest);
  overflow: hidden;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 28s linear infinite;
  width: max-content;
}

.ticker-item {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */

.sec { padding: 72px 0; }
.sec-white  { background: var(--white); }
.sec-paper  { background: var(--paper); }
.sec-dark   { background: var(--ink); }
.sec-forest { background: var(--forest); }

.sec-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 10px;
}

.sec-title {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.sec-title-light { color: #fff; }

.sec-subtitle {
  font-size: 15px;
  color: var(--ink-40);
  margin-top: 10px;
  max-width: 500px;
  line-height: 1.7;
}

.sec-subtitle-light { color: rgba(255,255,255,0.5); }

.row-between {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.link-all {
  font-size: 13px;
  font-weight: 500;
  color: var(--cobalt);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.link-all:hover { gap: 8px; }


/* ═══════════════════════════════════════════════
   CATEGORIES
   ═══════════════════════════════════════════════ */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}

.cat-tile {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-md);
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: var(--ink);
}

.cat-tile:hover {
  border-color: var(--cobalt);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.cat-tile-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cobalt-lite);
  color: var(--cobalt);
  transition: background 0.2s;
}

.cat-tile:hover .cat-tile-icon { background: var(--cobalt); color: #fff; }
.cat-tile-name { font-size: 14px; font-weight: 500; }
.cat-tile-count { font-size: 12px; color: var(--ink-40); }

.cat-tile-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--forest-mid);
  background: var(--forest-lite);
  padding: 3px 8px;
  border-radius: 20px;
  width: fit-content;
}

.cat-tile--featured { border-color: rgba(30,92,58,0.25); }
.cat-tile--featured .cat-tile-icon { background: var(--forest-lite); color: var(--forest); }
.cat-tile--featured:hover { border-color: var(--forest); }
.cat-tile--featured:hover .cat-tile-icon { background: var(--forest); color: #fff; }


/* ═══════════════════════════════════════════════
   PRODUCT CARDS
   ═══════════════════════════════════════════════ */

.filter-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.ftab {
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--radius-xs);
  border: 1px solid var(--ink-12);
  background: transparent;
  color: var(--ink-40);
  cursor: pointer;
  transition: 0.2s;
}

.ftab:hover { border-color: var(--ink-40); color: var(--ink); }
.ftab.on { background: var(--ink); color: #fff; border-color: var(--ink); }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 18px;
}

.p-card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.25s, transform 0.25s;
}

.p-card:hover {
  border-color: rgba(26,79,138,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.p-card-thumb {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-card-thumb svg { opacity: 0.65; }

.th-blue  { background: var(--cobalt-lite); color: var(--cobalt); }
.th-green { background: var(--forest-lite); color: var(--forest); }
.th-amber { background: var(--amber-lite);  color: var(--amber);  }
.th-paper { background: var(--paper);       color: var(--ink-40); }

.p-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.p-tags {
  display: flex;
  gap: 5px;
  margin-bottom: 9px;
  flex-wrap: wrap;
}

.tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 3px 8px;
  border-radius: 20px;
}

.tag-b2b   { background: var(--cobalt-lite);  color: var(--cobalt);     }
.tag-b2c   { background: var(--forest-lite);  color: var(--forest);     }
.tag-spare { background: var(--amber-lite);   color: var(--amber);      }
.tag-efda  { background: var(--forest-lite);  color: var(--forest-mid); }

.p-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
  line-height: 1.4;
}

.p-spec {
  font-size: 12px;
  color: var(--ink-40);
  margin-bottom: 14px;
  flex: 1;
  line-height: 1.5;
}

.p-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--ink-06);
  padding-top: 12px;
}

.p-price {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}

.p-price span {
  font-family: var(--f-body);
  font-size: 11px;
  color: var(--ink-40);
  font-weight: 400;
}

.p-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--cobalt);
  background: var(--cobalt-lite);
  padding: 5px 11px;
  border-radius: var(--radius-xs);
  transition: 0.2s;
}

.p-card:hover .p-cta { background: var(--cobalt); color: #fff; }

.products-more { text-align: center; margin-top: 40px; }


/* ═══════════════════════════════════════════════
   B2B / B2C MODELS
   ═══════════════════════════════════════════════ */

.models-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.model-panel {
  border-radius: var(--radius-xl);
  padding: 32px 30px 28px;
  border: 1px solid transparent;
  transition: transform 0.25s;
}

.model-panel:hover { transform: translateY(-3px); }
.model-panel-b2b { background: var(--ink); border-color: rgba(255,255,255,0.07); }
.model-panel-b2c { background: #0b1f14;   border-color: rgba(255,255,255,0.07); }

.mpanel-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.model-panel-b2b .mpanel-eyebrow { color: #7bb3f0; }
.model-panel-b2c .mpanel-eyebrow { color: #6ecfa0; }

.mpanel-icon-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.mpanel-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-panel-b2b .mpanel-icon { background: rgba(100,160,240,0.15); color: #7bb3f0; }
.model-panel-b2c .mpanel-icon { background: rgba(80,180,130,0.15);  color: #6ecfa0; }

.mpanel-title {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
}

.mpanel-desc {
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.45);
}

.mpanel-list { margin-bottom: 26px; }

.mpanel-list li {
  font-size: 13px;
  padding: 5px 0;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

.mpanel-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.model-panel-b2b .mpanel-list li::before { background: #7bb3f0; }
.model-panel-b2c .mpanel-list li::before { background: #6ecfa0; }

.mpanel-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-xs);
  transition: 0.2s;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.model-panel-b2b .mpanel-btn { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }
.model-panel-b2b .mpanel-btn:hover { background: var(--cobalt-mid); }
.model-panel-b2c .mpanel-btn { background: var(--forest); color: #fff; border-color: var(--forest); }
.model-panel-b2c .mpanel-btn:hover { background: var(--forest-mid); }


/* ═══════════════════════════════════════════════
   COMPLIANCE STRIP
   ═══════════════════════════════════════════════ */

.compliance-strip {
  background: linear-gradient(135deg, #0e2238 0%, #0b1f14 100%);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cs-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(110,207,160,0.15);
  color: #6ecfa0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-text { flex: 1; }

.cs-text h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.cs-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 560px;
}

.cs-btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #6ecfa0;
  border: 1.5px solid rgba(110,207,160,0.35);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  background: transparent;
  cursor: pointer;
}

.cs-btn:hover { background: rgba(110,207,160,0.1); }


/* ═══════════════════════════════════════════════
   SPARE PARTS
   ═══════════════════════════════════════════════ */

.spare-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.spare-text h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.2;
}

.spare-text p {
  font-size: 15px;
  color: var(--ink-40);
  line-height: 1.75;
  margin-bottom: 26px;
}

.spare-finder {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-xl);
  padding: 26px;
}

.spare-finder h4 { font-size: 14px; font-weight: 600; margin-bottom: 20px; }

.sf-field { margin-bottom: 14px; }

.sf-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-40);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}

.sf-field select,
.sf-field input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 0.2s;
}

.sf-field select:focus,
.sf-field input:focus {
  border-color: var(--cobalt);
  background: #fff;
}

.sf-btn {
  width: 100%;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s;
}

.sf-btn:hover { background: var(--cobalt); }


/* ═══════════════════════════════════════════════
   SELLER CTA
   ═══════════════════════════════════════════════ */

.seller-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.seller-cta-text h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.seller-cta-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.cta-checks { display: flex; gap: 18px; flex-wrap: wrap; }
.cta-checks span { font-size: 13px; color: #6ecfa0; }

.seller-cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

.btn-primary-lg {
  display: inline-block;
  background: var(--forest);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.btn-primary-lg:hover { background: var(--forest-mid); }

.btn-text-sm {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.btn-text-sm:hover { color: rgba(255,255,255,0.7); }


/* ═══════════════════════════════════════════════
   TRUST ROW
   ═══════════════════════════════════════════════ */

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-tile {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  text-align: center;
}

.trust-icon { font-size: 28px; margin-bottom: 12px; }
.trust-title { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.trust-desc { font-size: 12.5px; color: var(--ink-40); line-height: 1.6; }


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.site-footer { background: var(--ink); padding-top: 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand-text {
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.footer-brand-text span { color: #7bb3f0; }

.footer-brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 18px;
  max-width: 240px;
}

.footer-badges { display: flex; gap: 7px; flex-wrap: wrap; }

.fb {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom { padding: 18px 0; }

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-inner span { font-size: 12px; color: rgba(255,255,255,0.2); }


/* ═══════════════════════════════════════════════
   CATALOGUE PAGE
   ═══════════════════════════════════════════════ */

.page-band { background: var(--ink); padding: 44px 0 40px; }

.page-band h1 {
  font-family: var(--f-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.page-band p { font-size: 15px; color: rgba(255,255,255,0.45); }

.catalogue-wrap {
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 32px;
  padding: 40px 0 72px;
  align-items: start;
}

.sidebar {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-md);
  padding: 22px;
  position: sticky;
  top: 84px;
}

.sb-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 14px;
}

.sb-sep { height: 1px; background: var(--ink-06); margin: 18px 0; }

.sb-opt {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  color: var(--ink-40);
  padding: 7px 0;
  cursor: pointer;
  transition: color 0.2s;
}

.sb-opt:hover { color: var(--ink); }
.sb-opt input { accent-color: var(--cobalt); }
.sb-opt label { cursor: pointer; }

.sb-range {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-40);
}

.sb-range input[type=number] {
  width: 88px;
  padding: 7px 9px;
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-xs);
  font-size: 13px;
  outline: none;
  background: var(--paper);
}

.sb-filter-btn {
  width: 100%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.2s;
}

.sb-filter-btn:hover { background: var(--cobalt); }

.catalogue-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}

.result-count { font-size: 13px; color: var(--ink-40); }

.sort-row { display: flex; align-items: center; gap: 8px; }
.sort-row label { font-size: 13px; color: var(--ink-40); }
.sort-row select {
  font-size: 13px;
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-xs);
  padding: 6px 10px;
  background: var(--white);
  outline: none;
  cursor: pointer;
}


/* ═══════════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════════ */

.product-detail-wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  padding: 48px 0 80px;
  align-items: start;
}

.product-gallery-main {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
  position: relative;
}

.product-gallery-main svg { width: 80px; height: 80px; opacity: 0.35; }

.efda-watermark {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: var(--forest-lite);
  color: var(--forest);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-info-box {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-xl);
  padding: 30px;
}

.product-info-box h1 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.25;
}

.product-meta-row { font-size: 13px; color: var(--ink-40); margin-bottom: 16px; }

.price-block {
  border-top: 1px solid var(--ink-06);
  border-bottom: 1px solid var(--ink-06);
  padding: 18px 0;
  margin-bottom: 22px;
}

.detail-price { font-family: var(--f-display); font-size: 30px; font-weight: 600; }
.detail-price-note { font-size: 12px; color: var(--ink-40); margin-top: 3px; }

.btn-cart {
  width: 100%;
  background: var(--cobalt);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 10px;
}

.btn-cart:hover { background: var(--cobalt-mid); }

.btn-quote {
  width: 100%;
  background: transparent;
  color: var(--ink-40);
  font-size: 14px;
  font-weight: 500;
  padding: 11px;
  border: 1.5px solid var(--ink-12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: 0.2s;
}

.btn-quote:hover { border-color: var(--cobalt); color: var(--cobalt); }

.product-attrs { margin-top: 22px; }

.attr-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink-06);
}

.attr-row:last-child { border: none; }
.attr-key { color: var(--ink-40); }
.attr-val { font-weight: 500; text-align: right; }


/* ═══════════════════════════════════════════════
   COMPLIANCE PAGE
   ═══════════════════════════════════════════════ */

.compliance-intro { max-width: 680px; margin-bottom: 52px; }

.phase-card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  margin-bottom: 18px;
  position: relative;
}

.phase-num {
  position: absolute;
  top: -14px;
  left: 28px;
  background: var(--cobalt);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
}

.phase-card h3 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 8px;
}

.phase-card p {
  font-size: 14px;
  color: var(--ink-40);
  line-height: 1.7;
  margin-bottom: 14px;
}

.phase-docs { display: flex; gap: 8px; flex-wrap: wrap; }

.doc-chip {
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  background: var(--cobalt-lite);
  color: var(--cobalt);
  border: 1px solid rgba(26,79,138,0.15);
}

.doc-chip.required {
  background: #fceaea;
  color: #8c2020;
  border-color: rgba(140,32,32,0.15);
}

.doc-chip.optional {
  background: var(--amber-lite);
  color: var(--amber);
  border-color: rgba(156,96,32,0.15);
}


/* ═══════════════════════════════════════════════
   AUTH
   ═══════════════════════════════════════════════ */

.auth-shell {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  background: var(--paper);
}

.auth-box {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-xl);
  padding: 40px;
  width: 100%;
  max-width: 460px;
}

.auth-box h1 { font-family: var(--f-display); font-size: 26px; font-weight: 600; margin-bottom: 4px; }
.auth-sub { font-size: 14px; color: var(--ink-40); margin-bottom: 30px; }

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-40);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-xs);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cobalt);
  background: #fff;
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-submit {
  width: 100%;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px;
  border: none;
  border-radius: var(--radius-xs);
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--cobalt); }

.auth-alt { font-size: 13px; color: var(--ink-40); text-align: center; margin-top: 20px; }
.auth-alt a { color: var(--cobalt); font-weight: 500; }

.form-divider {
  text-align: center;
  font-size: 12px;
  color: var(--ink-40);
  margin: 20px 0;
  position: relative;
}

.form-divider::before,
.form-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--ink-12);
}

.form-divider::before { left: 0; }
.form-divider::after  { right: 0; }

.upload-zone {
  border: 2px dashed var(--ink-12);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--paper);
}

.upload-zone:hover { border-color: var(--cobalt); }
.upload-zone p { font-size: 13px; color: var(--ink-40); }
.upload-zone strong { color: var(--cobalt); }


/* ═══════════════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════════════ */

.dashboard-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - 68px);
}

.dash-sidebar {
  background: var(--white);
  border-right: 1px solid var(--ink-12);
  padding: 28px 0;
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-40);
  padding: 10px 24px;
  cursor: pointer;
  transition: 0.2s;
  border-left: 2px solid transparent;
}

.dash-nav-item:hover { color: var(--ink); background: var(--paper); }
.dash-nav-item.active {
  color: var(--cobalt);
  border-left-color: var(--cobalt);
  background: var(--cobalt-lite);
  font-weight: 500;
}

.dash-nav-section {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-40);
  padding: 20px 24px 8px;
}

.dash-main { padding: 32px 36px; background: var(--paper); }

.dash-header { margin-bottom: 28px; }
.dash-header h1 { font-family: var(--f-display); font-size: 24px; font-weight: 600; }
.dash-header p { font-size: 14px; color: var(--ink-40); margin-top: 3px; }

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.metric-box {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-md);
  padding: 20px 22px;
}

.metric-box-label {
  font-size: 11.5px;
  color: var(--ink-40);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.metric-box-value { font-family: var(--f-display); font-size: 28px; font-weight: 500; }
.metric-box-change { font-size: 12px; margin-top: 4px; }
.change-up   { color: var(--forest-mid); }
.change-flat { color: var(--ink-40); }

.dash-cards-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
}

.dash-card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-md);
  padding: 22px;
}

.dash-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 16px; }

.listing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ink-06);
}

.listing-item:last-child { border: none; }

.listing-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--cobalt-lite);
  color: var(--cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.listing-info { flex: 1; min-width: 0; }

.listing-name {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-price { font-size: 11.5px; color: var(--ink-40); margin-top: 1px; }

.status-lozenge {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.sl-live     { background: var(--forest-lite);  color: var(--forest);  }
.sl-pending  { background: var(--amber-lite);   color: var(--amber);   }
.sl-rejected { background: var(--crimson-lite); color: var(--crimson); }

.dash-add-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.dash-add-btn:hover { background: var(--cobalt); }


/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-text p { font-size: 15px; color: var(--ink-40); line-height: 1.75; margin-bottom: 16px; }

.about-visual {
  background: var(--cobalt-lite);
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cobalt);
  position: relative;
  overflow: hidden;
}

.about-visual-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 18px,
    rgba(26,79,138,0.06) 18px,
    rgba(26,79,138,0.06) 19px
  );
}

.about-visual svg { width: 80px; height: 80px; opacity: 0.3; position: relative; z-index: 1; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.team-card {
  background: var(--white);
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cobalt-lite);
  color: var(--cobalt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
}

.team-name  { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.team-role  { font-size: 12px; color: var(--ink-40); }


/* ═══════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════ */

#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  animation: toastIn 0.35s var(--ease);
  max-width: 320px;
  box-shadow: var(--shadow-md);
}

.toast.success { border-left-color: var(--forest-mid); }
.toast.error   { border-left-color: #e24b4a; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════ */

.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }
.hidden  { display: none !important; }
.mt-8    { margin-top: 8px; }
.mt-16   { margin-top: 16px; }
.mt-32   { margin-top: 32px; }
.centered { text-align: center; }
.centered .sec-subtitle { margin-left: auto; margin-right: auto; }


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 960px) {
  .models-row          { grid-template-columns: 1fr; }
  .spare-layout        { grid-template-columns: 1fr; }
  .catalogue-wrap      { grid-template-columns: 1fr; }
  .sidebar             { position: static; }
  .product-detail-wrap { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr 1fr; }
  .about-grid          { grid-template-columns: 1fr; }
  .dashboard-shell     { grid-template-columns: 1fr; }
  .dash-sidebar        { display: none; }
  .trust-row           { grid-template-columns: repeat(2, 1fr); }
  .team-grid           { grid-template-columns: repeat(2, 1fr); }
  .metrics-row         { grid-template-columns: repeat(2, 1fr); }
  .dash-cards-row      { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .wrap                        { padding: 0 16px; }
  .nav-links, .header-actions  { display: none; }
  .burger                      { display: flex; }
  .cat-grid                    { grid-template-columns: repeat(2, 1fr); }
  .prod-grid                   { grid-template-columns: 1fr; }
  .hero-search-box             { flex-direction: column; }
  .hero-search-box select      { border-left: none; border-top: 1px solid rgba(255,255,255,0.08); }
  .h-stat                      { padding: 12px 14px; }
  .h-stat-n                    { font-size: 18px; }
  .footer-grid                 { grid-template-columns: 1fr; }
  .trust-row                   { grid-template-columns: 1fr 1fr; }
  .team-grid                   { grid-template-columns: 1fr; }
  .form-2col                   { grid-template-columns: 1fr; }
  .compliance-strip            { flex-direction: column; }
  .metrics-row                 { grid-template-columns: 1fr 1fr; }
  .seller-cta-inner            { flex-direction: column; }
}