@import url('https://fonts.googleapis.com/css2?family=Anton&family=Work+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --accent: #E2600F;
  --accent-dark: #B84C0B;
  --ink: #17181A;
  --ink-2: #4A4C50;
  --muted: #6B6E73;
  --bg: #F8F6F3;
  --card-border: #DAD6CF;
  --dark: #101112;
  --darker: #0A0B0C;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); font-family: 'Work Sans', system-ui, -apple-system, sans-serif; color: var(--ink); }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; display: block; }
.display { font-family: 'Anton', 'Arial Narrow', sans-serif; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-block; background: var(--accent); color: #fff; padding: 15px 30px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 13px;
  border: none; cursor: pointer; text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 0 -3px 0 rgba(0,0,0,.4);
}
.btn:hover { background: var(--accent-dark); color: #fff; }
.btn-outline {
  display: inline-block; background: transparent; border: 2px solid #EDEBE7; color: #EDEBE7;
  padding: 13px 28px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: 13px;
}
.btn-dark {
  display: inline-block; background: var(--ink); color: #fff; padding: 10px 16px;
  font-weight: 700; font-size: 11px; text-transform: uppercase; letter-spacing: .04em;
  border: none; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), inset 0 -2px 0 rgba(0,0,0,.4);
}
.btn-dark:hover { color: #fff; opacity: .9; }
.btn-dark[disabled] { opacity: .4; cursor: not-allowed; }

/* NAV */
.site-header { position: sticky; top: 0; z-index: 30; background: var(--ink); border-bottom: 3px solid var(--accent); }
.site-header .inner { max-width: 1200px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-header .left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.logo-box { background: #fff; padding: 7px 12px; border-radius: 3px; display: flex; align-items: center; }
.logo-box img { height: 26px; width: auto; }
.logo-box-lg { padding: 9px 16px; }
.logo-box-lg img { height: 38px; }
@media (max-width: 640px) { .logo-box-lg img { height: 30px; } }

/* Corner brand stamp on product photos */
.tile { position: relative; }
.brand-badge {
  position: absolute; top: 10px; right: 10px; padding: 5px 9px;
  background: rgba(255,255,255,.94); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2; box-shadow: 0 2px 6px rgba(0,0,0,.35);
}
.tile .brand-badge img { height: 13px; width: auto; display: block; object-fit: contain; }
.navlinks { display: flex; gap: 20px; flex-wrap: wrap; }
.navlink { color: #EDEBE7; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; }
.navlink:hover, .navlink.active { color: var(--accent); }
.cart-link { position: relative; color: #EDEBE7; }
.cart-badge {
  position: absolute; top: -9px; right: -12px; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; width: 18px; height: 18px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}

/* GRAIN + MOUNTAIN backgrounds, reusable dark section */
.dark-section { background: var(--dark); color: #EDEBE7; position: relative; overflow: hidden; }
.dark-section .watermark {
  font-family: 'Anton', sans-serif; position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; overflow: hidden; pointer-events: none; color: rgba(237,235,231,.09);
  letter-spacing: -.02em; white-space: nowrap; line-height: 1; z-index: 0;
}
.dark-section .watermark img { opacity: .10; filter: brightness(0) invert(1); width: 70%; max-width: 900px; height: auto; }
.dark-section .content { position: relative; z-index: 1; }

/* PRODUCT CARD / GRID */
.grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
@media (max-width: 900px) { .grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.card { background: #fff; border: 1px solid var(--card-border); display: flex; flex-direction: column; }
.tile { position: relative; aspect-ratio: 4/5; background: #2A2C2F; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile.empty { color: #6B6E73; font-size: 12px; text-align: center; padding: 20px; }
.card .body { padding: 16px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 700; color: var(--accent); margin: 0; }
.card h3 { font-size: 15px; margin: 2px 0 0; }
.card .desc { font-size: 13px; color: var(--muted); margin: 0 0 8px; flex: 1; }
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto; }
.price { font-weight: 700; font-size: 14px; }
.compare-price { text-decoration: line-through; color: var(--muted); font-size: 12px; margin-left: 6px; font-weight: 400; }

/* FILTER CHIPS */
.chip { padding: 9px 18px; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; cursor: pointer; border: 1px solid #4A4C50; color: #C9C6C0; background: transparent; }
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* FOOTER */
.site-footer { background: var(--darker); padding: 56px 24px 32px; border-top: 3px solid var(--accent); position: relative; overflow: hidden; }
.site-footer .inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; position: relative; z-index: 1; }
.site-footer a { color: #8A8D92; font-size: 13px; }
.site-footer h4 { color: #EDEBE7; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 14px; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }

/* CART / CHECKOUT */
.cart-row { display: grid; grid-template-columns: 90px 1fr auto auto auto; gap: 16px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--card-border); }
.cart-row img { width: 90px; height: 90px; object-fit: cover; background: #2A2C2F; }
.qty-input { width: 54px; padding: 8px; border: 1px solid var(--card-border); text-align: center; font-size: 14px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px; }
.form-field input, .form-field select { width: 100%; padding: 12px; border: 1px solid var(--card-border); font-size: 14px; font-family: inherit; }
.demo-banner {
  background: #FFF3E8; border: 1px solid var(--accent); color: #7A3C09; padding: 14px 18px;
  font-size: 13px; margin-bottom: 24px; border-radius: 2px;
}
