:root {
  --ink: #07152d;
  --green: #006b3c;
  --green-dark: #004f2d;
  --green-soft: #eaf6ed;
  --yellow: #ffd447;
  --yellow-soft: #fff9dd;
  --red: #d83a2e;
  --muted: #5d6878;
  --line: #d9dee5;
  --surface: #f5f7f8;
  --white: #fff;
  --radius-sm: 10px;
  --radius: 16px;
  --shadow: 0 14px 34px rgba(7, 21, 45, 0.08);
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-synthesis: none;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
body { margin: 0; min-width: 320px; max-width: 100%; overflow-x: hidden; background: var(--white); }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header {
  height: 86px;
  padding: 0 clamp(24px, 4.2vw, 68px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: clamp(28px, 5vw, 84px);
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}

.brand { font: 800 clamp(23px, 2.1vw, 31px)/1 "Manrope", sans-serif; letter-spacing: -1.4px; display: inline-flex; align-items: center; position: relative; white-space: nowrap; }
.brand strong { color: var(--green); }
.brand i { width: 28px; height: 34px; border: 2px solid var(--green); margin-left: 8px; border-radius: 4px; position: relative; }
.brand i::before, .brand i::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: white; position: absolute; right: -6px; border-left: 2px solid var(--green); }
.brand i::before { top: 5px; }
.brand i::after { bottom: 5px; }

.main-nav { display: flex; align-items: stretch; height: 100%; gap: clamp(24px, 3vw, 52px); }
.main-nav a { font-weight: 700; font-size: 15px; display: flex; align-items: center; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 3px 3px 0 0; transform: scaleX(0); background: var(--green); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--green); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 7px; }
.saved-nav { border: 0; background: transparent; display: flex; align-items: center; gap: 8px; font-weight: 700; cursor: pointer; padding: 10px; border-radius: 9px; }
.saved-nav:hover { background: var(--surface); }
.saved-nav svg { width: 21px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.saved-nav span { background: var(--green); color: white; min-width: 21px; height: 21px; border-radius: 50%; display: inline-grid; place-items: center; font-size: 11px; }
.account-nav { border: 1px solid transparent; background: transparent; display: flex; align-items: center; gap: 9px; min-height: 43px; padding: 5px 10px 5px 6px; border-radius: 11px; font-weight: 700; cursor: pointer; }
.account-nav:hover { border-color: var(--line); background: var(--surface); }
.account-avatar { width: 31px; height: 31px; border: 1.5px solid var(--ink); border-radius: 50%; display: grid; place-items: center; flex: none; font-size: 11px; font-weight: 800; color: var(--green); }
.account-avatar svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.account-nav.signed-in .account-avatar { color: white; background: var(--green); border-color: var(--green); }

.account-dialog, .deal-dialog { padding: 0; border: 0; border-radius: 20px; color: var(--ink); box-shadow: 0 28px 90px rgba(7,21,45,.24); overflow: auto; }
.account-dialog { width: min(92vw, 500px); max-height: min(92vh, 850px); }
.account-dialog::backdrop, .deal-dialog::backdrop { background: rgba(7,21,45,.52); backdrop-filter: blur(4px); }
.account-dialog[open], .deal-dialog[open] { animation: dialog-in .2s ease-out; }
@keyframes dialog-in { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
.dialog-close { position: absolute; top: 17px; right: 17px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--surface); display: grid; place-items: center; cursor: pointer; z-index: 2; }
.dialog-close:hover { background: #e7ebee; }
.dialog-close svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.account-auth, .account-profile { padding: 34px 38px 38px; }
.account-heading { display: flex; gap: 15px; align-items: center; padding-right: 42px; }
.account-mark { width: 49px; height: 49px; border-radius: 14px; background: var(--green-soft); color: var(--green); display: grid; place-items: center; flex: none; }
.account-mark svg { width: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.account-heading h2, .account-profile h2 { font: 800 27px/1.15 "Manrope", sans-serif; letter-spacing: -1px; margin: 0; }
.account-heading p { color: var(--muted); margin: 5px 0 0; font-size: 14px; }
.account-tabs { display: grid; grid-template-columns: 1fr 1fr; background: var(--surface); padding: 4px; border-radius: 11px; margin: 28px 0 23px; }
.account-tabs button { border: 0; background: transparent; min-height: 42px; border-radius: 8px; font-weight: 800; cursor: pointer; color: var(--muted); }
.account-tabs button.active { background: white; color: var(--green); box-shadow: 0 2px 8px rgba(7,21,45,.08); }
.account-form { display: flex; flex-direction: column; }
.account-form > label:not(.check-label) { font-size: 13px; font-weight: 800; margin: 0 0 7px; }
.account-form > input, .password-field { width: 100%; height: 51px; border: 1px solid var(--line); border-radius: 10px; margin-bottom: 17px; background: white; }
.account-form > input { padding: 0 14px; outline: none; }
.account-form > input:focus, .password-field:focus-within { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,107,60,.1); }
.password-field { display: flex; align-items: center; overflow: hidden; }
.password-field input { min-width: 0; flex: 1; align-self: stretch; border: 0; outline: 0; padding: 0 14px; }
.password-field button { align-self: stretch; border: 0; background: transparent; color: var(--green); font-size: 12px; font-weight: 800; padding: 0 14px; cursor: pointer; }
.form-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin: 0 0 8px; }
.check-label { display: flex; align-items: flex-start; gap: 8px; color: var(--muted); font-size: 12px; line-height: 1.45; cursor: pointer; }
.check-label input { accent-color: var(--green); margin: 2px 0 0; }
.terms { margin: 0 0 6px; }
.link-button { border: 0; padding: 0; background: transparent; color: var(--green); font-size: 12px; font-weight: 800; cursor: pointer; }
.form-error { color: var(--red); font-size: 12px; min-height: 18px; margin: 5px 0 4px; }
.account-submit, .secondary-action { min-height: 51px; border-radius: 10px; font-weight: 800; cursor: pointer; }
.account-submit { border: 0; background: var(--green); color: white; }
.account-submit:hover { background: var(--green-dark); }
.secondary-action { width: 100%; margin-top: 10px; border: 1px solid var(--line); background: white; color: var(--ink); }
.secondary-action:hover { border-color: var(--ink); }
.prototype-note { color: var(--muted); font-size: 11px; line-height: 1.45; text-align: center; margin: 18px 20px 0; }
.account-profile { text-align: center; }
.profile-avatar { width: 78px; height: 78px; border-radius: 50%; margin: 9px auto 20px; display: grid; place-items: center; color: white; background: var(--green); font: 800 25px "Manrope", sans-serif; }
.profile-kicker { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .8px; font-weight: 800; margin: 0 0 7px; }
.account-profile > p:not(.profile-kicker) { color: var(--muted); margin: 7px 0 24px; }
.profile-stat { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; margin: 0 0 23px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.profile-stat span { color: var(--muted); }
.profile-stat strong { color: var(--green); font: 800 24px "Manrope", sans-serif; }
.account-profile .account-submit { width: 100%; }
.account-profile #viewMyStores { margin-bottom: 10px; background: var(--green-soft); color: var(--green); border: 1px solid #badcc5; }
.account-profile #viewMyStores:hover { background: #dcefe2; }
.account-profile #viewMyStores:disabled { opacity: .48; cursor: not-allowed; }
.preference-panel { text-align: left; border-top: 1px solid var(--line); padding: 23px 0 21px; }
.preference-heading { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.preference-heading h3 { font: 800 16px/1.25 "Manrope", sans-serif; margin: 0; }
.preference-heading p { color: var(--muted); font-size: 12px; margin: 4px 0 0; }
.preference-heading > span { color: var(--green); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }
.store-preferences { display: flex; gap: 7px; margin: 16px 0; }
.store-preferences label { flex: 1; min-width: 0; min-height: 40px; border: 1px solid var(--line); border-radius: 9px; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 11px; font-weight: 800; cursor: pointer; }
.store-preferences label:has(input:checked) { color: var(--green); border-color: var(--green); background: var(--green-soft); }
.store-preferences input { width: 14px; height: 14px; margin: 0; accent-color: var(--green); }
.alert-preference { min-height: 56px; background: var(--surface); border-radius: 10px; padding: 9px 10px 9px 12px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.alert-toggle { display: flex; align-items: center; gap: 9px; cursor: pointer; }
.alert-toggle input { width: 16px; height: 16px; margin: 0; accent-color: var(--green); }
.alert-toggle span { display: flex; flex-direction: column; }
.alert-toggle strong { font-size: 12px; }
.alert-toggle small { color: var(--muted); font-size: 10px; margin-top: 1px; }
.alert-preference select { height: 36px; border: 1px solid var(--line); border-radius: 8px; background: white; color: var(--ink); padding: 0 26px 0 10px; font-size: 11px; font-weight: 700; }
.alert-preference select:disabled { opacity: .5; }
.preference-save { width: 100%; min-height: 39px; border: 0; border-radius: 8px; margin-top: 10px; background: var(--ink); color: white; font-size: 12px; font-weight: 800; cursor: pointer; }
.preference-save:hover { background: #142541; }

.deal-dialog { width: min(92vw, 640px); max-height: min(92vh, 820px); }
.deal-dialog-content { padding: 32px 42px 30px; }
.deal-dialog-header { padding-right: 42px; }
.deal-dialog-header > p { color: var(--green); font-size: 13px; font-weight: 800; margin: 18px 0 6px; }
.deal-dialog-header h2 { font: 800 clamp(27px, 3vw, 38px)/1.08 "Manrope", sans-serif; letter-spacing: -1.4px; margin: 0; }
.deal-dialog-price { display: flex; flex-direction: column; gap: 3px; padding: 17px 0; margin: 18px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.deal-dialog-price small { color: var(--muted); font-size: 12px; font-weight: 700; }
.deal-dialog-price strong { color: var(--green); font: 800 32px/1.15 "Manrope", sans-serif; }
.deal-dialog-price span { color: var(--muted); font-size: 13px; }
.deal-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin: 0; }
.deal-facts div { padding: 14px 16px 14px 0; border-bottom: 1px solid var(--line); }
.deal-facts div:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--line); }
.deal-facts dt { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .45px; }
.deal-facts dd { margin: 6px 0 0; font-size: 13px; line-height: 1.45; }
.deal-conditions { padding: 14px 0 2px; }
.deal-conditions strong { font: 800 14px "Manrope", sans-serif; }
.deal-conditions p { color: var(--muted); line-height: 1.55; margin: 7px 0 0; }
.deal-source-note { display: flex; gap: 10px; align-items: flex-start; background: var(--green-soft); color: var(--green-dark); border-radius: 10px; padding: 12px 14px; margin: 12px 0; font-size: 12px; line-height: 1.45; }
.deal-source-note svg { width: 20px; flex: none; fill: var(--green); stroke: white; stroke-width: 1.8; }
.dialog-disclosure { margin: 12px 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.dialog-disclosure strong { color: var(--ink); }
.deal-outbound { min-height: 52px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 0 18px; border-radius: 10px; background: var(--green); color: white; font-weight: 800; }
.deal-outbound:hover { background: var(--green-dark); }

main { max-width: 1460px; margin: 0 auto; padding: 0 clamp(24px, 4.2vw, 68px); }
.hero { padding: 48px 0 30px; display: grid; grid-template-columns: minmax(500px, .9fr) minmax(590px, 1.15fr); gap: clamp(42px, 4.6vw, 70px); align-items: center; }
.hero h1 { font: 800 clamp(42px, 3.8vw, 57px)/1.02 "Manrope", sans-serif; letter-spacing: -2.8px; margin: 0 0 22px; }
.hero-copy p { margin: 0; max-width: 490px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.impact-verification { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.search { min-height: 67px; border: 2px solid var(--green); border-radius: 13px; display: flex; align-items: center; padding: 8px 9px 8px 18px; box-shadow: 0 0 0 4px rgba(0,107,60,.04); }
.search:focus-within { box-shadow: 0 0 0 5px rgba(0,107,60,.12); }
.search svg { width: 26px; fill: none; stroke: var(--ink); stroke-width: 1.7; flex: none; }
.search input { border: 0; outline: 0; min-width: 0; width: 0; flex: 1; font-size: 17px; padding: 0 17px; color: var(--ink); background: transparent; }
.search input::placeholder { color: #737d8c; }
.search button { align-self: stretch; border: 0; color: white; background: var(--green); border-radius: 9px; padding: 0 27px; font-weight: 800; cursor: pointer; transition: background .2s, transform .2s; }
.search button:hover { background: var(--green-dark); transform: translateY(-1px); }

.type-filters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 20px; }
.filter, .store { min-height: 52px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; font-weight: 700; cursor: pointer; padding: 0 18px; transition: border .2s, color .2s, background .2s, transform .2s; }
.filter:hover, .store:hover { border-color: var(--green); color: var(--green); transform: translateY(-1px); }
.filter.active { border-color: var(--green); color: var(--green); background: var(--green-soft); }

.store-rail { min-height: 74px; border: 1px solid var(--line); border-radius: 13px; display: flex; align-items: center; justify-content: space-between; padding: 10px 18px; margin-bottom: 36px; }
.store-rail > div { display: flex; gap: 12px; flex-wrap: wrap; }
.store { min-height: 47px; min-width: 138px; }
.store.active { background: var(--green); border-color: var(--green); color: white; }
.personal-store { color: var(--green); border-style: dashed; }
.store-rail > a { color: var(--green); font-weight: 700; padding: 12px; white-space: nowrap; }

.visual-categories { padding: 8px 0 46px; }
.visual-category-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 14px; }
.visual-category { border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 8px 24px rgba(7, 21, 45, .05); padding: 10px; text-align: left; cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s; overflow: hidden; }
.visual-category:hover { transform: translateY(-3px); border-color: var(--green); box-shadow: var(--shadow); }
.visual-category img { width: 100%; aspect-ratio: 1.52; object-fit: cover; border-radius: 12px; display: block; background: var(--green-soft); }
.visual-category span { display: block; margin: 11px 4px 3px; color: var(--ink); font: 800 14px/1.2 "Manrope", sans-serif; letter-spacing: -.25px; }

.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 20px; }
.section-heading h2 { margin: 0; font: 800 clamp(28px, 2.6vw, 38px)/1.15 "Manrope", sans-serif; letter-spacing: -1.6px; }
.section-heading > div > p { color: var(--muted); margin: 6px 0 0; min-height: 20px; }
.inline-disclosure { margin: 0 0 26px; border: 1px solid #cfe5d8; border-radius: 12px; background: var(--green-soft); color: var(--muted); padding: 13px 16px; font-size: 13px; line-height: 1.55; }
.inline-disclosure strong { color: var(--green-dark); }
.inline-disclosure a { color: var(--green); font-weight: 800; text-decoration: underline; text-underline-offset: 2px; }
.verified { display: flex; align-items: center; gap: 9px; color: var(--muted); margin: 0; font-size: 14px; }
.verified svg { width: 21px; fill: var(--green); stroke: white; stroke-width: 1.8; }

.featured-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; min-height: 350px; }
.featured-deal { border: 1px solid #f1c648; border-radius: var(--radius); background: linear-gradient(125deg, var(--yellow-soft), #fff 70%); display: grid; grid-template-columns: 1fr minmax(200px, .72fr); min-width: 0; overflow: hidden; position: relative; }
.featured-deal::before { content: ""; position: absolute; left: -8px; top: 22px; bottom: 22px; width: 15px; background: radial-gradient(circle at 0 8px, transparent 7px, #f1c648 7.5px, #fff 8.5px) 0 0/15px 22px repeat-y; }
.featured-copy { padding: 32px 22px 28px 40px; display: flex; flex-direction: column; align-items: flex-start; }
.deal-label { background: var(--yellow); border-radius: 6px; padding: 7px 11px; text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .4px; }
.deal-label.sale { background: #d9efad; color: #234a13; }
.featured-copy h3 { font: 800 clamp(28px, 2.8vw, 43px)/1.04 "Manrope", sans-serif; letter-spacing: -1.7px; margin: 18px 0 6px; }
.featured-copy .retailer { font-size: 16px; font-weight: 700; margin: 0; }
.deal-meta { display: flex; align-items: center; gap: 8px; color: var(--green); font-weight: 600; font-size: 13px; margin: 18px 0; }
.deal-meta::before { content: "\2713"; width: 19px; height: 19px; color: white; background: var(--green); border-radius: 50%; display: grid; place-items: center; font-size: 11px; }
.featured-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; margin-top: auto; }
.featured-actions time { color: var(--muted); font-size: 13px; }
.primary-action { border: 1.5px solid var(--green); background: white; color: var(--green); font-weight: 800; border-radius: 9px; padding: 11px 16px; cursor: pointer; }
.primary-action:hover { background: var(--green); color: white; }
.featured-art { border-left: 1px dashed #e6cc73; display: grid; place-items: center; padding: 24px; background: rgba(255,255,255,.45); }
.featured-art img { width: 100%; max-height: 260px; object-fit: contain; mix-blend-mode: multiply; }

.side-deals { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: grid; grid-template-rows: 1fr 1fr; }
.side-deal { padding: 22px 24px; display: grid; grid-template-columns: 1fr 130px auto; gap: 20px; align-items: center; position: relative; }
.side-deal + .side-deal { border-top: 1px solid var(--line); }
.side-deal h3 { font: 800 18px/1.25 "Manrope", sans-serif; margin: 10px 0 5px; }
.side-deal p { margin: 0; font-size: 13px; color: var(--muted); }
.side-deal img { width: 120px; height: 105px; object-fit: contain; mix-blend-mode: multiply; }
.side-price { text-align: right; min-width: 78px; }
.side-price strong { color: var(--green); font: 800 24px/1 "Manrope", sans-serif; display: block; }
.side-price s { color: var(--muted); font-size: 13px; display: block; margin: 6px 0 12px; }
.side-price small { color: var(--green); font-weight: 700; }
.card-detail-link { border: 0; background: transparent; color: var(--green); padding: 0; font-size: 12px; font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.side-price .card-detail-link { display: block; margin: 14px 0 0 auto; }
.save-button { position: absolute; top: 16px; right: 15px; border: 0; border-radius: 50%; width: 34px; height: 34px; display: grid; place-items: center; background: white; cursor: pointer; color: var(--muted); }
.save-button:hover, .save-button.saved { color: var(--green); background: var(--green-soft); }
.save-button svg { width: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.save-button.saved svg { fill: currentColor; }

.ending-section { padding: 48px 0 72px; }
.text-button { border: 0; background: none; color: var(--green); font-weight: 800; cursor: pointer; }
.deal-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.deal-card { min-height: 325px; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 16px 20px; display: flex; flex-direction: column; position: relative; transition: border .2s, box-shadow .2s, transform .2s; overflow: hidden; }
.deal-card.no-product-image { min-height: 245px; padding-top: 20px; }
.deal-card:hover { border-color: #aab4c0; box-shadow: var(--shadow); transform: translateY(-3px); }
.deal-card-image { margin: -2px -4px 14px; border-radius: 13px; background: var(--surface); overflow: hidden; }
.deal-card-image img { width: 100%; aspect-ratio: 1.45; object-fit: cover; display: block; mix-blend-mode: multiply; }
.deal-card .deadline { color: var(--red); font-size: 12px; font-weight: 700; margin-bottom: 13px; }
.deal-card h3 { font: 800 17px/1.28 "Manrope", sans-serif; letter-spacing: -.25px; margin: 12px 36px 6px 0; }
.deal-card .retailer { color: var(--muted); font-size: 13px; margin: 0; }
.deal-card .card-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 15px; margin-top: auto; padding-top: 22px; }
.deal-card .amount { color: var(--green); font: 800 22px/1.05 "Manrope", sans-serif; }
.deal-card .amount small { display: block; color: var(--muted); font: 500 11px/1.3 "DM Sans", sans-serif; margin-bottom: 3px; }
.deal-card .expires { color: var(--muted); font-size: 11px; max-width: 100px; text-align: right; }
.deal-card .save-button { top: 13px; right: 13px; }
.deal-card > .card-detail-link { align-self: flex-start; margin-top: 16px; }

.empty-state { text-align: center; padding: 80px 20px; border: 1px dashed var(--line); border-radius: var(--radius); }
.empty-state h3 { font: 800 24px "Manrope", sans-serif; margin: 0 0 8px; }
.empty-state p { color: var(--muted); }
.empty-state button { border: 0; background: var(--green); color: white; padding: 12px 18px; border-radius: 9px; font-weight: 800; cursor: pointer; }
.not-found { max-width: 620px; margin: 15vh auto; }
.not-found .primary-action { display: inline-block; margin-top: 10px; }

.media-kit-page { background: var(--surface); }
.media-kit-header { position: relative; }
.media-kit-shell { width: min(1120px, calc(100% - 32px)); margin: 34px auto 54px; }
.media-kit-intro { background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: clamp(28px, 4vw, 46px); margin-bottom: 22px; }
.media-kit-intro .eyebrow { color: var(--green); font: 800 13px/1 "DM Sans", sans-serif; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 13px; }
.media-kit-intro h1 { font: 800 clamp(34px, 5vw, 58px)/.98 "Manrope", sans-serif; letter-spacing: -2.3px; margin: 0 0 16px; }
.media-kit-intro > p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.55; max-width: 720px; margin: 0; }
.media-kit-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 24px; }
.secondary-action { min-height: 46px; border: 1px solid var(--line); border-radius: 10px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; background: white; }
.secondary-action:hover { border-color: var(--green); color: var(--green); }
.media-kit-viewer { background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.media-kit-preview-link { display: block; background: white; }
.media-kit-preview { width: 100%; display: block; }
.media-kit-summary { padding: clamp(28px, 5vw, 56px); }
.media-kit-summary h2 { margin: 0 0 20px; font: 800 clamp(26px, 3vw, 38px)/1.15 "Manrope", sans-serif; }
.media-kit-summary ul { display: grid; gap: 12px; margin: 0 0 24px; padding-left: 22px; color: var(--ink); font-weight: 700; }
.media-kit-summary p { color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 760px; }

.content-page { background: var(--surface); }
.content-header { position: relative; }
.content-shell { width: min(980px, calc(100% - 32px)); margin: 38px auto 58px; padding: 0; }
.content-card { background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: clamp(30px, 4.4vw, 56px); }
.content-card .eyebrow { color: var(--green); font: 800 13px/1 "DM Sans", sans-serif; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 14px; }
.content-card h1 { font: 800 clamp(34px, 5vw, 58px)/1 "Manrope", sans-serif; letter-spacing: -2.4px; margin: 0 0 20px; max-width: 800px; }
.content-card h2 { font: 800 24px/1.15 "Manrope", sans-serif; letter-spacing: -.8px; margin: 34px 0 10px; }
.content-card p { color: var(--muted); font-size: 17px; line-height: 1.7; margin: 0 0 15px; max-width: 780px; }
.content-card strong { color: var(--ink); }
.content-card a, .terms a { color: var(--green); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.contact-panel { border: 1px solid var(--line); border-radius: 14px; background: var(--green-soft); padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; margin: 26px 0 8px; max-width: 440px; }
.contact-panel strong { font: 800 13px "DM Sans", sans-serif; text-transform: uppercase; letter-spacing: .08em; color: var(--green); }
.contact-panel a { font-size: 19px; }

.coverage-section { margin: 0 calc(clamp(24px, 4.2vw, 68px) * -1); padding: 70px clamp(24px, 4.2vw, 68px); background: var(--ink); color: white; display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.coverage-section h2 { font: 800 clamp(32px, 3.6vw, 50px)/1.05 "Manrope", sans-serif; letter-spacing: -2px; margin: 0 0 20px; }
.coverage-section > div > p { color: #b9c4d4; font-size: 17px; line-height: 1.6; margin: 0; }
.standards-link { align-self: center; justify-self: start; display: inline-flex; align-items: center; gap: 14px; border: 1px solid #52617a; border-radius: 12px; padding: 16px 20px; color: white; font-weight: 800; }
.standards-link:hover { border-color: #67d995; color: #67d995; }
.coverage-list { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #364158; border-left: 1px solid #364158; }
.coverage-item { min-height: 98px; border-right: 1px solid #364158; border-bottom: 1px solid #364158; padding: 18px; }
.coverage-item strong { display: block; margin-bottom: 7px; }
.coverage-item span { color: #a8b6c8; font-size: 12px; }
.coverage-item.verified-source span { color: #67d995; }

footer { max-width: 1460px; margin: auto; padding: 42px clamp(24px, 4.2vw, 68px); display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--muted); }
.footer-brand { font-size: 21px; }
.footer-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 18px; font-size: 12px; font-weight: 800; }
.footer-links a { color: var(--green); }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 3px; }
footer p { font-size: 12px; max-width: 620px; text-align: right; }
.toast { position: fixed; left: 50%; bottom: 30px; transform: translate(-50%, 20px); background: var(--ink); color: white; padding: 13px 18px; border-radius: 10px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: .25s ease; z-index: 40; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1050px) {
  .site-header { gap: 30px; }
  .main-nav a:nth-child(n+3) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 34px; }
  .hero h1 br { display: block; }
  .featured-layout { grid-template-columns: 1fr; }
  .visual-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .deal-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-section { grid-template-columns: 1fr; gap: 42px; }
}

@media (max-width: 700px) {
  .site-header { height: 70px; padding: 0 18px; }
  .brand { font-size: 21px; }
  .brand i { display: none; }
  .main-nav { display: none; }
  .header-actions { gap: 1px; }
  .saved-nav { font-size: 0; gap: 5px; padding: 7px; }
  .account-nav { padding: 5px; }
  .account-label { display: none; }
  .account-dialog { width: calc(100vw - 24px); border-radius: 16px; }
  .deal-dialog { width: calc(100vw - 24px); border-radius: 16px; }
  .deal-dialog-content { padding: 32px 22px 25px; }
  .deal-dialog-header h2 { font-size: 27px; }
  .deal-facts { grid-template-columns: 1fr; }
  .deal-facts div, .deal-facts div:nth-child(even) { padding: 15px 0; border-left: 0; }
  .account-auth, .account-profile { padding: 27px 22px 28px; }
  .account-heading { align-items: flex-start; }
  .account-mark { width: 43px; height: 43px; }
  .store-preferences { overflow-x: auto; }
  .store-preferences label { min-width: 112px; }
  main { padding: 0 18px; width: 100%; min-width: 0; overflow: hidden; }
  .hero { padding-top: 34px; gap: 28px; min-width: 0; width: 100%; }
  .hero-copy, .discovery { min-width: 0; width: 100%; }
  .hero h1 { font-size: 39px; line-height: 1.08; letter-spacing: -2.2px; width: 100%; max-width: calc(100vw - 36px); }
  .hero-copy p { font-size: 16px; }
  .search { min-height: 58px; padding-left: 13px; }
  .search { width: 100%; min-width: 0; }
  .search button { padding: 0 15px; }
  .type-filters { display: flex; max-width: 100%; overflow-x: auto; padding-bottom: 4px; }
  .filter { min-width: 118px; }
  .store-rail { align-items: flex-start; min-width: 0; overflow: hidden; }
  .store-rail > div { flex-wrap: nowrap; overflow-x: auto; max-width: 100%; min-width: 0; width: 100%; }
  .store-rail > a { display: none; }
  .store { min-width: 114px; }
  .visual-categories { padding-bottom: 34px; }
  .visual-category-grid { display: flex; overflow-x: auto; padding-bottom: 8px; margin: 0 -18px; padding-left: 18px; padding-right: 18px; scroll-snap-type: x mandatory; }
  .visual-category { min-width: 190px; scroll-snap-align: start; }
  .verified { display: none; }
  .featured-deal { grid-template-columns: 1fr; }
  .featured-art { border-left: 0; border-top: 1px dashed #e6cc73; order: -1; max-height: 220px; }
  .featured-art img { max-height: 180px; }
  .featured-copy { padding: 24px 25px 25px 30px; }
  .side-deal { grid-template-columns: 1fr 90px; padding: 18px; }
  .side-deal img { width: 85px; height: 85px; }
  .side-price { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 10px; text-align: left; }
  .side-price .card-detail-link { margin: 0 0 0 auto; }
  .deal-grid { grid-template-columns: 1fr; }
  .deal-card { min-height: 300px; }
  .deal-card.no-product-image { min-height: 210px; }
  .deal-card-image img { aspect-ratio: 1.65; }
  .media-kit-shell { width: calc(100% - 24px); margin: 22px auto 36px; }
  .media-kit-intro { border-radius: 17px; }
  .media-kit-intro h1 { letter-spacing: -1.5px; }
  .media-kit-preview { min-width: 680px; }
  .media-kit-viewer { overflow-x: auto; }
  .coverage-section { margin: 0 -18px; padding: 55px 18px; }
  .coverage-list { grid-template-columns: repeat(2, 1fr); }
  footer { flex-direction: column; align-items: flex-start; }
  footer p { text-align: left; }
}
