/* ============================================================
   BRAND SITE — Global Stylesheet
   Blocksy design system · Brand accent set per-page in <style>
   ============================================================ */

/* Google Fonts loaded async via <head> preload — see index.html */

:root {
  --accent:        #111111;
  --accent-light:  #333333;
  --btn-bg:        #111111;
  --btn-text:      #ffffff;
  --btn-hover:     #333333;
  --link:          #111111;
  --bg:            #ffffff;
  --bg-alt:        #f9fafb;
  --bg-dark:       #0a0500;
  --text:          #504e4a;
  --text-heading:  #0a0500;
  --text-muted:    #7a7874;
  --border:        #edeff2;
  --radius:        4px;
  --shadow:        0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover:  0 8px 36px rgba(0,0,0,0.13);
  --max-w:         1290px;
  --font:          'Open Sans', system-ui, -apple-system, sans-serif;
}

/* ── Reset ── */
*, *::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.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { color: var(--text-heading); line-height: 1.5; font-weight: 900; }

/* ── Container ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 10px 24px;
  min-height: 40px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 20px;
}
.btn:hover { background: var(--btn-hover); text-decoration: none; box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--btn-bg);
  border: 2px solid var(--btn-bg);
  padding: 8px 24px;
}
.btn-outline:hover { background: var(--btn-bg); color: var(--btn-text); }

/* ── Section shared ── */
section { padding: 60px 0; }
section.alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1.5;
  color: var(--text-heading);
  text-align: center;
}
.section-subtitle {
  color: var(--text-muted);
  font-size: 17px;
  margin-top: -28px;
  margin-bottom: 40px;
}
.section-subtitle.center { text-align: center; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(34,56,101,0.04);
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.nav-logo {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-heading);
  text-decoration: none;
}
.nav-logo img { height: 80px; width: auto; }
.logo-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 16px; font-weight: 700; color: var(--text-heading); text-transform: none; letter-spacing: normal; }
.nav-links a:hover { color: var(--accent); text-decoration: none; }
.nav-cta { flex-shrink: 0; background: #1a3c6e !important; color: #fff !important; }
.nav-cta:hover { background: #2a5298 !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  background: var(--bg-alt);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.hero-has-bg {
  padding: 0;
  min-height: 580px;
  border-bottom: none;
  background-color: #1a2a4a;
  display: flex;
  align-items: center;
}
.hero-has-bg .container {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}
.hero-has-bg h1,
.hero-has-bg .hero-sub { color: #fff !important; }
.hero-has-bg .hero-sub { color: rgba(255,255,255,0.88) !important; }
/* Hero — primary btn stays navy, outline stays ghost-white */
.hero-has-bg .btn:not(.btn-outline) {
  background: #1a3c6e !important;
  color: #fff !important;
}
.hero-has-bg .btn:not(.btn-outline):hover { background: #2a5298 !important; }
.hero-has-bg .btn-outline {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.hero-has-bg .btn-outline:hover {
  background: rgba(255,255,255,0.28);
  border-color: #fff;
}

/* ── Full-width lifestyle hero: brand banner fills entire section ── */
.hero-brand-bg {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  border-bottom: none;
}
/* The lifestyle banner image — covers full hero area */
.hero-brand-bg .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Dark gradient left-to-right so text stays readable */
.hero-brand-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 15, 28, 0.88) 0%,
    rgba(10, 15, 28, 0.72) 38%,
    rgba(10, 15, 28, 0.20) 65%,
    rgba(10, 15, 28, 0.00) 100%
  );
  pointer-events: none;
}
/* Text container sits on top of gradient */
.hero-brand-bg .hero-inner {
  position: relative;
  z-index: 1;
  padding: 64px 56px;
  max-width: 600px;
}
.hero-brand-bg h1,
.hero-brand-bg .hero-sub { color: #fff !important; }
.hero-brand-bg .hero-sub  { color: rgba(255,255,255,0.85) !important; }
.hero-btn-primary {
  background: var(--accent) !important;
  color: var(--btn-text) !important;
}
.hero-btn-primary:hover { background: var(--accent-light) !important; }
.hero-btn-outline {
  background: rgba(255,255,255,0.12) !important;
  color: #fff !important;
  border-color: rgba(255,255,255,0.7) !important;
}
.hero-btn-outline:hover {
  background: rgba(255,255,255,0.24) !important;
  border-color: #fff !important;
}
@media (max-width: 768px) {
  .hero-brand-bg { min-height: 340px; }
  .hero-brand-bg .hero-inner { padding: 40px 24px; max-width: 100%; }
  .hero-brand-bg::after {
    background: linear-gradient(to bottom, rgba(10,15,28,0.70) 0%, rgba(10,15,28,0.55) 100%);
  }
}

/* ── Split hero: dark text panel left + 3 product photos right ── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-bottom: none;
  padding: 0;
  background: none;
}
.hero-split-text {
  background: linear-gradient(145deg, #111827 0%, #1f2d45 100%);
  display: flex;
  align-items: center;
  padding: 64px 56px;
}
.hero-split-text h1,
.hero-split-text .hero-sub { color: #fff !important; }
.hero-split-text .hero-sub  { color: rgba(255,255,255,0.82) !important; }

/* Right panel: warm cream bg — transparent PNG shoes float on it */
.hero-split-imgs {
  background: linear-gradient(160deg, #f9f5f0 0%, #ece5db 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  padding: 28px 8px 0;
  position: relative;
}
/* Radial glow under shoes — grounding effect */
.hero-split-imgs::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(160,130,100,0.15) 0%, transparent 70%);
  pointer-events: none;
}
/* Left-edge fade into dark text panel */
.hero-split-imgs::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,24,39,0.18) 0%, transparent 15%);
  pointer-events: none;
}
.hero-split-imgs img {
  flex: 1;
  min-width: 0;
  max-height: 420px;
  width: 33.33%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.22));
}
@media (max-width: 768px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-text { padding: 48px 24px; }
  .hero-split-imgs { display: none; }
}

.hero-inner {
  max-width: 680px;
}
.hero h1 {
  font-size: clamp(32px, 4.5vw, 55px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 18px;
  color: var(--text-heading);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   BRAND INTRO
══════════════════════════════════════════ */
.brand-intro {
  background: var(--bg);
}
.brand-intro .intro-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 480px;
}
.brand-intro .intro-text-wrap {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-intro .intro-text-wrap h2 {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--text-heading);
  line-height: 1.3;
}
.brand-intro .intro-text p { margin-bottom: 16px; color: var(--text); font-size: 16px; line-height: 1.65; }
.brand-intro .intro-text p:last-child { margin-bottom: 0; }
.brand-intro .intro-image {
  overflow: hidden;
  position: relative;
}
.brand-intro .intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.intro-img-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.intro-img-placeholder .intro-img-icon { font-size: 48px; opacity: 0.4; }
.intro-img-placeholder span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ══════════════════════════════════════════
   CATEGORIES
══════════════════════════════════════════ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ── Fallback (no image) card ── */
.category-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: var(--shadow);
}
.category-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.category-card .cat-icon { font-size: 32px; margin-bottom: 14px; }
.category-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text-heading); }
.category-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.category-card a { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--accent); }

/* ── Full-bleed image card ── */
.cat-card-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 2 / 3;
  text-decoration: none;
  cursor: pointer;
  background: #ffffff;      /* білий фон — товар плаває на ньому */
  border: none;
  padding: 0;
  box-shadow: 0 6px 28px rgba(0,0,0,0.14);
}
.cat-card-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 38%;  /* трохи вище центру — більше місця для тексту */
  display: block;
  transition: transform 0.45s ease;
  padding: 8% 6% 36%;           /* знизу відступ для зони тексту */
  box-sizing: border-box;
}
.cat-card-img:hover img { transform: scale(1.04); }
.cat-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Gradient: прозорий зверху → білий в середині → темний знизу.
     Це робить плавний перехід від фото до текстової зони. */
  background: linear-gradient(to top,
    rgba(15,15,15,0.96) 0%,
    rgba(15,15,15,0.80) 22%,
    rgba(255,255,255,0)  52%,
    rgba(255,255,255,0) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
}
.cat-overlay h3 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
}
.cat-overlay p {
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.cat-cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.7);
  border-radius: 4px;
  padding: 5px 12px;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s;
}
.cat-card-img:hover .cat-cta {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
}

/* ══════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: var(--shadow);
}
.product-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.product-card .product-img {
  aspect-ratio: 1 / 1;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card .product-img img { width: 100%; height: 100%; object-fit: contain; padding: 12px; }
.product-card .product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; line-height: 1.45; color: var(--text-heading); }
.product-card .product-specs { list-style: none; margin-bottom: 14px; flex: 1; }
.product-card .product-specs li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 4px 0 4px 14px;
  border-bottom: 1px solid var(--border);
  position: relative;
  line-height: 1.45;
}
.product-card .product-specs li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.product-card .product-specs li:last-child { border-bottom: none; }
.product-card .product-price { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.product-card .btn { width: 100%; text-align: center; font-size: 13px; padding: 10px; }

/* ══════════════════════════════════════════
   MAIN CONTENT (блок с таблицами и описанием)
══════════════════════════════════════════ */
.main-content h3 {
  font-size: 22px;
  font-weight: 900;
  margin: 44px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  color: var(--text-heading);
}
.main-content h3:first-child { margin-top: 0; }
.main-content p { margin-bottom: 16px; line-height: 1.75; }
.main-content ul, .main-content ol {
  margin: 0 0 20px 22px;
  line-height: 1.75;
}
.main-content li { margin-bottom: 6px; }
.main-content strong { font-weight: 600; }

/* Tables */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 32px;
}
.main-content table, .spec-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  margin: 0;
  font-size: 14px;
}
.main-content th, .spec-table th {
  background: #1a3c6e;
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-weight: 600;
}
.main-content td, .spec-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.main-content tr:nth-child(even) td, .spec-table tr:nth-child(even) td {
  background: var(--bg-alt);
}

/* Content section image */
.content-section-img {
  margin: 20px 0 28px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.content-section-img img {
  height: 500px;
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

/* ── Product groups (category-organized layout) ── */
.product-group {
  margin-bottom: 56px;
}
.product-group-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
  padding-bottom: 10px;
}
.product-group-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-heading);
}
.product-group-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
}
.product-group-link:hover { text-decoration: underline; }

/* Content two-column layout */
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 24px 0;
}
.content-two-col h4 { font-size: 15px; font-weight: 700; margin-bottom: 12px; }
.content-two-col ul { margin-left: 18px; }
.content-two-col li { font-size: 14px; margin-bottom: 6px; }

/* ══════════════════════════════════════════
   WHY CHOOSE
══════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.why-card {
  padding: 40px 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--accent);
  transition: box-shadow 0.25s, transform 0.25s;
  text-align: center;
}
.why-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.why-card h3 { font-size: 18px; font-weight: 900; margin-bottom: 14px; color: var(--text-heading); line-height: 1.35; }
.why-card p { font-size: 16px; color: var(--text-muted); line-height: 1.7; }
/* Lifestyle photo card variant */
.why-card-img {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  border: none;
  color: #fff;
}
.why-card-img h3 { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.why-card-img p  { font-size: 14px; color: rgba(255,255,255,0.88); line-height: 1.5; }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.review-card h3.review-product {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.review-card .review-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  flex: 1;
  margin-bottom: 20px;
}
.review-card .review-stars {
  color: #f5a623;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-card .review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.review-avatar-initials {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  text-transform: uppercase;
}
.review-card .review-author { font-size: 13px; font-weight: 700; }
.review-card .review-location { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { max-width: 100%; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text-heading);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ══════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════ */
.cta-final {
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.cta-final h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 700; margin-bottom: 14px; color: #fff; }
.cta-final p { color: rgba(255,255,255,0.7); margin-bottom: 32px; font-size: 17px; }
.cta-final .btn { background: #fff; color: var(--bg-dark); }
.cta-final .btn:hover { background: #e5e5e5; }

/* ══════════════════════════════════════════
   OFFICIAL BANNER
══════════════════════════════════════════ */
.official-banner-section {
  padding: 60px 0;
  background: transparent;
}
.official-banner-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--accent);
  padding: 64px 56px;
  min-height: 280px;
  display: flex;
  align-items: center;
}
.banner-text {
  max-width: 520px;
}
.banner-text h2 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.2;
}
.banner-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
  line-height: 1.6;
}
.trust-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-icon { font-size: 20px; }
.trust-label { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.92); white-space: nowrap; }
.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}
.btn-white:hover { background: #f0f0f0; color: var(--accent); text-decoration: none; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  padding: 48px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.footer-brand p { line-height: 1.6; font-size: 12px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 13px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.page-hero {
  background: var(--bg-alt);
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(24px, 4vw, 38px); font-weight: 800; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); font-size: 17px; }
.about-body { max-width: 740px; }
.about-body p { margin-bottom: 20px; line-height: 1.8; }
.about-body h2 { font-size: 22px; font-weight: 700; margin: 36px 0 14px; }

/* ══════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.contact-detail { display: flex; gap: 10px; margin-bottom: 12px; align-items: flex-start; }
.contact-detail strong { min-width: 100px; font-weight: 600; font-size: 14px; }
.contact-detail span { font-size: 14px; color: var(--text-muted); }
.contact-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  margin-bottom: 16px;
  background: var(--bg);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { width: 100%; text-align: center; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .brand-intro .intro-card { grid-template-columns: 1fr; }
  .brand-intro .intro-image { min-height: 360px; position: relative; }
  .brand-intro .intro-image img { position: static; width: 100%; height: 360px; object-fit: cover; }
}

@media (max-width: 768px) {
  section { padding: 52px 0; }
  /* Mobile nav dropdown */
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    z-index: 99;
  }
  .nav-links li a {
    display: block;
    padding: 13px 28px;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .site-nav { position: sticky; }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .content-two-col { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 52px 0; }
  .main-content table { font-size: 13px; }
  .main-content th, .main-content td { padding: 8px 10px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}
