
:root {
  --navy:         #000;
  --navy2:        #000;
  --indigo:       #f3a43d;
  --indigo-light: #818CF8;
  --indigo-dark:  #4F46E5;
  --amber:        #F59E0B;
  --amber-light:  #FCD34D;
  --green:        #10B981;
  --red:          #EF4444;
  --white:        #FFFFFF;
  --off-white:    #F8FAFC;
  --slate:        #64748B;
  --slate-light:  #CBD5E1;
  --border:       #E2E8F0;
  --text:         #000;
  --text-muted:   #000;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.06);
  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;
  --transition:   0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--off-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ════════════════════════════════════════════
   ANNOUNCE BAR
════════════════════════════════════════════ */
.announce-bar {
  background: #000;
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ════════════════════════════════════════════
   SITE HEADER  (Amazon / Jumia style)
════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  
}

/* ── ROW 1: logo + search + actions ── */
.hdr-top { background: #fff;
}
.hdr-top-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Logo */
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}
.hdr-logo:hover { border-color: rgba(255,255,255,0.35); }

.hdr-logo-badge {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.hdr-logo-text { display: flex; flex-direction: column; }
.hdr-logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}
.hdr-logo-tag {
  font-size: 10px;
  color: var(--amber);
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 767px) {
    .hdr-search {
        display: none !important;
    }
}

/* Search bar */
.hdr-search {
  flex: 1;
  display: flex;
  align-items: stretch;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #f3a43d;
  background: white;
  max-width: 820px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.hdr-search:focus-within {
  border-color: var(--amber-light);
  box-shadow: 0 0 0 2px #f3a43d;
}

.hdr-search-cat {
  background: #fff;
  border: none;
  border-right: 1px solid #ddd;
  padding: 0 8px 0 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  outline: none;
  min-width: 120px;
  max-width: 140px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.hdr-search-cat:hover { background-color: #e4e4e4; }

.hdr-search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 14px;
  font-size: 14.5px;
  color: var(--navy);
  background: white;
  min-width: 0;
}
.hdr-search-input::placeholder { color: #000; }

.hdr-search-btn {
  background: #f3a43d;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: background var(--transition);
  flex-shrink: 0;
}
.hdr-search-btn:hover { background: var(--amber-light); }

/* Right actions */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.hdr-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  padding: 7px 10px;
  border-radius: 8px;
  border: 2px solid transparent;
  color: #000;
  transition: border-color var(--transition);
  white-space: nowrap;
}
.hdr-action:hover { border-color: rgba(255,255,255,0.35); }

.hdr-action-top {
  font-size: 11px;
  color: #000;
  line-height: 1.2;
}
.hdr-action-bot {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hdr-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 2px solid transparent;
  color: #000;
  transition: border-color var(--transition);
}
.hdr-cart:hover { border-color: rgba(255,255,255,0.35); }

.hdr-cart-icon-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.hdr-cart-count {
  position: absolute;
  top: -9px;
  right: -10px;
  background: var(--amber);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--navy);
  font-family: var(--font-display);
}
.hdr-cart-label {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin-top: 12px;
}

/* Mobile toggle */
.hdr-mob-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
  flex-shrink: 0;
}
.hdr-mob-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ── ROW 2: Category nav strip ── */
.hdr-nav {
  background: #f3a43d;
  border-top: 1px solid #f3a43d;
}
.hdr-nav-inner {
  display: flex;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* "All Categories" dropdown button */
.hdr-all-wrap {
  position: relative;
  flex-shrink: 0;
}

.hdr-all-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgb(0, 0, 0);
  background: #f3a43d;
  border: none;
  border-radius: 0;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  height: 44px;
}
.hdr-all-btn:hover, .hdr-all-wrap:hover .hdr-all-btn {
  background: rgba(255,255,255,0.15);
}

.hdr-ham {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hdr-ham span {
  display: block;
  width: 17px;
  height: 2px;
  background: #000;
  border-radius: 2px;
}

.nav-divider{
    color: #fff;
    font-size: 12px;
}
/* Mega dropdown */
.hdr-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid var(--border);
  border-top: 3px solid var(--indigo);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  min-width: 300px;
  padding: 8px;
  z-index: 400;
}
.hdr-all-wrap:hover .hdr-mega { display: block; animation: megaFade 0.15s ease; }

@keyframes megaFade {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mega-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  transition: all var(--transition);
}
.mega-item:hover { background: #EEF2FF; }

.mega-icon { font-size: 22px; flex-shrink: 0; }
.mega-info { flex: 1; }
.mega-name { display: block; font-weight: 700; color: var(--navy); font-size: 14px; }
.mega-count { display: block; font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.mega-divider { height: 1px; background: var(--border); margin: 6px 0; }
.mega-view-all .mega-name { color: var(--indigo); }

/* Nav links strip */
.hdr-nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  flex: 1;
}

.hdr-nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 13px;
  height: 44px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  border-radius: 6px;
  margin: 0 1px;
}
.hdr-nav-link:hover,
.hdr-nav-link.active {
  color: rgb(0, 0, 0);
}

.hdr-nav-wa {
  background: #25d366;
  color: #fff;
  border-color: #25d366 !important;
  margin-left: auto;
  font-weight: 700;
}
.hdr-nav-wa:hover {
  background: #25D366 !important;
  color: white !important;
  border-color: #25D366 !important;
}

/* ════════════════════════════════════════════
   MOBILE DRAWER
════════════════════════════════════════════ */
.mob-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 600;
}
.mob-drawer.open { display: block; }
.mob-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.mob-drawer-panel {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 300px;
  background: white;
  overflow-y: auto;
  animation: drawerIn 0.22s ease;
  box-shadow: 8px 0 32px rgba(0,0,0,0.2);
}
@keyframes drawerIn {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
.mob-drawer-head {
  background: var(--navy);
  color: white;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}
.mob-drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 22px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  transition: color var(--transition);
}
.mob-drawer-close:hover { color: white; }
.mob-drawer-section {
  padding: 14px 18px 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--off-white);
}
.mob-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
  transition: background var(--transition);
}
.mob-drawer-link:hover { background: #f5f5f5; color: var(--indigo); }
.mob-drawer-count {
  margin-left: auto;
  background: #EEF2FF;
  color: var(--indigo);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

/* ===== HERO ===== */
.hero {
  background: #fff;
  color: rgb(0, 0, 0);
  padding: 80px 24px 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

}

.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f3a43d;
  border: 1px solid #f3a43d;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: black;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero h1 span {
  background: #f3a43d;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 17px;
  color: #000;
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--indigo);
  color: white;
}
.btn-primary:hover { background: #000; }

.btn-secondary {
  background: #000;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: #000; }

.btn-white {
  background: white;
  color: var(--indigo);
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); }

.btn-outline {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn-outline:hover { background: var(--indigo); color: white; }

.btn-wa {
  background: #25D366;
  color: white;
}
.btn-wa:hover { background: #128C7E; transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

.btn-wa-outline {
  background: transparent;
  color: #25D366;
  border: 2px solid #25D366;
}
.btn-wa-outline:hover { background: #25D366; color: white; }

.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }

.btn-add-cart {
  background: var(--indigo);
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-add-cart:hover { background: #000;  }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--amber);
}
.hero-stat-label { font-size: 12px; color: #000; margin-top: 2px; }

/* Hero visual cards */
.hero-visual { position: relative; height: 600px; }
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 18px 22px;
  color: white;
  animation: float 6s ease-in-out infinite;
}
.floating-card:nth-child(2) { animation-delay: -2s; }
.floating-card:nth-child(3) { animation-delay: -4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.fc-1 { top: 20px; right: 20px; width: 200px; }
.fc-2 { top: 160px; right: 130px; width: 180px; }
.fc-3 { top: 280px; right: 30px; width: 210px; }

.fc-icon { font-size: 28px; margin-bottom: 8px; }
.fc-title { font-size: 13px; font-weight: 600; }
.fc-sub { font-size: 11px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.fc-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--amber);
  margin-top: 10px;
}

/* Search bar */
.hero-search {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  max-width: 500px;
}
.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 18px;
  color: white;
  font-size: 15px;
}
.hero-search input::placeholder { color: #000; }
.hero-search button {
  background: #f3a43d;
  color: #000;
  border: none;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-search button:hover { background: var(--indigo-dark); }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section-alt { background: white; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: #000;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== CATEGORY CARDS ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card:hover::before { opacity: 1; }

.cat-card.bplans::before { background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(99,102,241,0.02)); }
.cat-card.trade::before { background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(245,158,11,0.02)); }
.cat-card.notes::before { background: linear-gradient(135deg, rgba(16,185,129,0.08), rgba(16,185,129,0.02)); }

.cat-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.cat-card.bplans .cat-icon-wrap { background: linear-gradient(135deg, #EEF2FF, #E0E7FF); }
.cat-card.trade .cat-icon-wrap { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); }
.cat-card.notes .cat-icon-wrap { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }

.cat-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.cat-card p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.cat-count {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
.cat-card.bplans .cat-count { background: #EEF2FF; color: var(--indigo); }
.cat-card.trade .cat-count { background: #FFFBEB; color: var(--amber); }
.cat-card.notes .cat-count { background: #ECFDF5; color: var(--green); }

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  border-color: rgba(99,102,241,0.2);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.04); }

.product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 40px;
}
.product-img-placeholder span {
  font-size: 11px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--indigo);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.product-badge.sale { background: var(--red); }
.product-badge.featured { background: var(--amber); color: var(--navy); }

.product-format {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15,23,42,0.75);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.05em;
}

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 8px;
}
.product-name a:hover { color: var(--indigo); }

.product-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--text-muted);
}
.product-rating { display: flex; align-items: center; gap: 4px; color: var(--amber); font-weight: 600; }
.product-pages { display: flex; align-items: center; gap: 4px; }

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 8px;
}

.product-price { display: flex; flex-direction: column; }
.price-current {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}
.price-original {
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-actions { display: flex; gap: 6px; align-items: center; }

.btn-wa-sm {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #D1FAE5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-wa-sm:hover { background: #25D366; color: white; border-color: #25D366; transform: translateY(-1px); }

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-title { font-size: 14px; font-weight: 700; color: var(--navy); }
.trust-sub { font-size: 12px; color: #000; margin-top: 1px; }

/* ===== FILTERS ===== */
.filters-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: white;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--indigo);
  color: var(--indigo);
  background: #EEF2FF;
}
.filters-right { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.sort-select {
  padding: 8px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  background: white;
  cursor: pointer;
  outline: none;
}
.sort-select:focus { border-color: var(--indigo); }

/* ===== PRODUCT PAGE ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 48px 0; }

.product-gallery { position: sticky; top: 90px; }
.product-main-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; }
.product-main-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.product-info-panel { display: flex; flex-direction: column; gap: 20px; }
.product-info-panel .product-category { font-size: 13px; }
.product-info-panel h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-info-panel .price-current { font-size: 32px; }
.price-row { display: flex; align-items: baseline; gap: 12px; }
.price-save {
  background: #FEF3C7;
  color: #92400E;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.product-desc-full { font-size: 15px; color: var(--text-muted); line-height: 1.8; }

.product-specs {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.spec-item { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.spec-icon { font-size: 16px; }
.spec-label { color: var(--text-muted); font-size: 12px; margin-bottom: 1px; }
.spec-val { font-weight: 600; color: var(--navy); }

.product-cta-row { display: flex; gap: 10px; flex-wrap: wrap; }
.qty-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.qty-btn {
  width: 38px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--navy);
}
.qty-btn:hover { background: var(--off-white); }
.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  height: 40px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  color: var(--navy);
}

/* ===== CART ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 32px; padding: 48px 0; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }

.cart-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }

.cart-item-body { flex: 1; }
.cart-item-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cart-item-cat { font-size: 12px; color: var(--indigo); font-weight: 600; margin-bottom: 10px; }

.cart-item-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.cart-item-price { font-size: 18px; font-weight: 800; color: var(--navy); font-family: var(--font-display); }
.btn-remove {
  background: #FEF2F2;
  color: var(--red);
  border: 1px solid #FEE2E2;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-remove:hover { background: var(--red); color: white; }

.cart-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 90px;
  height: fit-content;
}
.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--navy);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.summary-row.total {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  border-top: 2px solid var(--border);
  padding-top: 14px;
  margin-top: 8px;
}
.cart-summary .btn-wa { width: 100%; justify-content: center; margin-top: 16px; padding: 14px; font-size: 15px; }
.cart-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
}
.cart-empty .empty-icon { font-size: 64px; margin-bottom: 16px; }
.cart-empty h3 { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: white;
  padding: 48px 24px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(99,102,241,0.2) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.page-hero p { color: #fff; font-size: 16px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: #f3a43d; }

/* ===== SEARCH ===== */
.search-bar-wrap {
  background: var(--off-white);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.search-bar-inner {
  display: flex;
  gap: 0;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.search-bar-inner:focus-within { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.search-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text);
  background: transparent;
}
.search-btn {
  background: var(--indigo);
  color: white;
  border: none;
  padding: 14px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: inherit;
}
.search-btn:hover { background: var(--indigo-dark); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  background: white;
  transition: border-color var(--transition);
  outline: none;
  font-family: inherit;
}
.form-control:focus { border-color: var(--indigo); box-shadow: 0 0 0 3px rgba(99,102,241,0.08); }
.form-control.textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* ===== ADMIN ===== */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--navy);
  color: white;
  padding: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.admin-logo {
  padding: 24px 20px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.admin-nav { padding: 12px 0; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active {
  color: white;
  background: rgba(255,255,255,0.06);
  border-left-color: var(--indigo);
}
.admin-nav-section {
  padding: 16px 20px 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.admin-main { background: var(--off-white); padding: 32px; overflow-y: auto; }
.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.admin-topbar h1 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--navy); }
.admin-topbar p { color: var(--text-muted); font-size: 14px; margin-top: 2px; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.stat-icon.blue { background: #EEF2FF; }
.stat-icon.green { background: #ECFDF5; }
.stat-icon.amber { background: #FFFBEB; }
.stat-icon.purple { background: #F5F3FF; }
.stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--navy); }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.stat-change { font-size: 12px; font-weight: 600; color: var(--green); margin-top: 6px; }

.admin-table-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.admin-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.admin-table-head h3 { font-size: 16px; font-weight: 700; color: var(--navy); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(248,250,252,0.8); }
.data-table .product-thumb {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  overflow: hidden;
}
.data-table .product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.badge-green { background: #ECFDF5; color: #065F46; }
.badge-amber { background: #FFFBEB; color: #92400E; }
.badge-red { background: #FEF2F2; color: #991B1B; }
.badge-blue { background: #EEF2FF; color: #3730A3; }
.badge-gray { background: #F1F5F9; color: var(--slate); }

.table-actions { display: flex; gap: 8px; align-items: center; }
.btn-action {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-edit { background: #EEF2FF; color: var(--indigo); border-color: #C7D2FE; }
.btn-edit:hover { background: var(--indigo); color: white; }
.btn-delete { background: #FEF2F2; color: var(--red); border-color: #FECACA; }
.btn-delete:hover { background: var(--red); color: white; }
.btn-view { background: #ECFDF5; color: var(--green); border-color: #A7F3D0; }
.btn-view:hover { background: var(--green); color: white; }

/* Admin form */
.admin-form { background: white; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.admin-form h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 28px; }
.form-section { margin-bottom: 32px; }
.form-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* Image upload */
.img-upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--off-white);
}
.img-upload-zone:hover, .img-upload-zone.dragover {
  border-color: var(--indigo);
  background: #EEF2FF;
}
.img-upload-zone input { display: none; }
.upload-icon { font-size: 40px; margin-bottom: 12px; }
.upload-text { font-size: 14px; font-weight: 600; color: var(--navy); }
.upload-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.img-preview-wrap { margin-top: 16px; display: none; }
.img-preview-wrap img { max-height: 200px; border-radius: 10px; margin: 0 auto; }

/* Alert */
.alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.alert-error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }
.alert-info { background: #EEF2FF; color: #3730A3; border: 1px solid #C7D2FE; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testi-stars { color: var(--amber); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 12px; color: var(--text-muted); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo), #7C3AED);
  padding: 64px 24px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-band p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.cta-band-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ===== RELATED ===== */
.related-section { padding: 48px 0; }
.related-section .section-title { text-align: left; font-size: 22px; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 6px; justify-content: center; padding: 32px 0; }
.page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: white;
  transition: all var(--transition);
}
.page-link:hover, .page-link.active { background: var(--indigo); color: white; border-color: var(--indigo); }

/* ===== TOAST ===== */
.cart-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: white;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 9999;
}
.cart-toast.show { transform: translateY(0); opacity: 1; }
.cart-toast svg { color: var(--green); flex-shrink: 0; }

/* ===== ABOUT / STATIC ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.value-card { padding: 20px; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--border); }
.value-icon { font-size: 24px; margin-bottom: 8px; }
.value-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.value-text { font-size: 13px; color: var(--text-muted); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 24px; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 3px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--navy); }

/* ===== MAIN CONTENT OFFSET ===== */
.main-content { min-height: 60vh; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cart-layout { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 768px) {
  .hdr-actions .hdr-action { display: none; }
  .hdr-nav { display: none; }
  .hdr-top {border-bottom: 2px solid #e2e8f0;}
  .hero-search {max-width: 500px;}
  .hdr-search-cat { display: none; }
  .hdr-mob-toggle { display: flex; }
  .hdr-search { border-width: 2px; }
  .hdr-logo-tag { display: none; }
  .hdr-top-inner { gap: 8px; padding: 10px 14px; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .trust-strip .container { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { height: auto; position: static; }
  .hero { padding: 48px 20px 64px; }
  .section { padding: 48px 0; }
}
