/* =========================================================
   34B Company Ltd — Premium Natural Storefront
   Warm stone · Deep navy · Burnished copper
   ========================================================= */

:root {
  --navy: #102033;
  --navy-2: #173049;
  --navy-3: #23405c;
  --charcoal: #2a2f35;
  --graphite: #5a6470;
  --accent: #c45f2d;
  --accent-dark: #a34c22;
  --accent-soft: rgba(196, 95, 45, .12);
  --bg: #f1f2f0;
  --bg-warm: #e9ebe7;
  --white: #fcfcfb;
  --surface: #ffffff;
  --line: #d8ddd6;
  --text: #1c2420;
  --muted: #5f6a63;
  --success: #2f6f4e;
  --warning: #9a6b22;
  --danger: #a33b32;
  --shadow: 0 10px 28px rgba(16, 32, 51, .06);
  --shadow-soft: 0 2px 0 rgba(16, 32, 51, .03);
  --radius: 6px;
  --container: 1180px;
  --font: "Figtree", "Segoe UI", sans-serif;
  --display: "Fraunces", "Times New Roman", serif;
  --ui: "Figtree", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 118px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 450;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(900px 420px at 0% -10%, rgba(196,95,45,.06), transparent 55%),
    radial-gradient(800px 360px at 100% 0%, rgba(16,32,51,.05), transparent 50%),
    linear-gradient(180deg, #f4f5f2 0%, var(--bg) 28%, var(--bg) 100%);
  line-height: 1.6;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--accent); }
h1,h2,h3,h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 .55rem;
  color: var(--navy);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 650; }
h2 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); }
h3 { font-size: 1.12rem; letter-spacing: -.015em; font-family: var(--ui); font-weight: 700; }
p { margin: 0 0 .95rem; }
.container { width: min(100% - 1.6rem, var(--container)); margin-inline: auto; }
.section { padding: 3.6rem 0; position: relative; }
.section-sm { padding: 2.2rem 0; }
.section-alt {
  background: linear-gradient(180deg, var(--bg-warm), #eceee9);
  border-top: 1px solid rgba(16,32,51,.05);
  border-bottom: 1px solid rgba(16,32,51,.05);
}
.section-light { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.muted { color: var(--muted); }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.flex { display: flex; gap: .85rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.stack { display: grid; gap: .9rem; }

/* Motion */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes softPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}
@keyframes gentleDrift {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .07s; }
.reveal-delay-2 { transition-delay: .14s; }
.reveal-delay-3 { transition-delay: .21s; }
.reveal-delay-4 { transition-delay: .28s; }

.hero-anim > * {
  opacity: 0;
  animation: fadeUp .75s var(--ease) forwards;
}
.hero-anim > *:nth-child(1) { animation-delay: .05s; }
.hero-anim > *:nth-child(2) { animation-delay: .16s; }
.hero-anim > *:nth-child(3) { animation-delay: .28s; }
.hero-anim > *:nth-child(4) { animation-delay: .4s; }
.hero-anim > *:nth-child(5) { animation-delay: .52s; }

.page-enter { animation: fadeIn .4s var(--ease); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-anim > *, .page-enter, .page-hero .container > *, .float-whatsapp, .hero::before {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .78rem 1.2rem; border-radius: 4px; border: 1px solid transparent;
  font-family: var(--ui); font-weight: 700; letter-spacing: .05em;
  cursor: pointer; transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  text-transform: uppercase; font-size: .72rem;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); color: #fff; box-shadow: 0 10px 22px rgba(164,76,34,.22); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-3); color: #fff; }
.btn-outline { background: transparent; border-color: rgba(255,255,255,.7); color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-outline-dark { background: transparent; border-color: rgba(16,32,51,.28); color: var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-whatsapp { background: #1faa55; color: #fff; }
.btn-whatsapp:hover { color: #fff; box-shadow: 0 8px 18px rgba(31,170,85,.25); }
.btn-block { width: 100%; }
.btn-sm { padding: .52rem .85rem; font-size: .68rem; }

/* Header */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.78); font-size: .76rem; padding: .45rem 0;
  letter-spacing: .02em;
}
.topbar .container { display: flex; justify-content: space-between; gap: .75rem; flex-wrap: wrap; }
.topbar a { color: #fff; }
.header {
  background: rgba(252,252,251,.92); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px) saturate(1.1); -webkit-backdrop-filter: blur(12px) saturate(1.1);
}
.header-main {
  display: grid; grid-template-columns: 210px 1fr auto; gap: 1rem; align-items: center; padding: .85rem 0;
}
.logo {
  font-family: var(--display); font-weight: 650; font-size: 1.28rem; color: var(--navy); line-height: 1.05;
  letter-spacing: -.03em;
}
.logo span {
  display: block; font-family: var(--ui); font-size: .6rem; font-weight: 700;
  color: var(--accent); letter-spacing: .12em; text-transform: uppercase; margin-top: .2rem;
}
.search-form { display: flex; width: 100%; position: relative; }
.search-field { flex: 1; position: relative; min-width: 0; }
.search-form input {
  width: 100%; border: 1px solid var(--line); border-right: 0; border-radius: 4px 0 0 4px;
  padding: .78rem .95rem; font-size: .92rem; outline: none; background: #f7f8f5;
}
.search-form input:focus { border-color: var(--navy-3); background: #fff; }
.search-form.is-live input { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px var(--accent-soft); }
.search-form button {
  background: var(--navy); color: #fff; border: 0; border-radius: 0 4px 4px 0;
  padding: 0 1.1rem; cursor: pointer; font-family: var(--ui); font-weight: 700; font-size: .7rem;
  letter-spacing: .05em; text-transform: uppercase; flex-shrink: 0;
}
.live-search-results {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 80;
  background: var(--surface); border: 1px solid var(--line); border-radius: 8px;
  box-shadow: 0 20px 44px rgba(16,32,51,.14); overflow: hidden;
  max-height: min(70vh, 420px); overflow-y: auto;
  animation: fadeUp .2s var(--ease);
}
.live-search-item {
  display: grid; grid-template-columns: 52px 1fr auto; gap: .75rem; align-items: center;
  padding: .75rem .9rem; border-bottom: 1px solid #eef0ec; color: var(--text); cursor: pointer;
  transition: background .15s var(--ease);
}
.live-search-item:last-child { border-bottom: 0; }
.live-search-item:hover,
.live-search-item.is-active { background: #f4f6f2; color: var(--navy); }
.live-search-item img {
  width: 52px; height: 52px; object-fit: cover; border-radius: 4px; background: var(--bg-warm);
}
.live-search-item strong {
  display: block; font-family: var(--ui); font-size: .9rem; font-weight: 700; letter-spacing: -.01em;
  margin-bottom: .15rem;
}
.live-search-item .meta { color: var(--muted); font-size: .75rem; line-height: 1.35; }
.live-search-item .price {
  font-family: var(--ui); font-weight: 700; font-size: .88rem; color: var(--navy); white-space: nowrap;
}
.live-search-empty,
.live-search-footer { padding: .9rem; font-size: .86rem; color: var(--muted); }
.live-search-footer {
  border-top: 1px solid var(--line); background: #f6f7f4;
  display: flex; justify-content: space-between; gap: .75rem; align-items: center;
}
.live-search-footer a {
  font-family: var(--ui); font-weight: 700; font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent);
}
.live-search-mark {
  background: var(--accent-soft); color: inherit; border-radius: 2px; padding: 0 .1em;
}
.header-actions { display: flex; gap: .9rem; align-items: center; }
.header-actions a {
  color: var(--navy); font-weight: 650; font-size: .82rem; position: relative;
  font-family: var(--ui); letter-spacing: .01em;
}
.badge-count {
  position: absolute; top: -7px; right: -9px; background: var(--accent); color: #fff;
  border-radius: 999px; font-size: .6rem; min-width: 16px; height: 16px; display: grid; place-items: center;
  font-family: var(--ui);
}
.nav { background: var(--navy-2); border-top: 1px solid rgba(255,255,255,.04); }
.nav .container { display: flex; gap: .1rem; overflow-x: auto; scrollbar-width: none; }
.nav .container::-webkit-scrollbar { display: none; }
.nav a {
  color: rgba(255,255,255,.84); padding: .78rem .72rem; font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; white-space: nowrap; text-transform: uppercase; font-family: var(--ui);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; background: rgba(255,255,255,.07); }
.mobile-toggle { display: none; background: none; border: 0; font-size: 1.35rem; cursor: pointer; color: var(--navy); }

/* Alerts */
.alert { padding: .75rem .9rem; border-radius: 5px; margin: .85rem 0; font-size: .9rem; }
.alert-success { background: #e8f3ec; color: var(--success); }
.alert-error { background: #f8eae8; color: var(--danger); }
.alert-info { background: #eef3f7; color: var(--navy); }

/* Hero */
.hero {
  position: relative; min-height: min(78vh, 680px); display: grid; align-items: center;
  background:
    linear-gradient(112deg, rgba(16,32,51,.94) 0%, rgba(16,32,51,.78) 46%, rgba(16,32,51,.38) 100%),
    url('../images/hero.jpg') center/cover no-repeat,
    var(--navy);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: .18; mix-blend-mode: luminosity;
  animation: gentleDrift 18s ease-in-out alternate infinite;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 110px;
  background: linear-gradient(to top, var(--bg), transparent);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; padding: 4.6rem 0 3.8rem; }
.hero-kicker {
  display: inline-block; font-family: var(--ui); font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: #e7a57a; font-weight: 700; margin-bottom: 1rem;
}
.hero h1 {
  color: #fff; font-size: clamp(2.35rem, 5.2vw, 4rem); letter-spacing: -.035em; margin-bottom: 1rem;
  white-space: pre-line; font-weight: 650;
}
.hero p { color: rgba(255,255,255,.86); font-size: 1.05rem; max-width: 540px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.55rem; }
.brand-ribbon {
  margin-top: 1.7rem; color: rgba(255,255,255,.62); font-size: .72rem;
  letter-spacing: .14em; text-transform: uppercase; font-family: var(--ui); font-weight: 650;
}

/* Cards / panels — quieter, material */
.service-card, .category-card, .product-card, .trust-card, .article-card, .panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.service-card, .trust-card, .panel { padding: 1.35rem 1.3rem; }
.service-card, .trust-card, .category-card, .product-card, .article-card {
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}
.service-card:hover, .trust-card:hover, .category-card:hover, .article-card:hover, .product-card:hover {
  transform: translateY(-3px);
  border-color: #c7cdc4;
  box-shadow: var(--shadow);
}
.service-card h3, .trust-card h3 { font-size: 1.02rem; }
.service-card .icon-line {
  width: 28px; height: 2px; background: var(--accent); margin-bottom: .95rem;
}
.category-card { overflow: hidden; display: flex; flex-direction: column; }
.category-card .media {
  aspect-ratio: 16/10; background: var(--navy-2); color: #fff; position: relative; overflow: hidden;
}
.category-card .media img {
  width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.02);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}
.category-card:hover .media img { transform: scale(1.04); filter: saturate(1) contrast(1.04); }
.category-card .media .label {
  position: absolute; left: .9rem; bottom: .9rem;
  background: rgba(16,32,51,.72); color: #fff; padding: .35rem .65rem; border-radius: 3px;
  font-family: var(--ui); font-size: .66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.category-card .body { padding: 1.15rem 1.15rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
.category-card .body p { flex: 1; color: var(--muted); font-size: .92rem; }
.product-card { overflow: hidden; }
.product-card .thumb {
  aspect-ratio: 1; background: #eef0ec; display: grid; place-items: center; color: var(--graphite); font-size: .8rem;
  overflow: hidden;
}
.product-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.product-card:hover .thumb img { transform: scale(1.04); }
.product-card .body { padding: 1rem 1.05rem 1.15rem; }
.product-card .brand {
  color: var(--muted); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em;
  font-family: var(--ui); font-weight: 700;
}
.product-card h3 { font-size: .98rem; margin: .35rem 0; }
.product-card .price { font-family: var(--ui); font-weight: 750; color: var(--navy); margin: .4rem 0 .75rem; font-size: 1.05rem; }
.availability {
  display: inline-block; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
  padding: .22rem .5rem; border-radius: 3px; background: #eef0ec; color: var(--graphite);
  font-family: var(--ui);
}
.availability.in_stock { background: #e7f2eb; color: var(--success); }
.availability.low_stock, .availability.preorder { background: #f7efdf; color: var(--warning); }
.availability.out_of_stock { background: #f6e8e6; color: var(--danger); }

/* Find my part */
.find-part {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; box-shadow: var(--shadow); margin-top: -2.8rem; position: relative; z-index: 2;
}
.find-part h2 { margin-bottom: .25rem; }
.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; }
.form-group { display: grid; gap: .32rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: .76rem; font-weight: 700; color: var(--charcoal); font-family: var(--ui); letter-spacing: .02em; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 4px; padding: .72rem .85rem;
  font: inherit; background: #fff; color: var(--text); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
textarea { min-height: 110px; resize: vertical; }

/* Sections */
.section-head { margin-bottom: 1.7rem; max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker {
  color: var(--accent); font-size: .68rem; font-weight: 750; letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--ui); margin-bottom: .45rem;
}
.cta-band {
  background: var(--navy) url('../images/hero.jpg') center/cover no-repeat;
  color: #fff; border-radius: var(--radius); padding: 2rem 1.85rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(16,32,51,.93), rgba(23,48,73,.78));
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2, .cta-band p { color: #fff; }
.why-grid .trust-card { border-top: 2px solid var(--accent); }
.values { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.35rem; }
.values span {
  background: transparent; color: var(--navy); padding: .45rem .8rem; border-radius: 3px;
  border: 1px solid var(--line); background: var(--surface);
  font-size: .68rem; font-weight: 750; letter-spacing: .1em; font-family: var(--ui); text-transform: uppercase;
}

/* Product page */
.product-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 1.6rem; }
.gallery-main {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); aspect-ratio: 1;
  display: grid; place-items: center; overflow: hidden;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; }
.product-meta { color: var(--muted); font-size: .86rem; display: grid; gap: .28rem; margin: .85rem 0; }
.price-lg { font-family: var(--ui); font-size: 1.7rem; font-weight: 750; color: var(--navy); margin: .4rem 0 .85rem; }
.action-row { display: grid; gap: .65rem; margin: .85rem 0; }
.tabs { margin-top: 1.5rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.tab-nav { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); background: #f6f7f4; }
.tab-nav button {
  border: 0; background: transparent; padding: .9rem 1rem; font-weight: 700; cursor: pointer; color: var(--muted);
  font-family: var(--ui); font-size: .74rem; letter-spacing: .04em; text-transform: uppercase;
}
.tab-nav button.active { color: var(--navy); border-bottom: 2px solid var(--accent); }
.tab-panel { display: none; padding: 1.3rem; animation: fadeIn .3s var(--ease); }
.tab-panel.active { display: block; }

/* Shop */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 1.3rem; }
.filter-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem; height: fit-content; position: sticky; top: calc(var(--header-h) + 12px);
}
.filter-panel h3 { font-size: .95rem; margin-bottom: .85rem; }
.filter-panel .form-group { margin-bottom: .7rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; padding: 0; margin: 0 0 .85rem; color: var(--muted); font-size: .84rem; }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .4rem; color: #99a3b0; }
.pagination-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: .85rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.pagination-meta { color: var(--muted); font-size: .84rem; }
.pagination ul { list-style: none; display: flex; gap: .35rem; padding: 0; margin: 0; flex-wrap: wrap; }
.pagination a {
  display: inline-block; padding: .42rem .7rem; border: 1px solid var(--line); border-radius: 4px; background: #fff;
  font-family: var(--ui); font-size: .76rem; font-weight: 700;
}
.pagination .active a { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Tables */
.table { width: 100%; border-collapse: collapse; background: var(--surface); font-size: .9rem; }
.table th, .table td { padding: .75rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.table th {
  background: #f6f7f4; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em;
  font-family: var(--ui); font-weight: 700;
}

/* Account */
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 1.25rem; }
.account-nav { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: .85rem; }
.account-nav a {
  display: block; padding: .58rem .7rem; border-radius: 4px; font-weight: 600; color: var(--charcoal);
  font-size: .88rem; transition: background .2s var(--ease), color .2s var(--ease);
}
.account-nav a:hover, .account-nav a.active { background: var(--bg-warm); color: var(--accent); }

/* Footer */
.footer {
  background: linear-gradient(180deg, #13263b 0%, var(--navy) 100%);
  color: rgba(255,255,255,.76); padding: 3.5rem 0 1.35rem; margin-top: 3.5rem;
}
.footer h4 {
  color: #fff; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .9rem;
  font-family: var(--ui); font-weight: 750;
}
.footer a { color: rgba(255,255,255,.72); display: block; margin-bottom: .4rem; font-size: .88rem; }
.footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 1.4rem; }
.footer-brand {
  font-family: var(--display); font-size: 1.35rem; font-weight: 650; color: #fff;
  margin-bottom: .55rem; letter-spacing: -.03em;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.1rem; padding-top: 1.05rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .78rem;
}
.footer-credit {
  color: rgba(255,255,255,.58);
  font-family: var(--ui);
  font-weight: 650;
  letter-spacing: .02em;
}
.footer-credit a { color: rgba(255,255,255,.82); display: inline; }
.footer-credit a:hover { color: #fff; }
.footer-contact { margin-top: .95rem; font-size: .9rem; }
.footer-contact a { display: inline; margin-bottom: 0; }

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
  background: #1faa55; color: #fff; min-width: 56px; height: 56px; padding: 0 .95rem 0 .85rem;
  border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  font-family: var(--ui); font-weight: 750; font-size: .74rem; letter-spacing: .04em;
  box-shadow: 0 12px 28px rgba(31, 170, 85, .3);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  animation: softPulse 2.8s ease-in-out infinite;
}
.float-whatsapp svg { display: block; flex-shrink: 0; }
.float-whatsapp-label { text-transform: uppercase; }
.float-whatsapp:hover {
  color: #fff; transform: translateY(-3px) scale(1.03); animation: none;
  box-shadow: 0 16px 32px rgba(31, 170, 85, .38);
}
@media (max-width: 640px) {
  .float-whatsapp { width: 54px; min-width: 54px; height: 54px; padding: 0; border-radius: 50%; }
  .float-whatsapp-label { display: none; }
}

/* Page hero */
.page-hero {
  background:
    linear-gradient(120deg, rgba(16,32,51,.94), rgba(35,64,92,.84)),
    url('../images/hero.jpg') center/cover no-repeat;
  color: #fff; padding: 3rem 0 2.3rem;
}
.page-hero .container > * {
  opacity: 0;
  animation: fadeUp .55s var(--ease) forwards;
}
.page-hero .container > *:nth-child(2) { animation-delay: .1s; }
.page-hero h1 { color: #fff; }
.page-hero p { max-width: 560px; color: rgba(255,255,255,.88); }

/* Brand strip */
.brand-tile {
  display: grid; place-items: center; min-height: 92px; text-align: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
  border: 1px solid var(--line); background: var(--surface);
}
.brand-tile:hover { transform: translateY(-2px); border-color: #c4cbc2; background: #fff; }
.brand-tile strong { font-family: var(--display); font-size: 1.05rem; font-weight: 600; }

/* About visual */
.about-visual {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); margin-bottom: 1.25rem;
}
.about-visual img { width: 100%; max-height: 340px; object-fit: cover; filter: saturate(.94); }

/* Utilities */
.mt-1 { margin-top: .45rem; } .mt-2 { margin-top: .85rem; } .mt-3 { margin-top: 1.25rem; } .mt-4 { margin-top: 1.75rem; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: .85rem; }
.notice {
  background: #f7f0e4; border: 1px solid #e5d4b4; color: #6f5528; padding: .85rem 1rem; border-radius: 5px; margin: .85rem 0;
  font-size: .9rem;
}
.filter-toggle { display: none; width: 100%; margin-bottom: .85rem; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .header-main { grid-template-columns: 1fr auto; }
  .search-form { grid-column: 1 / -1; order: 3; }
  .grid-3, .product-layout, .shop-layout, .account-layout, .form-grid { grid-template-columns: 1fr 1fr; }
  .mobile-toggle { display: block; }
  .nav { display: none; }
  .nav.open { display: block; animation: fadeIn .25s var(--ease); }
  .nav .container { flex-direction: column; }
  .find-part { margin-top: 1.15rem; }
  .hero { min-height: auto; }
  .hero-content { padding: 3.2rem 0 2.6rem; }
  .filter-panel { position: static; }
  .filter-toggle { display: inline-flex; }
  .shop-layout.has-mobile-filters .filter-panel { display: none; }
  .shop-layout.filters-open .filter-panel { display: block; grid-column: 1 / -1; }
  .shop-layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .grid-2, .grid-3, .grid-4, .footer-grid, .form-grid, .product-layout, .account-layout { grid-template-columns: 1fr; }
  .topbar .container { font-size: .7rem; }
  .header-actions span.label { display: none; }
  .section { padding: 2.6rem 0; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.55rem); }
  .cta-band { padding: 1.4rem; }
  .values span { font-size: .62rem; }
  .checkout-grid, .contact-grid, .wholesale-grid { grid-template-columns: 1fr !important; }
}

.checkout-grid, .contact-grid, .wholesale-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 1.25rem;
}
.wholesale-grid { grid-template-columns: 1fr 1.1fr; }
.payment-options { display: grid; gap: .65rem; }
.payment-option {
  display: grid; grid-template-columns: 18px 1fr; gap: .75rem; align-items: start;
  border: 1px solid var(--line); border-radius: 5px; padding: .85rem .9rem; cursor: pointer;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.payment-option:hover { border-color: #c4cbc2; }
.payment-option:has(input:checked) {
  border-color: var(--accent); background: #faf4ef; box-shadow: 0 0 0 3px var(--accent-soft);
}
.payment-option.is-paystack:has(input:checked) { background: #f1f8f4; border-color: #1faa55; box-shadow: 0 0 0 3px rgba(31,170,85,.12); }
.payment-option strong { display: block; font-family: var(--ui); font-size: .9rem; margin-bottom: .2rem; }
.payment-option small { display: block; color: var(--muted); font-size: .8rem; line-height: 1.4; }
.payment-option input { margin-top: .2rem; }

/* Mega menu */
.nav-row { position: relative; }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; }
.mega-menu {
  display: none; position: absolute; left: 0; top: 100%; z-index: 40;
  min-width: min(920px, 92vw); padding: 1.1rem 1.2rem;
  background: #12263a; border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  grid-template-columns: repeat(5, minmax(120px, 1fr)); gap: 1rem;
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu { display: grid; }
.mega-col { display: grid; gap: .35rem; align-content: start; }
.mega-parent { color: #fff !important; font-weight: 600; margin-bottom: .15rem; }
.mega-col a { color: rgba(255,255,255,.78) !important; background: transparent !important; padding: .2rem 0 !important; font-size: .84rem; }
.mega-col a:hover { color: #fff !important; }

.logo-img { display: block; max-height: 48px; width: auto; object-fit: contain; }
.brand-tile img { max-width: 140px; max-height: 48px; object-fit: contain; }

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .85rem;
  padding: 1rem 1.15rem; border: 1px solid var(--line); background: linear-gradient(180deg, #fff, #f7f8f5);
  border-radius: 6px;
}
.trust-strip strong { display: block; font-family: var(--display); font-size: .95rem; margin-bottom: .2rem; }
.trust-strip span { color: var(--muted); font-size: .86rem; line-height: 1.45; }

.map-embed {
  border-radius: 8px; overflow: hidden; border: 1px solid var(--line); min-height: 220px; background: #eef2f6;
}
.map-embed iframe { width: 100%; height: 240px; border: 0; display: block; }

.payment-instructions h3 { margin-top: 0; }

.mobile-sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 55;
  grid-template-columns: repeat(4, 1fr); gap: 1px; background: #0f2233;
  box-shadow: 0 -8px 24px rgba(0,0,0,.22);
}
.mobile-sticky-cta a {
  display: grid; place-items: center; min-height: 54px; color: #fff; text-decoration: none;
  font-size: .78rem; font-weight: 600; letter-spacing: .02em; background: #152b40;
}
.mobile-sticky-cta a:first-child { background: #1faa55; }

@media (max-width: 960px) {
  .mega-menu { position: static; display: none; min-width: 0; box-shadow: none; border: 0; padding: .35rem 0 .6rem .75rem; grid-template-columns: 1fr; }
  .nav.open .nav-item.has-mega .mega-menu { display: grid; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .mobile-sticky-cta { display: grid; }
  body { padding-bottom: 62px; }
  .float-whatsapp { display: none; }
  .trust-strip { grid-template-columns: 1fr; }
}
