﻿@font-face {
  font-family: "Mont";
  src: url("../fonts/fonnts.com-Mont_Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/fonnts.com-Mont_ExtraLight_DEMO.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/fonnts.com-Mont_Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/fonnts.com-Mont_Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Mont";
  src: url("../fonts/fonnts.com-Mont_Heavy_DEMO.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}

:root {
  --navy: #26333f;
  --navy-dark: #1c2833;
  --teal: #1f6fad;
  --red: #c0392b;
  --bg: #ffffff;
  --bg-alt: #f3f4f5;
  --border: #e3e5e7;
  --text: #24303a;
  --text-muted: #6b7580;
  --radius: 4px;
  font-size: 16px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Mont", "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.4;
}

h1, h2, h3, .logo, .btn, .phone-btn, .section-title {
  font-family: "Mont", "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--navy-dark); }
.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn-red { background: var(--red); }
.btn-red:hover { background: #a53324; }
.btn-outline-navy {
  background: transparent;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 10px 24px;
}
.btn-outline-navy:hover { background: var(--navy); color: #fff; }

.category-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.category-row-header h3 {
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin: 0;
}
@media (max-width: 640px) {
  .category-row-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ---------- Top utility bar ---------- */
.topbar {
  padding: 14px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  color: var(--navy-dark);
  cursor: pointer;
}
.mobile-menu-toggle svg {
  width: 26px;
  height: 26px;
}

/* ---------- Mobile full-page nav overlay ---------- */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #fff;
  flex-direction: column;
}
.mobile-nav-overlay.is-open {
  display: flex;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-header .logo img {
  height: 36px;
}
.mobile-nav-close {
  background: none;
  border: none;
  padding: 4px;
  color: var(--navy-dark);
  cursor: pointer;
}
.mobile-nav-close svg {
  width: 24px;
  height: 24px;
}
.mobile-nav-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 20px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
}
.mobile-nav-search svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.mobile-nav-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.9rem;
  font-family: inherit;
}
.mobile-nav-body {
  flex: 1;
  overflow-y: auto;
  padding: 4px 20px 20px;
}
.mobile-nav-heading {
  margin: 22px 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-link-main {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
}
.mobile-nav-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mobile-nav-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
body.mobile-nav-locked {
  overflow: hidden;
}
.logo {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.logo img {
  height: 54px;
  width: auto;
}

.search-bar {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 8px 16px;
  max-width: 561px;
  margin: 0 auto;
}
.search-bar input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.9rem;
  background: transparent;
}
.search-bar svg { width: 18px; height: 18px; color: var(--text-muted); }

.top-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.top-actions .action {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  gap: 4px;
  min-width: 56px;
}
.top-actions svg { width: 30px; height: 30px; color: var(--navy); stroke-width: 1.4; }

/* ---------- Nav bar ---------- */
.navbar {
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 24px;
  position: relative;
}
.navbar a.nav-primary,
.navbar a.nav-primary:hover {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  background-color: #a73f3f;
  padding: 10px 16px;
  border-radius: 4px;
  white-space: nowrap;
}
.nav-primary svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.navbar ul {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex: 1;
  flex-wrap: wrap;
}
.navbar ul li {
  position: relative;
  display: flex;
  align-items: center;
}
.navbar ul li.has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  opacity: 0.6;
}
.dropdown-panel,
.mega-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  z-index: 60;
}
.dropdown-panel::before,
.mega-panel::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
.navbar ul li.has-children.is-open .dropdown-panel {
  display: block;
}
.dropdown-panel {
  min-width: 210px;
  padding: 8px 0;
}
.dropdown-panel a {
  display: block;
  padding: 9px 20px;
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
}
.dropdown-panel a:hover {
  background: var(--bg-alt);
  color: var(--teal);
}
.mega-panel {
  left: 50%;
  transform: translateX(-50%);
  min-width: 560px;
  padding: 28px;
  display: none;
}
.navbar ul li.has-children.is-open .mega-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px;
}
.mega-group h5 {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.mega-group a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text);
}
.mega-group a:hover {
  color: var(--teal);
}

.nav-primary-wrap {
  display: flex;
  align-items: center;
  align-self: stretch;
}
.nav-primary-wrap.is-open .mega-panel {
  display: flex;
}
.categories-mega {
  top: 100%;
  left: 0;
  right: 0;
  transform: none;
  min-width: 0;
  width: auto;
  align-items: stretch;
  gap: 28px;
  padding: 24px;
}
.mega-categories-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 18px;
  align-content: start;
}
.mega-sidebar {
  flex-shrink: 0;
  width: 220px;
  border-left: 1px solid var(--border);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-sidebar h5 {
  margin: 0;
  font-size: 0.95rem;
  color: var(--navy-dark);
}
.mega-sidebar p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.mega-sidebar .btn {
  align-self: flex-start;
  color: #fff;
}
.mega-sidebar .btn:hover {
  color: #fff;
}
.mega-category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  border-radius: 6px;
}
.mega-category-card:hover {
  background: #f8f8f84a;
}
.mega-category-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.mega-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-category-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  text-align: center;
}
.mega-category-badge small {
  font-size: 0.55rem;
  font-weight: 600;
  line-height: 1;
  opacity: 0.85;
}
.mega-category-name {
  font-size: 0.85rem;
  color: var(--text);
}
.navbar a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
}
.navbar a:hover { color: var(--teal); }
.navbar a.phone-btn,
.navbar a.phone-btn:hover { color: #fff; }
.phone-btn {
  margin-left: auto;
  background: #2f55a0;
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.phone-btn svg { width: 16px; height: 16px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, #f1f1f1 0%, #f0f0f0 55%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.hero .container {
  min-height: 420px;
  padding: 60px 24px;
}
.hero-slide {
  display: none;
  align-items: center;
  gap: 40px;
}
.hero-slide.active {
  display: flex;
}
.hero-slide-full {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-dark);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.hero-slide-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.hero-slide-full-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
  color: #fff;
  text-align: center;
}
.hero-slide-full-copy h1 {
  font-size: 2.2rem;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #fff;
}
.hero-slide-full-copy p {
  font-size: 1rem;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
}
.hero-mobile {
  display: none;
}
.hero-mobile .container {
  min-height: 0;
  padding: 0;
}
.hero-slide-image-only {
  display: none;
  width: 100%;
}
.hero-slide-image-only.active { display: block; }
.hero-slide-image-only img,
.hero-slide-image-only a {
  display: block;
  width: 100%;
  height: auto;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail-thumb {
  height: 420px;
  border-radius: 6px;
}
.product-purchase-bar {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-copy { max-width: 460px; }
.hero-copy h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--navy-dark);
}
.hero-copy p {
  font-size: 1.05rem;
  color: #3a3a3a;
  margin: 0 0 26px;
}
.hero-visual {
  flex: 1;
  position: relative;
  min-height: 260px;
}
.hero-card {
  position: absolute;
  right: 40px;
  top: 10px;
  width: 260px;
  height: 320px;
  background: linear-gradient(160deg, #b7c9d4 0%, #7d95a3 45%, #e8977a 46%, #f3c199 100%);
  border-radius: 6px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  padding: 20px;
  background-size: cover;
  background-position: center;
}
.hero-badge {
  position: absolute;
  right: 210px;
  top: 0;
  background: var(--navy-dark);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
  padding: 18px;
  border-radius: 6px;
  line-height: 1.3;
  z-index: 2;
}
.hero-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(38,51,63,0.3);
  cursor: pointer;
}
.hero-dots span.active { background: var(--navy-dark); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.trust-strip .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 18px 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { width: 18px; height: 18px; color: var(--red); }

/* ---------- Reviews line ---------- */
.reviews-line {
  background: var(--bg-alt);
  text-align: center;
  padding: 14px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.reviews-line .stars {
  display: inline-flex;
  gap: 2px;
  margin: 0 10px;
  vertical-align: middle;
}
.reviews-line .stars span {
  width: 16px; height: 16px;
  background: #00b67a;
  display: inline-block;
}

/* ---------- Product grid ---------- */
.section {
  padding: 56px 0;
}
.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin: 0 0 36px;
  color: var(--navy-dark);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-grid.category-grid {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.product-card:hover {
  box-shadow: 12px 11px 0px 0px rgb(121 121 121 / 15%);
}
.product-card:hover .product-thumb svg {
  transform: scale(1.08);
}
.product-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.product-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 20% 0%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%),
              linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.16) 100%);
  pointer-events: none;
}
.product-thumb svg {
  width: 52px;
  height: 52px;
  opacity: 0.95;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.18));
  transition: transform 0.25s ease;
  position: relative;
  z-index: 1;
}
.price-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(20, 26, 34, 0.92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 2;
}
.price-badge b { font-size: 0.95rem; }
.product-thumb-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  z-index: 2;
}
.product-info {
  padding: 18px 20px 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: flex-end;
}
.product-info a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s ease;
}
.product-info a:hover {
  color: var(--teal);
  gap: 8px;
}

/* ---------- Homepage product cards (distinct from category cards) ---------- */
.home-product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.home-product-card:hover {
  border-color: var(--teal);
  box-shadow: 0 10px 24px rgba(20, 26, 34, 0.1);
  transform: translateY(-3px);
}
.home-product-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  overflow: hidden;
}
.home-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.home-product-card:hover .home-product-thumb img {
  transform: scale(1.04);
}
.home-product-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.home-product-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.home-product-name:hover { color: var(--teal); }
.home-product-price {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.home-product-price b {
  color: var(--teal);
  font-size: 0.95rem;
}
.home-product-btn {
  margin-top: auto;
  text-align: center;
  padding: 9px 0;
  border: 1.5px solid var(--navy);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.home-product-btn:hover {
  background: var(--navy);
  color: #fff;
}
@media (max-width: 640px) {
  .home-product-body { padding: 12px 14px 14px; }
  .home-product-name { font-size: 0.85rem; }
}

/* thumb color variants */
.thumb-1 { background: linear-gradient(135deg,#c0392b,#e67e22); }
.thumb-2 { background: linear-gradient(135deg,#2c3e50,#4a6278); }
.thumb-3 { background: linear-gradient(135deg,#8d6e46,#c9a86a); }
.thumb-4 { background: linear-gradient(135deg,#d4a017,#f1c40f); }
.thumb-5 { background: linear-gradient(135deg,#7f8c8d,#bdc3c7); }
.thumb-6 { background: linear-gradient(135deg,#a52a2a,#6e1414); }
.thumb-7 { background: linear-gradient(135deg,#c0392b,#922b21); }
.thumb-8 { background: linear-gradient(135deg,#34495e,#5d7a89); }
.thumb-9 { background: linear-gradient(135deg,#b7950b,#7d6608); }

/* ---------- Sample pack banner ---------- */
.sample-banner {
  background: linear-gradient(120deg,#e6c9a8,#d8b58c 60%,#c9976b);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
}
.sample-banner .content {
  padding: 40px 56px;
  max-width: 480px;
  position: relative;
  z-index: 2;
}
.sample-banner h2 {
  font-size: 2rem;
  margin: 0 0 12px;
  color: var(--navy-dark);
}
.sample-banner p {
  margin: 0 0 22px;
  color: #3a3a3a;
}
.sample-visual {
  position: absolute;
  right: 30px;
  top: 20px;
  bottom: 20px;
  width: 320px;
  background: linear-gradient(135deg,#e8776b,#f0a35c);
  border-radius: 6px;
  opacity: 0.9;
  transform: rotate(4deg);
}

/* ---------- CTA duo ---------- */
.cta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cta-box {
  border-radius: 6px;
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}
.cta-box.navy { background: var(--navy-dark); }
.cta-box.teal {
  background: var(--teal);
  position: relative;
  overflow: hidden;
}
.cta-box h2 {
  font-size: 1.6rem;
  margin: 0 0 14px;
}
.cta-box p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0 0 20px;
}
.cta-box .avatar {
  position: absolute;
  right: -10px;
  bottom: -20px;
  width: 160px;
  height: 200px;
  background: linear-gradient(160deg,#f0c9a0,#d99a68);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  opacity: 0.9;
}

/* ---------- Auth forms ---------- */
.auth-wrap {
  max-width: 440px;
  margin: 0 auto;
}
.auth-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
}
.auth-card p.auth-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: -20px 0 28px;
}
.field-group {
  margin-bottom: 18px;
}
.field-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.field-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.95rem;
  font-family: inherit;
}
.field-input:focus {
  outline: none;
  border-color: var(--teal);
}
.field-error {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: 6px;
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  color: var(--text-muted);
}
.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}
.auth-actions .btn {
  width: 100%;
  text-align: center;
}
.auth-links {
  text-align: center;
  margin-top: 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.auth-links a {
  color: var(--teal);
  font-weight: 700;
}

/* ---------- Account / Profile ---------- */
.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
}
.account-sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  position: sticky;
  top: 20px;
}
.account-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 14px;
}
.account-identity {
  text-align: center;
  padding: 28px 20px 22px;
  border-bottom: 1px solid var(--border);
}
.account-identity h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
  color: var(--navy-dark);
}
.account-identity p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  word-break: break-word;
}
.account-stats {
  display: flex;
  border-bottom: 1px solid var(--border);
}
.account-stats div {
  flex: 1;
  text-align: center;
  padding: 16px 8px;
}
.account-stats div:first-child {
  border-right: 1px solid var(--border);
}
.account-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--navy-dark);
}
.account-stats span {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.account-nav {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.account-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 4px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
}
.account-nav a:hover {
  background: var(--bg-alt);
}
.account-nav a.is-danger {
  color: var(--red);
}
.account-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.account-section-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px;
  scroll-margin-top: 90px;
}
.account-section-card.danger {
  border-color: #f3d3ce;
  background: #fdf6f5;
}
.account-section-card h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: var(--navy-dark);
}
.account-section-card p.section-subtitle {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.saved-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 0.85rem;
  font-weight: 600;
}
@media (max-width: 860px) {
  .account-layout { grid-template-columns: 1fr; }
  .account-sidebar { position: static; }
  .field-row { grid-template-columns: 1fr; }
}

/* ---------- Static page content ---------- */
.page-content {
  color: #3a3a3a;
  line-height: 1.7;
}
.page-content p.lead {
  font-size: 1.1rem;
  color: var(--navy-dark);
  margin: 0 0 24px;
}
.page-content h2 {
  font-size: 1.35rem;
  color: var(--navy-dark);
  margin: 36px 0 14px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content ul {
  margin: 0 0 20px;
  padding-left: 20px;
}
.page-content li { margin-bottom: 8px; }
.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0 32px;
}
.about-highlights > div {
  background: var(--bg-alt);
  border-radius: 6px;
  padding: 22px;
}
.about-highlights h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-highlights h3 svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
}
.about-highlights p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about-stats {
  display: flex;
  gap: 16px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  margin: 32px 0;
}
.about-stats div { flex: 1; }
.about-stats strong {
  display: block;
  font-size: 1.7rem;
  color: var(--navy-dark);
}
.about-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.page-content .about-cta {
  text-align: center;
  margin-top: 12px;
}
@media (max-width: 640px) {
  .about-highlights { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; }
  .about-stats div { flex: 1 1 45%; }
}

/* ---------- Quote request page ---------- */
.quote-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}
.quote-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.quote-heading {
  font-size: 2.1rem;
  line-height: 1.2;
  color: var(--navy-dark);
  margin: 0 0 18px;
}
.quote-lead {
  color: #3a3a3a;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0 0 36px;
}
.quote-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 36px;
}
.quote-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.quote-step-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  min-width: 44px;
}
.quote-step h3 {
  margin: 2px 0 6px;
  font-size: 1rem;
  color: var(--navy-dark);
}
.quote-step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.quote-testimonial {
  border-left: 3px solid var(--teal);
  padding: 4px 0 4px 22px;
  margin: 0 0 32px;
}
.quote-testimonial p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.6;
  margin: 0 0 10px;
}
.quote-testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}
.quote-trust-strip {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 26px 0;
  margin-bottom: 28px;
}
.quote-trust-strip div { flex: 1; }
.quote-trust-strip strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy-dark);
  margin-bottom: 2px;
}
.quote-trust-strip span {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.quote-direct-line {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.quote-direct-line a {
  color: var(--teal);
  font-weight: 700;
}
@media (max-width: 860px) {
  .quote-layout { grid-template-columns: 1fr; gap: 36px; }
  .quote-heading { font-size: 1.6rem; }
  .quote-trust-strip { flex-wrap: wrap; }
  .quote-trust-strip div { flex: 1 1 45%; }
}

/* ---------- Side quote tab ---------- */
.side-quote-tab {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  background: var(--navy);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 20px 12px;
  border-radius: 7px 0 0 7px;
  box-shadow: 3px 3px 14px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease;
}
.side-quote-tab svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.side-quote-tab:hover {
  background: var(--teal);
  padding-left: 16px;
  padding-right: 16px;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.25);
}
@media (max-width: 860px) {
  .side-quote-tab { display: none; }
}

/* ---------- Payment form ---------- */
.payment-order-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.payment-order-summary strong {
  font-size: 1.15rem;
  color: var(--navy-dark);
}
.payment-submit-btn {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.payment-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.payment-spinner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: payment-spin 0.7s linear infinite;
}
@keyframes payment-spin {
  to { transform: rotate(360deg); }
}
.payment-secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.payment-secure-note svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ---------- WhatsApp widget ---------- */
.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.whatsapp-fab {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 18px 10px 10px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}
.whatsapp-fab.is-pulsing {
  animation: whatsapp-attention 1.5s ease;
}
@keyframes whatsapp-attention {
  0%, 100% { transform: translateY(0); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18); }
  20% { transform: translateY(-3px); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45), 0 6px 20px rgba(0, 0, 0, 0.18); }
  40% { transform: translateY(0); box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  60% { transform: translateY(-2px); }
  80% { transform: translateY(0); }
}
.whatsapp-teaser {
  max-width: 240px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  padding: 12px 30px 12px 14px;
  position: relative;
  transform: translateX(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.whatsapp-teaser.is-visible {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.whatsapp-teaser p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--navy-dark, #1c2833);
}
.whatsapp-teaser-close {
  position: absolute;
  top: 6px;
  right: 6px;
  background: none;
  border: none;
  color: var(--text-muted, #6b7580);
  cursor: pointer;
  padding: 2px;
}
.whatsapp-teaser-close svg { width: 14px; height: 14px; }
.whatsapp-fab-icon {
  width: 42px;
  height: 42px;
  border-radius: 5px;
  background: #128c7e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-fab-icon svg { width: 22px; height: 22px; }
.whatsapp-fab-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.whatsapp-fab-text strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-dark, #1c2833);
  white-space: nowrap;
}
.whatsapp-fab-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #0d7a3f;
}
.whatsapp-fab-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0d7a3f;
  display: inline-block;
}
.whatsapp-panel {
  width: 320px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.whatsapp-widget.is-open .whatsapp-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.whatsapp-panel-header {
  background: #075e54;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;
}
.whatsapp-panel-avatar {
  max-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #128c7e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-panel-avatar svg { width: 22px; height: 22px; }
.whatsapp-panel-header strong {
  display: block;
  font-size: 0.92rem;
}
.whatsapp-panel-header span {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
}
.whatsapp-panel-header > div { flex: 1; min-width: 0; }
.whatsapp-panel-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.whatsapp-panel-close svg { width: 18px; height: 18px; }
.whatsapp-panel-body {
  padding: 16px;
  background: #ece5dd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.whatsapp-bubble {
  background: #fff;
  border-radius: 10px;
  border-top-left-radius: 2px;
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.whatsapp-panel-body textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 0.85rem;
  font-family: inherit;
  resize: none;
  background: #fff;
}
.whatsapp-panel-body textarea:focus {
  outline: none;
  border-color: #25d366;
}
.whatsapp-send-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.whatsapp-send-btn:hover { background: #1ebc5b; }
.whatsapp-send-btn svg { width: 16px; height: 16px; }
@media (max-width: 480px) {
  .whatsapp-widget { right: 14px; bottom: 80px; }
  .whatsapp-fab-text strong { font-size: 0.8rem; }
}

/* ---------- Product image lightbox ---------- */
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 20, 26, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  cursor: zoom-out;
}
.image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.image-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.image-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
}
.image-lightbox-close:hover { background: rgba(255, 255, 255, 0.24); }
.image-lightbox-close svg { width: 20px; height: 20px; }
@media (max-width: 640px) {
  .image-lightbox { padding: 20px; }
  .image-lightbox-close { top: 14px; right: 14px; }
}

/* ---------- Footer ---------- */
footer {
  background: #0f1e2b;
  color: #b7c2d6;
}
.footer-main {
  padding: 52px 24px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-logo {
  height: 36px;
  width: auto;
  background: #fff;
  padding: 7px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: #c3ccdd;
  line-height: 1.5;
  margin: 0 0 20px;
  max-width: 32ch;
}
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  line-height: 1.4;
}
.footer-contact-list svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--amber, #d99a4e);
}
.footer-contact-list a { color: #b7c2d6; }
.footer-contact-list a:hover { color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 16px;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.85rem;
}
.footer-col ul a:hover { color: #fff; }
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: rgba(255,255,255,0.18); }
.footer-social svg { width: 16px; height: 16px; }
.footer-badges-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}
.cert-row {
  display: flex;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.cert-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.cert-badge svg {
  width: 26px;
  height: 26px;
  color: #fff;
  opacity: 0.9;
  flex-shrink: 0;
}
.cert-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
  color: #93a1ab;
}
.payment-icons {
  display: flex;
  gap: 8px;
  align-items: center;
}
.payment-icon {
  width: 44px;
  height: 28px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  display: block;
}
.payment-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col-brand { grid-column: 1 / -1; }
  .cert-row { gap: 32px; justify-content: flex-start; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-duo { grid-template-columns: 1fr; }
  .hero-slide { flex-direction: column; text-align: center; }
  .hero-copy { max-width: 100%; }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-detail-thumb { height: 340px; }
  .product-purchase-spacer { display: block; height: 120px; }
  .product-purchase-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 14px 17px calc(14px + env(safe-area-inset-bottom, 0px)) 14px;
    margin-bottom: 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }
  .option-select {
    width: 100%;
    max-width: none !important;
  }
}
@media (max-width: 640px) {
  .mobile-menu-toggle { display: flex; order: 1; }
  .logo { order: 2; flex: 1; justify-content: center; }
  .search-bar { display: none; }
  .top-actions { order: 3; margin-left: 0; }
  .top-actions .action-chat, .top-actions .action-sample, .top-actions .action-account { display: none; }
  .top-actions .action span { display: none; }

  .navbar { display: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-thumb-title { font-size: 0.8rem; padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 20px; }
  .hero-desktop { display: none; }
  .hero-mobile { display: block; }
  .categories-mega { flex-direction: column; }
  .mega-categories-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .mega-sidebar { display: none; }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body:has(.product-purchase-bar) { padding-bottom: 120px; }
  .product-detail-thumb { height: 320px; }
  .product-purchase-bar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 500;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 14px 17px calc(14px + env(safe-area-inset-bottom, 0px)) 14px;
    margin-bottom: 0;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  }
  .option-select {
    width: 100%;
    max-width: none !important;
  }
}
