@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --navy:       #0A1628;
  --navy-mid:   #0F2040;
  --steel:      #1E3A5F;
  --steel-light:#2A4E7F;
  --amber:      #F59E0B;
  --amber-dark: #D97706;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --slate:      #94A3B8;
  --slate-light:#CBD5E1;
  --red:        #EF4444;
  --green:      #10B981;
  --border:     rgba(148,163,184,0.15);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;
  --radius:     4px;
  --radius-lg:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--amber); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.display { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; line-height: 1.0; }
h1,h2,h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
.eyebrow {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--amber);
}
.label {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--navy); }
.section--mid  { background: var(--navy-mid); }
.section--steel{ background: var(--steel); }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================================
   SIGNATURE: DIAGONAL TAPE STRIPE
   ============================================================ */
.tape-stripe {
  position: relative;
  overflow: hidden;
}
.tape-stripe::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 340px; height: 80px;
  background: var(--amber);
  transform: rotate(-6deg);
  opacity: .08;
  pointer-events: none;
}
.tape-stripe::after {
  content: '';
  position: absolute;
  top: -20px; right: -60px;
  width: 200px; height: 40px;
  background: var(--amber);
  transform: rotate(-6deg);
  opacity: .05;
  pointer-events: none;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy-mid);
  border-bottom: 2px solid var(--amber);
  box-shadow: var(--shadow);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 24px;
  max-width: 1280px; margin: 0 auto;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.site-logo .logo-icon {
  width: 40px; height: 40px;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.site-logo .logo-text {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--white);
}
.site-logo .logo-text span { color: var(--amber); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.header-contact {
  font-size: .85rem; color: var(--slate);
}
.header-contact a { color: var(--amber); }

/* Primary nav */
.nav-primary {
  background: var(--steel);
  border-top: 1px solid var(--border);
}
.nav-primary ul {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
}
.nav-primary a {
  display: block; padding: 10px 14px;
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--slate-light);
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-primary a:hover,
.nav-primary a.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
  opacity: 1;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none; border: 2px solid var(--amber);
  color: var(--amber); padding: 6px 10px;
  font-size: 1.2rem; cursor: pointer;
  font-family: var(--font-display); font-weight: 700;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  border-radius: var(--radius);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,.35); opacity: 1; }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--amber);
  color: var(--navy);
}
.btn-primary:hover { background: var(--amber-dark); }
.btn-secondary {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}
.btn-secondary:hover { background: rgba(245,158,11,.1); }
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.15rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--navy-mid);
  overflow: hidden;
}
.hero::before {
  content: 'LIQUIDATION';
  position: absolute;
  right: -40px; top: 20px;
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 900; letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: .04;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.12);
  border: 1px solid rgba(245,158,11,.3);
  padding: 6px 14px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 20px;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 em { color: var(--amber); font-style: normal; }
.hero-desc { color: var(--slate-light); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 900;
  color: var(--amber);
  line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: var(--slate); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%; border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-image-badge {
  position: absolute; bottom: -16px; left: -16px;
  background: var(--amber);
  color: var(--navy);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-weight: 900; font-size: 1.1rem;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--steel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 16px;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--slate-light);
}
.trust-item .trust-icon { color: var(--amber); font-size: 1.2rem; }

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header { margin-bottom: 48px; }
.section-header.text-center .section-title::after {
  margin: 12px auto 0;
}
.section-title {
  position: relative; display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: var(--amber);
  margin-top: 12px;
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--steel);
  border: 1px solid var(--border);
  padding: 24px 16px;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  border-radius: var(--radius);
  display: block;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--amber);
  box-shadow: 0 8px 24px rgba(245,158,11,.2);
  opacity: 1; color: var(--white);
}
.cat-card .cat-icon { font-size: 2.2rem; margin-bottom: 12px; }
.cat-card .cat-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1rem;
  text-transform: uppercase; line-height: 1.2;
}
.cat-card .cat-count { font-size: .78rem; color: var(--slate); margin-top: 4px; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--steel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5);
}
.product-card-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  background: var(--navy-mid);
}
.product-card-img-placeholder {
  width: 100%; aspect-ratio: 4/3;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  border-radius: 2px;
  margin-bottom: 10px;
}
.tag-returns { background: rgba(245,158,11,.15); color: var(--amber); }
.tag-mixed   { background: rgba(239,68,68,.15);  color: var(--red); }
.tag-overstock { background: rgba(16,185,129,.15); color: var(--green); }
.product-card-name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem;
  text-transform: uppercase; line-height: 1.2;
  margin-bottom: 8px;
}
.product-card-meta { color: var(--slate); font-size: .85rem; margin-bottom: 12px; }
.product-card-price {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--amber); line-height: 1;
  margin-bottom: 4px;
}
.product-card-units { font-size: .8rem; color: var(--slate); margin-bottom: 16px; }
.product-card-actions { display: flex; gap: 10px; margin-top: auto; }
.product-card-actions .btn { flex: 1; text-align: center; justify-content: center; font-size: .85rem; padding: 10px 12px; }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.product-gallery { position: sticky; top: 90px; }
.product-main-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
}
.product-thumbs {
  display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap;
}
.product-thumb {
  width: 72px; height: 72px; object-fit: cover;
  border: 2px solid var(--border); border-radius: var(--radius);
  cursor: pointer; transition: border-color .2s;
  background: var(--navy-mid);
}
.product-thumb:hover, .product-thumb.active { border-color: var(--amber); }
.product-info-header { margin-bottom: 24px; }
.product-price-block { margin: 24px 0; padding: 24px; background: var(--navy-mid); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.product-main-price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--amber); line-height: 1; }
.product-units-per { color: var(--slate); font-size: .9rem; margin-top: 4px; }
.product-features { margin: 24px 0; }
.product-feature-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.product-feature-item:last-child { border-bottom: none; }
.feature-check { color: var(--green); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.product-ctas { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.product-ctas .btn { flex: 1; justify-content: center; }

/* Bulk pricing table */
.bulk-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.bulk-table th {
  background: var(--navy-mid); padding: 12px 16px;
  font-family: var(--font-display); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--slate); text-align: left; border-bottom: 2px solid var(--border);
}
.bulk-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.bulk-table tr:last-child td { border-bottom: none; }
.bulk-table .savings { color: var(--green); font-weight: 600; }
.bulk-table .featured td { background: rgba(245,158,11,.08); }

/* Manifest */
.manifest-block {
  background: var(--navy-mid); padding: 24px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  margin: 24px 0;
}
.manifest-block h3 { margin-bottom: 16px; color: var(--amber); font-size: 1.1rem; }
.manifest-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.manifest-row:last-child { border-bottom: none; }
.manifest-row span:last-child { color: var(--amber); font-weight: 600; }

/* ============================================================
   FORMS
   ============================================================ */
.form-section {
  background: var(--navy-mid);
  padding: 40px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.form-section h2 { margin-bottom: 8px; }
.form-desc { color: var(--slate); margin-bottom: 32px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-family: var(--font-display); font-size: .8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  color: var(--slate);
}
.form-label .required { color: var(--amber); }
.form-input, .form-select, .form-textarea {
  background: var(--navy);
  border: 1.5px solid var(--border);
  color: var(--white);
  padding: 12px 16px;
  font-family: var(--font-body); font-size: .95rem;
  border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--slate); }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--navy); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit-row { grid-column: 1 / -1; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.form-note { font-size: .8rem; color: var(--slate); }
.form-message {
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  display: none;
  grid-column: 1 / -1;
}
.form-message.success { background: rgba(16,185,129,.15); border: 1px solid var(--green); color: var(--green); }
.form-message.error   { background: rgba(239,68,68,.15);  border: 1px solid var(--red);   color: var(--red); }

/* Payment badges */
.payment-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0;
}
.payment-badge {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--navy); border: 1px solid var(--border);
  border-radius: 2px; font-size: .82rem; font-weight: 600;
  color: var(--slate-light);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.faq-question {
  width: 100%; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .04em;
  cursor: pointer; text-align: left; gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--amber); }
.faq-arrow { color: var(--amber); font-size: 1.2rem; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px; color: var(--slate-light); font-size: .95rem; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 20px 20px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.review-summary {
  background: var(--steel); padding: 32px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); text-align: center; margin-bottom: 40px;
}
.review-big-score {
  font-family: var(--font-display); font-size: 5rem; font-weight: 900;
  color: var(--amber); line-height: 1;
}
.review-stars { color: var(--amber); font-size: 1.6rem; letter-spacing: 4px; margin: 8px 0; }
.review-count { color: var(--slate); font-size: .9rem; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px;
}
.review-card {
  background: var(--steel); padding: 24px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.review-card-stars { color: var(--amber); font-size: 1rem; margin-bottom: 8px; }
.review-card-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.review-card-text { color: var(--slate-light); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.review-card-meta { display: flex; justify-content: space-between; font-size: .78rem; color: var(--slate); }
.review-verified { color: var(--green); font-weight: 600; }

/* ============================================================
   LOCATION / BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .82rem; color: var(--slate);
  padding: 16px 0;
}
.breadcrumb a { color: var(--slate); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-sep { color: var(--border); }

/* Location grid */
.location-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px;
}
.location-card {
  background: var(--steel); border: 1px solid var(--border);
  padding: 20px; text-align: center; border-radius: var(--radius);
  text-decoration: none; color: var(--white);
  transition: border-color .2s, transform .2s;
  display: block;
}
.location-card:hover { border-color: var(--amber); transform: translateY(-3px); opacity: 1; color: var(--white); }
.location-card .loc-icon { font-size: 1.8rem; margin-bottom: 8px; }
.location-card .loc-name {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.1rem; text-transform: uppercase;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px;
}
.blog-card {
  background: var(--steel); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform .2s; display: block; text-decoration: none; color: var(--white);
}
.blog-card:hover { transform: translateY(-4px); opacity: 1; }
.blog-card-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: var(--slate);
}
.blog-card-body { padding: 24px; }
.blog-card-cat { color: var(--amber); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.blog-card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; text-transform: uppercase; line-height: 1.2; margin-bottom: 8px; }
.blog-card-excerpt { color: var(--slate-light); font-size: .88rem; line-height: 1.6; margin-bottom: 16px; }
.blog-card-meta { font-size: .78rem; color: var(--slate); }

/* ============================================================
   SHIPPING PAGE
   ============================================================ */
.shipping-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px;
}
.shipping-method-card {
  background: var(--steel); border: 1px solid var(--border);
  padding: 28px 20px; text-align: center; border-radius: var(--radius-lg);
}
.shipping-method-card .ship-icon { font-size: 2.5rem; margin-bottom: 12px; }
.shipping-method-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--amber); }
.shipping-method-card p { color: var(--slate-light); font-size: .88rem; }
.shipping-method-card .ship-time {
  display: inline-block; margin-top: 12px;
  background: rgba(245,158,11,.1); color: var(--amber);
  padding: 4px 12px; font-size: .8rem; font-weight: 700;
  font-family: var(--font-display); text-transform: uppercase;
}

/* Rate table */
.rate-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.rate-table th {
  background: var(--steel); padding: 14px 16px;
  font-family: var(--font-display); font-size: .85rem;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--amber); text-align: left;
  border-bottom: 2px solid var(--amber);
}
.rate-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: .9rem; }
.rate-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }
.rate-table .free { color: var(--green); font-weight: 700; }

/* Hub cards */
.hub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.hub-card {
  background: var(--steel); border: 1px solid var(--border);
  padding: 24px; border-radius: var(--radius-lg); text-align: center;
}
.hub-card .hub-flag { font-size: 2rem; margin-bottom: 8px; }
.hub-card h3 { color: var(--amber); font-size: 1.1rem; margin-bottom: 4px; }
.hub-card p { color: var(--slate-light); font-size: .85rem; }

/* Steps tracker */
.steps-track { display: flex; gap: 0; margin: 32px 0; }
.step-item {
  flex: 1; text-align: center; position: relative;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute; top: 20px; left: 60%; right: -40%;
  height: 2px; background: var(--border);
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--amber); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1rem;
  margin: 0 auto 12px;
}
.step-label { font-size: .8rem; color: var(--slate-light); font-weight: 600; }

/* ============================================================
   POLICY PAGES
   ============================================================ */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { font-size: 1.4rem; margin: 32px 0 12px; color: var(--amber); }
.policy-content p { color: var(--slate-light); font-size: .95rem; line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { padding-left: 20px; margin-bottom: 16px; }
.policy-content ul li { color: var(--slate-light); font-size: .95rem; margin-bottom: 8px; list-style: disc; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--amber);
  padding: 60px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg, rgba(0,0,0,.04) 0px, rgba(0,0,0,.04) 10px,
    transparent 10px, transparent 20px
  );
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--navy); font-size: clamp(2rem,5vw,3.5rem); }
.cta-band p { color: rgba(10,22,40,.7); font-size: 1.1rem; margin: 12px 0 32px; }
.cta-band .btn-primary { background: var(--navy); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--steel); }
.cta-band .btn-secondary { border-color: var(--navy); color: var(--navy); }
.cta-band .btn-secondary:hover { background: rgba(10,22,40,.1); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-mid);
  border-top: 2px solid var(--amber);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display); font-weight: 900; font-size: 1.3rem;
  text-transform: uppercase; color: var(--white); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand .footer-logo .logo-box {
  background: var(--amber); width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.footer-brand p { color: var(--slate); font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-contact-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--slate-light); font-size: .85rem; margin-bottom: 8px;
}
.footer-contact-item a { color: var(--amber); }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--amber); margin-bottom: 16px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: var(--slate); font-size: .88rem;
  transition: color .2s; text-decoration: none;
}
.footer-col ul li a:hover { color: var(--amber); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .8rem; color: var(--slate);
}
.footer-payment-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-pill {
  padding: 4px 10px; border: 1px solid var(--border);
  font-size: .72rem; font-weight: 600; color: var(--slate);
  border-radius: 2px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy-mid);
  padding: 60px 0 48px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, transparent 40%, rgba(245,158,11,.04) 100%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 { margin: 8px 0 16px; }
.page-hero p { color: var(--slate-light); font-size: 1.05rem; max-width: 600px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.amber { color: var(--amber); }
.green { color: var(--green); }
.slate { color: var(--slate); }
.divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }
.badge {
  display: inline-block; padding: 3px 10px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em;
  border-radius: 2px;
}
.badge-amber { background: rgba(245,158,11,.15); color: var(--amber); }
.badge-green { background: rgba(16,185,129,.15); color: var(--green); }
.badge-red   { background: rgba(239,68,68,.15);  color: var(--red); }
.highlight-box {
  background: var(--navy-mid); border-left: 4px solid var(--amber);
  padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-5 { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-primary ul { flex-direction: column; display: none; }
  .nav-primary ul.open { display: flex; }
  .menu-toggle { display: block; }
  .steps-track { flex-direction: column; gap: 24px; }
  .step-item::after { display: none; }
  .trust-bar-inner { justify-content: flex-start; }
  .hero { padding: 60px 0; }
  .section { padding: 52px 0; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .product-ctas { flex-direction: column; }
  .product-ctas .btn { flex: auto; }
}
@media (max-width: 480px) {
  .header-top { flex-wrap: wrap; gap: 12px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; }
}

/* ============================================================
   PRINT / REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* ── Product image gallery ── */
.product-gallery-imgs { display:flex; flex-direction:column; gap:10px; }
.product-main-photo { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--radius-lg); border:2px solid var(--border); }
.product-thumbs { display:flex; gap:8px; }
.product-thumb { width:80px; height:60px; object-fit:cover; border-radius:8px; border:2px solid var(--border); cursor:pointer; transition:border-color .2s; }
.product-thumb:hover, .product-thumb.active { border-color:var(--amber); }
/* hero with image */
.page-hero-img { position:absolute; right:0; top:0; bottom:0; width:40%; object-fit:cover; opacity:.18; pointer-events:none; }
@media(max-width:768px){ .page-hero-img{ display:none; } }
/* category card image */
.product-card-img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius-lg) var(--radius-lg) 0 0; }
