:root {
  --primary-color: #1f2f2c;
  --secondary-color: #b88a2f;
  --accent-color: #f4efe4;
  --dark-color: #171717;
  --light-color: #f8f7f3;
  --text-color: #252525;
  --muted: #68635b;
  --border-color: #ddcfac;
  --panel: #ffffff;
  --gold-edge: rgba(184, 138, 47, 0.54);
  --shadow: 0 7px 18px rgba(23, 23, 23, 0.08);
  --shadow-lg: 0 18px 34px rgba(23, 23, 23, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: linear-gradient(180deg, #ffffff 0%, #f8f7f3 100%);
}

a { color: inherit; }

header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark-color);
  padding: 14px clamp(18px, 4vw, 52px);
  display: grid;
  grid-template-columns: auto minmax(280px, 520px);
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gold-edge);
  box-shadow: 0 7px 24px rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--gold-edge);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 6px 15px rgba(184, 138, 47, 0.15);
}

.brand strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dark-color);
  text-shadow: 0 1px 0 #ffffff, 0 2px 0 rgba(184, 138, 47, 0.2);
}

.brand span span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-style: italic;
}

.search {
  width: min(520px, 48vw);
  display: flex;
  gap: 8px;
  justify-self: end;
}

.top-links {
  grid-column: 1 / -1;
  display: flex;
  gap: 7px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 138, 47, 0.22);
}

.top-links a {
  color: var(--dark-color);
  font-weight: 750;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 14px;
}

.top-links a:hover {
  border-color: var(--gold-edge);
  background: var(--accent-color);
}

input,
select,
textarea {
  font: inherit;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 12px;
  background: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(184, 138, 47, 0.16);
}

button,
.button {
  border: 1px solid rgba(184, 138, 47, 0.78);
  border-radius: 6px;
  background: linear-gradient(180deg, #d5ad55 0%, #a8741e 100%);
  color: #171717;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

button:hover,
.button:hover {
  background: linear-gradient(180deg, #e0bd6d 0%, #b78327 100%);
  color: var(--dark-color);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 20px;
}

.hero {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96) 0%, rgba(248,247,243,0.98) 100%);
  color: var(--dark-color);
  padding: clamp(34px, 6vw, 72px);
  border-radius: 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  border: 1px solid var(--gold-edge);
  box-shadow: inset 0 1px 0 #ffffff, inset 0 0 0 5px rgba(184, 138, 47, 0.08), var(--shadow);
}

.hero-copy {
  display: grid;
  gap: 16px;
}

.eyebrow {
  color: var(--secondary-color);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

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

.hero-mark {
  display: grid;
  justify-items: center;
  padding: 22px;
  border: 1px solid var(--gold-edge);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 #ffffff, 0 14px 28px rgba(184, 138, 47, 0.14);
}

.hero-logo {
  width: min(260px, 58vw);
  height: auto;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0;
  max-width: 960px;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--dark-color);
  text-shadow: 0 1px 0 #ffffff, 0 2px 0 rgba(184, 138, 47, 0.16);
}

h2,
h3 { margin: 0; }

.muted { color: var(--muted); }

.stats {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.stat,
.panel,
.card {
  background: var(--panel);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 16px;
  box-shadow: inset 0 1px 0 #ffffff;
}

.stat {
  min-width: 170px;
  color: var(--dark-color);
  box-shadow: var(--shadow);
}

.stat strong {
  color: var(--secondary-color);
  font-size: 25px;
  display: block;
}

.filters {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.filters a {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  font-weight: 700;
}

.filters .active,
.filters a:hover {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--secondary-color);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(245px, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.media {
  height: 190px;
  background: linear-gradient(135deg, #ffffff 0%, #f3efe7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.content {
  padding: 16px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.content h2 {
  font-size: 18px;
  line-height: 1.25;
  color: var(--primary-color);
}

.content h2 a { text-decoration: none; }

.topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--primary-color);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
}

.price {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
}

.pager {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pager a,
.pager span {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 8px 11px;
  border-radius: 6px;
  text-decoration: none;
}

.pager .current {
  background: var(--primary-color);
  color: #ffffff;
}

.product {
  display: grid;
  grid-template-columns: minmax(220px, 420px) 1fr;
  gap: 34px;
}

.product .image {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product .image img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.checkout { max-width: 780px; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-grid .wide { grid-column: 1 / -1; }

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border: 1px solid var(--border-color);
}

th,
td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

th {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
}

.ok { color: #247a75; font-weight: 800; }
.warn { color: #9b6a25; font-weight: 800; }
.danger { color: #9b2525; font-weight: 800; }

footer {
  padding: 34px clamp(18px, 4vw, 52px);
  margin-top: 52px;
  background: #171717;
  color: #f8f7f3;
  text-align: center;
  border-top: 2px solid var(--secondary-color);
}

footer a {
  color: #ffffff;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  background: #ffffff;
  color: var(--dark-color);
  padding: 18px 0;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.tagline {
  font-size: 12px;
  font-style: italic;
  margin-top: 5px;
  opacity: 0.9;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--dark-color);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  color: var(--secondary-color);
}

.hero-content h2 {
  font-size: clamp(32px, 6vw, 52px);
  margin: 0 0 16px;
  text-shadow: 0 1px 0 #ffffff, 0 2px 0 rgba(184, 138, 47, 0.16);
}

.hero-content p {
  font-size: 20px;
  margin: 0 0 28px;
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--dark-color);
  padding: 14px 34px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
}

.featured,
.about-preview {
  padding: 72px 0;
}

.featured {
  background: var(--light-color);
}

.featured h2,
.about-preview h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 42px;
  color: var(--primary-color);
}

.product-grid,
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 24px;
}

.product-card,
.feature {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.product-image {
  width: 100%;
  height: 230px;
  background: linear-gradient(135deg, #ffffff 0%, #f3efe7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}

.product-card h3,
.feature h3 {
  color: var(--primary-color);
  font-size: 20px;
  margin: 18px 16px 8px;
}

.product-card p,
.feature p {
  margin: 0 16px 14px;
  color: #5f5a66;
}

.feature {
  padding: 24px;
}

.hero-action {
  background: linear-gradient(180deg, #d5ad55 0%, #a8741e 100%);
  color: var(--dark-color);
}

.secondary-action {
  background: #ffffff;
  color: var(--primary-color);
}

.secondary-action:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.seo-page {
  display: grid;
  gap: 24px;
}

.seo-hero p {
  max-width: 820px;
  margin: 0;
  font-size: 20px;
}

.seo-copy {
  font-size: 18px;
}

.seo-copy h2 {
  color: var(--primary-color);
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 12px;
}

.pickup-carousel {
  margin: 28px 0;
  padding: 22px;
  border: 1px solid var(--gold-edge);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.network-ad {
  position: relative;
  margin: 28px 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid var(--secondary-color);
  border-radius: 8px;
  background: linear-gradient(135deg, #171717 0%, #263a36 100%);
  color: #f8f7f3;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--shadow-lg);
}

.network-ad::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 8px;
  box-shadow: inset 0 0 0 5px rgba(184, 138, 47, 0.12);
}

.flash-ad::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-18deg);
  animation: ad-sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ad-sweep {
  0%, 58% { left: -35%; opacity: 0; }
  68% { opacity: 1; }
  88%, 100% { left: 115%; opacity: 0; }
}

.network-ad-media {
  display: block;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(184, 138, 47, 0.55);
  border-radius: 8px;
  overflow: hidden;
  background: #08070a;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.26);
}

.network-ad-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 280px;
  object-fit: cover;
}

.network-ad-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.network-ad-copy span {
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.network-ad-copy h2 {
  color: #f8f7f3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  text-shadow: 0 2px 0 rgba(184, 138, 47, 0.2);
}

.network-ad-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(248, 247, 243, 0.86);
  font-size: 18px;
}

.contact-feature {
  grid-template-columns: minmax(260px, 1fr) minmax(250px, 0.72fr);
}

.contact-feature-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(184, 138, 47, 0.65);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.contact-feature-card span {
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-feature-card strong {
  color: #f8f7f3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.contact-feature-card p {
  margin: 0;
  color: rgba(248, 247, 243, 0.86);
}

.ecosystem-copy {
  border-color: var(--gold-edge);
}

.ecosystem-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.ecosystem-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 13px;
  border: 1px solid var(--gold-edge);
  border-radius: 6px;
  background: #ffffff;
  color: var(--primary-color);
  font-weight: 800;
  text-decoration: none;
}

.ecosystem-nav a:hover {
  background: var(--accent-color);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 18px;
}

.ecosystem-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--gold-edge);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.ecosystem-card span {
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ecosystem-card h2 {
  color: var(--primary-color);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.ecosystem-card p {
  margin: 0;
  color: var(--muted);
}

.ecosystem-card a {
  color: var(--primary-color);
  font-weight: 850;
}

.pickup-carousel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 18px;
}

.pickup-carousel-head span,
.amazon-panel span {
  display: block;
  color: var(--secondary-color);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.pickup-carousel-head h2,
.amazon-panel h2 {
  color: var(--primary-color);
  margin: 3px 0 4px;
  font-size: clamp(24px, 4vw, 34px);
}

.pickup-address {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.pickup-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 260px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.pickup-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: 150px 1fr;
  min-height: 282px;
  border: 1px solid var(--gold-edge);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background: var(--light-color);
}

.pickup-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
}

.pickup-card-body {
  display: grid;
  gap: 7px;
  padding: 13px;
}

.pickup-card-body span {
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pickup-card-body strong {
  color: var(--primary-color);
  line-height: 1.2;
}

.pickup-card-body em {
  color: var(--dark-color);
  font-style: normal;
  font-weight: 800;
}

.amazon-panel {
  margin: 26px 0;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #171717 0%, #263a36 100%);
  color: #f8f7f3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--secondary-color);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), var(--shadow);
}

.amazon-panel h2 {
  color: #f8f7f3;
}

.amazon-panel p {
  margin: 0;
  color: rgba(248, 247, 243, 0.86);
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-mark {
    display: none;
  }
}

@media (max-width: 760px) {
  header.site {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand strong {
    font-size: 22px;
  }

  .search {
    width: 100%;
    justify-self: stretch;
  }

  .top-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }

  .hero-actions {
    display: grid;
  }

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

  h1 {
    font-size: 36px;
  }

  .header .container {
    flex-direction: column;
  }

  .nav ul {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pickup-carousel-head,
  .amazon-panel {
    display: block;
  }

  .network-ad {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .amazon-panel .button {
    margin-top: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flash-ad::after {
    animation: none;
    display: none;
  }
}
