/* ====================================================
   Contemporary Systems Hub Ltd — Design System
   ==================================================== */

:root {
  /* Brand palette */
  --navy-950: #071324;
  --navy-900: #0b1f3a;
  --navy-800: #122b4d;
  --navy-700: #1a3a63;
  --navy-100: #e7edf5;

  --green-600: #16915f;
  --green-500: #1fa671;
  --green-400: #3ec78e;
  --green-100: #e3f7ee;

  --amber-500: #f5a623;
  --amber-400: #ffbb47;
  --amber-100: #fff3df;

  --ink-900: #1b2430;
  --ink-700: #3d4757;
  --ink-500: #6b7688;
  --ink-300: #a7b0bd;

  --bg: #f7f9fb;
  --bg-alt: #ffffff;
  --border: #e3e8ef;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 31, 58, 0.16);

  --container: 1200px;
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

/* Icon fallback: every icon() / [data-icon] render is a <span> wrapping an
   unsized inline <svg>, which collapses to 0x0 without an explicit size.
   This default keeps icons visible everywhere; component rules below
   override it for icons that need to fill a specific container. */
[data-icon], span[aria-hidden="true"] { display: inline-flex; vertical-align: middle; }
[data-icon] svg, span[aria-hidden="true"] svg { width: 20px; height: 20px; flex-shrink: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-700); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-600);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow.amber { color: #8a5b00; background: var(--amber-100); }
.eyebrow.navy { color: var(--navy-800); background: var(--navy-100); }

.section { padding: 88px 0; }
.section.tight { padding: 56px 0; }
.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p.lead { font-size: 1.08rem; }

.bg-alt { background: var(--bg-alt); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #fff; }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-600); box-shadow: var(--shadow-md); }
.btn-amber { background: var(--amber-500); color: var(--navy-950); box-shadow: var(--shadow-sm); }
.btn-amber:hover { background: var(--amber-400); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-outline-dark { background: transparent; border-color: var(--navy-800); color: var(--navy-900); }
.btn-outline-dark:hover { background: var(--navy-900); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }
.btn[disabled] { opacity: .5; pointer-events: none; }
.btn-ghost { background: var(--navy-100); color: var(--navy-900); }
.btn-ghost:hover { background: var(--navy-700); color: #fff; }

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.75);
  font-size: .82rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,.85); }
.topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-links span, .topbar-links a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.topbar-social a:hover { background: var(--green-500); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); }
.brand-mark { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.brand-text { line-height: 1.15; }
.brand-text strong { display: block; font-size: 1.08rem; color: var(--navy-900); font-weight: 700; }
.brand-text span { display: block; font-size: .68rem; letter-spacing: .06em; text-transform: uppercase; color: var(--green-600); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > li > a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-700);
  border-radius: 8px;
}
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--navy-900); background: var(--navy-100); }

.nav-item-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 110%; left: 0; min-width: 240px;
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .15s ease;
}
.nav-item-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: flex; gap: 10px; align-items: center; padding: 10px 12px; border-radius: 8px; font-size: .9rem; color: var(--ink-700); }
.dropdown a:hover { background: var(--green-100); color: var(--green-600); }
.dropdown-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--navy-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy-800); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative; width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--navy-100); color: var(--navy-900); border: none;
}
.icon-btn:hover { background: var(--navy-900); color: #fff; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--amber-500); color: var(--navy-950);
  font-size: .68rem; font-weight: 700;
  width: 19px; height: 19px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 500px at 85% -10%, rgba(31,166,113,.35), transparent 60%),
              linear-gradient(160deg, var(--navy-900), var(--navy-950));
  color: #fff;
  padding: 90px 0 110px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero h1 em { color: var(--green-400); font-style: normal; }
.hero p.lead { color: rgba(255,255,255,.75); font-size: 1.12rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: #fff; }
.hero-stats div span { font-size: .82rem; color: rgba(255,255,255,.6); }

.hero-art { position: relative; }
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-graphic {
  aspect-ratio: 4/3.1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-500), var(--navy-700) 60%, var(--amber-500) 130%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
}
.hero-graphic img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px;
  background: #fff; color: var(--navy-900);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
}
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px var(--green-100); }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-strip .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--ink-700); font-weight: 500; }
.trust-item svg { color: var(--green-500); flex-shrink: 0; }

/* ---------- Mission / Vision ---------- */
.mv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.mv-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm);
}
.mv-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.mv-card.mission::before { background: var(--green-500); }
.mv-card.vision::before { background: var(--amber-500); }
.mv-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.mv-card.mission .mv-icon { background: var(--green-100); color: var(--green-600); }
.mv-card.vision .mv-icon { background: var(--amber-100); color: #8a5b00; }
.mv-card p { font-size: 1.05rem; color: var(--ink-700); }
.mv-tag { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--navy-900); display: block; margin-bottom: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.value-card { text-align: center; padding: 26px 18px; }
.value-icon {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--navy-100); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.value-card h4 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: .88rem; margin: 0; }

/* ---------- Process steps (photo-based, homepage "Our Process") ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 44px; }
.process-card { text-align: center; }
.process-photo {
  width: 92px; height: 92px; margin: 0 auto 18px; border-radius: 50%;
  overflow: hidden; border: 3px solid var(--green-100);
}
.process-photo img { width: 100%; height: 100%; object-fit: cover; }
.process-card h4 { font-size: 1rem; margin-bottom: 6px; }
.process-card p { font-size: .88rem; margin: 0; }

/* ---------- Service cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  height: 100%; display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-media { aspect-ratio: 16/10; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-card p { flex: 1; font-size: .92rem; }
.service-link { font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--green-600); display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.service-link svg { transition: transform .15s ease; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ---------- Product cards / shop ---------- */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: box-shadow .18s ease, transform .18s ease;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-media {
  aspect-ratio: 1/.85; position: relative; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--navy-100), #fff 70%);
  overflow: hidden;
}
.product-media svg { width: 42%; height: 42%; color: var(--navy-700); opacity: .85; }
.product-media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; transition: transform .25s ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-head); font-size: .68rem; font-weight: 700; letter-spacing: .03em;
  padding: 5px 11px; border-radius: 999px; text-transform: uppercase;
}
.product-badge.solar { background: var(--amber-100); color: #8a5b00; }
.product-badge.best { background: var(--green-100); color: var(--green-600); }
.product-badge.new { background: var(--navy-100); color: var(--navy-800); }
.wishlist-btn {
  position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  color: var(--ink-500);
}
.wishlist-btn:hover { color: #e0405a; border-color: #e0405a; }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .05em; color: var(--green-600); font-weight: 600; }
.product-title { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--navy-900); }
.product-title a:hover { color: var(--green-600); }
.product-rating { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--ink-500); }
.product-rating .stars { color: var(--amber-500); letter-spacing: 1px; }
.product-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.product-price { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--navy-900); }
.product-price small { font-weight: 500; font-size: .78rem; color: var(--ink-300); text-decoration: line-through; margin-left: 6px; }
.add-cart-btn {
  width: 42px; height: 42px; border-radius: 50%; border: none;
  background: var(--navy-900); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background .15s ease, transform .15s ease;
}
.add-cart-btn:hover { background: var(--green-600); transform: scale(1.06); }

.shop-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); background: #fff;
  font-size: .85rem; font-weight: 500; color: var(--ink-700);
}
.chip.active, .chip:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.select-sort {
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--border); background: #fff;
  font-size: .85rem; font-family: var(--font-body); color: var(--ink-700);
}

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pd-gallery-main {
  aspect-ratio: 1/.9; border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--navy-100), #fff 70%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  overflow: hidden;
}
.pd-gallery-main svg { width: 34%; height: 34%; color: var(--navy-700); }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 30px; }
.pd-price { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--navy-900); margin: 14px 0; }
.pd-meta { display: flex; gap: 10px; margin: 18px 0; flex-wrap: wrap; }
.pd-badge { background: var(--green-100); color: var(--green-600); font-size: .78rem; font-weight: 600; padding: 6px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; }
.qty-row { display: flex; align-items: center; gap: 16px; margin: 26px 0; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty-control button { width: 40px; height: 42px; background: #fff; border: none; font-size: 1.1rem; color: var(--navy-900); }
.qty-control button:hover { background: var(--navy-100); }
.qty-control input { width: 46px; text-align: center; border: none; font-family: var(--font-head); font-weight: 600; }
.pd-actions { display: flex; gap: 12px; }
.pd-features { margin-top: 30px; border-top: 1px solid var(--border); padding-top: 26px; }
.pd-features li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: .93rem; color: var(--ink-700); }
.pd-features li svg { color: var(--green-500); flex-shrink: 0; margin-top: 2px; }
.pd-tabs { display: flex; gap: 6px; border-bottom: 1px solid var(--border); margin: 56px 0 24px; }
.pd-tab { padding: 12px 22px; font-weight: 600; font-family: var(--font-head); font-size: .92rem; color: var(--ink-500); border-bottom: 2px solid transparent; }
.pd-tab.active { color: var(--navy-900); border-color: var(--green-500); }
.pd-tab-panel { display: none; font-size: .95rem; color: var(--ink-700); }
.pd-tab-panel.active { display: block; }

/* ---------- Cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-family: var(--font-head); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-500); padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.cart-table td { padding: 20px 0; border-bottom: 1px solid var(--border); vertical-align: middle; }
.cart-item-info { display: flex; gap: 16px; align-items: center; }
.cart-item-thumb { width: 72px; height: 72px; border-radius: 10px; background: var(--navy-100); display: flex; align-items: center; justify-content: center; color: var(--navy-700); flex-shrink: 0; overflow: hidden; }
.cart-item-thumb svg { width: 55%; height: 55%; }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.cart-item-info h4 { font-size: .95rem; margin-bottom: 4px; }
.cart-item-info span { font-size: .8rem; color: var(--ink-500); }
.remove-link { color: #d1455f; font-size: .82rem; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; }
.summary-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: .92rem; color: var(--ink-700); }
.summary-row.total { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--navy-900); border-top: 1px solid var(--border); margin-top: 8px; padding-top: 16px; }
.promo-row { display: flex; gap: 8px; margin: 18px 0; }
.promo-row input { flex: 1; padding: 11px 14px; border-radius: 999px; border: 1px solid var(--border); font-size: .85rem; }
.empty-state { text-align: center; padding: 90px 20px; }
.empty-state svg { color: var(--navy-300); margin-bottom: 20px; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: start; }
.checkout-steps { display: flex; gap: 8px; margin-bottom: 40px; }
.checkout-step { flex: 1; text-align: center; padding: 12px; border-radius: 10px; background: var(--navy-100); font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--ink-500); }
.checkout-step.active { background: var(--navy-900); color: #fff; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy-900); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px; border: 1px solid var(--border);
  font-family: var(--font-body); font-size: .92rem; background: #fff; color: var(--ink-900);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green-500); box-shadow: 0 0 0 3px var(--green-100); }
.pay-methods { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 8px; }
.pay-method { border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; font-size: .85rem; font-weight: 600; color: var(--ink-700); cursor: pointer; }
.pay-method input { display: none; }
.pay-method svg { display: block; margin: 0 auto 8px; color: var(--navy-800); }
.pay-method .pay-logo { display: block; margin: 0 auto 8px; height: 22px; width: auto; }
.pay-method:has(input:checked) { border-color: var(--green-500); background: var(--green-100); color: var(--green-600); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; font-family: var(--font-head); font-weight: 600; color: var(--navy-900); }
.faq-q svg { transition: transform .2s ease; flex-shrink: 0; color: var(--green-600); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 240px; }
.faq-a p { padding-bottom: 22px; margin: 0; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testi-stars { color: var(--amber-500); letter-spacing: 2px; margin-bottom: 14px; }
.testi-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green-500), var(--navy-800)); display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-head); font-weight: 700; }
.testi-person strong { display: block; font-size: .9rem; color: var(--navy-900); }
.testi-person span { font-size: .8rem; color: var(--ink-500); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--green-600), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  color: #fff;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0; }

/* ---------- About page extras ---------- */
.story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.story-art { aspect-ratio: 1/1; border-radius: var(--radius-lg); background: linear-gradient(150deg, var(--green-500), var(--navy-800)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.story-art img { width: 100%; height: 100%; object-fit: cover; }
.timeline { border-left: 2px solid var(--border); margin-left: 10px; }
.timeline li { position: relative; padding: 0 0 30px 30px; }
.timeline li::before { content: ""; position: absolute; left: -7px; top: 3px; width: 12px; height: 12px; border-radius: 50%; background: var(--green-500); border: 3px solid var(--green-100); }
.timeline strong { display: block; font-family: var(--font-head); color: var(--navy-900); margin-bottom: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-avatar { aspect-ratio: 1/1; border-radius: var(--radius-lg); background: var(--navy-100); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--navy-700); overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card strong { display: block; font-family: var(--font-head); color: var(--navy-900); }
.team-card span { font-size: .82rem; color: var(--green-600); font-weight: 600; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-info-card { background: var(--navy-900); color: #fff; border-radius: var(--radius-lg); padding: 40px; }
.contact-info-card h3 { color: #fff; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-row .ci-icon { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--green-400); }
.contact-row strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.contact-row span, .contact-row a { font-size: .87rem; color: rgba(255,255,255,.7); }
.map-placeholder { margin-top: 26px; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 16/9; background: repeating-linear-gradient(45deg, rgba(255,255,255,.04), rgba(255,255,255,.04) 10px, rgba(255,255,255,.01) 10px, rgba(255,255,255,.01) 20px); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: .82rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.65); padding-top: 70px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: .88rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--green-500); }
.footer-col h4 { color: #fff; font-size: .92rem; margin-bottom: 18px; }
.footer-col li { margin-bottom: 11px; font-size: .87rem; }
.footer-col a:hover { color: var(--green-400); }
.footer-bottom { display: flex; justify-content: space-between; padding: 22px 0; font-size: .8rem; flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.55); }

/* ---------- Icon sizing overrides ---------- */
.mv-icon svg, .value-icon svg { width: 26px; height: 26px; }
.wishlist-btn svg, .dropdown-icon svg { width: 16px; height: 16px; }
.ci-icon svg { width: 20px; height: 20px; }
.empty-state svg { width: 100%; height: 100%; }
.pd-features li svg, .trust-item svg { width: 18px; height: 18px; }
.pay-method svg { width: 24px; height: 24px; }
.topbar-social svg, .footer-social svg { width: 14px; height: 14px; }
.footer-col li svg { width: 15px; height: 15px; }
.service-link svg, .pd-badge svg { width: 14px; height: 14px; }
.breadcrumb svg { width: 12px; height: 12px; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  background: var(--navy-900); color: #fff; padding: 14px 20px; border-radius: 12px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-lg);
  font-size: .88rem; font-weight: 500;
  transform: translateY(20px); opacity: 0; pointer-events: none; transition: all .25s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast svg { color: var(--green-400); flex-shrink: 0; }

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar { background: var(--bg-alt); border-bottom: 1px solid var(--border); padding: 18px 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: var(--ink-500); }
.breadcrumb a:hover { color: var(--green-600); }
.page-banner { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #fff; padding: 64px 0; text-align: center; }
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto; }
.brand-plate {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border-radius: var(--radius-md); width: fit-content;
  padding: 14px 22px; margin: 0 0 22px; box-shadow: var(--shadow-lg);
}
.brand-plate img { height: 84px; width: auto; display: block; }
.page-banner .brand-plate { margin-left: auto; margin-right: auto; }

/* ====================================================
   Responsive
   ==================================================== */
@media (max-width: 1080px) {
  .services-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail, .story-grid, .contact-grid, .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-actions .btn-amber { display: none; }
  .nav-toggle { display: flex; }
  .services-grid, .products-grid, .values-grid, .process-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 520px) {
  .services-grid, .products-grid, .values-grid, .process-grid, .team-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 34px; flex-direction: column; text-align: center; }
  .pay-methods { grid-template-columns: 1fr; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer .backdrop { position: absolute; inset: 0; background: rgba(7,19,36,.6); }
.mobile-drawer .panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: 84%; max-width: 340px;
  background: #fff; padding: 26px; overflow-y: auto;
}
.mobile-drawer .panel a { display: block; padding: 14px 4px; font-weight: 600; color: var(--navy-900); border-bottom: 1px solid var(--border); }
.drawer-close { width: 36px; height: 36px; border-radius: 50%; background: var(--navy-100); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: none; }
