/* Ocean Ventures — Wholesale E-commerce (approved mockup palette) */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700&family=Libre+Baskerville:wght@700&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #002B5B;
  --navy-deep: #001a38;
  --navy-mid: #003a75;
  --blue: #1a4f8b;
  --blue-soft: #eaf2fa;
  --accent-green: #2E7D32;
  --accent-pink: #C2185B;
  --accent-blue: #1565C0;
  --accent-teal: #00838F;
  --discount: #1b8a3e;
  --text: #1a2b3c;
  --muted: #5a6a7a;
  --border: #dde5ee;
  --bg: #ffffff;
  --surface: #f4f7fb;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 43, 91, 0.08);
  --radius: 12px;
  --font: 'Montserrat', system-ui, sans-serif;
  --display: 'Libre Baskerville', 'Cinzel', Georgia, serif;
  --brand: 'Cinzel', 'Libre Baskerville', Georgia, serif;
  --max: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Top bar */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.92);
  font-size: 0.78rem;
  padding: 0.55rem 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: inherit; transition: opacity .2s; }
.topbar a:hover { opacity: .8; }
.topbar-contact { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-contact span, .topbar-contact a {
  display: inline-flex; align-items: center; gap: .4rem;
}
.topbar-social { display: flex; gap: .55rem; }
.topbar-social a {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: grid; place-items: center;
  transition: background .2s;
}
.topbar-social a:hover { background: rgba(255,255,255,.25); }
.topbar svg { width: 13px; height: 13px; fill: currentColor; }

/* Header */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(10,37,64,.04);
}
.header-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-width: 180px;
}
.logo-mark {
  width: 42px;
  height: auto;
}
.logo-text { line-height: 1.1; }
.logo-text .name {
  font-family: var(--brand);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: .06em;
  display: block;
  text-transform: uppercase;
}
.logo-text .since {
  font-size: .68rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.search-wrap {
  position: relative;
  max-width: 560px;
  width: 100%;
  margin-inline: auto;
}
.search-wrap input {
  width: 100%;
  padding: .75rem 3rem .75rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: .92rem;
  outline: none;
  background: #f8fafc;
  transition: border-color .2s, box-shadow .2s;
}
.search-wrap input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,90,150,.12);
  background: var(--white);
}
.search-wrap button {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid; place-items: center;
}
.search-wrap button svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.header-actions a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  font-size: .72rem;
  color: var(--navy);
  font-weight: 600;
  transition: color .2s;
}
.header-actions a:hover { color: var(--blue); }
.header-actions svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none; stroke-width: 1.7;
}
.cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: -4px; right: -8px;
  background: #e53935;
  color: white;
  font-size: .62rem;
  font-weight: 700;
  min-width: 16px; height: 16px;
  border-radius: 999px;
  display: grid; place-items: center;
  padding: 0 4px;
}

/* Nav */
.nav {
  background: var(--navy-mid);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.shop-cat-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: white;
  padding: .85rem 1.15rem;
  font-weight: 700;
  font-size: .86rem;
  white-space: nowrap;
  transition: background .2s;
}
.shop-cat-btn:hover { background: var(--navy-deep); }
.shop-cat-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  overflow-x: auto;
}
.nav-links a {
  color: rgba(255,255,255,.92);
  padding: .85rem .95rem;
  font-size: .86rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,.1);
  color: white;
}
.menu-toggle {
  display: none;
  color: white;
  padding: .75rem 1rem;
}
.menu-toggle svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Hero — matches approved branding board on ocean waves */
.hero {
  position: relative;
  min-height: clamp(520px, 72vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #7eb0d0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(180,210,230,.25) 0%, rgba(255,255,255,.42) 35%, rgba(255,255,255,.78) 68%, rgba(255,255,255,.95) 100%),
    url('../images/hero/mountains.jpg') center 35% / cover no-repeat;
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--navy);
  padding: 2.75rem 1rem 2rem;
  max-width: 780px;
  margin: 0 auto;
  animation: fadeUp .8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-logo {
  width: 88px;
  height: auto;
  margin: 0 auto 0.35rem;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,43,91,.12));
}
.hero-brand {
  line-height: 1;
  margin-bottom: .35rem;
}
.hero-brand-ocean {
  display: block;
  font-family: var(--brand);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--navy);
  line-height: 1;
}
.hero-brand-ventures {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  font-family: var(--font);
  font-size: clamp(.78rem, 1.8vw, .95rem);
  font-weight: 700;
  letter-spacing: .48em;
  color: var(--navy);
  margin-top: .45rem;
  padding-left: .48em;
}
.hero-brand-ventures i {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--navy);
  opacity: .55;
}
.hero-since {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  margin: .55rem 0 1.1rem;
  font-family: var(--display);
  font-size: .9rem;
  font-style: italic;
  letter-spacing: .12em;
  color: var(--navy);
  opacity: .9;
}
.hero-since span {
  width: 28px;
  height: 1px;
  background: var(--navy);
  opacity: .45;
}
.hero-cats-text {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 1rem;
  color: var(--navy);
}
.hero-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  margin-bottom: 1.5rem;
}
.hero-badge-wrap::before,
.hero-badge-wrap::after {
  content: '';
  width: 56px;
  height: 1px;
  background: var(--navy);
  opacity: .35;
}
.hero-badge {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: .55rem 1.6rem;
  border-radius: 6px;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .16em;
  box-shadow: 0 6px 18px rgba(0,43,91,.28);
}
.hero-icons {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 5vw, 2.75rem);
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
}
.hero-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  transition: transform .25s;
}
.hero-icon:hover { transform: translateY(-4px); }
.hero-icon img {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 6px 14px rgba(0,43,91,.15));
}
.hero-icon span {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.hero-icon.general span { color: var(--accent-green); }
.hero-icon.cosmetic span { color: var(--accent-pink); }
.hero-icon.consumer span { color: var(--accent-blue); }
.hero-icon.surgical span { color: var(--accent-teal); }

.hero-trust {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3.5vw, 2.4rem);
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,43,91,.2);
  max-width: 720px;
  margin: 0 auto;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--navy);
}
.hero-trust svg {
  width: 16px; height: 16px;
  stroke: var(--navy); fill: none; stroke-width: 1.8;
}
.hero-dots {
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: 1.35rem;
}
.hero-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(0,43,91,.25);
}
.hero-dots span.active { background: var(--navy); }

/* Value strip */
.value-strip {
  background: var(--white);
  margin-top: -32px;
  position: relative;
  z-index: 5;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,43,91,.1);
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--border);
}
.value-strip ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.value-strip li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
}
.value-strip .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--blue-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.value-strip svg {
  width: 22px; height: 22px;
  stroke: var(--navy-mid); fill: none; stroke-width: 1.7;
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  color: var(--navy);
  font-weight: 700;
}
.section-head p {
  color: var(--muted);
  font-size: .95rem;
  margin-top: .25rem;
}
.section-link {
  color: var(--blue);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.section-link:hover { text-decoration: underline; }

/* Category cards */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10,37,64,.14);
}
.cat-card .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef3f8;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card .body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cat-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: .35rem;
}
.cat-card p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  flex: 1;
}
.cat-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--navy);
  font-weight: 800;
  font-size: .88rem;
  transition: gap .2s, color .2s;
}
.cat-link:hover { color: var(--blue); gap: .55rem; }
.cat-link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .65rem 1.15rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .86rem;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.btn-primary {
  background: var(--navy);
  color: white;
}
.btn-primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 4px 14px rgba(10,37,64,.25);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-light {
  background: white;
  color: var(--navy);
}
.btn-light:hover { background: #f0f4f8; }

/* Product tabs + grid */
.tabs {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.tab {
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .2s;
}
.tab:hover { color: var(--navy); border-color: var(--navy); }
.tab.active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  position: relative;
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card .wish {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: grid; place-items: center;
  z-index: 2;
  color: var(--muted);
  transition: color .2s;
}
.product-card .wish:hover,
.product-card .wish.active { color: #e53935; }
.product-card .wish svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none; stroke-width: 1.8;
}
.product-card .wish.active svg { fill: currentColor; }
.product-card .img-wrap {
  aspect-ratio: 1;
  padding: 1rem;
  background: #fafbfc;
  display: grid; place-items: center;
}
.product-card .img-wrap img {
  max-height: 140px;
  width: auto;
  object-fit: contain;
}
.product-card .info {
  padding: .75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .35rem;
}
.product-card h3 {
  font-size: .84rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.product-card .price-row {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  flex-wrap: wrap;
}
.product-card .price {
  font-weight: 800;
  color: var(--navy);
  font-size: 1rem;
}
.product-card .mrp {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: line-through;
}
.product-card .off {
  font-size: .72rem;
  font-weight: 800;
  color: var(--discount);
}
.product-card .add-btn {
  margin-top: auto;
  width: 100%;
  background: var(--navy);
  color: white;
  padding: .55rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  transition: background .2s;
}
.product-card .add-btn:hover { background: var(--navy-mid); }
.product-card .add-btn svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none; stroke-width: 2;
}
.product-card[hidden] { display: none; }

/* Promo banners */
.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.promo-card {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  position: relative;
  color: white;
}
.promo-card.beauty {
  background: linear-gradient(135deg, #ad1457 0%, #ec407a 55%, #f8bbd0 100%);
}
.promo-card.medical {
  background: linear-gradient(135deg, #0277bd 0%, #29b6f6 55%, #b3e5fc 100%);
}
.promo-card .text {
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .65rem;
  z-index: 2;
}
.promo-card h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
}
.promo-card p {
  font-size: .88rem;
  opacity: .92;
  max-width: 28ch;
}
.promo-card .media {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: .5rem;
  opacity: .95;
}
.promo-card .media img {
  max-height: 200px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  mix-blend-mode: luminosity;
  opacity: .85;
  filter: brightness(1.1);
}

/* Why choose */
.why {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.why-item {
  padding: 1rem .5rem;
  transition: transform .25s;
}
.why-item:hover { transform: translateY(-4px); }
.why-item .icon {
  width: 64px; height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-soft), #d6e8f5);
  display: grid; place-items: center;
  color: var(--navy-mid);
}
.why-item svg {
  width: 28px; height: 28px;
  stroke: currentColor; fill: none; stroke-width: 1.6;
}
.why-item h3 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4rem;
}
.why-item p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Testimonials */
.testimonials { background: var(--surface); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.testimonial-card .head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .85rem;
}
.avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-card .meta strong {
  display: block;
  font-size: .92rem;
  color: var(--navy);
}
.testimonial-card .meta span {
  font-size: .78rem;
  color: var(--muted);
}
.stars {
  color: #f9a825;
  font-size: .9rem;
  letter-spacing: .05em;
  margin-bottom: .65rem;
}
.testimonial-card blockquote {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.55;
}

/* Page hero (inner) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
  padding: 2.75rem 0;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin-bottom: .4rem;
}
.page-hero p { opacity: .88; max-width: 52ch; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .82rem;
  margin-bottom: .85rem;
  opacity: .8;
}
.breadcrumb a:hover { text-decoration: underline; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
}
.about-grid h2 {
  color: var(--navy);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.about-grid p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.about-grid ul {
  margin: 1rem 0 1.5rem;
}
.about-grid li {
  padding: .4rem 0 .4rem 1.4rem;
  position: relative;
  font-weight: 600;
  color: var(--text);
}
.about-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: .7rem;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--navy-mid);
}
.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

/* Contact / Inquiry */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
}
.contact-info {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
  padding: 2rem;
}
.contact-info h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.contact-info p {
  opacity: .88;
  margin-bottom: 1.5rem;
  font-size: .92rem;
}
.contact-list li {
  display: flex;
  gap: .85rem;
  margin-bottom: 1.15rem;
  font-size: .9rem;
}
.contact-list svg {
  width: 20px; height: 20px;
  stroke: currentColor; fill: none; stroke-width: 1.7;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-list a:hover { text-decoration: underline; }
.inquiry-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.inquiry-form h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: .35rem;
}
.inquiry-form .sub {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  background: #fafbfc;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,90,150,.12);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-msg {
  padding: .85rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: none;
}
.form-msg.success { display: block; background: #e8f5e9; color: #1b5e20; }
.form-msg.error { display: block; background: #ffebee; color: #b71c1c; }

/* Footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.88);
  padding: 3.5rem 0 0;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.footer .logo-text .name { color: white; }
.footer .logo-text .since { color: rgba(255,255,255,.65); }
.footer-brand p {
  margin-top: 1rem;
  font-size: .88rem;
  line-height: 1.6;
  opacity: .8;
  max-width: 36ch;
}
.footer h4 {
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}
.footer-links a {
  display: block;
  font-size: .88rem;
  padding: .3rem 0;
  opacity: .8;
  transition: opacity .2s, padding-left .2s;
}
.footer-links a:hover { opacity: 1; padding-left: 4px; }
.footer-contact li {
  display: flex;
  gap: .65rem;
  font-size: .86rem;
  margin-bottom: .85rem;
  opacity: .85;
}
.footer-contact svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 1.7;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.15rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8rem;
  opacity: .75;
}
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: grid; place-items: center;
  transition: background .2s;
}
.footer-social a:hover { background: rgba(255,255,255,.22); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid; place-items: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  z-index: 200;
  transition: transform .2s, box-shadow .2s;
  animation: waPulse 2.5s ease infinite;
}
.wa-fab:hover { transform: scale(1.08); }
.wa-fab svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,.7); }
}

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(6,24,40,.45);
  z-index: 300;
  opacity: 0; visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 100%);
  height: 100%;
  background: white;
  z-index: 310;
  transform: translateX(100%);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer-head {
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer-head h3 { color: var(--navy); font-weight: 800; }
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: grid; place-items: center;
}
.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
  font-size: .92rem;
}
.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.cart-line img {
  width: 64px; height: 64px;
  object-fit: contain;
  background: #f8fafc;
  border-radius: 8px;
}
.cart-line h4 { font-size: .82rem; font-weight: 700; margin-bottom: .25rem; }
.cart-line .p { font-weight: 800; color: var(--navy); font-size: .9rem; }
.cart-line .remove { color: #e53935; font-size: .75rem; font-weight: 700; }
.cart-footer {
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: white;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 600;
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .value-strip ul { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .header-main { grid-template-columns: auto auto; }
  .search-wrap { grid-column: 1 / -1; order: 3; max-width: none; }
  .topbar-address { display: none; }
}
@media (max-width: 720px) {
  .menu-toggle { display: grid; margin-left: auto; }
  .nav-inner { flex-wrap: wrap; }
  .shop-cat-btn { flex: 1; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: var(--navy);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; border-top: 1px solid rgba(255,255,255,.08); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .value-strip ul { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .header-actions span { display: none; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-card .media { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .hero-icon .circle { width: 52px; height: 52px; }
}
