/* =========================
   Patterson’s Parts — Core
   Gritty, readable, accessible
   ========================= */
@import url("https://fonts.googleapis.com/css2?family=Public+Sans:wght@400;500;600;700;800&display=swap");

/* Brand */
:root{
  --bg: #0a0f0c;
  --panel: #121915;
  --panel-2: #17211b;
  --text: #f3f6f4;
  --muted: #d3ddd7;
  --muted-2: #a9b8af;
  --line: rgba(255,255,255,0.14);
  --shadow: 0 14px 30px rgba(0,0,0,0.45);
  --shadow-soft: 0 10px 22px rgba(0,0,0,0.28);
  --green: #12a865;
  --green-2: #0e8a52;
  --focus: #ffd166;

  --base-font: 16px;
  --radius: 10px;
  --radius-sm: 7px;

  --container: 1560px;
  --pad: 14px;
}

/* Better default box sizing */
*{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  position: relative;
  margin:0;
  font-family: "Public Sans", "Trebuchet MS", Verdana, sans-serif;
  font-size: var(--base-font);
  line-height: 1.6;
  color: var(--text);
  background: radial-gradient(1200px 700px at 18% 0%, rgba(18,168,101,0.18), transparent 56%),
              radial-gradient(900px 620px at 92% 8%, rgba(18,168,101,0.09), transparent 62%),
              linear-gradient(180deg, #0f1612 0%, #0b100d 36%, #0a0f0c 100%),
              var(--bg);
  opacity: 0;
  transition: opacity 0.18s ease;
}

body.page-ready{
  opacity: 1;
}

body.page-leaving{
  opacity: 0;
}

body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.17;
  background:
    repeating-linear-gradient(
      120deg,
      rgba(255,255,255,0.03) 0px,
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 11px
    );
}

/* Links */
a{ color: var(--text); text-decoration: none; }
a:hover{ color: #ffffff; text-decoration: underline; text-underline-offset: 4px; }

/* Focus styles */
:focus{ outline: none; }
:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Images */
img{
  max-width:100%;
  height:auto;
  display:block;
}

/* Container utility */
.container{
  width:100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* =========================
   Header / Nav
   ========================= */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12,18,14,0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.header-inner{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap: wrap;
  gap: 14px 18px;
  padding: 14px 0 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  line-height:1.15;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-link{ text-decoration:none; }
.brand-link:hover{ text-decoration:none; }

.brand-logo{
  width: 100px;
  height: 54px;
  border-radius: 0;
  object-fit: cover;
  object-position: left center;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
  mix-blend-mode: screen;
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand .name{
  font-weight: 800;
  letter-spacing: 0.3px;
  font-size: clamp(28px, 3.2vw, 36px);
}

.brand .tag{
  font-size: 15px;
  color: var(--muted);
  margin-top: 4px;
}

.nav{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% + (var(--pad) * 2));
  margin: 10px calc(var(--pad) * -1) 0;
  padding: 0 var(--pad);
  border-top: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    linear-gradient(90deg, rgba(18,168,101,0.08), rgba(18,168,101,0.02) 26%, rgba(255,255,255,0.01) 55%, rgba(18,168,101,0.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.nav a{
  padding: 12px 8px 11px;
  border-radius: 0;
  border: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.24px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--muted);
  transition: color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 -2px 0 transparent;
}

.nav a:hover{
  color: #ffffff;
  text-decoration:none;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,0.2);
}

.nav a[aria-current="page"]{
  color: #ffffff;
  box-shadow: inset 0 -2px 0 rgba(18,168,101,0.92);
}

/* Dropdown */
.nav-item{
  position: relative;
}

.drop-trigger{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.drop-trigger::after{
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,0.82);
  border-bottom: 2px solid rgba(255,255,255,0.82);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.16s ease;
}

.dropdown:hover .drop-trigger::after,
.dropdown:focus-within .drop-trigger::after,
.dropdown.is-open .drop-trigger::after{
  transform: rotate(-135deg) translate(-1px, -1px);
}

.drop-menu{
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 220px;
  padding: 8px;
  border-radius: 0 0 12px 12px;
  border: 1px solid var(--line);
  background: rgba(13, 20, 16, 0.985);
  box-shadow: var(--shadow);
  z-index: 80;
}

.dropdown .drop-menu{
  display: none;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 1fr);
  gap: 4px;
}

.drop-menu a{
  display: block;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  text-transform: none;
}

.drop-menu a[aria-current="page"]{
  background: rgba(18,168,101,0.16);
  border-color: transparent;
}

/* Desktop: hover and keyboard open */
@media (min-width: 701px){
  .dropdown:hover .drop-menu,
  .dropdown:focus-within .drop-menu,
  .dropdown.is-open .drop-menu{
    display: grid;
  }
}

/* Mobile menu button */
.menu-btn{
  display:none;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 750;
  cursor:pointer;
}

.menu-btn:hover{
  background: rgba(255,255,255,0.10);
}

/* =========================
   Hero
   ========================= */

.hero{
  padding: 64px 0 40px;
}

.hero-card{
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
    linear-gradient(120deg, rgba(18,168,101,0.10), rgba(18,168,101,0.025) 36%, transparent 72%),
    linear-gradient(180deg, rgba(0,0,0,0.10), transparent 28%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.hero-card::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, rgba(217,171,36,0.9), rgba(18,168,101,0.45));
  opacity: 0.85;
}

.hero-logo{
  padding: 32px 32px 12px;
  display:flex;
  justify-content:center;
  align-items:center;
}

.hero-logo img{
  max-width: 420px;
  width: 100%;
  height: auto;
}

.hero-inner{
  padding: 34px;
}

.hero h1{
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0.2px;
  text-wrap: balance;
}

.hero p{
  margin: 0 0 26px;
  color: var(--muted);
  max-width: 62ch;
  text-wrap: pretty;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  margin-bottom: 26px;
}

/* Split hero layout */
.hero-split{
  display:grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  gap: 0;
}

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

.hero-media{
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  min-height: 100%;
}

.hero-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: contrast(1.03) saturate(1.02);
}

.hero-media.media-contain{
  background: rgba(255,255,255,0.06);
}

.hero-media.media-contain img{
  object-fit: contain;
  background: #ffffff;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor:pointer;
  text-decoration:none;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.btn:hover{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.04);
  text-decoration:none;
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 8px 18px rgba(0,0,0,0.18);
}

.btn-primary{
  background: linear-gradient(180deg, rgba(18,168,101,0.92), rgba(14,138,82,0.92));
  border-color: rgba(18,168,101,0.65);
  color: #05130c;
  box-shadow: 0 8px 20px rgba(18,168,101,0.28);
}

.btn-primary:hover{
  filter: brightness(1.05);
}

/* Helpful callout strip */
.callout{
  margin-top: 6px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px dashed rgba(18,168,101,0.45);
  background: rgba(18,168,101,0.08);
  color: var(--text);
}

.callout strong{
  color: #bff5db;
}

/* Logo wall below hero */
.logo-wall{
  margin-top: 18px;
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
  align-items:center;
  justify-content:center;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  background: rgba(0,0,0,0.22);
}

.logo-wall img{
  height: 48px;
  width: auto;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

/* =========================
   Sections
   ========================= */

.section{
  padding: 54px 0 58px;
  position: relative;
}

.section::before{
  content: "";
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
}

.section-tight{
  padding-top: 18px;
  padding-bottom: 24px;
}

.section-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  color: #d9e5dd;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-kicker::before{
  content: "";
  width: 38px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(217,171,36,0.95), rgba(18,168,101,0.35));
}

.section h2{
  margin: 0 0 14px;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.25;
}

.section .sub{
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 62ch;
}

.about-home{
  background:
    radial-gradient(800px 260px at 0% 0%, rgba(217,171,36,0.13), transparent 60%),
    radial-gradient(900px 320px at 100% 0%, rgba(18,168,101,0.10), transparent 62%),
    linear-gradient(180deg, rgba(246,241,229,0.98), rgba(231,223,205,0.97));
}

.about-home::before{
  left: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(72,53,29,0.14), transparent);
}

.about-home-shell{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.about-home-shell::before{
  content: "";
  position: absolute;
  inset: -14px 18px auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(160,113,49,0), rgba(160,113,49,0.75), rgba(43,115,72,0.55), rgba(43,115,72,0));
  pointer-events: none;
}

.about-home-shell::after{
  content: "";
  position: absolute;
  inset: 14px auto 14px -10px;
  width: 120px;
  border-left: 1px solid rgba(98,74,43,0.20);
  border-top: 1px solid rgba(98,74,43,0.20);
  border-bottom: 1px solid rgba(98,74,43,0.10);
  border-radius: 18px 0 0 18px;
  opacity: 0.7;
  pointer-events: none;
}

.about-home .section-kicker{
  color: #5f4930;
}

.about-home .section-kicker::before{
  background: linear-gradient(90deg, rgba(166,115,49,0.96), rgba(62,107,73,0.46));
}

.about-home h2,
.about-home h3,
.about-home h4,
.about-home p,
.about-home li,
.about-home strong{
  color: #1f1a14;
}

.about-home .sub{
  color: rgba(31,26,20,0.82);
  max-width: 68ch;
}

.about-home .list-check{
  color: rgba(31,26,20,0.82);
}

.about-home-story,
.about-home-panel,
.community-home{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(98,74,43,0.16);
  box-shadow: 0 18px 34px rgba(42,30,16,0.10);
}

.about-home-story{
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.64), rgba(255,255,255,0.18)),
    linear-gradient(180deg, rgba(236,227,208,0.90), rgba(243,238,229,0.84));
}

.about-home-story::before{
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 92px;
  height: 92px;
  border-top: 2px solid rgba(160,113,49,0.20);
  border-right: 2px solid rgba(43,115,72,0.16);
  border-radius: 0 18px 0 0;
  pointer-events: none;
}

.about-home-story::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(112,84,48,0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(112,84,48,0.035) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.33;
  pointer-events: none;
}

.about-home-panel{
  padding: 28px;
  background:
    radial-gradient(320px 180px at 100% 0%, rgba(207,162,87,0.28), transparent 65%),
    radial-gradient(420px 220px at 0% 100%, rgba(58,133,90,0.18), transparent 62%),
    linear-gradient(180deg, rgba(88,64,37,0.96), rgba(42,31,22,0.98));
  border-color: rgba(196,147,76,0.28);
  box-shadow: 0 18px 34px rgba(42,30,16,0.14);
}

.about-home-panel::before{
  content: "";
  position: absolute;
  right: -28px;
  top: -18px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,221,176,0.22) 0%, rgba(246,221,176,0.10) 34%, rgba(246,221,176,0) 72%);
  pointer-events: none;
}

.about-home-panel::after{
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, rgba(246,221,176,0.72), rgba(246,221,176,0.16));
  pointer-events: none;
}

.about-panel-kicker{
  margin: 0 0 18px;
  color: #fff7ea;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 1px 0 rgba(0,0,0,0.24);
}

.about-home .about-panel-kicker{
  color: #fff7ea;
}

.about-panel-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-chip{
  padding: 16px 16px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,244,225,0.14), rgba(255,255,255,0.05)),
    rgba(255,255,255,0.05);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 10px 18px rgba(0,0,0,0.10);
}

.about-chip strong{
  display: block;
  margin-bottom: 6px;
  color: #fff7ea;
}

.about-chip span{
  display: block;
  color: rgba(255,244,227,0.92);
  font-size: 14px;
  line-height: 1.45;
}

.community-home{
  margin-top: 28px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,255,255,0.30)),
    linear-gradient(180deg, rgba(236,228,213,0.92), rgba(227,217,198,0.90));
}

.community-home::after{
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(160,113,49,0.92), rgba(43,115,72,0.72));
}

.community-home-head{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.community-home-head h3{
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
}

.community-home-head p:last-child{
  margin: 0;
  color: rgba(31,26,20,0.80);
  max-width: 62ch;
}

.community-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.community-card{
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 16px;
  border: 1px solid rgba(98,74,43,0.16);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.38)),
    rgba(250,247,240,0.88);
  box-shadow: 0 12px 22px rgba(42,30,16,0.08);
}

.community-card::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 16px 0 0 16px;
  background: linear-gradient(180deg, rgba(170,121,54,0.98), rgba(54,118,75,0.72));
}

.community-label{
  margin: 0 0 8px;
  color: #7b5a34;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
}

.community-card h4{
  margin: 0 0 8px;
  font-size: 19px;
}

.community-card p:last-child{
  margin: 0;
  color: rgba(31,26,20,0.78);
}

.reviews-home{
  background:
    radial-gradient(720px 240px at 0% 0%, rgba(18,168,101,0.16), transparent 58%),
    radial-gradient(820px 280px at 100% 0%, rgba(217,171,36,0.18), transparent 62%),
    linear-gradient(180deg, rgba(18,20,18,0.98), rgba(6,7,6,0.99));
}

.reviews-shell{
  position: relative;
  padding: 32px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(420px 180px at 100% 0%, rgba(217,171,36,0.14), transparent 60%),
    radial-gradient(320px 160px at 0% 100%, rgba(18,168,101,0.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28));
  box-shadow: 0 22px 40px rgba(0,0,0,0.34);
}

.reviews-shell::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(217,171,36,0.96), rgba(18,168,101,0.78), rgba(217,171,36,0.70));
}

.reviews-shell::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.20;
}

.reviews-head{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 24px;
}

.reviews-score{
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(217,171,36,0.34);
  background:
    linear-gradient(180deg, rgba(217,171,36,0.16), rgba(217,171,36,0.06)),
    rgba(255,255,255,0.03);
  text-align: right;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 14px 24px rgba(0,0,0,0.18);
}

.reviews-score strong{
  color: #fff6dc;
  font-size: 30px;
  line-height: 1;
}

.reviews-score span{
  color: var(--muted);
  font-size: 14px;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card{
  position: relative;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025)),
    rgba(255,255,255,0.025);
  box-shadow: 0 16px 24px rgba(0,0,0,0.14);
}

.review-card::before{
  content: "“";
  position: absolute;
  top: 12px;
  right: 14px;
  color: rgba(217,171,36,0.26);
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
}

.review-topic{
  margin: 0 0 10px;
  color: #f3e3b7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 800;
}

.review-card p:last-child{
  margin: 0;
  color: var(--muted);
}

.reviews-actions{
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
}

/* =========================
   Cards / Service grid
   ========================= */

.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.grid-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quick-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 8px;
}

.brand-bar{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  padding: 14px 14px 12px;
}

.brand-bar-footer{
  padding: 10px 14px 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.012);
}

.supplier-band-wrap{
  padding-top: 28px;
  padding-bottom: 20px;
}

.supplier-band-container{
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.brand-bar-stretch{
  width: 100%;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding-left: 22px;
  padding-right: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008)),
    linear-gradient(90deg, rgba(18,168,101,0.12), rgba(255,255,255,0.01), rgba(18,168,101,0.12)),
    rgba(5,8,6,0.92);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    inset 0 -1px 0 rgba(255,255,255,0.03),
    0 14px 28px rgba(0,0,0,0.28);
}

.brand-bar-head{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.logo-marquee{
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  mask-image: none;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.18) transparent;
}

.logo-track{
  display: flex;
  align-items: center;
  gap: 24px;
  width: max-content;
  padding: 4px 0 8px;
}

.supplier-logo{
  width: 160px;
  height: 70px;
  object-fit: contain;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
}

.brand-bar-footer .logo-track{
  gap: 22px;
  padding: 6px 0 8px;
  width: max-content;
  flex-wrap: nowrap;
}

.brand-bar-footer .supplier-logo{
  width: 184px;
  height: 76px;
  filter: contrast(1.03) saturate(1.04) drop-shadow(0 8px 16px rgba(0,0,0,0.35));
  transition: transform 0.18s ease, filter 0.18s ease;
}

.brand-bar-footer .supplier-logo:hover{
  transform: translateY(-2px) scale(1.04);
  filter: contrast(1.06) saturate(1.08) drop-shadow(0 12px 22px rgba(0,0,0,0.42));
}

.pill-link{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(18,168,101,0.38);
  background: rgba(18,168,101,0.10);
  font-weight: 600;
  color: var(--text);
}

.pill-link:hover{
  text-decoration:none;
  background: rgba(18,168,101,0.20);
  border-color: rgba(18,168,101,0.60);
}

.list-check{
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.list-check li{
  margin: 6px 0;
}

.card{
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height: 100%;
  transition: transform 0.18s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(217,171,36,0), rgba(217,171,36,0.7), rgba(18,168,101,0.2), rgba(18,168,101,0));
  z-index: 1;
}

.card:hover{
  transform: translateY(-2px);
  border-color: rgba(18,168,101,0.4);
  box-shadow: 0 18px 34px rgba(0,0,0,0.48);
}

.card-media{
  width:100%;
  aspect-ratio: 16 / 8.5;
  background: linear-gradient(180deg, rgba(18,168,101,0.18), rgba(0,0,0,0.1));
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow:hidden;
}

.card-media img{
  width:100%;
  height:100%;
  object-fit: contain;
  background: rgba(0,0,0,0.25);
  filter: contrast(1.05) saturate(1.02);
}

.card-media.category-media{
  background: #ffffff;
}

.card-media.category-media img{
  background: #ffffff;
  padding: 12px;
}

.card-media.battery-media{
  background: linear-gradient(180deg, rgba(18,168,101,0.18), rgba(0,0,0,0.1));
}

.card-media.battery-media img{
  background: transparent;
  padding: 0;
  object-fit: cover;
  filter: none;
}

.card-media.category-media.split-product{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #ffffff;
}

.card-media.category-media.split-product img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
  filter: none;
}

.card-media.media-dual{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.card-media.media-dual img{
  object-fit: cover;
  background: #ffffff;
  padding: 0;
  filter: none;
}

.card-media.media-triple{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.card-media.media-triple img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
  padding: 0;
  filter: none;
}

.card-body{
  padding: 21px 20px 22px;
}

.card h3{
  margin: 0 0 12px;
  text-align:left;
  font-size: 20px;
  line-height: 1.25;
  color: #f5f7f6;
  text-shadow: none;
}

.card p{
  margin:0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.58;
}

.card-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.inline-brand-logo{
  width: auto;
  max-width: 150px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.16));
}

.feed-panels{
  display: grid;
  gap: 14px;
}

.feed-panel{
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.018)),
    rgba(255,255,255,0.02);
  box-shadow: var(--shadow-soft);
}

.feed-panel[open]{
  border-color: rgba(18,168,101,0.32);
}

.feed-summary{
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: 700;
  color: #f5f7f6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feed-summary::-webkit-details-marker{
  display: none;
}

.feed-summary::after{
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
}

.feed-panel[open] .feed-summary::after{
  content: "−";
  color: #ffffff;
}

.feed-panel-body{
  padding: 0 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.feed-panel-body p{
  margin: 16px 0 12px;
}

.feed-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.feed-list li + li{
  margin-top: 8px;
}

.feed-page .hero-card{
  background:
    radial-gradient(1100px 420px at 10% 0%, rgba(176, 120, 56, 0.20), transparent 58%),
    radial-gradient(900px 360px at 100% 10%, rgba(102, 65, 30, 0.16), transparent 62%),
    linear-gradient(180deg, rgba(42,26,14,0.92), rgba(17,13,10,0.92));
  border-color: rgba(176, 120, 56, 0.28);
}

.feed-page .hero-card::before{
  background: linear-gradient(90deg, rgba(186,138,70,0.96), rgba(117,74,35,0.9));
}

.feed-page .section-kicker{
  color: #e7d7c2;
}

.feed-page .section-kicker::before{
  background: linear-gradient(90deg, rgba(191,146,78,0.98), rgba(133,86,41,0.42));
}

.feed-page .card{
  border-color: rgba(176, 120, 56, 0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018)),
    linear-gradient(180deg, rgba(53,33,18,0.22), rgba(20,14,10,0.08)),
    rgba(20,17,14,0.92);
}

.feed-page .card::after{
  opacity: 0.22;
  background: repeating-linear-gradient(
    90deg,
    rgba(191,146,78,0.09),
    rgba(191,146,78,0.09) 1px,
    rgba(255,255,255,0.00) 1px,
    rgba(255,255,255,0.00) 10px
  );
}

.feed-card-drop{
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}

.feed-card-drop summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #f0e7da;
  font-weight: 700;
}

.feed-card-drop summary::-webkit-details-marker{
  display: none;
}

.feed-card-drop summary::after{
  content: "+";
  color: #d8b57b;
  font-size: 22px;
  line-height: 1;
}

.feed-card-drop[open] summary::after{
  content: "−";
}

.feed-card-drop .feed-list{
  margin-top: 12px;
}

.card-list{
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.card-list li{
  margin: 6px 0;
}

.service-icon{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #f8fcfa 0%, #eaf3ee 100%);
}

.hero-panel{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 14px 14px 12px;
}

.utility-band{
  margin-top: 10px;
  background: linear-gradient(180deg, #d9ab24 0%, #bf8910 100%);
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(0,0,0,0.22);
}

.utility-band-inner{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.utility-item{
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  padding: 12px 20px;
  color: #171203;
  text-decoration: none;
  border-left: 1px solid rgba(0,0,0,0.16);
  transition: background 0.18s ease;
}

.utility-item:first-child{
  border-left: none;
}

.utility-item:hover{
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

.utility-icon{
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255,255,255,0.18);
  padding: 8px;
}

.utility-icon svg{
  width: 100%;
  height: 100%;
  display: block;
}

.utility-copy strong{
  display: block;
  font-size: 16px;
  line-height: 1.1;
  color: #161103;
}

.utility-copy span{
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
  color: rgba(22,17,3,0.86);
}

.shop-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.shop-card{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.shop-card::before{
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(217,171,36,0.85), rgba(18,168,101,0.45));
  opacity: 0.8;
}

.shop-card:hover{
  transform: translateY(-3px);
  border-color: rgba(18,168,101,0.4);
  box-shadow: 0 18px 32px rgba(0,0,0,0.44);
  text-decoration: none;
}

.shop-media{
  aspect-ratio: 4 / 3;
  background: #f4f6f5;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.shop-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f4f6f5;
  filter: none;
}

.shop-media.contain-media{
  background: #ffffff;
}

.shop-media.contain-media img{
  object-fit: contain;
  padding: 10px;
}

.shop-media.toolbox-media{
  background: #ffffff;
}

.shop-media.toolbox-media img{
  background: #ffffff;
  padding: 14px;
}

.shop-media.split-media{
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.shop-media.split-media img{
  border-right: 1px solid rgba(255,255,255,0.08);
}

.shop-media.split-media img:last-child{
  border-right: none;
}

.store-gallery{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.photo-card{
  min-height: 180px;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow-soft);
}

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

.photo-card-wide,
.photo-card-tall{
  grid-column: auto;
  grid-row: auto;
}

.contact-hero{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background:
    radial-gradient(520px 220px at 100% 0%, rgba(217,171,36,0.22), transparent 60%),
    radial-gradient(420px 240px at 0% 100%, rgba(18,168,101,0.16), transparent 62%),
    linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.contact-hero::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 64%, rgba(217,171,36,0.1) 64% 66%, transparent 66% 100%),
    linear-gradient(160deg, transparent 0 76%, rgba(18,168,101,0.08) 76% 78%, transparent 78% 100%);
}

.contact-hero .hero-inner{
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.contact-shell{
  padding-bottom: 0;
}

.contact-box-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.contact-box{
  padding: 22px 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  min-height: 100%;
}

.contact-box:nth-child(2n){
  border-right: none;
}

.contact-box-primary{
  background: linear-gradient(180deg, rgba(217,171,36,0.04), rgba(255,255,255,0.01));
}

.contact-box h3{
  margin-top: 0;
  margin-bottom: 12px;
}

.contact-box p{
  margin: 0;
}

.contact-box-map{
  padding: 0;
  overflow: hidden;
}

.contact-layout{
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: start;
}

.contact-stack{
  display: grid;
  gap: 18px;
}

.contact-card .card-body{
  padding: 20px 20px 22px;
}

.info-list{
  display: grid;
  gap: 14px;
}

.info-list div{
  display: grid;
  gap: 3px;
}

.info-list strong{
  color: #ffffff;
  font-size: 15px;
}

.info-list span{
  color: var(--muted);
  font-size: 14px;
}

.info-list-compact{
  gap: 10px;
}

.contact-mini-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.contact-mini-grid > div{
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    rgba(0,0,0,0.12);
}

.contact-mini-grid strong{
  color: #ffffff;
  font-size: 15px;
}

.contact-mini-grid span{
  color: var(--muted);
  font-size: 14px;
}

.map-card{
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(217,171,36,0.08), rgba(18,168,101,0.04));
  box-shadow: var(--shadow-soft);
  max-width: 300px;
  justify-self: end;
}

.map-card-head{
  padding: 16px 18px 8px;
}

.map-card-head h3{
  margin: 0;
}

.map-embed{
  min-height: 220px;
  height: 220px;
  aspect-ratio: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.map-embed iframe{
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  display: block;
  filter: grayscale(0.12) contrast(1.02);
}

.nexpart-hero-media{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(245,247,249,0.94)),
    linear-gradient(135deg, rgba(217,171,36,0.08), rgba(18,168,101,0.04));
  padding: 28px;
}

.nexpart-hero-media img{
  object-fit: contain;
  padding: 8px;
}

.auction-hero-media{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(243,244,246,0.93)),
    linear-gradient(135deg, rgba(217,171,36,0.08), rgba(18,168,101,0.03));
  padding: 26px;
}

.auction-hero-media img{
  object-fit: contain;
  padding: 8px;
}

.hero-inner .list-check + .hero-actions{
  margin-top: 22px;
}

.service-hero-showcase{
  padding: 0;
  overflow: visible;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.service-page .hero{
  padding-top: 8px;
  padding-bottom: 18px;
}

.service-hero-showcase.hero-card{
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.service-hero-showcase.hero-card::before{
  display: none;
}

.service-banner-logo{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 0;
  min-height: 96px;
  background:
    linear-gradient(90deg, rgba(8,12,10,0.94), rgba(14,24,18,0.9), rgba(8,12,10,0.94)),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 24px rgba(0,0,0,0.26);
}

.service-banner-logo img{
  width: min(100%, 1120px);
  max-height: 64px;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: screen;
}

@supports not (mix-blend-mode: screen){
  .brand-logo,
  .service-banner-logo img{
    filter: brightness(1.08);
  }
}

@media (max-width: 700px){
  .service-hero-showcase{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .service-banner-logo{
    min-height: 74px;
    padding: 12px 14px;
  }

  .service-banner-logo img{
    width: 100%;
    max-height: 46px;
  }

  .brand-logo{
    width: 78px;
    height: 42px;
  }
}

.shop-body{
  padding: 16px 16px 18px;
}

.card-media.clean-shot{
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(31, 176, 110, 0.26), transparent 62%),
    linear-gradient(180deg, rgba(18,168,101,0.22), rgba(6,14,10,0.24));
}

.card-media.clean-shot img{
  object-fit: contain;
  padding: 6px;
  background: transparent;
}

.card-media.counter-match-media{
  background: linear-gradient(180deg, rgba(18,168,101,0.18), rgba(0,0,0,0.1));
}

.card-media.counter-match-media img{
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin: 10px;
  object-fit: cover;
  background: transparent;
  border-radius: 10px;
}

.card-media.delivery-logo{
  display: grid;
  place-items: center;
  background:
    radial-gradient(110% 120% at 50% 10%, rgba(18,168,101,0.18), transparent 58%),
    linear-gradient(180deg, rgba(7,12,9,0.28), rgba(0,0,0,0.14));
}

.card-media.delivery-logo img{
  width: min(84%, 320px);
  height: auto;
  object-fit: contain;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.28));
}

.shop-body strong{
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.22;
}

.shop-body span{
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.category-banner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  overflow: hidden;
}

.home-support-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}

.banner-copy{
  padding: 34px;
}

.banner-copy h2{
  margin-top: 0;
}

.banner-media{
  min-height: 100%;
  border-left: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.banner-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signup-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.signup-inline{
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(240px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.signup-copy .list-check{
  margin-bottom: 0;
}

.signup-actions{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
}

.signup-actions .btn{
  width: 100%;
}

.account-box{
  padding: 20px 20px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    rgba(255,255,255,0.02);
}

.account-box h3{
  margin-top: 0;
}

.featured-brands{
  padding-top: 10px;
}

/* Grit effect */
.card::after{
  content:"";
  display:block;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.07),
    rgba(255,255,255,0.07) 1px,
    rgba(255,255,255,0.00) 1px,
    rgba(255,255,255,0.00) 10px
  );
  opacity: 0.35;
}

/* =========================
   Footer
   ========================= */

.site-footer{
  border-top: 1px solid var(--line);
  padding: 34px 0 40px;
  margin-top: 24px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(5,8,6,0.25), rgba(0,0,0,0.38));
}

.footer-inner{
  display:flex;
  flex-wrap:wrap;
  gap: 16px;
  align-items:flex-start;
  justify-content:space-between;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px 18px;
  align-items:center;
}

.footer-links a{
  font-size: 13px;
  color: var(--muted-2);
  text-decoration: none;
}

.footer-links a:hover{
  color: #ffffff;
  text-decoration: underline;
}

.footer-social{
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-social-link:hover{
  text-decoration: none;
}

.footer-social-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: rgba(243,246,244,0.88);
  transition: transform 0.18s ease, color 0.18s ease;
}

.footer-social-link:hover .footer-social-icon{
  transform: translateY(-1px);
  color: #ffffff;
}

.footer-social-icon svg{
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.small{
  font-size: 15px;
  color: var(--muted-2);
}

/* =========================
   Responsiveness
   ========================= */

@media (max-width: 1080px){
  .nav{
    justify-content: flex-start;
    gap: 8px 0;
  }

  .nav a{
    padding: 12px 9px 11px;
    font-size: 13px;
  }

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

  .hero-media{
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    min-height: 280px;
  }

  .shop-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .store-gallery{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card-wide,
  .photo-card-tall{
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .contact-layout{
    grid-template-columns: 1fr;
  }

  .map-card{
    max-width: 100%;
    justify-self: stretch;
  }

  .category-banner{
    grid-template-columns: 1fr;
  }

  .contact-box-grid{
    grid-template-columns: 1fr;
  }

  .contact-box{
    border-right: none;
  }

  .contact-mini-grid{
    grid-template-columns: 1fr;
  }

  .about-home-shell,
  .community-home-head,
  .reviews-head{
    grid-template-columns: 1fr;
  }

  .community-grid,
  .reviews-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .banner-media{
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    min-height: 260px;
  }

}

@media (max-width: 980px){
  :root{ --base-font: 16px; }

  .header-inner{
    align-items:flex-start;
  }

  .nav{
    margin-top: 10px;
  }

  .grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2{
    grid-template-columns: 1fr;
  }

  .utility-band-inner{
    grid-template-columns: 1fr;
  }

  .shop-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-gallery{
    grid-template-columns: 1fr;
  }

  .signup-grid{
    grid-template-columns: 1fr;
  }

  .hero{
    padding: 54px 0 34px;
  }

  .hero-inner{
    padding: 28px;
  }

  .hero-logo{
    padding: 28px 28px 10px;
  }

  .section{
    padding: 48px 0 52px;
  }

  .section::before{
    left: 20px;
    right: 20px;
  }

  .about-home-story,
  .about-home-panel,
  .community-home{
    padding-left: 26px;
    padding-right: 26px;
  }

  .about-panel-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px){
  .menu-btn{
    display:inline-flex;
    margin-left: auto;
  }

  .header-inner{
    align-items:center;
  }

  .nav{
    display:none;
    position:absolute;
    right: 20px;
    top: calc(100% + 8px);
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    min-width: 220px;
    width: min(260px, calc(100vw - 40px));
    background: rgba(10,10,10,0.96);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 10px;
    margin-top: 0;
    margin-left: 0;
    z-index: 60;
  }

  .nav.is-open{
    display:flex;
  }

  .nav a{
    padding: 12px 12px;
    color: var(--text);
    box-shadow: none;
    font-size: 14px;
    text-transform: none;
  }

  .nav-item{
    width: 100%;
  }

  .drop-trigger{
    width: 100%;
    justify-content: space-between;
  }

  .drop-menu{
    position: static;
    margin: 6px 0 2px;
    min-width: 0;
    width: 100%;
    padding: 6px;
    border-radius: 10px;
    box-shadow: none;
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
  }

  .about-panel-grid,
  .community-grid,
  .reviews-grid{
    grid-template-columns: 1fr;
  }

  .about-home-story,
  .about-home-panel,
  .community-home,
  .reviews-shell{
    padding: 22px;
  }

  .reviews-score{
    text-align: left;
    min-width: 0;
  }

  .dropdown .drop-menu{
    display: none;
    grid-template-rows: none;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 0;
  }

  .dropdown.is-open .drop-menu{
    display: block;
  }

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

  .grid-2{
    grid-template-columns: 1fr;
  }

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

  .photo-card,
  .photo-card-wide,
  .photo-card-tall{
    min-height: 220px;
  }

  .map-embed,
  .map-embed iframe{
    min-height: 200px;
    height: 200px;
  }

  .banner-copy{
    padding: 24px;
  }

  .card h3{
    font-size: 21px;
  }

  .card p{
    font-size: 16px;
    line-height: 1.58;
  }

  .brand-logo{
    width: 54px;
    height: 54px;
  }

  .brand .name{
    font-size: 21px;
  }

  .brand .tag{
    font-size: 13px;
  }

  .footer-links{
    width: 100%;
  }

  .hero{
    padding: 42px 0 28px;
  }

  .hero-logo{
    padding: 24px 24px 8px;
  }

  .hero-inner{
    padding: 24px;
  }

  .hero h1{
    margin-bottom: 14px;
  }

  .hero p{
    margin-bottom: 22px;
  }

  .hero-actions{
    margin-bottom: 22px;
  }

  .signup-inline{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-support-grid,
  .category-banner{
    grid-template-columns: 1fr;
  }

  .signup-actions{
    width: 100%;
  }

  .section{
    padding: 40px 0 44px;
  }

  .brand-bar{
    padding: 12px 10px 10px;
  }

  .brand-bar-head{
    margin-bottom: 8px;
    font-size: 13px;
  }

  .supplier-logo{
    width: 144px;
    height: 62px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
}
