/* ============================================================
   MATKO MOTORS — STYLESHEET v4.3
   Carbon texture, red accent lines, tightened layout
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #7a1f29;
  --red-bright: #8c2430;
  --red-hover:  #961929;
  --red-line:   #7a1f29;

  --bg-darkest: #0c0c0c;
  --bg-dark:    #111111;
  --bg-mid:     #181818;
  --bg-card:    #1e1e1e;
  --bg-card-hover: #242424;

  --text-white: #ffffff;
  --text-light: #c4c4c4;
  --text-muted: #777777;
  --border:     #2a2a2a;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Carbon fiber SVG tile — subtle 5% opacity weave */
  --carbon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Crect width='4' height='4' fill='%23ffffff08'/%3E%3Crect x='4' y='4' width='4' height='4' fill='%23ffffff08'/%3E%3Crect x='2' y='0' width='2' height='2' fill='%23ffffff04'/%3E%3Crect x='6' y='4' width='2' height='2' fill='%23ffffff04'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-darkest);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   RED ACCENT DIVIDERS
   ============================================================ */
.red-rule {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--red-line);
  opacity: 0.6;
}

/* ============================================================
   NAV — red square + wordmark (no badge)
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(12,12,12,0.97);
  border-bottom: 1px solid var(--red-line);
  backdrop-filter: blur(10px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 62px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
  color: var(--text-white);
}

.brand-box {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("photos/MatkoMotorsLogo_Current.png") center/cover no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  margin-left: 1.5rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0.5rem 0.8rem;
  transition: color 0.2s;
  display: block;
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-white); }

.nav-phone {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--red);
  color: #fff;
  padding: 0.5rem 1.1rem;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-phone:hover { background: var(--red-hover); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.8rem 1.75rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-red  { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-hover); }

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  border-color: var(--text-white);
  background: rgba(255,255,255,0.06);
}

.btn-full { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0c0c0c;
  background-image: url('photos/hero-truck.jpg');
  background-size: cover;
  background-position: center 30%;
}

/* Left-side overlay only — truck shows on the right like the PDF */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,10,10,0.93) 0%,
    rgba(10,10,10,0.75) 45%,
    rgba(10,10,10,0.25) 70%,
    rgba(10,10,10,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--red-bright);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 440px;
  line-height: 1.75;
  letter-spacing: 0.025em;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   STATS BAR — left-aligned, carbon texture
   ============================================================ */
.stats-bar {
  background: var(--bg-mid);
  background-image: var(--carbon);
  border-top: 1px solid var(--red-line);
  border-bottom: 1px solid var(--red-line);
  display: flex;
  flex-wrap: wrap;
}

.stat {
  padding: 1.1rem 2.5rem;
  text-align: left;
  border-right: 1px solid var(--border);
  flex: 1;
}

.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-white);
  display: block;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  display: block;
  margin-top: 0.3rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 2.5rem 0; }

/* Carbon texture on dark sections */
.section-dark {
  background: var(--bg-dark);
  background-image: var(--carbon);
}

.section-darker {
  background: var(--bg-darkest);
}

.eyebrow-red {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red-bright);
  margin-bottom: 0.6rem;
}

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1;
}

.link-arrow {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
  padding-bottom: 2px;
}

.link-arrow:hover { color: var(--text-white); }

/* ============================================================
   CARDS — carbon panels with red top accent
   ============================================================ */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--red-line);
  border: 1px solid var(--red-line);
  margin-top: 1.5rem;
}

.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--red-line);
  border: 1px solid var(--red-line);
  margin-top: 1.5rem;
}

.card {
  background: var(--bg-card);
  background-image: var(--carbon);
  padding: 2rem;
  transition: background-color 0.2s;
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
}

.card:hover { background-color: var(--bg-card-hover); }
.card:hover::before { opacity: 1; }

.card-icon {
  margin-bottom: 1rem;
  color: var(--red-bright);
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.65rem;
  text-transform: uppercase;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ============================================================
   BUILD CARDS
   ============================================================ */
.builds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--red-line);
  margin-top: 1.5rem;
}

.build-card {
  background: var(--bg-card);
  background-image: var(--carbon);
  overflow: hidden;
  transition: background-color 0.2s;
}

.build-card:hover { background-color: var(--bg-card-hover); }

.build-img {
  height: 200px;
  background: var(--bg-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.build-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.build-img-1 { background-color: #181818; }
.build-img-2 { background-color: #161616; }
.build-img-3 { background-color: #171717; }

.build-info {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--red-line);
}

.build-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.2rem;
}

.build-spec {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--bg-mid);
  background-image: var(--carbon);
  border-top: 1px solid var(--red-line);
  padding: 3rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.cta-sub {
  font-size: 0.93rem;
  color: var(--text-light);
  max-width: 480px;
  letter-spacing: 0.015em;
}

/* ============================================================
   FOOTER — badge lives here
   ============================================================ */
.footer {
  background: var(--bg-mid);
  background-image: var(--carbon);
  border-top: 1px solid var(--red-line);
  padding: 3.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  height: 64px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  margin-bottom: 0.85rem;
}

.footer-col p {
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.footer-copy {
  border-top: 1px solid var(--red-line);
  padding: 1.1rem 2rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--bg-darkest);
  background-image: var(--carbon);
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid var(--red-line);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 50%;
  height: 160%;
  background: linear-gradient(115deg,
    transparent 0%, transparent 40%,
    rgba(122,31,41,0.55) 40%, rgba(122,31,41,0.55) 44%,
    transparent 44%, transparent 54%,
    rgba(122,31,41,0.28) 54%, rgba(122,31,41,0.28) 60%,
    transparent 60%, transparent 70%,
    rgba(122,31,41,0.14) 70%, rgba(122,31,41,0.14) 74%,
    transparent 74%);
  pointer-events: none;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
}

.page-sub {
  font-size: 0.97rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.75;
  letter-spacing: 0.015em;
}

.white { color: var(--text-white); }
.red   { color: var(--red-bright); }

/* ============================================================
   GALLERY
   ============================================================ */
.build-feature {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--red-line);
}

.build-feature:last-of-type { border-bottom: none; }

.build-num {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  margin-bottom: 0.35rem;
}

.build-feature-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.build-feature-spec {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  text-align: center;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.ba-img {
  height: 300px;
  background: var(--bg-mid);
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0.6rem;
  overflow: hidden;
}

.ba-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.ba-img-1a, .ba-img-2a, .ba-img-3a { background-color: #181818; }
.ba-img-1b, .ba-img-2b, .ba-img-3b { background-color: #1c1c1c; }
.ba-img-3b img { object-position: center 40%; }

.ba-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: rgba(0,0,0,0.85);
  color: var(--text-white);
  padding: 0.35rem 0.8rem;
}

.gallery-note {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  padding: 0.9rem 1.25rem;
  margin-bottom: 2.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.gallery-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--red-line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-thumb {
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  background-image: var(--carbon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  cursor: pointer;
  overflow: hidden;
  transition: opacity 0.2s;
}

.gallery-thumb:hover { opacity: 0.8; }

/* Photo layers over the PHOTO N label; empty slots stay dark */
.gallery-thumb { position: relative; }
.gallery-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Awards & Recognition */
.awards-feature {
  margin: 4rem 0 3.25rem;
  padding-top: 0.25rem;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.award-photo {
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  background-image: var(--carbon);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s;
}

.award-photo:hover { opacity: 0.86; }

.award-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

/* Shop product lightbox — multiple photos per product */
.shop-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.shop-lightbox.open { display: flex; }

.shop-lightbox img#shopLightboxImg {
  max-width: 80vw;
  max-height: 60vh;
  object-fit: contain;
}

.shop-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.shop-lb-arrow:hover { border-color: var(--red-bright); }
.shop-lb-prev-img { left: 1.5rem; }
.shop-lb-next-img { right: 1.5rem; }

.shop-lb-thumbs {
  display: none;
  gap: 0.5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80vw;
}

.shop-lb-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.6;
}

.shop-lb-thumb.active, .shop-lb-thumb:hover { opacity: 1; border-color: var(--red-bright); }

.shop-lb-productnav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.shop-lb-productnav button {
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  letter-spacing: inherit;
}

.shop-lb-productnav button:hover { border-color: var(--red-bright); }
.shop-lb-name { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; }

/* ============================================================
   SERVICES — PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--red-line);
  border: 1px solid var(--red-line);
  margin-top: 1.5rem;
}

.process-step {
  background: var(--bg-card);
  background-image: var(--carbon);
  padding: 1.75rem;
}

.process-num {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  margin-bottom: 0.6rem;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
}

.process-step p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ============================================================
   HOME PAGE CONVERSION / SHOP
   ============================================================ */
.split-promo {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.promo-copy {
  max-width: 700px;
}

.promo-copy p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

.check-list {
  list-style: none;
  margin: 1.4rem 0 2rem;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red-bright);
  font-weight: 700;
}

.promo-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  background-image: var(--carbon);
  padding: 1.5rem;
}

.promo-kicker {
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  margin-bottom: 1rem;
}

.mini-facts {
  display: grid;
  gap: 1rem;
}

.mini-facts div {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.mini-facts strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
}

.mini-facts span {
  color: var(--text-light);
  font-size: 0.82rem;
  line-height: 1.6;
}

.shop-shell {
  display: grid;
  grid-template-columns: 2fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.shop-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.shop-card {
  background: var(--bg-card);
  background-image: var(--carbon);
  border: 1px solid var(--border);
  overflow: hidden;
}

.shop-image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.shop-image-has-photo { cursor: pointer; }

.shop-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}



.shop-card-info { padding: 1.25rem; }

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.product-tag,
.product-stock {
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.product-tag {
  color: var(--red-bright);
}

.product-stock {
  color: var(--text-muted);
}

.shop-product-name {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.shop-product-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.85rem; }

.shop-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.size-row { display: flex; gap: 2px; margin-bottom: 1rem; flex-wrap: wrap; }

.size-btn {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--border);
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.15s;
  background: transparent;
}

.size-btn:hover, .size-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.cart-panel {
  position: sticky;
  top: 90px;
  background: var(--bg-card);
  background-image: var(--carbon);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  padding: 1.25rem;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.cart-items {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
  min-height: 90px;
}

.cart-empty {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.82rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
}

.cart-item strong,
.cart-item span {
  display: block;
  color: var(--text-light);
}

.cart-item span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.remove-item {
  background: none;
  border: none;
  color: var(--red-bright);
  cursor: pointer;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-summary {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-light);
  font-size: 0.82rem;
}

.summary-row + .summary-row { margin-top: 0.5rem; }

.cart-note {
  margin-top: 0.8rem;
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .shop-shell {
    grid-template-columns: 1fr;
  }

  .shop-products {
    grid-template-columns: 1fr;
  }

  .cart-panel {
    position: static;
  }

  .split-promo {
    grid-template-columns: 1fr;
  }

  .page-hero::after {
    width: 30%;
    right: -12%;
    opacity: 0.5;
  }
}


.store-demo-banner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  background: #151515;
  background-image: var(--carbon);
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
}
.store-demo-banner strong {
  font-family: var(--font-display);
  letter-spacing: 0.12em;
  color: #fff;
  white-space: nowrap;
}
.store-demo-banner span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.option-title {
  display: block;
  margin: 0.35rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.purchase-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.7rem;
  align-items: end;
  margin-top: 0.3rem;
}
.purchase-row label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.qty-input {
  width: 100%;
  margin-top: 0.25rem;
  padding: 0.55rem 0.45rem;
  background: #111;
  color: #fff;
  border: 1px solid var(--border);
  font: inherit;
}
.purchase-row .btn { padding-left: 0.8rem; padding-right: 0.8rem; }
@media (max-width: 650px) {
  .store-demo-banner { align-items: flex-start; flex-direction: column; }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
}

.contact-info-block {
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  margin-bottom: 2px;
  background: var(--bg-card);
  background-image: var(--carbon);
}

.contact-info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.contact-info-block p { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }

.form-group label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-bottom: 1px solid var(--red-line);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red-bright);
}

.form-note { font-size: 0.76rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-para {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.82;
  margin-bottom: 1.35rem;
  letter-spacing: 0.01em;
}

.about-stat-card {
  background: var(--bg-card);
  background-image: var(--carbon);
  border: 1px solid var(--border);
  border-top: 2px solid var(--red);
  padding: 1.25rem;
  margin-bottom: 2px;
  text-align: center;
}

.about-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-white);
  display: block;
}

.about-stat-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 62px; left: 0; right: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--red-line);
    padding: 1rem 2rem;
    gap: 0;
    z-index: 99;
  }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .cards-3, .cards-2, .builds-grid { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stats-bar { flex-direction: column; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); flex: none; }
  .stat:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .container { padding: 0 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
