/* Standalone shell for easydaylifestyle.com: header + footer matching the
 * flagship system. Palette: ground #0b0b0a, panel #111110, bone #f2efe6,
 * gold #d4af37, rule #8c7326. Satoshi display, JetBrains Mono label voice. */

:root {
  /* Declare dark so browser auto-dark heuristics never double-invert the
   * palette (the "copy invisible" failure mode). */
  color-scheme: dark;
  /* Palette promoted to :root so flagship-styled shared components (e.g.
   * .ed-cta-frame on /thanks and 404) render gold outside .ed-flagship. */
  --ed-ground: #0b0b0a;
  --ed-panel: #111110;
  --ed-bone: #f2efe6;
  --ed-gold: #d4af37;
  --ed-rule: #8c7326;
  --ed-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --ed-sans: "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
html, body {
  margin: 0;
  padding: 0;
  background: #0b0b0a;
}
body {
  font-family: "Satoshi", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ------------------------------ header ------------------------------ */
.eds-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 10, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #8c7326;
}
.eds-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
@media (min-width: 768px) {
  .eds-header__inner {
    padding: 0 40px;
    height: 72px;
  }
}
.eds-logo {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: #f2efe6;
  text-decoration: none;
  white-space: nowrap;
}
.eds-logo:hover {
  color: #d4af37;
}
.eds-nav {
  display: none;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .eds-nav {
    display: flex;
  }
}
.eds-nav__link,
.eds-cart {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f2efe6;
  text-decoration: none;
  transition: color 0.25s ease;
}
.eds-nav__link:hover,
.eds-nav__link:focus-visible,
.eds-cart:hover,
.eds-cart:focus-visible {
  color: #d4af37;
}
.eds-cart {
  border: 1px solid #8c7326;
  padding: 8px 16px;
}
.eds-cart:hover {
  border-color: #d4af37;
}

/* ------------------------- buy buttons (Stripe) ---------------------- */
/* Wrappers keep the card/bundle <a> intact and float the button above it. */
.ed-cardwrap {
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
}
.ed-cardwrap .ed-card {
  scroll-snap-align: none;
}
.ed-bundlewrap {
  position: relative;
  display: grid;
}
.ed-bundlewrap > a {
  height: 100%;
}
.ed-buy {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 3;
  height: 34px;
  padding: 0 16px;
  border: 1px solid #d4af37;
  background: rgba(11, 11, 10, 0.85);
  color: #d4af37;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.ed-buy:hover,
.ed-buy:focus-visible {
  background: #d4af37;
  color: #0b0b0a;
}
.ed-buy:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* ------------------------- cart drawer ------------------------------ */
.eds-cart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  cursor: pointer;
}
.eds-cart__count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border: 1px solid #8c7326;
  font-size: 10px;
  color: rgba(242, 239, 230, 0.6);
}
.eds-cart__count--live {
  background: #d4af37;
  border-color: #d4af37;
  color: #0b0b0a;
  font-weight: 700;
}
.eds-drawer__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}
.eds-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 92vw);
  background: #111110;
  border-left: 1px solid #8c7326;
  transform: translateX(102%);
  transition: transform 0.35s cubic-bezier(0.3, 0, 0.2, 1);
  z-index: 91;
  display: flex;
  flex-direction: column;
  color: #f2efe6;
  font-family: "Satoshi", system-ui, sans-serif;
}
.eds-cart-open .eds-drawer { transform: translateX(0); }
.eds-cart-open .eds-drawer__backdrop { opacity: 1; pointer-events: auto; }
.eds-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #8c7326;
}
.eds-drawer__title {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #d4af37;
}
.eds-drawer__close {
  background: none;
  border: 0;
  color: #f2efe6;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.eds-drawer__close:hover { color: #d4af37; }
.eds-drawer__items { flex: 1; overflow-y: auto; padding: 12px 20px; }
.eds-drawer__empty {
  padding: 32px 0;
  color: rgba(242, 239, 230, 0.5);
  font-size: 14px;
}
.eds-drawer__item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(140, 115, 38, 0.3);
}
.eds-drawer__item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #0b0b0a;
  border: 1px solid rgba(140, 115, 38, 0.3);
  flex-shrink: 0;
}
.eds-drawer__meta { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.eds-drawer__name { font-size: 13px; line-height: 1.35; }
.eds-drawer__price { font-size: 12px; color: #d4af37; }
.eds-drawer__qtyrow { display: flex; align-items: center; gap: 10px; }
.eds-drawer__qtyrow button {
  width: 26px;
  height: 26px;
  padding: 0;
  background: #0b0b0a;
  border: 1px solid #8c7326;
  color: #d4af37;
  cursor: pointer;
}
.eds-drawer__qtyrow button:hover { background: #d4af37; color: #0b0b0a; }
.eds-drawer__rm {
  width: auto !important;
  border: 0 !important;
  background: none !important;
  color: rgba(242, 239, 230, 0.6) !important;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.eds-drawer__foot { border-top: 1px solid #8c7326; padding: 18px 20px; }
.eds-drawer__total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 6px;
}
.eds-drawer__total b { font-size: 18px; }
.eds-drawer__ship {
  min-height: 16px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #d4af37;
  margin: 0 0 12px;
}
.eds-drawer__checkout {
  width: 100%;
  height: 52px;
  background: #d4af37;
  border: 0;
  color: #0b0b0a;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.24em;
  cursor: pointer;
}
.eds-drawer__checkout:hover { background: #f2efe6; }
.eds-drawer__checkout:disabled { opacity: 0.4; cursor: default; }
.eds-drawer__wallets {
  margin: 12px 0 0;
  text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.62);
}
.ed-pdp__wallets {
  margin: 16px 0 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.5);
}

/* ==================== PRODUCT PAGE (cinematic) ==================== */
/* Reveal engine (ed-motion.js adds .is-in on intersection) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

.ed-pdp { color: #f2efe6; font-family: "Satoshi", system-ui, sans-serif; }
.ed-pdp .mono { font-family: "JetBrains Mono", ui-monospace, monospace; }

/* --- S1 hero --- */
.ed-pdph {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(60% 50% at 72% 40%, rgba(212, 175, 55, 0.10), transparent 70%),
    #0b0b0a;
}
.ed-pdph__ghost {
  position: absolute;
  left: -2vw;
  bottom: 4vh;
  font-weight: 900;
  font-size: 17vw;
  line-height: 0.8;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 239, 230, 0.07);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.ed-pdph__grid {
  position: relative;
  display: grid;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
@media (min-width: 900px) {
  .ed-pdph__grid { grid-template-columns: 1.05fr 1fr; align-items: center; gap: 48px; padding: 48px 40px 80px; }
}
.ed-pdph__crumb { margin: 0 0 20px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; }
.ed-pdph__crumb a { color: rgba(242, 239, 230, 0.55); text-decoration: none; }
.ed-pdph__crumb a:hover { color: #d4af37; }
.ed-pdph__title {
  margin: 14px 0 0;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
}
.ed-pdph__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: rgba(242, 239, 230, 0.65);
}
.ed-pdph__stars { color: #d4af37; letter-spacing: 3px; font-size: 14px; }
.ed-pdph__price {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 28px;
}
.ed-stock {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 11px;
  border: 1px solid #2f6e4c;
  color: #6ee7a0;
}
.ed-stock--low { border-color: #8c5a26; color: #ffb371; }
.ed-stock--out { border-color: #6e2f2f; color: #ff8080; }
.ed-pdph__benefits { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 10px; }
.ed-pdph__benefits li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(242, 239, 230, 0.85);
}
.ed-pdph__benefits li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #d4af37;
}
.ed-pdp__modes {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.ed-pdp__mode {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px 12px;
  border: 1px solid rgba(140, 115, 38, 0.45);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ed-pdp__mode:has(input:checked) {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.07);
}
.ed-pdp__mode input { accent-color: #d4af37; margin: 0; }
.ed-pdp__mode-name { font-size: 14px; font-weight: 600; }
.ed-pdp__mode-price { font-size: 15px; color: #d4af37; }
.ed-pdp__mode-price em { font-style: normal; font-size: 11px; color: rgba(242, 239, 230, 0.5); }
.ed-pdp__mode-perk {
  grid-column: 2 / -1;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: rgba(242, 239, 230, 0.5);
}
.ed-pdph__actions { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.ed-pdp__qty {
  width: 72px;
  height: 54px;
  background: #0b0b0a;
  border: 1px solid #8c7326;
  color: #f2efe6;
  font-family: "JetBrains Mono", monospace;
  font-size: 15px;
  text-align: center;
}
.ed-pdp__add, .ed-pdp__buy {
  height: 54px;
  padding: 0 30px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ed-pdp__add { background: transparent; border: 1px solid #d4af37; color: #d4af37; }
.ed-pdp__add:hover { background: rgba(212, 175, 55, 0.14); }
.ed-pdp__buy { background: #d4af37; border: 1px solid #d4af37; color: #0b0b0a; }
.ed-pdp__buy:hover { background: #f2efe6; border-color: #f2efe6; }
.ed-pdp__add:disabled, .ed-pdp__buy:disabled { opacity: 0.4; cursor: default; }
.ed-pdph__chips {
  display: flex;
  gap: 10px 14px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.55);
}
.ed-pdph__chips span { border: 1px solid rgba(140, 115, 38, 0.45); padding: 6px 12px; }
.ed-pdph__media { position: relative; display: flex; justify-content: center; }
.ed-pdph__imgwrap { position: relative; }
.ed-pdph__imgwrap::after {
  content: "";
  position: absolute;
  inset: auto 8% -26px 8%;
  height: 44px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(0, 0, 0, 0.55), transparent 75%);
  filter: blur(4px);
}
.ed-pdph__imgwrap img {
  max-width: min(78vw, 460px);
  max-height: 58vh;
  object-fit: contain;
  animation: edFloat 7s ease-in-out infinite;
}
@keyframes edFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@media (prefers-reduced-motion: reduce) {
  .ed-pdph__imgwrap img { animation: none; }
}

/* --- shared section shell --- */
.ed-pdpsec { position: relative; padding: 96px 24px; overflow: hidden; }
@media (min-width: 900px) { .ed-pdpsec { padding: 120px 40px; } }
.ed-pdpsec__inner { max-width: 1080px; margin: 0 auto; position: relative; }
.ed-pdpsec--panel { background: #111110; border-top: 1px solid rgba(140, 115, 38, 0.35); border-bottom: 1px solid rgba(140, 115, 38, 0.35); }
.ed-pdpsec__title {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* --- how to run it --- */
.ed-pdp__proto { display: grid; gap: 1px; background: rgba(140, 115, 38, 0.4); border: 1px solid rgba(140, 115, 38, 0.4); margin-top: 40px; }
@media (min-width: 720px) { .ed-pdp__proto { grid-template-columns: 1fr 1fr; } }
.ed-pdp__proto > div { background: #0b0b0a; padding: 28px; }
.ed-pdpsec--panel .ed-pdp__proto > div { background: #111110; }
.ed-pdp__proto b {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 10px;
}
.ed-pdp__proto p { margin: 0; font-size: 16px; line-height: 1.55; color: rgba(242, 239, 230, 0.85); }

/* --- description --- */
.ed-pdp__desc { max-width: 760px; margin: 40px auto 0; font-size: 16px; line-height: 1.75; color: rgba(242, 239, 230, 0.82); }
.ed-pdp__desc h1, .ed-pdp__desc h2, .ed-pdp__desc h3, .ed-pdp__desc h4 {
  color: #f2efe6;
  margin: 34px 0 10px;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.ed-pdp__desc h1:first-child, .ed-pdp__desc h2:first-child { margin-top: 0; }
.ed-pdp__desc p { margin: 0 0 15px; }
.ed-pdp__desc ul, .ed-pdp__desc ol { margin: 0 0 15px; padding-left: 22px; }
.ed-pdp__desc li { margin-bottom: 7px; }
.ed-pdp__desc strong { color: #d4af37; font-weight: 600; }
.ed-pdp__desc a { color: #d4af37; }
.ed-pdp__desc img { max-width: 100%; height: auto; }
.ed-pdp__desc table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ed-pdp__desc td, .ed-pdp__desc th { border: 1px solid rgba(140, 115, 38, 0.35); padding: 8px 10px; text-align: left; }

/* --- in the field (lifestyle imagery) --- */
.ed-pdp__field { display: grid; gap: 20px; margin-top: 40px; }
@media (min-width: 720px) { .ed-pdp__field { grid-template-columns: 1fr 1fr; } }
.ed-pdp__fieldshot { position: relative; overflow: hidden; border: 1px solid rgba(140, 115, 38, 0.4); }
.ed-pdp__fieldshot img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 1.1s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.ed-pdp__fieldshot:hover img { transform: scale(1.045); }
.ed-pdp__fieldshot figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(11, 11, 10, 0.85), transparent);
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d4af37;
}

/* --- comparison table --- */
.ed-pdp__compare { width: 100%; border-collapse: collapse; margin-top: 40px; border: 1px solid rgba(140, 115, 38, 0.4); }
.ed-pdp__compare th, .ed-pdp__compare td {
  padding: 16px 18px;
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(140, 115, 38, 0.3);
  vertical-align: top;
}
.ed-pdp__compare th {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(242, 239, 230, 0.55);
}
.ed-pdp__compare th:nth-child(2) { color: #d4af37; }
.ed-pdp__compare td:nth-child(2) { color: #f2efe6; font-weight: 600; background: rgba(212, 175, 55, 0.05); }
.ed-pdp__compare td:nth-child(3) { color: rgba(242, 239, 230, 0.5); }
.ed-pdp__compare tr:last-child td { border-bottom: 0; }
.ed-pdp__guarantee {
  margin-top: 26px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(242, 239, 230, 0.6);
}
.ed-pdp__guarantee b { color: #d4af37; font-weight: 600; }

/* --- stack cross-sell --- */
.ed-pdp__stackgrid { display: grid; gap: 20px; margin-top: 40px; }
@media (min-width: 720px) { .ed-pdp__stackgrid { grid-template-columns: 1fr 1fr; } }
.ed-pdp__stackcard {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(140, 115, 38, 0.4);
  background: #0b0b0a;
  padding: 20px;
  text-decoration: none;
  color: #f2efe6;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.ed-pdp__stackcard:hover { transform: translateY(-3px); border-color: #d4af37; }
.ed-pdp__stackcard img { width: 96px; height: 96px; object-fit: contain; flex-shrink: 0; }
.ed-pdp__stackcard h3 { margin: 0; font-size: 15px; line-height: 1.35; font-weight: 600; }
.ed-pdp__stackcard .mono { display: block; margin-top: 8px; color: #d4af37; font-size: 14px; }
.ed-pdp__stackcard .ed-buy { top: auto; bottom: 10px; }

/* --- FAQ --- */
.ed-pdp__faq { max-width: 760px; margin: 40px auto 0; }
.ed-pdp__faq details { border-bottom: 1px solid rgba(140, 115, 38, 0.35); }
.ed-pdp__faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
}
.ed-pdp__faq summary::-webkit-details-marker { display: none; }
.ed-pdp__faq summary::after { content: "+"; color: #d4af37; font-size: 20px; }
.ed-pdp__faq details[open] summary::after { content: "−"; }
.ed-pdp__faq details p { margin: 0 0 20px; font-size: 15px; line-height: 1.65; color: rgba(242, 239, 230, 0.75); }

/* --- sticky buy bar --- */
.ed-pdp__bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(17, 17, 16, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid #8c7326;
  padding: 12px 20px;
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.3, 0, 0.2, 1);
}
.ed-pdp__bar.is-live { transform: translateY(0); }
.ed-pdp__bar-name { font-size: 14px; font-weight: 600; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ed-pdp__bar-price { font-family: "JetBrains Mono", monospace; color: #d4af37; font-size: 15px; }
.ed-pdp__bar .ed-pdp__buy { height: 44px; padding: 0 22px; flex-shrink: 0; }

/* ------------------------- collection pages -------------------------- */
.eds-coll__hero {
  min-height: 46vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
}
.eds-coll__head { padding: 96px 24px 40px; max-width: 1280px; margin: 0 auto; width: 100%; }
@media (min-width: 768px) { .eds-coll__head { padding: 128px 40px 48px; } }
.eds-coll__title {
  margin: 12px 0 0;
  font-size: clamp(40px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #f2efe6;
}
.eds-coll__tag { margin: 14px 0 0; font-size: 16px; color: rgba(242, 239, 230, 0.75); }
.eds-coll .ed-best__rail { gap: 20px; }
.eds-coll .ed-cardwrap { margin-bottom: 4px; }

/* ------------------------- account page ------------------------------ */
.eds-account {
  max-width: 560px;
  margin: 0 auto;
  padding: 12vh 24px 96px;
  color: #f2efe6;
}
.eds-account__title {
  margin: 12px 0 0;
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}
.eds-account__sub { margin: 18px 0 0; font-size: 15px; line-height: 1.6; color: rgba(242, 239, 230, 0.7); }
.eds-account__form { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.eds-account__form input {
  flex: 1;
  min-width: 220px;
  height: 52px;
  padding: 0 16px;
  background: #0b0b0a;
  border: 1px solid #8c7326;
  color: #f2efe6;
  font-size: 15px;
}
.eds-account__form input:focus { outline: 1px solid #d4af37; }
.eds-account__form button {
  height: 52px;
  padding: 0 26px;
  background: #d4af37;
  border: 0;
  color: #0b0b0a;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}
.eds-account__form button:disabled { opacity: 0.5; }
.eds-account__msg { margin-top: 16px; font-size: 13px; color: #d4af37; min-height: 18px; }

/* ------------------------- thanks page ------------------------------ */
.eds-thanks {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px;
  color: #f2efe6;
}
.eds-thanks__title {
  margin: 0;
  font-size: clamp(56px, 14vw, 120px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
}
.eds-thanks__sub {
  margin: 0;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.625;
  color: rgba(242, 239, 230, 0.75);
}

/* ------------------------------ footer ------------------------------ */
.eds-footer {
  background: #0b0b0a;
  border-top: 1px solid #8c7326;
  padding: 56px 24px 40px;
}
@media (min-width: 768px) {
  .eds-footer {
    padding: 64px 40px 48px;
  }
}
.eds-footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.eds-footer__row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .eds-footer__row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.eds-logo--footer {
  font-size: 16px;
}
.eds-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.eds-footer__nav .eds-nav__link {
  display: inline;
}
.eds-footer__fda {
  margin: 40px 0 0;
  max-width: 720px;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: rgba(242, 239, 230, 0.62);
}
.eds-footer__legal {
  margin: 16px 0 0;
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(242, 239, 230, 0.62);
}
.eds-footer__legal a {
  color: rgba(242, 239, 230, 0.6);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.eds-footer__legal a:hover {
  color: #d4af37;
}

/* ===================== production chrome ===================== */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: #d4af37; color: #0b0b0a; padding: 10px 16px;
  font-family: "JetBrains Mono", monospace; font-size: 12px;
}
.skip-link:focus { left: 8px; top: 8px; }

.eds-announce {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  background: #d4af37; color: #0b0b0a;
  padding: 8px 16px; text-align: center;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
}
.eds-announce__sep { opacity: 0.5; }
@media (max-width: 560px) { .eds-announce { font-size: 9px; gap: 8px; } }

.eds-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 95;
  max-width: 560px; margin: 0 auto;
  display: none; align-items: center; gap: 16px; flex-wrap: wrap;
  background: #111110; border: 1px solid #8c7326;
  padding: 16px 18px; color: rgba(242,239,230,0.85);
}
.eds-consent.is-open { display: flex; }
.eds-consent p { margin: 0; font-size: 13px; line-height: 1.5; flex: 1; min-width: 200px; }
.eds-consent__btns { display: flex; gap: 8px; }
.eds-consent button {
  padding: 9px 16px; border: 1px solid #8c7326; background: transparent;
  color: rgba(242,239,230,0.7); font-family: "JetBrains Mono", monospace;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
}
.eds-consent__accept { background: #d4af37 !important; border-color: #d4af37 !important; color: #0b0b0a !important; font-weight: 700; }

/* content pages */
.eds-page { max-width: 820px; margin: 0 auto; padding: 64px 24px 96px; color: #f2efe6; font-family: "Satoshi", system-ui, sans-serif; }
.eds-page__head { border-bottom: 1px solid rgba(140,115,38,0.4); padding-bottom: 28px; margin-bottom: 36px; }
.eds-page__title { margin: 12px 0 0; font-size: clamp(34px,6vw,56px); font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.eds-page__sub { margin: 14px 0 0; font-size: 17px; color: rgba(242,239,230,0.7); }
.eds-page__body { font-size: 16px; line-height: 1.75; color: rgba(242,239,230,0.82); }
.eds-page__body h2 { color: #f2efe6; font-size: 22px; letter-spacing: -0.01em; margin: 36px 0 12px; }
.eds-page__body p { margin: 0 0 16px; }
.eds-page__body ul { margin: 0 0 16px; padding-left: 22px; }
.eds-page__body li { margin-bottom: 8px; }
.eds-page__body strong { color: #d4af37; }
.eds-page__body a { color: #d4af37; }
.eds-page__body .ed-pdp__faq { margin-top: 8px; }

/* forms (contact) */
.eds-form { display: grid; gap: 12px; max-width: 480px; margin-top: 24px; }
.eds-form input, .eds-form textarea {
  background: #0b0b0a; border: 1px solid #8c7326; color: #f2efe6;
  padding: 12px 14px; font-size: 15px; font-family: inherit;
}
.eds-form input:focus, .eds-form textarea:focus { outline: 1px solid #d4af37; }
.eds-form button {
  height: 50px; background: #d4af37; border: 0; color: #0b0b0a;
  font-family: "JetBrains Mono", monospace; font-size: 13px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
}
.eds-form__msg { min-height: 16px; font-size: 13px; color: #d4af37; }

/* footer v2 */
.eds-footer__top { display: grid; gap: 40px; }
@media (min-width: 860px) { .eds-footer__top { grid-template-columns: 1.2fr 2fr; gap: 56px; } }
.eds-footer__brand .eds-logo--footer { display: inline-block; }
.eds-footer__tag { margin: 16px 0 0; font-size: 13px; line-height: 1.6; color: rgba(242,239,230,0.55); }
.eds-news { display: flex; gap: 8px; margin-top: 20px; max-width: 300px; }
.eds-news input { flex: 1; background: #0b0b0a; border: 1px solid #8c7326; color: #f2efe6; padding: 0 14px; height: 44px; font-size: 14px; }
.eds-news input:focus { outline: 1px solid #d4af37; }
.eds-news button { width: 44px; background: #d4af37; border: 0; color: #0b0b0a; font-size: 18px; cursor: pointer; }
.eds-news__msg { min-height: 14px; margin: 8px 0 0; font-size: 11px; color: #d4af37; }
.eds-footer__cols { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px 24px; }
@media (min-width: 640px) { .eds-footer__cols { grid-template-columns: repeat(4,1fr); } }
.eds-footer__col h4 { font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: #d4af37; margin: 0 0 14px; }
.eds-footer__col ul { list-style: none; margin: 0; padding: 0; }
.eds-footer__col li { margin-bottom: 10px; }
.eds-footer__col a { color: rgba(242,239,230,0.65); text-decoration: none; font-size: 14px; }
.eds-footer__col a:hover { color: #d4af37; }
.eds-footer__trust {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
  margin: 48px 0 0; padding: 24px 0; border-top: 1px solid rgba(140,115,38,0.3); border-bottom: 1px solid rgba(140,115,38,0.3);
  font-family: "JetBrains Mono", monospace; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,239,230,0.55);
}

/* ------------------------- mobile nav ------------------------------ */
.eds-burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px; margin-left: -8px;
  background: transparent; border: 0; cursor: pointer;
}
.eds-burger span { display: block; height: 2px; width: 22px; background: #f2efe6; transition: transform .25s, opacity .25s; }
body.eds-menu-open .eds-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.eds-menu-open .eds-burger span:nth-child(2) { opacity: 0; }
body.eds-menu-open .eds-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 768px) { .eds-burger { display: none; } }
.eds-mnav {
  position: fixed; inset: 0; z-index: 49;
  background: rgba(11,11,10,0.98); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
body.eds-menu-open .eds-mnav { opacity: 1; pointer-events: auto; }
.eds-mnav nav { display: flex; flex-direction: column; gap: 28px; text-align: center; }
.eds-mnav__link {
  font-family: "JetBrains Mono", monospace; font-size: 22px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #f2efe6; text-decoration: none;
}
.eds-mnav__link:hover, .eds-mnav__link:active { color: #d4af37; }
@media (min-width: 768px) { .eds-mnav { display: none; } }
/* keep the logo centered when the burger takes the left slot on mobile */
@media (max-width: 767px) { .eds-header__inner { position: relative; } .eds-logo { position: absolute; left: 50%; transform: translateX(-50%); } }

/* sticky buy bar: two compact buttons (Add + mode-aware Buy now) */
.ed-pdp__bar-btns { display: flex; gap: 8px; flex-shrink: 0; }
.ed-pdp__bar .ed-pdp__add, .ed-pdp__bar .ed-pdp__buy { height: 44px; padding: 0 16px; font-size: 12px; }
@media (max-width: 420px) { .ed-pdp__bar-name { display: none; } }
