:root {
  --slider-duration: 7000ms;
  --greige: #b7b1a8;
  --greige-dark: #8f887e;
  --bg: #f7f6f4;
  --card: #ffffff;
  --line: #e7e4de;
  --text: #2f2f2f;
  --muted: #6f6b66;
  --cta: #343434;
  --cta-hover: #1f1f1f;
  --shadow: 0 24px 80px rgba(47, 47, 47, 0.08);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(247,246,244,.88); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.announcement { text-align: center; font-size: 13px; padding: 8px 16px; color: var(--muted); border-bottom: 1px solid var(--line); }
.navbar { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 18px 28px; gap: 28px; }
.logo { font-family: "Average", serif; font-size: 30px; letter-spacing: .01em; }
.nav-panel { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex: 1; }
.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; padding: 0; margin: 0; font-size: 14px; font-weight: 600; }
.nav-trigger, .icon-button { border: 0; background: transparent; cursor: pointer; color: var(--text); font-weight: 600; padding: 8px 0; }
.nav-actions { display: flex; gap: 16px; color: var(--muted); }
.has-mega { position: relative; }
.mega-menu { position: absolute; top: 42px; left: -24px; width: 620px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 24px; padding: 28px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.has-mega:hover .mega-menu, .has-mega.is-open .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu h3 { font-family: "Average", serif; font-size: 28px; line-height: 1.15; margin: 4px 0 10px; }
.mega-menu p { color: var(--muted); margin: 0; }
.mega-kicker, .eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 700; color: var(--greige-dark); margin: 0 0 12px; }
.mega-menu ul { columns: 2; list-style: none; padding: 0; margin: 0; }
.mega-menu li { break-inside: avoid; margin: 0 0 10px; }
.mega-menu a:hover, .nav-links a:hover, .nav-trigger:hover { color: var(--greige-dark); }
.mobile-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--card); }
.mobile-toggle span { display: block; width: 18px; height: 2px; background: var(--text); margin: 4px auto; }
.hero-slider { position: relative; overflow: hidden; background: var(--bg); }
.hero-track { position: relative; min-height: 900px; }
.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 900px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.035);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), visibility .9s cubic-bezier(.22,1,.36,1), transform 1.35s cubic-bezier(.22,1,.36,1);
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247,246,244,.94) 0%, rgba(247,246,244,.78) 43%, rgba(247,246,244,.28) 100%);
  pointer-events: none;
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(247,246,244,0) 100%);
  pointer-events: none;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transform: scale(1); z-index: 1; }
.hero-slide.is-active { animation: heroKenBurns var(--slider-duration) linear forwards; }
.hero-slide.is-active .hero-content { animation: heroContentIn .9s cubic-bezier(.22,1,.36,1) both; }
.hero-slide.is-active .hero-card { animation: heroCardIn 1s cubic-bezier(.22,1,.36,1) .08s both; }
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1640px, calc(100vw - 72px));
  min-height: 900px;
  margin: 0 auto;
  padding: 118px 0 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(340px, 410px);
  gap: clamp(42px, 5vw, 92px);
  align-items: center;
}
h1, h2, h3 { font-family: "Average", serif; line-height: 1.08; font-weight: 400; margin: 0; }
h1 { font-size: clamp(58px, 6.8vw, 112px); letter-spacing: -.04em; max-width: 1120px; text-wrap: balance; }
.hero-copy { max-width: 850px; font-size: 22px; color: var(--muted); margin: 28px 0 34px; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 700; }
.primary { background: var(--cta); color: white; }
.primary:hover { background: var(--cta-hover); }
.secondary { border: 1px solid rgba(231,228,222,.9); background: rgba(255,255,255,.76); backdrop-filter: blur(12px); }
.hero-card { background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.58); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); backdrop-filter: blur(22px); }
.badge { display: inline-flex; background: #f0ede8; color: var(--greige-dark); border-radius: 999px; padding: 8px 12px; font-size: 12px; font-weight: 700; }
.product-visual { height: 280px; border-radius: 22px; margin: 22px 0; background: radial-gradient(circle at 30% 20%, #ded8cf, transparent 34%), linear-gradient(135deg, #c9c1b7, #f2efea); }
.visual-list { background: radial-gradient(circle at 72% 28%, #f7f6f4, transparent 28%), linear-gradient(135deg, #b7b1a8, #ece8e1); }
.visual-look { background: radial-gradient(circle at 30% 68%, #f7f6f4, transparent 30%), linear-gradient(135deg, #a9a196, #e8e3da); }
.hero-card h2 { font-size: 34px; }
.hero-card p { color: var(--muted); }
.hero-controls {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 16px 48px rgba(47,47,47,.08);
  backdrop-filter: blur(18px);
}
.hero-arrow, .hero-dot { border: 0; cursor: pointer; }
.hero-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.72);
  color: var(--text);
  font-weight: 700;
}
.hero-arrow:hover { background: var(--cta); color: white; }
.hero-dots { display: flex; gap: 9px; }
.hero-dot {
  position: relative;
  overflow: hidden;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  background: rgba(52,52,52,.28);
  transition: width .35s ease, background .35s ease;
}
.hero-dot.is-active { width: 36px; border-radius: 999px; background: rgba(52,52,52,.22); }
.hero-dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  border-radius: inherit;
  background: var(--cta);
  animation: heroDotProgress var(--slider-duration) linear forwards;
}
.hero-slider.is-paused .hero-dot.is-active::after,
.hero-slider.is-paused .hero-slide.is-active { animation-play-state: paused; }
@keyframes heroKenBurns {
  from { background-position: 50% 50%; }
  to { background-position: 54% 48%; }
}
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroCardIn {
  from { opacity: 0; transform: translateY(22px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes heroDotProgress {
  from { width: 0; }
  to { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide.is-active, .hero-slide.is-active .hero-content, .hero-slide.is-active .hero-card, .hero-dot.is-active::after {
    animation: none;
    transition: none;
  }
}
.section { max-width: 1320px; margin: 0 auto; padding: 80px 28px; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2, .feature-band h2, .deal-card h2 { font-size: clamp(38px, 5vw, 64px); letter-spacing: -.03em; }
.section-heading p, .feature-band p, .deal-card p { color: var(--muted); font-size: 18px; }
.value-grid, .category-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.value-grid article, .category-card, .deal-card, .deal-list, .look-grid article { background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.value-grid h3, .category-card h3, .look-grid h3 { font-size: 25px; margin-bottom: 10px; }
.value-grid p, .category-card p { color: var(--muted); margin: 0; font-size: 15px; }
.category-card { min-height: 245px; display: flex; flex-direction: column; justify-content: space-between; transition: .2s ease; }
.category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-card span { color: var(--greige-dark); font-weight: 700; }
.feature-band { background: var(--greige); border-radius: 36px; padding: 54px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; }
.feature-band .eyebrow, .feature-band p { color: #504b45; }
.list-cards { display: grid; gap: 14px; align-content: center; }
.list-cards a { background: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.45); border-radius: 18px; padding: 18px 20px; font-weight: 700; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.deal-card, .deal-list { padding: 38px; }
.text-link { font-weight: 700; border-bottom: 1px solid currentColor; }
.deal-list { display: grid; gap: 16px; }
.deal-list div { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.deal-list strong, .deal-list span { display: block; }
.deal-list span { color: var(--muted); }
.look-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.look-grid article div { height: 260px; border-radius: 20px; background: linear-gradient(135deg, #ddd8d1, #f5f2ed); margin-bottom: 18px; }
.footer { max-width: 1320px; margin: 40px auto 0; padding: 42px 28px; display: flex; justify-content: space-between; gap: 32px; border-top: 1px solid var(--line); color: var(--muted); }
.footer div:last-child { display: flex; gap: 18px; flex-wrap: wrap; }
@media (max-width: 1100px) {
  .nav-panel { display: none; position: absolute; left: 16px; right: 16px; top: 104px; background: var(--card); border: 1px solid var(--line); border-radius: 24px; padding: 22px; box-shadow: var(--shadow); }
  .nav-panel.is-open { display: block; }
  .nav-links, .nav-actions { display: block; }
  .nav-links li { margin-bottom: 10px; }
  .mobile-toggle { display: block; }
  .mega-menu { position: static; width: 100%; grid-template-columns: 1fr; display: none; margin: 10px 0 18px; box-shadow: none; }
  .has-mega.is-open .mega-menu { display: grid; opacity: 1; visibility: visible; transform: none; }
  .hero-track, .hero-slide, .hero-inner { min-height: 840px; }
  .hero-inner { width: min(100% - 48px, 980px); grid-template-columns: 1fr; gap: 36px; padding-top: 76px; padding-bottom: 104px; }
  .hero-slide::before { background: linear-gradient(90deg, rgba(247,246,244,.96) 0%, rgba(247,246,244,.82) 58%, rgba(247,246,244,.42) 100%); }
  .hero-card { max-width: 520px; }
  .value-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-band, .split { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .navbar { padding: 14px 18px; }
  .hero-inner, .section { padding-left: 0; padding-right: 0; }
  .hero-track, .hero-slide, .hero-inner { min-height: 700px; }
  .hero-inner { width: min(100% - 36px, 620px); gap: 30px; padding-top: 58px; padding-bottom: 116px; align-content: center; }
  .hero-slide::before { background: linear-gradient(180deg, rgba(247,246,244,.96) 0%, rgba(247,246,244,.84) 62%, rgba(247,246,244,.62) 100%); }
  h1 { font-size: clamp(46px, 13vw, 64px); }
  .hero-copy { font-size: 18px; max-width: 100%; }
  .hero-card { display: none; }
  .product-visual { height: 190px; }
  .hero-controls { bottom: 24px; }
  .value-grid, .category-grid, .look-grid { grid-template-columns: 1fr; }
  .feature-band { padding: 34px 24px; border-radius: 28px; }
  .footer { flex-direction: column; }
}


/* Top Deals Slider */
.top-deals-section {
  max-width: none;
  width: 90vw;
  padding-left: 0;
  padding-right: 0;
  padding-top: 72px;
  padding-bottom: 44px;
}
.top-deals-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 18px;
}
.top-deals-head .section-heading { margin-bottom: 0; }
.deal-slider-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
  padding-bottom: 8px;
}
.deal-arrow {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.74);
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(47,47,47,.06);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.deal-arrow:hover { transform: translateY(-2px); background: var(--cta); color: #fff; }
.deal-slider { position: relative; }
.deal-slider-viewport {
  overflow: hidden;
  border-radius: 32px;
  padding: 2px;
}
.deal-slider-track {
  --deal-gap: 22px;
  display: flex;
  gap: var(--deal-gap);
  will-change: transform;
  transition: transform .9s cubic-bezier(.22, 1, .36, 1);
}
.deal-product-card {
  flex: 0 0 calc((100% - (var(--deal-gap) * 4)) / 5);
  min-width: 0;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  box-shadow: 0 18px 44px rgba(47,47,47,.05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.deal-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 72px rgba(47,47,47,.10);
  border-color: rgba(183,177,168,.65);
}
.deal-product-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, #e9e4dc, #f8f6f2);
  aspect-ratio: 1 / .88;
}
.deal-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
  transition: transform .45s ease;
}
.deal-product-card:hover .deal-product-media img { transform: scale(1.035); }
.deal-product-media span {
  position: absolute;
  left: 14px;
  top: 14px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255,255,255,.78);
  color: var(--greige-dark);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}
.deal-product-content {
  padding: 20px 4px 18px;
  flex: 1;
}
.deal-product-category {
  margin: 0 0 8px;
  color: var(--greige-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
}
.deal-product-content h3 {
  font-size: 27px;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.deal-product-content p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}
.deal-product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.button.small {
  min-height: 44px;
  padding: 12px 16px;
  font-size: 13px;
  justify-content: center;
}
.deal-progress {
  height: 4px;
  width: min(340px, 56vw);
  background: rgba(52,52,52,.12);
  border-radius: 999px;
  margin: 26px auto 0;
  overflow: hidden;
}
.deal-progress span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--cta);
  animation: dealProgress 6s linear infinite;
}
.deal-slider.is-paused .deal-progress span { animation-play-state: paused; }
@keyframes dealProgress { from { width: 0; } to { width: 100%; } }

/* Product detail pages */
.product-detail-main { padding-top: 34px; }
.product-detail-hero {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 28px 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 54px;
  align-items: center;
}
.back-link {
  color: var(--muted);
  font-weight: 800;
  display: inline-flex;
  margin-bottom: 28px;
}
.product-detail-hero h1 { font-size: clamp(54px, 7vw, 92px); line-height: .92; }
.product-detail-copy { color: var(--muted); font-size: 20px; line-height: 1.75; max-width: 780px; }
.product-detail-media {
  border-radius: 38px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.product-detail-media img { width: 100%; display: block; }
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.product-detail-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 28px 86px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
}
.detail-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 30px;
}
.detail-panel h2 { font-size: 34px; margin-bottom: 14px; }
.detail-panel p, .detail-panel li { color: var(--muted); line-height: 1.72; }
.detail-panel ul { padding-left: 20px; margin: 0; }
.detail-panel li + li { margin-top: 10px; }
.detail-stack { display: grid; gap: 18px; }
.disclaimer {
  max-width: 1320px;
  margin: -50px auto 82px;
  padding: 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
@media (max-width: 1280px) {
  .deal-product-card { flex-basis: calc((100% - (var(--deal-gap) * 2)) / 3); min-height: 540px; }
}
@media (max-width: 1100px) {
  .deal-product-card { flex-basis: calc((100% - var(--deal-gap)) / 2); min-height: 520px; }
  .product-detail-hero, .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-media { max-width: 560px; }
}
@media (max-width: 700px) {
  .top-deals-section { width: calc(100vw - 36px); }
  .top-deals-head { display: block; }
  .deal-slider-controls { padding-top: 10px; }
  .deal-product-card { flex-basis: 100%; min-height: auto; }
  .deal-slider-viewport { border-radius: 24px; }
  .deal-product-content h3 { font-size: 25px; }
  .product-detail-hero { padding-top: 42px; gap: 30px; }
  .product-detail-actions { display: grid; }
  .product-detail-grid { padding-bottom: 60px; }
  .detail-panel { padding: 24px; }
}


/* Affiliate and legal foundation */
.affiliate-callout {
  width: 100%;
  margin: 20px 0 28px;
  padding: 16px 18px;
  border: 1px solid rgba(183,177,168,.42);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.affiliate-callout strong { color: var(--text); }
.affiliate-mini {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}
.product-affiliate-note {
  margin-top: 18px;
  max-width: 780px;
}
.footer {
  align-items: flex-start;
}
.footer-affiliate {
  max-width: 390px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--muted);
}
.footer-columns {
  display: flex;
  gap: 48px !important;
  align-items: flex-start;
}
.footer nav {
  display: grid;
  gap: 8px;
}
.footer nav strong {
  color: var(--text);
  font-size: 13px;
  margin-bottom: 4px;
}
.footer nav a { color: var(--muted); }
.footer nav a:hover { color: var(--text); }
.legal-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 28px 96px;
}
.legal-hero {
  max-width: 860px;
  margin-bottom: 38px;
}
.legal-hero h1 {
  font-size: clamp(56px, 8vw, 104px);
  letter-spacing: -.04em;
}
.legal-hero p:last-child {
  color: var(--muted);
  font-size: 20px;
  max-width: 760px;
}
.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
  align-items: start;
}
.legal-panel,
.legal-side-note {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 18px 56px rgba(47,47,47,.045);
}
.legal-panel h2,
.legal-side-note h2 {
  font-size: 32px;
  margin: 30px 0 10px;
}
.legal-panel h2:first-child,
.legal-side-note h2:first-child { margin-top: 0; }
.legal-panel p,
.legal-panel li,
.legal-side-note p,
.legal-side-note li {
  color: var(--muted);
  line-height: 1.76;
}
.legal-panel a { font-weight: 700; border-bottom: 1px solid currentColor; }
.legal-side-note { position: sticky; top: 128px; }
.legal-side-note ul { margin: 0; padding-left: 20px; }
@media (max-width: 900px) {
  .legal-content { grid-template-columns: 1fr; }
  .legal-side-note { position: static; }
  .footer-columns { gap: 24px !important; flex-wrap: wrap; }
}
@media (max-width: 700px) {
  .legal-main { padding: 48px 18px 72px; }
  .legal-panel,
  .legal-side-note { border-radius: 24px; }
  .footer-columns { display: grid !important; }
}

/* Simple header navigation for product and legal pages */
.nav-panel.is-simple {
  flex: 0 1 auto;
  justify-content: flex-end;
}
@media (max-width: 1100px) {
  .nav-panel.is-simple {
    display: flex;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
  }
  .nav-panel.is-simple .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    font-size: 13px;
  }
  .nav-panel.is-simple .nav-links li { margin-bottom: 0; }
}
@media (max-width: 700px) {
  .nav-panel.is-simple { display: none; }
}
