/* ── I WANT THAT SET — Shared Styles ── */

:root {
  --teal: #0e8a8a;
  --teal-light: #1ac8c8;
  --teal-pale: #f2f8f8;
  --teal-mid: #c0dcdc;
  --dark: #081a1a;
  --dark-2: #0f2a2a;
  --text: #1a2e2e;
  --text-muted: #5a8080;
  --text-faint: #9abcbc;
  --bg: #fafcfc;
  --bg-card: #ffffff;
  --border: #e0eeee;
  --star: #f0a500;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

/* ── HEADER ── */
header {
  background: #f2f8f8;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: stretch;
  gap: 0;
  text-decoration: none;
}
.logo-bar {
  width: 5px;
  background: var(--teal);
  border-radius: 2px;
  margin-right: 14px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; justify-content: center; }
.logo-i {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--dark);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-want {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--teal);
  letter-spacing: 3px;
  line-height: 1;
}
.logo-rest {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--dark);
  letter-spacing: 3px;
  line-height: 1;
}
nav { display: flex; gap: 28px; align-items: center; }
nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
nav a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: white !important;
  padding: 8px 18px;
  border-radius: 3px;
  letter-spacing: 1px;
}
.nav-cta:hover { background: var(--dark-2) !important; color: white !important; }

/* ── HERO ── */
.hero {
  background: var(--dark);
  color: white;
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,138,138,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: 'IWTS';
  position: absolute;
  bottom: -20px; right: 40px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(14,138,138,0.05);
  letter-spacing: -4px;
  pointer-events: none;
  line-height: 1;
}
.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: .95;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: #eafafa;
}
.hero h1 span { color: var(--teal-light); }
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(234,250,250,0.6);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--teal-light);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(234,250,250,0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ── SECTION STRUCTURE ── */
section { padding: 64px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--dark);
}
.section-title span { color: var(--teal); }
.see-all {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
}
.see-all:hover { color: var(--dark); }

/* ── FEATURED REVIEW (hero card) ── */
.featured {
  background: var(--teal-pale);
  border-top: 4px solid var(--teal);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.featured-img {
  background: linear-gradient(135deg, #c0dcdc 0%, #e8f4f4 100%);
  border-radius: 4px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--teal);
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}
.featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(14,138,138,0.04) 20px,
    rgba(14,138,138,0.04) 40px
  );
}
.set-number-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1px;
  z-index: 1;
}
.featured-content { padding: 8px 0; }
.review-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(14,138,138,0.1);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.featured-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 12px;
}
.featured-content h2 em { color: var(--teal); font-style: italic; }
.stars { color: var(--star); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.stars span { font-size: 13px; color: var(--text-muted); margin-left: 6px; font-family: 'DM Sans', sans-serif; font-style: normal; }
.featured-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.buy-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .3px;
}
.buy-btn-primary { background: var(--teal); color: white; }
.buy-btn-primary:hover { background: var(--dark-2); }
.buy-btn-outline { border: 1.5px solid var(--teal-mid); color: var(--teal); background: white; }
.buy-btn-outline:hover { border-color: var(--teal); background: var(--teal-pale); }
.price-note { font-size: 12px; color: var(--text-faint); }

/* ── REVIEW GRID ── */
.reviews-bg { background: white; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: 0 8px 32px rgba(8,26,26,0.08); transform: translateY(-2px); }
.card-img {
  background: linear-gradient(135deg, var(--teal-pale) 0%, var(--teal-mid) 100%);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  color: var(--teal);
  letter-spacing: 2px;
  position: relative;
}
.card-img.theme-city { background: linear-gradient(135deg, #e8f4f4 0%, #b8dede 100%); }
.card-img.theme-technic { background: linear-gradient(135deg, #f0f0f4 0%, #d0d0e0 100%); }
.card-img.theme-icons { background: linear-gradient(135deg, #f4f0e8 0%, #e0d4b8 100%); }
.card-img.theme-creator { background: linear-gradient(135deg, #eef4e8 0%, #c8dcc0 100%); }
.card-img.theme-star-wars { background: linear-gradient(135deg, #1a1a2e 0%, #2a2a4e 100%); color: rgba(200,220,220,0.6); }
.card-img.theme-architecture { background: linear-gradient(135deg, #f4f2ee 0%, #dcd8cc 100%); }
.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--teal);
  color: white;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 1px;
}
.card-badge.badge-new { background: #e05a00; }
.card-badge.badge-deal { background: #1a8a3a; }
.card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.card-theme {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 6px;
}
.card-set-num { font-size: 12px; color: var(--text-faint); margin-bottom: 8px; }
.card-stars { color: var(--star); font-size: 13px; margin-bottom: 10px; }
.card-stars span { color: var(--text-faint); font-size: 12px; margin-left: 4px; }
.card-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  gap: 8px;
}
.card-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--dark); letter-spacing: 1px; }
.card-price small { font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--text-faint); font-weight: 300; display: block; line-height: 1; margin-bottom: 2px; }
.card-links { display: flex; gap: 6px; }
.card-link {
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: .3px;
  transition: all .15s;
}
.card-link-primary { background: var(--teal); color: white; }
.card-link-primary:hover { background: var(--dark); }
.card-link-secondary { border: 1px solid var(--border); color: var(--text-muted); }
.card-link-secondary:hover { border-color: var(--teal); color: var(--teal); }

/* ── DEALS BAR ── */
.deals-bar { background: var(--dark); padding: 48px 24px; }
.deals-inner { max-width: 1160px; margin: 0 auto; }
.deals-header { margin-bottom: 28px; }
.deals-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: #eafafa;
}
.deals-title span { color: var(--teal-light); }
.deals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.deal-pill {
  background: rgba(14,138,138,0.1);
  border: 1px solid rgba(14,138,138,0.2);
  border-radius: 3px;
  padding: 14px 16px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all .2s;
}
.deal-pill:hover { background: rgba(14,138,138,0.2); border-color: var(--teal); }
.deal-retailer { font-size: 10px; font-weight: 500; letter-spacing: 3px; color: var(--teal-light); text-transform: uppercase; }
.deal-name { font-size: 14px; font-weight: 500; color: #eafafa; line-height: 1.3; }
.deal-price { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--teal-light); letter-spacing: 1px; }
.deal-was { font-size: 11px; color: rgba(234,250,250,0.3); text-decoration: line-through; margin-left: 6px; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--teal-pale); border-top: 1px solid var(--teal-mid); border-bottom: 1px solid var(--teal-mid); }
.about-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.about-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: var(--dark);
  line-height: 1;
}
.about-heading span { color: var(--teal); }
.about-body { font-size: 15px; color: var(--text-muted); line-height: 1.8; }
.about-body p + p { margin-top: 12px; }
.disclosure {
  margin-top: 16px;
  padding: 12px 16px;
  background: white;
  border-left: 3px solid var(--teal);
  font-size: 13px;
  color: var(--text-muted);
  border-radius: 0 3px 3px 0;
}

/* ── NEWSLETTER ── */
.newsletter { background: white; text-align: center; }
.newsletter h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 10px;
}
.newsletter h2 span { color: var(--teal); }
.newsletter p { color: var(--text-muted); font-size: 15px; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; max-width: 440px; margin: 0 auto; }
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  color: var(--text);
  background: var(--bg);
  transition: border .2s;
}
.newsletter-form input:focus { border-color: var(--teal); }
.newsletter-form button {
  padding: 12px 24px;
  background: var(--teal);
  color: white;
  border: none;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: .5px;
  transition: background .2s;
}
.newsletter-form button:hover { background: var(--dark-2); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(234,250,250,0.5); padding: 48px 24px 32px; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo-i { font-family: 'Bebas Neue', sans-serif; font-size: 11px; color: rgba(234,250,250,0.4); letter-spacing: 2px; }
.footer-logo-want { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--teal-light); letter-spacing: 3px; line-height: 1; }
.footer-logo-rest { font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: rgba(234,250,250,0.8); letter-spacing: 3px; line-height: 1; }
.footer-desc { font-size: 13px; line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: rgba(234,250,250,0.7); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: rgba(234,250,250,0.4); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom { border-top: 1px solid rgba(14,138,138,0.15); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; }
.footer-legal { font-size: 11px; color: rgba(234,250,250,0.25); max-width: 600px; line-height: 1.6; }
.footer-legal a { color: rgba(234,250,250,0.4); }
.footer-legal a:hover { color: var(--teal-light); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  color: white;
  padding: 48px 24px 40px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(14,138,138,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
.page-hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--teal-light);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 2px;
  color: #eafafa;
}
.page-hero h1 span { color: var(--teal-light); }
.page-hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(234,250,250,0.5);
  max-width: 520px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.legal-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
  padding-left: 24px;
}
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--teal); text-decoration: none; }
.legal-content a:hover { color: var(--dark); text-decoration: underline; }
.legal-content .last-updated {
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 32px;
}

/* ── DEALS PAGE ── */
.deals-page-content { background: var(--dark); padding: 0 24px 64px; }
.deals-page-inner { max-width: 1160px; margin: 0 auto; }
.deals-meta {
  font-size: 12px;
  color: rgba(234,250,250,0.3);
  margin-bottom: 24px;
}
.deals-empty {
  text-align: center;
  padding: 48px 24px;
  color: rgba(234,250,250,0.4);
  font-size: 15px;
}
.deals-empty p { margin-bottom: 8px; }

/* ── CONTACT PAGE ── */
.contact-grid {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.contact-grid h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-grid p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.contact-grid a { color: var(--teal); text-decoration: none; }
.contact-grid a:hover { color: var(--dark); text-decoration: underline; }
.contact-email {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 24px;
  background: var(--teal);
  color: white !important;
  border-radius: 3px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .5px;
  transition: background .2s;
}
.contact-email:hover { background: var(--dark-2) !important; text-decoration: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .featured-grid, .about-grid, .footer-top { grid-template-columns: 1fr; }
  nav { display: none; }
  .hero, .page-hero { padding: 48px 24px; }
  .hero::after { display: none; }
}
