/* ============================================================
   DOMINIC PRO TOOLS — Main Stylesheet
   ============================================================ */

:root {
  --yellow:     #C49A1E;
  --gold-hover: #A8831A;
  --dark:       #1B2B4A;
  --dark2:      #14203A;
  --white:      #ffffff;
  --light:      #f4f6fb;
  --gray:       #6b7280;
  --border:     #dde2ef;
  --font:       'Inter', sans-serif;
  --radius-sm:  4px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --shadow-card:  0 2px 16px rgba(27,43,74,.09);
  --shadow-hover: 0 16px 44px rgba(27,43,74,.20);
  --shadow-gold:  0 6px 22px rgba(196,154,30,.42);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── CONTAINER ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* ── UTILITY ───────────────────────────────────────────────── */
.text-yellow { color: var(--yellow); }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .15s;
  white-space: nowrap;
}

.btn-yellow        { background: var(--yellow); color: var(--dark);  border-color: var(--yellow); }
.btn-yellow:hover  { background: var(--gold-hover); border-color: var(--gold-hover); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.btn-outline       { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-1px); }

.btn-dark          { background: var(--dark);  color: var(--white); border-color: var(--dark); }
.btn-dark:hover    { background: var(--dark2); border-color: var(--dark2); transform: translateY(-1px); }

.btn-yellow-outline       { background: transparent; color: var(--yellow); border-color: var(--yellow); }
.btn-yellow-outline:hover { background: var(--yellow); color: var(--dark); box-shadow: var(--shadow-gold); transform: translateY(-1px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--dark);
  border-bottom: 2px solid var(--yellow);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(27,43,74,.35);
}

.nav-container {
  display: flex;
  align-items: center;
  height: 82px;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--yellow);
  box-shadow: 0 0 0 4px rgba(196,154,30,.18), 0 4px 16px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-brand { color: var(--white); font-size: 1rem; font-weight: 900; letter-spacing: .16em; }
.logo-sub   { color: var(--yellow); font-size: .63rem; font-weight: 700; letter-spacing: .22em; margin-top: 4px; }

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: .35rem;
  margin: 0 auto;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .07em;
  padding: .45rem .95rem;
  border-radius: 100px;
  position: relative;
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--yellow); background: rgba(196,154,30,.10); }
.nav-links a.nav-active {
  color: var(--yellow);
  background: rgba(196,154,30,.15);
  border: 1px solid rgba(196,154,30,.35);
  font-weight: 700;
}
.nav-links a.nav-active::after { display: none; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--yellow);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 600;
  background: rgba(196,154,30,.12);
  border: 1px solid rgba(196,154,30,.3);
  border-radius: 100px;
  padding: .42rem .95rem;
  transition: color .2s, background .2s, border-color .2s;
}
.nav-phone:hover {
  color: var(--dark);
  background: var(--yellow);
  border-color: var(--yellow);
}

.nav-cart {
  position: relative;
  color: var(--white);
  font-size: 1.25rem;
  text-decoration: none;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: color .2s, background .2s, border-color .2s;
}
.nav-cart:hover { color: var(--yellow); background: rgba(196,154,30,.15); border-color: rgba(196,154,30,.4); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--yellow);
  color: var(--dark);
  font-size: .58rem;
  font-weight: 800;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  margin-left: auto;
  order: 3;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f4f6fb 50%, #eaecf5 100%);
  padding: 5rem 0 7.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Hero — left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1.5px solid rgba(196,154,30,.55);
  background: rgba(196,154,30,.08);
  color: var(--dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  padding: .45rem 1.1rem;
  margin-bottom: 1.5rem;
  border-radius: 100px;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.hero-content h1::after {
  content: '';
  display: block;
  width: 58px;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0%, rgba(196,154,30,.2) 100%);
  border-radius: 2px;
  margin-top: 1.1rem;
}

.hero-desc {
  color: var(--gray);
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 480px;
  margin-top: 1.1rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--dark);
  font-size: .82rem;
  font-weight: 500;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: .38rem .9rem;
  box-shadow: var(--shadow-card);
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.stat:hover { background: rgba(196,154,30,.06); border-color: rgba(196,154,30,.4); box-shadow: var(--shadow-gold); }
.stat i { color: var(--yellow); font-size: .9rem; }

/* Hero — right (product card) */
.hero-product-card {
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(27,43,74,.18), 0 4px 16px rgba(27,43,74,.10);
}

.best-seller-tag {
  background: linear-gradient(90deg, var(--yellow) 0%, #e0b520 100%);
  color: var(--dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  padding: .42rem .95rem;
  display: inline-block;
  text-shadow: none;
  box-shadow: 0 2px 10px rgba(196,154,30,.45);
}

.product-card-inner { padding: 1rem; }

/* hpc = hero product card */
.hpc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem .75rem;
}

.hpc-brand { display: flex; align-items: center; gap: .5rem; }
.hpc-brand-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.hpc-brand-name { font-weight: 900; font-size: .8rem; color: var(--dark); line-height: 1; }
.hpc-brand-sub  { font-size: .55rem; color: var(--gray); letter-spacing: .12em; }

.hpc-badges { display: flex; gap: .25rem; }
.hpc-badge {
  background: var(--dark2);
  color: var(--white);
  font-size: .6rem;
  font-weight: 800;
  padding: .25rem .4rem;
  text-align: center;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hpc-badge span { font-size: .45rem; letter-spacing: .06em; }

.hpc-body {
  display: block;
  margin-bottom: 0;
}

.hpc-brand-red    { color: #e53e3e; font-size: 1.5rem; font-weight: 900; }
.hpc-product-title {
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
.hpc-product-type {
  font-size: .6rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: .25rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.hpc-tagline {
  font-size: .62rem;
  color: var(--gray);
  line-height: 1.5;
  margin: .35rem 0;
}
.hpc-specs { list-style: none; }
.hpc-specs li {
  font-size: .63rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: .35rem;
  margin-bottom: .15rem;
}
.hpc-specs i { color: var(--dark); width: 10px; font-size: .6rem; }

.hpc-image {
  background: #f0f4f8;
  display: block;
  width: 100%;
  overflow: hidden;
}
.hpc-img-icon { font-size: 4rem; color: var(--yellow); display: flex; justify-content: center; align-items: center; padding: 3rem 0; }
.hpc-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hpc-features {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: .75rem;
}
.hpc-feature {
  flex: 1;
  min-width: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  border: 1px solid var(--border);
  padding: .4rem .25rem;
  font-size: .5rem;
  text-align: center;
  color: var(--dark);
}
.hpc-feature i { font-size: .8rem; }

.hpc-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: .75rem 1rem;
  border-top: 1px solid var(--border);
  background: #fafafa;
}
.hpc-footer-name  { font-size: .78rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.hpc-footer-price { font-size: 1.1rem; font-weight: 900; color: var(--dark); }
.hpc-view-link {
  color: var(--gray);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: color .2s;
}
.hpc-view-link:hover { color: var(--yellow); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section { padding: 6.5rem 0 5.5rem; background: var(--white); }

.section-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}
.label-line {
  display: block;
  width: 28px; height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 2.75rem;
}
.dark-title { color: var(--dark); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  border: 1.5px solid var(--border);
  border-bottom: 3px solid var(--yellow);
  padding: 2.25rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
  border-bottom-color: var(--yellow);
}
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(196,154,30,.10);
  border: 1.5px solid rgba(196,154,30,.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}
.feature-icon i { color: var(--yellow); font-size: 1.2rem; }
.feature-card h3 { font-size: .95rem; font-weight: 800; color: var(--dark); margin-bottom: .5rem; }
.feature-card p  { font-size: .85rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories-section { padding: 5rem 0; background: var(--light); }
.cat-title { margin-bottom: 2rem; }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.category-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  text-decoration: none;
  border: 1.5px solid var(--border);
  border-bottom: 3px solid var(--yellow);
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-card);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
}
.category-icon {
  width: 54px; height: 54px;
  background: rgba(196,154,30,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  border: 1.5px solid rgba(196,154,30,.3);
}
.category-icon i { color: var(--yellow); font-size: 1.2rem; }
.category-card h3 { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: .35rem; }
.category-card p  { font-size: .8rem; color: var(--gray); margin-bottom: 1.25rem; }
.shop-link {
  color: var(--yellow);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-section { padding: 6rem 0; background: var(--white); }
.feat-title { margin-bottom: 0; }

.featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card-item {
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .25s, border-color .25s, transform .25s;
}
.product-card-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--yellow);
  transform: translateY(-5px);
}

.product-img-wrapper {
  position: relative;
  background: linear-gradient(145deg, #f8f9fc 0%, #eef1f8 100%);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.product-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: contain;
}

.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #d1d5db;
}

.discount-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--dark);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: .2rem .5rem;
  z-index: 1;
}

.brand-tag {
  position: absolute;
  top: .75rem; right: .75rem;
  background: var(--yellow);
  color: var(--dark);
  font-size: .65rem;
  font-weight: 800;
  padding: .2rem .5rem;
  letter-spacing: .05em;
  z-index: 1;
}
.brand-generic { background: var(--dark); color: var(--white); }

.product-details { padding: 1rem; }
.product-category {
  font-size: .62rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-details h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  margin: .4rem 0 .8rem;
  line-height: 1.4;
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: .875rem;
}
.price-current { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.price-old     { font-size: .85rem; color: var(--gray); text-decoration: line-through; }

.btn-add-cart {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: .85rem;
  font-family: var(--font);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .2s, box-shadow .2s;
}
.btn-add-cart:hover { background: var(--yellow); color: var(--dark); box-shadow: 0 4px 16px rgba(196,154,30,.38); }

/* ============================================================
   QUALITY BANNER
   ============================================================ */
.quality-banner {
  background-color: var(--dark2);
  background-image:
    linear-gradient(150deg, rgba(30,52,100,.7) 0%, rgba(196,154,30,.10) 55%, transparent 100%),
    repeating-linear-gradient(
      -45deg,
      transparent   0px,
      transparent   22px,
      rgba(255,255,255,.025) 22px,
      rgba(255,255,255,.025) 23px
    );
  padding: 6rem 0;
}

.quality-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.quality-shield {
  font-size: 2.5rem;
  color: var(--yellow);
}

.quality-container p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  max-width: 640px;
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--light);
  padding: 4rem 0;
}

.cta-container {
  background: linear-gradient(145deg, #213363 0%, var(--dark2) 100%);
  box-shadow: 0 24px 60px rgba(27,43,74,.28);
  max-width: 1000px;
  margin: 0 auto;
  padding: 4.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  border-top: 4px solid var(--yellow);
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: .02em;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: .5rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 3.5rem 0 3rem;
}

.footer-logo { margin-bottom: 1rem; }
.footer-tagline { color: var(--white); font-size: .875rem; font-weight: 600; margin-bottom: .5rem; }
.footer-desc    { color: #6b7280;     font-size: .8rem;   line-height: 1.75; }

.footer-col h4 {
  color: var(--yellow);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .75rem; }
.footer-col a  {
  color: #9ca3af;
  text-decoration: none;
  font-size: .875rem;
  transition: color .2s;
}
.footer-col a:hover { color: var(--yellow); }

.footer-contact-col h4 { /* inherits footer-col h4 */ }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  font-size: .875rem;
  color: #9ca3af;
}
.contact-item i { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.contact-item span { display: block; }
.contact-label { font-size: .72rem; color: #6b7280; }
.contact-item a { color: #9ca3af; text-decoration: none; transition: color .2s; }
.contact-item a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: #6b7280;
}
.paystack-badge { display: flex; align-items: center; gap: .375rem; }
.paystack-badge i { color: var(--yellow); }

/* ============================================================
   RESPONSIVE — TABLET  (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero { padding: 3.5rem 0 4rem; }
  .hero::after { display: none; }
  .hero-desc { max-width: 100%; }

  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid   { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .nav-phone span { display: none; }
  .nav-phone { padding: .42rem .75rem; }
}

/* ============================================================
   RESPONSIVE — MOBILE  (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Navbar */
  .nav-container {
    flex-wrap: wrap;
    height: auto;
    padding: .875rem 1.25rem;
    position: relative;
  }
  .nav-toggle  { display: flex; order: 2; margin-left: auto; }
  .nav-actions { order: 3; margin-left: 0; }
  .nav-phone   { display: none; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 4;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.08);
    padding: .5rem .75rem .75rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid rgba(255,255,255,.07); }
  .nav-links a  { display: block; padding: .75rem .5rem; font-size: .88rem; border-radius: var(--radius-sm); color: rgba(255,255,255,.85); }
  .nav-links a.nav-active { padding: .75rem .5rem; }

  /* Hero */
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
  .hero-stats { gap: 1rem; }

  /* Grids → single column */
  .features-grid   { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid   { grid-template-columns: 1fr; }

  .featured-header { flex-direction: column; align-items: flex-start; }


  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
    padding: 2.5rem 0 2rem;
  }
  .footer-brand      { grid-column: 1 / -1; order: 0; }
  .footer-grid > *:nth-child(3) { order: 1; }  /* Quick Links — first column */
  .footer-grid > *:nth-child(2) { order: 2; }  /* Categories — second column */
  .footer-contact-col { grid-column: 1 / -1; order: 3; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Quality banner */
  .quality-container p { font-size: .95rem; }

  /* CTA */
  .cta-banner h2 { font-size: 1.6rem; }
}

/* ── Scroll-in animation ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE  (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.1rem; }
  .btn { padding: .75rem 1.25rem; font-size: .8rem; }
  .logo-brand { font-size: .8rem; }
  .logo-sub   { font-size: .55rem; }
}

/* ============================================================
   PRODUCTS PAGE — CATALOG HEADER
   ============================================================ */
.catalog-header {
  background-color: var(--dark2);
  background-image:
    linear-gradient(150deg, rgba(30,52,100,.75) 0%, rgba(196,154,30,.09) 55%, transparent 100%),
    repeating-linear-gradient(
      -45deg,
      transparent   0px,
      transparent   22px,
      rgba(255,255,255,.025) 22px,
      rgba(255,255,255,.025) 23px
    );
  padding: 3.5rem 0 0;
}

.catalog-label {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.catalog-title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: .6rem;
}

.catalog-subtitle {
  color: var(--gray);
  font-size: .95rem;
  margin-bottom: 2rem;
}


/* ============================================================
   PRODUCTS PAGE — MAIN SECTION
   ============================================================ */
.products-page-section {
  background: var(--white);
  padding: 2.5rem 0 5rem;
}

/* Toolbar */
.products-toolbar {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.search-wrapper {
  flex: 1;
  position: relative;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: .85rem;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: .85rem 1rem .85rem 2.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  box-shadow: var(--shadow-card);
  transition: border-color .2s, box-shadow .2s;
}
.search-input:focus       { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(196,154,30,.14); }
.search-input::placeholder { color: var(--gray); }

.sort-wrapper {
  position: relative;
  flex-shrink: 0;
}

.sort-select {
  padding: .85rem 2.5rem .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--dark);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  box-shadow: var(--shadow-card);
}
.sort-select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(196,154,30,.14); }

.sort-caret {
  position: absolute;
  right: .85rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: .7rem;
  color: var(--dark);
  pointer-events: none;
}

/* Category Tabs */
.category-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cat-tab {
  padding: .6rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 6px rgba(27,43,74,.07);
  transition: border-color .2s, background .2s, box-shadow .2s, transform .15s;
}
.cat-tab:hover        { border-color: var(--dark); box-shadow: 0 3px 10px rgba(27,43,74,.12); transform: translateY(-1px); }
.cat-tab.active       { background: var(--yellow); border-color: var(--yellow); color: var(--dark); box-shadow: 0 4px 14px rgba(196,154,30,.30); }

/* Full catalog grid */
.products-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card-item.hidden { display: none; }

/* No results state */
.no-results {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--gray);
}
.no-results i { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.no-results p { font-size: 1.05rem; }

/* ============================================================
   PRODUCTS PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid-full { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .products-toolbar   { flex-direction: column; align-items: stretch; }
  .sort-wrapper       { width: 100%; }
  .sort-select        { width: 100%; }
  .products-grid-full { grid-template-columns: repeat(2, 1fr); }
  .category-tabs      { overflow-x: auto; flex-wrap: nowrap; padding-bottom: .25rem; -webkit-overflow-scrolling: touch; }
  .cat-tab            { flex-shrink: 0; }
}

@media (max-width: 480px) {
  .catalog-title      { font-size: 1.9rem; }
  .products-grid-full { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
}

/* ============================================================
   ABOUT PAGE — HERO
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f4f6fb 60%, #eaecf5 100%);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0 0;
}

.about-label {
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.about-title {
  color: var(--dark);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  max-width: 680px;
}

.about-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 3rem;
}

/* ============================================================
   ABOUT PAGE — STATS
   ============================================================ */
.about-stats {
  background: var(--white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  border: 1.5px solid var(--border);
  border-bottom: 5px solid var(--yellow);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.stat-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: .6rem;
}

.stat-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gray);
  text-transform: uppercase;
}

/* ============================================================
   ABOUT PAGE — MISSION
   ============================================================ */
.about-mission {
  background: var(--white);
  padding: 0 0 5rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mission-image {
  position: relative;
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1.5px solid var(--border);
}

.mission-img-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--light);
  border: 1.5px solid var(--border);
  color: var(--gray);
  font-size: 3rem;
}

.mission-label-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.mission-line {
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}

.mission-eyebrow {
  color: var(--yellow);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mission-title {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.mission-desc {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.75rem;
}

.mission-list {
  list-style: none;
  margin-bottom: 2.25rem;
}

.mission-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .9rem;
}

.mission-list li i {
  color: var(--yellow);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================================
   ABOUT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid   { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .mission-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-mission { padding: 0 0 4rem; }
}

@media (max-width: 480px) {
  .about-title  { font-size: 2rem; }
  .stats-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-box     { padding: 2rem 1rem; }
  .stat-number  { font-size: 1.75rem; }
}

/* ============================================================
   CONTACT PAGE — MAIN SECTION
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: 5rem 0 6rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Info cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1.5px solid var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--yellow);
  font-size: 1rem;
}

.contact-card-title {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--dark);
  margin-bottom: .4rem;
}

.contact-card-detail {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .2rem;
}

.contact-card-sub {
  font-size: .85rem;
  color: var(--gray);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1rem;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  margin-top: .25rem;
}
.btn-whatsapp:hover { background: var(--gold-hover); box-shadow: var(--shadow-gold); transform: translateY(-1px); }

/* Enquiry form */
.contact-form-card {
  border: 1.5px solid var(--border);
  border-right: 4px solid var(--yellow);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 2.5rem;
}

.form-heading {
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: .1em;
  color: var(--dark);
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--dark);
  margin-bottom: .5rem;
  text-transform: uppercase;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-input:focus,
.form-textarea:focus   { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(196,154,30,.12); }
.form-input::placeholder,
.form-textarea::placeholder { color: #d1d5db; }

.form-textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-send {
  width: 100%;
  padding: 1.1rem;
  background: var(--dark);
  color: var(--white);
  font-family: var(--font);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .08em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .2s, transform .15s;
}
.btn-send:hover    { background: var(--dark2); transform: translateY(-1px); }
.btn-send:disabled { opacity: .5; cursor: default; transform: none; }

.form-success {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: #16a34a;
}
.form-success i { font-size: 1.1rem; }

/* ============================================================
   CONTACT PAGE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .contact-layout { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .contact-layout      { grid-template-columns: 1fr; gap: 3rem; }
  .contact-form-card   { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .contact-section     { padding: 3rem 0 4rem; }
  .contact-card        { padding: 1.25rem; gap: 1rem; }
  .contact-card-icon   { width: 2.5rem; height: 2.5rem; font-size: .875rem; }
  .contact-form-card   { padding: 1.5rem 1.25rem; border-right-width: 4px; }
}

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 400px; max-width: 100vw;
  background: var(--white);
  z-index: 1060;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -8px 0 48px rgba(27,43,74,.22);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: var(--dark); color: var(--white);
  font-size: .82rem; font-weight: 800; letter-spacing: .1em;
  flex-shrink: 0;
}

.cart-x {
  background: none; border: none; color: var(--white);
  font-size: 1.2rem; cursor: pointer; opacity: .7;
  transition: opacity .2s; line-height: 1; padding: .2rem;
}
.cart-x:hover { opacity: 1; }

.cart-drawer-body {
  flex: 1; overflow-y: auto; padding: 1rem;
}

.cart-list { list-style: none; display: flex; flex-direction: column; gap: .875rem; }

.cart-item {
  display: flex; align-items: flex-start; gap: .875rem;
  padding-bottom: .875rem; border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }

.ci-img {
  width: 64px; height: 64px; object-fit: contain;
  border: 1px solid var(--border); background: #f9fafb; flex-shrink: 0;
}

.ci-info { flex: 1; min-width: 0; }

.ci-name {
  font-size: .82rem; font-weight: 600; color: var(--dark);
  line-height: 1.35; margin-bottom: .2rem;
  overflow: hidden; text-overflow: ellipsis; display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.ci-price { font-size: .82rem; font-weight: 700; color: var(--yellow); margin-bottom: .4rem; }

.ci-qty { display: flex; align-items: center; gap: .5rem; }

.qty-btn {
  width: 28px; height: 28px; border: 1.5px solid var(--border);
  background: var(--white); font-size: 1rem; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--dark); line-height: 1;
  border-radius: var(--radius-sm);
  transition: background .15s, border-color .15s;
}
.qty-btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

.ci-qty span { font-size: .9rem; font-weight: 700; min-width: 20px; text-align: center; }

.ci-del {
  background: none; border: none; color: #9ca3af;
  cursor: pointer; font-size: .85rem; padding: .2rem; flex-shrink: 0;
  transition: color .2s;
}
.ci-del:hover { color: #ef4444; }

.cart-empty {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; height: 220px; color: var(--gray); text-align: center;
}
.cart-empty i { font-size: 2.25rem; }

.cart-drawer-ft {
  border-top: 1.5px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex; flex-direction: column; gap: .875rem;
  flex-shrink: 0;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em;
}
.cart-subtotal strong { font-size: 1rem; }

.btn-checkout {
  width: 100%; padding: 1rem;
  background: var(--yellow); color: var(--dark);
  border: none; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .875rem;
  font-weight: 800; letter-spacing: .06em; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .2s, box-shadow .2s, transform .15s;
}
.btn-checkout:hover { background: var(--gold-hover); box-shadow: var(--shadow-gold); transform: translateY(-1px); }

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.co-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 1100; display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.co-overlay.open { display: flex; }

.co-modal {
  background: var(--white); width: 100%; max-width: 520px;
  max-height: 90vh; max-height: 90dvh; display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(27,43,74,.3);
}

.co-modal-hd {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: var(--dark); color: var(--white);
  font-size: .82rem; font-weight: 800; letter-spacing: .1em;
  flex-shrink: 0;
}

.co-modal-body {
  padding: 1.5rem; overflow-y: auto; flex: 1;
  display: flex; flex-direction: column; gap: 1.5rem;
}

.co-sum-hd {
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; color: var(--dark);
  margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 1.5px solid var(--border);
}
.co-sum-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; color: var(--gray); margin-bottom: .3rem;
}
.co-sum-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .9rem; font-weight: 800; color: var(--dark);
  padding-top: .75rem; border-top: 1.5px solid var(--dark); margin-top: .5rem;
}

.co-field { margin-bottom: 1.1rem; }
.co-field label {
  display: block; font-size: .67rem; font-weight: 700;
  letter-spacing: .1em; color: var(--dark); margin-bottom: .4rem;
}
.co-field input, .co-field textarea, .co-field select {
  width: 100%; padding: .8rem 1rem;
  border: 1.5px solid var(--border);
  font-family: var(--font); font-size: .9rem; color: var(--dark);
  outline: none; transition: border-color .2s; background: var(--white);
}
.co-field input:focus, .co-field textarea:focus, .co-field select:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(196,154,30,.12); }
.co-field textarea { min-height: 72px; resize: vertical; }
.co-sum-delivery { color: var(--gray); font-size: .8rem; }

.btn-pay {
  width: 100%; padding: 1.1rem;
  background: var(--dark); color: var(--white);
  font-family: var(--font); font-size: .875rem; font-weight: 800;
  letter-spacing: .06em; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .2s;
}
.btn-pay:hover { background: var(--dark2); }

/* ── Place Order button ─────────────────────────────────────── */
.btn-place-order {
  width: 100%; padding: 1.1rem;
  background: var(--dark); color: var(--white);
  font-family: var(--font); font-size: .875rem; font-weight: 800;
  letter-spacing: .06em; border: none; cursor: pointer;
  transition: background .2s;
}
.btn-place-order:hover    { background: var(--dark2); }
.btn-place-order:disabled { opacity: .6; cursor: not-allowed; }

/* ── Payment view ───────────────────────────────────────────── */
.co-confirmed-banner {
  display: flex; align-items: center; gap: 1rem;
  background: #dcfce7; padding: 1rem 1.25rem;
}
.co-confirmed-banner > i { font-size: 1.8rem; color: #16a34a; flex-shrink: 0; }
.co-confirmed-title { font-size: .9rem; font-weight: 800; color: var(--dark); }
.co-confirmed-sub   { font-size: .77rem; color: var(--gray); margin-top: .15rem; }

.co-pay-amount {
  text-align: center; font-size: .82rem; font-weight: 600;
  color: var(--gray); letter-spacing: .04em;
}
.co-pay-amount strong { font-size: 1.25rem; color: var(--dark); }

.co-pay-options { display: flex; flex-direction: column; gap: .75rem; }

.btn-pay-opt {
  width: 100%; padding: 1.1rem; font-family: var(--font);
  font-size: .875rem; font-weight: 800; letter-spacing: .06em;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  transition: opacity .2s;
}
.btn-pay-opt:hover       { opacity: .85; }
.btn-pay-opt.paystack-opt { background: var(--yellow); color: var(--dark); }
.btn-pay-opt.opay-opt     { background: var(--dark);   color: var(--white); }

/* ── Opay transfer details ──────────────────────────────────── */
.opay-details {
  background: #f9fafb; border: 1.5px solid var(--border); padding: 1.25rem;
}
.opay-hd {
  font-size: .66rem; font-weight: 800; letter-spacing: .14em;
  color: var(--gray); margin-bottom: .9rem;
}
.opay-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .84rem; padding: .5rem 0; border-bottom: 1px solid var(--border);
}
.opay-row:last-of-type { border-bottom: none; }
.opay-row span   { color: var(--gray); }
.opay-row strong { color: var(--dark); }
.opay-acct { font-size: 1.05rem; letter-spacing: .06em; }
.opay-note {
  font-size: .75rem; color: var(--gray); line-height: 1.55;
  font-style: italic; margin: .85rem 0;
}
.btn-opay-confirm {
  width: 100%; padding: 1rem; background: #16a34a; color: var(--white);
  font-family: var(--font); font-size: .875rem; font-weight: 800;
  letter-spacing: .06em; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  transition: background .2s;
}
.btn-opay-confirm:hover { background: #15803d; }

/* Order success modal */
.order-success-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; padding: 1rem;
}
.osm-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  max-width: 460px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  animation: slideInUp .3s ease;
}
.osm-icon { font-size: 3.5rem; color: #16a34a; margin-bottom: .75rem; }
.osm-title { font-size: 1.6rem; font-weight: 900; color: var(--dark); margin-bottom: .3rem; }
.osm-subtitle { font-size: .9rem; color: var(--gray); margin-bottom: 1.5rem; }
.osm-track-box {
  background: var(--light);
  border: 2.5px dashed var(--yellow);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem 1rem;
  margin-bottom: 1rem;
}
.osm-track-label {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; color: var(--gray); margin-bottom: .4rem;
}
.osm-track-id {
  display: block; font-size: 2rem; font-weight: 900;
  color: var(--dark); letter-spacing: .08em;
}
.osm-copy-btn {
  background: var(--dark); color: var(--white);
  border: none; padding: .55rem 1.5rem;
  border-radius: 100px; font-size: .85rem; font-weight: 700;
  cursor: pointer; margin-bottom: 1.1rem;
  transition: background .2s, color .2s;
}
.osm-copy-btn:hover { background: var(--yellow); color: var(--dark); }
.osm-ref { font-size: .78rem; color: var(--gray); margin-bottom: 1rem; }
.osm-track-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .85rem; font-weight: 700; color: var(--dark);
  background: rgba(196,154,30,.12); border: 1px solid rgba(196,154,30,.4);
  padding: .5rem 1.2rem; border-radius: 100px;
  text-decoration: none; margin-bottom: 1.3rem;
  transition: background .2s;
}
.osm-track-link:hover { background: var(--yellow); }
.osm-dismiss-btn {
  display: block; width: 100%;
  background: #16a34a; color: var(--white);
  border: none; padding: .9rem;
  border-radius: var(--radius-md);
  font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: background .2s;
}
.osm-dismiss-btn:hover { background: #15803d; }

@keyframes slideInUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .osm-track-id { font-size: 1.5rem; }
  .osm-card { padding: 2rem 1.25rem 1.5rem; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: .75rem 1.25rem .75rem .9rem;
  border-radius: 2rem;
  font-size: .95rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float i { font-size: 1.5rem; line-height: 1; }
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
  color: #fff;
}
@media (max-width: 480px) {
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: .85rem; border-radius: 50%; }
}

/* ============================================================
   LARGE SCREENS (≥ 1200px) — bigger feature images
   ============================================================ */
@media (min-width: 1200px) {
  .hero-grid    { grid-template-columns: 1fr 1.4fr; }
  .mission-grid { grid-template-columns: 1.4fr 1fr; }
}
