/* =========================================================
   MM METELS — Design tokens
   Palette: structural blue #005bc0, safety amber #ffc107,
            gunmetal black #101214, white #ffffff
   Type: Oswald (display/industrial stencil-like) +
         Inter (body) + JetBrains Mono (spec data)
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Sinhala:wght@400;500;600;700;800&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --blue: #005bc0;       /* Darker, rich structural blue */
  --blue-dark: #004494;  /* Darker blue hover shade */
  --blue-light: #e6f0fa; /* Light contrast blue for accent highlights */
  --amber: #ffc107;
  --amber-dark: #e0a800;
  --black: #101214;
  --white: #ffffff;
  --grey-50: #f5f7f9;
  --grey-100: #eceff2;
  --grey-300: #cfd6dc;
  --grey-500: #7c8791;
  --grey-700: #3d444a;

  --font-display: 'Noto Sans Sinhala', 'Oswald', 'Arial Narrow', sans-serif;
  --font-body: 'Noto Sans Sinhala', 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --radius: 4px;
  --container: 1200px;
  --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--black);
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--amber);
  display: inline-block;
}

/* Hazard stripe divider — signature motif referencing warning tape */
.hazard-rule {
  height: 8px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--amber),
    var(--amber) 14px,
    var(--black) 14px,
    var(--black) 28px
  );
}
.hazard-rule--thin { height: 4px; }

/* =========================
   Buttons
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-dark); }

.btn-amber {
  background: var(--amber);
  color: var(--black);
}
.btn-amber:hover { background: var(--amber-dark); box-shadow: 0 4px 0 0 var(--black); }

.btn-outline {
  background: transparent;
  border-color: var(--black);
  color: var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-block { width: 100%; }

.btn-whatsapp {
  background: #1f2937;
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--black); }
.btn-whatsapp svg { width: 18px; height: 18px; fill: #25D366; }

/* =========================
   Navbar
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  height: var(--nav-h);
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}
.brand-text span { color: var(--blue); }
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey-300);
  letter-spacing: 0.15em;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-display);
  color: var(--grey-100);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
  border-color: var(--amber);
}

.nav-actions { display: flex; align-items: center; gap: 18px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 32px;
  height: 26px;
  position: relative;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  background: var(--white);
}
.nav-toggle::before { top: 0; }
.nav-toggle span { top: 12px; }
.nav-toggle::after { bottom: 0; }

/* Mobile nav links active styling */
.nav-links.open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--black);
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  background: var(--blue-dark); /* Changed from black to darker blue theme */
  background: linear-gradient(135deg, #002d66 0%, var(--blue-dark) 50%, var(--blue) 100%);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.45;
}
.hero-bg svg { width: 100%; height: 100%; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Overlay matches the new deep blue banner */
  background: linear-gradient(100deg, rgba(0, 45, 102, 0.97) 30%, rgba(0, 45, 102, 0.65) 75%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { max-width: 640px; }
.hero-content .eyebrow { color: var(--amber); margin-bottom: 18px; }
.hero-content .eyebrow::before { background: var(--white); }
.hero-title {
  color: var(--white);
  font-size: clamp(38px, 5.5vw, 62px);
  line-height: 1.02;
  margin-bottom: 20px;
}
.hero-title .hi-blue { color: var(--blue-light); } /* Set to light blue highlight for contrast */
.hero-title .hi-amber { color: var(--amber); }
.hero-sub {
  color: var(--grey-100);
  font-size: 17px;
  max-width: 500px;
  margin-bottom: 34px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  max-width: 520px;
}
.hero-stat {
  flex: 1;
  padding-right: 24px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.hero-stat:last-child { border-right: none; }
.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--amber);
}
.hero-stat span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey-100);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================
   Section shell
========================= */
section { padding: 88px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 14px;
  line-height: 1.08;
}
.section-head p {
  margin-top: 16px;
  color: var(--grey-700);
  font-size: 16px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .eyebrow::before { display: none; }

.section-alt { background: var(--grey-50); }

/* =========================
   Why choose us (intro)
========================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-300);
  border: 1px solid var(--grey-300);
}
.why-card {
  background: var(--white);
  padding: 36px 30px;
  position: relative;
}
.why-card .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
}
.why-card .icon {
  width: 46px; height: 46px;
  margin: 18px 0 20px;
}
.why-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--grey-700);
  font-size: 14.5px;
  margin: 0;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--amber);
  transition: width 0.25s ease;
}
.why-card:hover::before { width: 100%; }

/* =========================
   Product cards (home)
========================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.product-card:hover {
  box-shadow: 0 14px 28px rgba(16,18,20,0.12);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.product-card .thumb {
  aspect-ratio: 1 / 0.85;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  position: relative;
}
.product-card .thumb.has-img {
  padding: 0;
  border-bottom: none;
}
.product-card .thumb svg { width: 100%; height: 100%; }
.product-card .tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}
.product-card .info { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}
.product-card p {
  font-family: var(--font-mono);
  color: var(--grey-500);
  font-size: 12px;
  margin: 0 0 14px;
  flex: 1;
}
.product-card .cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--blue);
  font-weight: 600;
  border-top: 1px dashed var(--grey-300);
  padding-top: 14px;
}
.product-card .cta svg { width: 16px; height: 16px; transition: transform 0.15s; }
.product-card:hover .cta svg { transform: translateX(4px); }

/* =========================
   Size chart tabs (home)
========================= */
.size-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.size-tab-btn {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 20px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  transition: all 0.15s;
}
.size-tab-btn.active { background: var(--black); color: var(--amber); }
.size-tab-btn:not(.active):hover { background: var(--grey-100); }

.size-panel { display: none; }
.size-panel.active { display: block; }

.size-panel-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0;
  border: 1px solid var(--grey-300);
  background: var(--white);
}
.size-panel-table-wrap { padding: 28px; overflow-x: auto; }
.size-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 13px;
  min-width: 420px;
}
.size-table th {
  background: var(--black);
  color: var(--white);
  text-align: left;
  padding: 10px 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.size-table td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-700);
}
.size-table tr:nth-child(even) td { background: var(--grey-50); }

.size-panel-side {
  background: var(--blue);
  color: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.size-panel-side::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px;
  border: 30px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.size-panel-side h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
}
.size-panel-side p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 24px;
}
.size-panel-side .btn-amber { align-self: flex-start; }
.size-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-500);
  padding: 16px 28px;
  border-top: 1px dashed var(--grey-300);
}

/* =========================
   Category page
========================= */
.page-banner {
  background: var(--black);
  padding: 64px 0 40px;
  position: relative;
}
.page-banner .hazard-rule { position: absolute; bottom: 0; left: 0; }
.page-banner h1 { color: var(--white); font-size: clamp(30px, 4.5vw, 46px); }
.page-banner p { color: var(--grey-300); margin-top: 12px; max-width: 560px; }
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-500);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--blue); }
.page-banner .breadcrumb { color: var(--grey-500); }
.page-banner .breadcrumb a { color: var(--amber); }

.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 0;
  border-bottom: 1px solid var(--grey-300);
  margin-bottom: 40px;
}
.cat-tab-btn {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid var(--grey-300);
  background: var(--white);
  color: var(--grey-700);
  transition: all 0.15s;
}
.cat-tab-btn.active {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--black);
}
.cat-tab-btn:not(.active):hover { border-color: var(--blue); color: var(--blue); }

.cat-panel { display: none; }
.cat-panel.active { display: block; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s, transform 0.2s, border-color .2s;
}
.cat-card:hover {
  box-shadow: 0 14px 28px rgba(16,18,20,.12);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.cat-card .thumb {
  aspect-ratio: 4/3;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  padding: 26px;
  position: relative;
}
.cat-card .thumb.has-img {
  padding: 0;
  border-bottom: none;
}
.cat-card .thumb svg { width: 100%; height: 100%; }
.cat-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--black);
}
.cat-card .info { padding: 20px; }
.cat-card h3 { font-size: 16px; margin-bottom: 8px; }
.cat-card .size-pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  background: var(--grey-100);
  padding: 4px 10px;
  border-radius: 3px;
  color: var(--grey-700);
  margin-bottom: 12px;
}
.cat-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px dashed var(--grey-300);
  padding-top: 14px;
}
.cat-card .price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
}
.cat-card .price small {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey-500);
  font-weight: 400;
  margin-left: 4px;
}
.cat-card .arrow {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.cat-card .arrow svg { width: 16px; height: 16px; }
.cat-card:hover .arrow { background: var(--blue); }
.cat-card:hover .arrow svg { fill: var(--white); }

/* =========================
   Product view page
========================= */
.product-view {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 56px 0 40px;
}
.pv-gallery { position: sticky; top: calc(var(--nav-h) + 24px); align-self: start; }
.pv-main {
  background: var(--white);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
  padding: 50px;
  margin-bottom: 14px;
  position: relative;
}
.pv-main.has-img {
  padding: 0;
}
.pv-main svg { width: 100%; height: 100%; }
.pv-main .badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--amber);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 3px;
}
.pv-thumbs { display: flex; gap: 12px; }
.pv-thumb {
  width: 76px; height: 76px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--grey-100);
  padding: 12px;
  display: flex; align-items: center; justify-content: center;
}
.pv-thumb.active { border-color: var(--blue); }
.pv-thumb.has-img {
  padding: 0;
}
.pv-thumb svg { width: 100%; height: 100%; }

.pv-info .breadcrumb { margin-bottom: 16px; }
.pv-title {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  margin-bottom: 14px;
}
.pv-desc {
  color: var(--grey-700);
  font-size: 15px;
  margin-bottom: 26px;
  max-width: 560px;
}

.pv-dims {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 26px;
}
.pv-dims .cell {
  padding: 16px 20px;
  border-right: 1px solid var(--grey-300);
}
.pv-dims .cell:last-child { border-right: none; }
.pv-dims .cell span {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  margin-bottom: 4px;
}
.pv-dims .cell b {
  font-family: var(--font-display);
  font-size: 20px;
}

.pv-field { margin-bottom: 26px; }
.pv-field > label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-700);
  font-weight: 700;
  margin-bottom: 12px;
}
.pv-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pv-opt {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  padding: 11px 18px;
  border: 2px solid var(--grey-300);
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  transition: all .15s;
}
.pv-opt:hover { border-color: var(--blue); }
.pv-opt.active { border-color: var(--blue); background: var(--blue); color: var(--white); }

.pv-qty {
  display: inline-flex;
  align-items: stretch;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  overflow: hidden;
}
.pv-qty button {
  width: 46px;
  background: var(--white);
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  transition: background .15s;
}
.pv-qty button:hover { background: var(--grey-100); }
.pv-qty input {
  width: 60px;
  border: none;
  border-left: 2px solid var(--black);
  border-right: 2px solid var(--black);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
}

.pv-price-box {
  background: var(--grey-50);
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 14px;
}
.pv-price-box .label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey-500);
  margin-bottom: 4px;
}
.pv-price-box .amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
}
.pv-price-box .amount sup {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--grey-500);
  font-weight: 400;
}
.pv-price-box .unit-note {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-500);
}

.pv-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.pv-actions .btn { flex: 1; min-width: 220px; }

.pv-meta-list { margin-top: 34px; border-top: 1px solid var(--grey-300); padding-top: 24px; }
.pv-meta-list li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: var(--grey-700);
  margin-bottom: 10px;
  align-items: flex-start;
}
.pv-meta-list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; fill: var(--blue); }

/* =========================
   Contact page
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card {
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--white);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-card .icon-box {
  width: 50px; height: 50px;
  background: var(--black);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .icon-box svg { width: 24px; height: 24px; fill: var(--amber); }
.contact-card h3 { font-size: 17px; margin-bottom: 8px; }
.contact-card p { color: var(--grey-700); font-size: 14.5px; margin: 0 0 4px; }
.contact-card a.link { color: var(--blue); font-weight: 600; }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.hours-table td { padding: 6px 0; font-size: 14px; color: var(--grey-700); border-bottom: 1px dashed var(--grey-100); }
.hours-table td:last-child { text-align: right; font-family: var(--font-mono); font-weight: 600; color: var(--black); }

.map-box {
  border: 1px solid var(--grey-300);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================
   Footer
========================= */
.site-footer {
  background: var(--black);
  color: var(--grey-300);
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-text { margin-bottom: 14px; color: var(--white); }
.footer-brand p { font-size: 14px; color: var(--grey-500); max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.footer-social a:hover { background: var(--blue); border-color: var(--blue); }
.footer-social svg { width: 16px; height: 16px; fill: var(--grey-300); }
.footer-social a:hover svg { fill: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { color: var(--grey-300); font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--amber); }
.footer-col .contact-line { display: flex; gap: 10px; font-size: 14px; margin-bottom: 14px; align-items: flex-start; }
.footer-col .contact-line svg { width: 16px; height: 16px; fill: var(--amber); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-500);
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   Floating WhatsApp
========================= */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* =========================
   Responsive
========================= */
@media (max-width: 980px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .product-view { grid-template-columns: 1fr; }
  .pv-gallery { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .size-panel-inner { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-actions { display: none !important; }
  .nav-toggle { display: block; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { min-height: auto; }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(40, 167, 69, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
  }
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #28a745;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}
