:root {
  --black: #050505;
  --charcoal: #111;
  --panel: #151515;
  --paper: #f5f5f2;
  --soft: #d8d8d2;
  --muted: #9b9b96;
  --line: rgba(245, 245, 242, 0.14);
  --dark-line: rgba(5, 5, 5, 0.14);
  --accent: #b7a06a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 64px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.brand span {
  max-width: 220px;
  line-height: 1;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.94rem;
}

nav a:hover {
  color: var(--paper);
}

.menu-button {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.menu-button span {
  display: block;
  width: 15px;
  height: 2px;
  background: currentColor;
  transition: background 160ms ease;
}

.menu-button:hover,
.menu-button:focus-visible,
.menu-button[aria-expanded="true"] {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--black);
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--black);
}

.hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 100vh;
  padding: 120px clamp(18px, 5vw, 72px) clamp(54px, 8vw, 104px);
  overflow: hidden;
  clip-path: inset(0);
}

.hero > .hero-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: 68% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.18) 82%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), transparent 48%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.hero-mark {
  width: clamp(86px, 11vw, 136px);
  margin-bottom: 28px;
  transform-style: preserve-3d;
  animation: hero-mark-flip 900ms cubic-bezier(0.2, 0.78, 0.2, 1) 220ms both;
}

@keyframes hero-mark-flip {
  0% {
    opacity: 0;
    transform: rotateY(-180deg) scale(0.92);
  }

  55% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
  }
}

.eyebrow {
  display: block;
  margin: 0 0 14px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: none;
  clip-path: none;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  font-size: clamp(4rem, 10vw, 9.2rem);
  line-height: 0.84;
}

h2 {
  font-size: clamp(2.3rem, 5.2vw, 5.5rem);
  line-height: 0.92;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.95rem);
  line-height: 1;
}

.hero-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--soft);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

.hero-content > p:not(.eyebrow) + p {
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.button.primary,
.button.add {
  background: var(--paper);
  color: var(--black);
}

.button.ghost {
  border-color: rgba(245, 245, 242, 0.28);
  background: transparent;
  color: var(--paper);
}

.buy-band,
.formula,
.care {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.buy-band {
  background: #080808;
  border-top: 1px solid var(--line);
}

.shop-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.product-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  min-height: 186px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.row-img {
  height: 142px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}

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

.product-size {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.product-row p:not(.product-size) {
  max-width: 600px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.row-buy {
  display: grid;
  justify-items: end;
  gap: 14px;
}

.row-buy strong {
  font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 4vw, 4rem);
}

.button.add {
  min-width: 108px;
}

.formula {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 72px);
  background: var(--paper);
  color: var(--black);
}

.formula .eyebrow,
.formula-grid span {
  color: #6f6f69;
}

.formula-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--dark-line);
}

.formula-grid div {
  display: grid;
  grid-template-columns: 54px 0.5fr 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--dark-line);
}

.formula-grid span {
  font-weight: 900;
}

.formula-icon {
  display: block;
  width: 42px;
  height: 42px;
  color: var(--black);
}

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

.formula-icon path,
.formula-icon polygon {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.formula-grid p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.formula-benefits {
  grid-column: 2;
  padding-top: 24px;
  border-top: 1px solid var(--dark-line);
}

.formula-benefits h3 {
  margin-bottom: 18px;
}

.formula-benefits ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.formula-benefits li {
  position: relative;
  padding-left: 18px;
  color: #555;
  line-height: 1.45;
}

.formula-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--black);
  border-radius: 50%;
}

.care {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 0;
  min-height: 620px;
  padding: 0;
  background: var(--charcoal);
}

.care-image {
  min-height: 420px;
  overflow: hidden;
}

.care-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.care-copy {
  align-self: center;
  padding: clamp(34px, 6vw, 72px);
}

.care-copy > p {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: 1.04rem;
  line-height: 1.68;
}

.care-steps {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.care-steps div {
  display: grid;
  grid-template-columns: 44px minmax(110px, 0.42fr) 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.care-steps span,
.care-steps strong {
  color: var(--paper);
  font-weight: 900;
  text-transform: uppercase;
}

.care-steps p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 18px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: var(--black);
  border-top: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.site-footer img {
  width: 70px;
}

.site-footer .made-usa-badge {
  width: clamp(74px, 12vw, 112px);
  max-width: 100%;
  opacity: 0.72;
}

.site-footer p {
  margin: 10px 0 0;
}

.powered-by {
  padding: 0 clamp(18px, 5vw, 72px) 24px;
  background: var(--black);
  color: #555;
  font-size: 0.82rem;
  text-align: center;
}

.powered-by a {
  color: #555;
}

.powered-by a:hover {
  color: var(--muted);
}

address {
  display: grid;
  gap: 6px;
  font-style: normal;
  text-align: center;
}

address a {
  color: var(--paper);
  font-weight: 900;
}

.admin-float {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 25;
  padding: 7px 10px;
  border: 1px solid rgba(245, 245, 242, 0.18);
  border-radius: 999px;
  background: #050505;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0.02;
  transform: scale(0.86);
  transition: opacity 160ms ease, transform 160ms ease;
}

.admin-float:hover,
.admin-float:focus-visible {
  opacity: 1;
  transform: scale(1);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.cart-drawer.open {
  display: block;
}

.cart-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100vw, 420px);
  height: 100%;
  padding: 22px;
  background: var(--paper);
  color: var(--black);
  box-shadow: var(--shadow);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.cart-head h2 {
  font-size: 2.1rem;
}

.cart-head button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
}

.cart-items {
  display: grid;
  gap: 14px;
  padding: 18px 0;
  overflow: auto;
}

.empty-cart {
  color: #6c6255;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-line strong,
.cart-line span {
  display: block;
}

.cart-line span {
  margin-top: 4px;
  color: #6c6255;
}

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

.qty button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1.2rem;
}

.checkout {
  width: 100%;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-button {
    display: inline-flex;
    justify-self: end;
  }

  nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    grid-column: 1 / -1;
    padding: 8px;
    border: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.94);
    backdrop-filter: blur(16px);
  }

  nav.open {
    display: grid;
  }

  nav a {
    display: block;
    padding: 11px 12px;
    border-bottom: 0;
    border-radius: 3px;
    color: var(--paper);
    font-size: 1.12rem;
    font-family: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
    text-transform: uppercase;
    transition: background 160ms ease, color 160ms ease;
  }

  nav a:hover,
  nav a:focus-visible {
    background: var(--paper);
    color: var(--black);
    outline: 0;
  }

  .hero {
    min-height: 800px;
  }

  .hero > .hero-bg {
    object-position: 63% center;
  }

  .product-row,
  .formula,
  .care {
    grid-template-columns: 1fr;
  }

  .row-buy {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .formula-grid div {
    grid-template-columns: 44px 1fr;
  }

  .formula-grid p {
    grid-column: 2;
  }

  .formula-benefits {
    grid-column: auto;
  }

  .care-steps div {
    grid-template-columns: 44px 1fr;
  }

  .care-steps p {
    grid-column: 2;
  }

  .site-footer {
    display: grid;
    place-items: center;
    justify-items: center;
    text-align: center;
  }

  .site-footer > div,
  .site-footer address {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  address {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 760px;
    padding-top: 96px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5.8rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .shop-intro {
    display: grid;
  }

  .row-img {
    height: 210px;
  }

  .formula-benefits ul {
    grid-template-columns: 1fr;
  }

}

.admin-body,
.wholesale-body {
  min-height: 100vh;
  background: #f3f3f0;
  color: #101010;
}

.login-shell {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: #050505;
}

.login-panel {
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid rgba(245, 245, 242, 0.16);
  border-radius: 12px;
  background: #111;
  color: var(--paper);
  box-shadow: var(--shadow);
}

.login-panel img {
  width: 86px;
  margin-bottom: 20px;
}

.login-panel h1 {
  font-size: clamp(4rem, 12vw, 6rem);
  line-height: 0.85;
}

.login-panel label {
  display: grid;
  gap: 8px;
  margin: 22px 0 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.login-panel input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
  color: var(--paper);
  padding: 0 12px;
  font-size: 1rem;
}

.login-error {
  margin: 14px 0 0;
  color: #d18b8b;
}

.admin-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 44px);
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.admin-header nav {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  display: flex;
  grid-column: auto;
  justify-content: end;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper);
  backdrop-filter: none;
}

.admin-header nav a {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--paper);
}

.admin-header nav a:hover {
  background: var(--paper);
  color: var(--black);
}

.admin-body .admin-panel a:not(.button) {
  color: #555;
  text-decoration: none;
}

.admin-body .admin-panel a:not(.button):hover {
  color: #111;
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  gap: 18px;
  width: min(1440px, calc(100% - 32px));
  margin: 18px auto 40px;
}

.admin-hero {
  position: sticky;
  top: 92px;
  align-self: start;
  padding: 22px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(5, 5, 5, 0.08);
}

.admin-hero h1 {
  font-size: clamp(3.6rem, 6vw, 5.2rem);
  line-height: 0.9;
}

.admin-hero p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #555;
  line-height: 1.55;
}

.admin-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.admin-actions .button {
  width: 100%;
}

.panel-head .button {
  width: auto;
  min-height: 38px;
  padding: 0 14px;
  white-space: nowrap;
}

.admin-body .button.ghost {
  border-color: rgba(5, 5, 5, 0.28);
  background: #151515;
  color: #fff;
}

.admin-body .button.ghost:hover {
  background: #000;
}

.admin-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: #555;
  font-size: 0.92rem;
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-panel,
.contact-form,
.contact-copy {
  padding: 20px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(5, 5, 5, 0.06);
}

.admin-panel h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.admin-panel label,
.contact-form label {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  color: #333;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-panel input,
.admin-panel textarea,
.admin-panel select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 6px;
  background: #f8f8f6;
  color: #111;
  padding: 11px 12px;
  font: 400 0.98rem Arial, Helvetica, sans-serif;
  text-transform: none;
}

.admin-panel textarea,
.contact-form textarea {
  resize: vertical;
}

.admin-panel input:focus,
.admin-panel textarea:focus,
.admin-panel select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #111;
  outline: 2px solid rgba(5, 5, 5, 0.08);
}

.upload-field {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(180px, 0.8fr) 84px;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: #f7f7f4;
}

.upload-field.compact {
  grid-template-columns: 1fr;
}

.upload-field strong,
.upload-field span {
  display: block;
}

.upload-field strong {
  font-size: 0.84rem;
  text-transform: uppercase;
}

.upload-field span {
  margin-top: 3px;
  color: #666;
  font-size: 0.82rem;
}

.upload-field input {
  padding: 8px;
  background: #fff;
}

.upload-field img {
  width: 84px;
  height: 60px;
  object-fit: cover;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 6px;
  background: #fff;
}

.upload-field.compact img {
  width: 100%;
  height: 120px;
}

.admin-grid,
.product-admin-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

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

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

.admin-panel fieldset {
  min-width: 0;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  background: #f7f7f4;
}

.admin-panel legend {
  padding: 0 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-panel legend {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-delete {
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 999px;
  background: #fff;
  color: #333;
  padding: 4px 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.mini-delete:hover {
  background: #111;
  color: #fff;
}

.check-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px !important;
}

.check-row input {
  width: auto;
}

.leads-panel {
  grid-column: 2;
}

.lead-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.lead-card h3 {
  font-size: 1.8rem;
}

.lead-card p {
  margin: 6px 0 0;
  color: #555;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 18px;
  width: min(1100px, calc(100% - 32px));
  margin: 36px auto;
}

.contact-copy h1 {
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.86;
}

.contact-copy p:not(.eyebrow) {
  color: #555;
  line-height: 1.6;
}

.wholesale-page {
  background: var(--black);
  color: var(--paper);
}

.wholesale-shell {
  background: var(--black);
}

.wholesale-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 76vh;
  padding: 120px clamp(18px, 5vw, 72px) clamp(54px, 8vw, 90px);
  overflow: hidden;
  clip-path: inset(0);
  isolation: isolate;
}

.wholesale-page .wholesale-hero > .wholesale-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 68% center;
}

.wholesale-page .wholesale-hero > .hero-shade {
  z-index: 1;
}

.wholesale-copy {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.wholesale-copy h1 {
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.84;
}

.wholesale-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--soft);
  font-size: clamp(1.06rem, 1.6vw, 1.22rem);
  line-height: 1.65;
}

@media (max-width: 560px) {
  .wholesale-hero {
    min-height: 560px;
    padding: 112px 24px 56px;
    overflow: hidden;
    contain: paint;
  }

  .wholesale-page .wholesale-hero > .wholesale-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 62% center;
  }

  .wholesale-page .wholesale-hero > .hero-shade {
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.88) 54%, rgba(5, 5, 5, 0.62) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.18) 58%);
  }

  .wholesale-copy {
    z-index: 2;
    width: min(420px, 100%);
  }

  .wholesale-copy h1 {
    font-size: clamp(3.35rem, 16vw, 5.6rem);
  }

  .wholesale-copy p:not(.eyebrow) {
    color: rgba(245, 245, 242, 0.78);
    font-size: 1rem;
    line-height: 1.55;
  }
}

.wholesale-form-section {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #080808;
}

.wholesale-page .contact-form {
  width: min(760px, 100%);
  margin: 0 auto;
  border-color: var(--line);
  background: transparent;
  box-shadow: none;
}

.wholesale-page .contact-form label {
  color: var(--paper);
}

.wholesale-page .contact-form input,
.wholesale-page .contact-form textarea {
  border-color: var(--line);
  background: #111;
  color: var(--paper);
}

.wholesale-page .contact-form input:focus,
.wholesale-page .contact-form textarea:focus {
  border-color: var(--paper);
  outline: 2px solid rgba(245, 245, 242, 0.08);
}

.shop-page {
  min-height: 100vh;
  background: var(--black);
}

.shop-hero {
  padding: 140px clamp(18px, 5vw, 72px) clamp(34px, 6vw, 72px);
  background-image:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.18) 82%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.92), transparent 48%),
    var(--shop-hero-image, url("../images/5139p+7rOZL._SL1500_.jpg"));
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.shop-hero h1 {
  max-width: 900px;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.84;
}

.shop-hero p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.2rem);
  line-height: 1.6;
}

.shop-list-section {
  border-top: 0;
}

@media (max-width: 1100px) {
  .admin-shell,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .admin-hero {
    position: static;
  }

  .leads-panel {
    grid-column: auto;
  }

  .admin-grid,
  .product-admin-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .admin-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .admin-header nav {
    justify-content: end;
    gap: 6px;
  }

  .admin-header nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  .wholesale-body .admin-header .brand span {
    max-width: 120px;
  }


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

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