:root {
  --bg: #f6f7f9;
  --surface: #fff;
  --ink: #151922;
  --muted: #687385;
  --line: #dfe4ea;
  --dark: #101820;
  --coral: #d9563d;
  --green: #257257;
  --blue: #285f9f;
  --mustard: #be8b21;
  --shadow: 0 18px 50px rgba(18, 24, 32, 0.13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.56;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 66px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(223, 228, 234, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-size: 13px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.top-nav a {
  color: #3b4656;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.header-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  padding: 6px 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 66px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 86px 28px 126px;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 12, 18, 0.78), rgba(8, 12, 18, 0.42) 48%, rgba(8, 12, 18, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow { color: #ffd1c7; }

h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-content p:not(.eyebrow) {
  width: min(640px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.primary-action,
.secondary-action,
.buy-button,
.review-button,
.guide-card a,
.deal-card a,
.related-links a,
.trust-band a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  padding: 8px 13px;
  text-decoration: none;
  font-weight: 900;
}

.primary-action { background: #fff; color: var(--dark); }
.secondary-action { border: 1px solid rgba(255, 255, 255, 0.6); color: #fff; }

.search-panel,
.section,
.trust-band,
.site-footer {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.search-panel {
  transform: translateY(-54px);
  margin-bottom: -24px;
  display: grid;
  gap: 11px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.search-panel label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.search-box {
  display: flex;
  gap: 8px;
}

.search-box input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  font: inherit;
}

button {
  font: inherit;
}

.search-box button,
.keyword-row button,
.filter-tab,
.category-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 850;
}

.search-box button { padding: 0 13px; }

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.keyword-row button {
  min-height: 30px;
  padding: 5px 9px;
  color: #3d4858;
  font-size: 13px;
  background: #f8fafc;
}

.section {
  padding: 34px 0 20px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.section-head h2,
.trust-band h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 14px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.filter-tab {
  min-height: 34px;
  padding: 6px 11px;
  color: #3b4656;
}

.filter-tab.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.deal-section {
  padding-top: 10px;
}

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.deal-card {
  position: relative;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
  overflow: hidden;
}

.deal-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 8px;
  transform: rotate(12deg);
  background: rgba(217, 86, 61, 0.12);
}

.deal-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-weight: 950;
}

.deal-card h3 {
  margin: 12px 0 8px;
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: 0;
}

.deal-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.deal-card a {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
}

.future-deals-section {
  padding-top: 10px;
}

.future-deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.future-deal-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.future-deal-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.future-deal-image {
  display: block;
  background: #eef1f5;
}

.future-deal-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.future-deal-body {
  padding: 14px;
}

.future-deal-body h3 {
  margin: 10px 0 7px;
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: 0;
}

.future-deal-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.future-deal-body p {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.deal-countdown {
  margin-top: 9px;
  border-radius: 8px;
  background: #fff1d6;
  color: #6f4300;
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 850;
}

.next-drop-section {
  display: grid;
  gap: 12px;
}

.next-drop-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: 16px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  padding: clamp(20px, 4vw, 34px);
}

.next-drop-panel h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 62px);
  line-height: 1.02;
}

.next-drop-panel p:not(.eyebrow) {
  max-width: 680px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.search-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.search-chip-row a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  padding: 5px 9px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.next-drop-clock {
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.next-drop-clock span,
.next-drop-clock small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 850;
}

.next-drop-clock strong {
  font-size: 30px;
  line-height: 1.08;
}

.next-drop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.next-drop-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}

.next-drop-grid h3 {
  margin: 8px 0;
  font-size: 21px;
  line-height: 1.3;
}

.next-drop-grid p:not(.eyebrow) {
  min-height: 44px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.next-drop-grid article > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-top: 14px;
}

.next-drop-grid span {
  color: #4b5869;
  font-size: 13px;
  font-weight: 850;
}

.next-drop-grid a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.section-more {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.section-more a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  padding: 8px 13px;
  text-decoration: none;
  font-weight: 900;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.exhibition-grid,
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.archive-trend-grid,
.archive-exhibition-grid,
.archive-brand-grid {
  margin-top: 16px;
}

.trend-card,
.exhibition-card,
.brand-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 18px;
}

.exhibition-card {
  display: grid;
  gap: 14px;
  align-content: space-between;
  min-height: 258px;
  background: linear-gradient(145deg, #ffffff, #f7f9fc);
}

.brand-card {
  display: grid;
  align-content: start;
  min-height: 246px;
}

.brand-logo {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-weight: 950;
}

.trend-card h3,
.exhibition-card h3,
.brand-card h3 {
  margin: 8px 0 8px;
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: 0;
}

.trend-card p:not(.eyebrow),
.exhibition-card p:not(.eyebrow),
.brand-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.trend-card span,
.brand-card span {
  display: block;
  margin-top: 12px;
  color: #3e4a59;
  font-size: 13px;
  font-weight: 850;
}

.exhibition-meta {
  display: grid;
  gap: 5px;
  border-radius: 8px;
  background: #f1f4f8;
  padding: 11px;
}

.exhibition-meta span,
.exhibition-meta small {
  color: #4b5869;
  font-size: 12px;
  font-weight: 850;
}

.exhibition-meta strong {
  color: var(--dark);
  font-size: 20px;
  line-height: 1.1;
}

.trend-card a,
.exhibition-card a,
.brand-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  padding: 7px 11px;
  text-decoration: none;
  font-weight: 900;
}

.lead-pick-section {
  padding-top: 20px;
}

.lead-pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.lead-pick-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.lead-pick-image {
  display: block;
  background: #eef1f5;
}

.lead-pick-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.lead-pick-body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.lead-pick-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lead-rank {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-weight: 950;
}

.lead-pick-body h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: 0;
}

.lead-pick-body h3 a {
  color: var(--ink);
  text-decoration: none;
}

.lead-pick-body p:not(.eyebrow) {
  min-height: 42px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-price {
  display: grid;
  gap: 4px;
  border-radius: 8px;
  background: #fff1d6;
  padding: 12px;
}

.lead-price span,
.lead-price small {
  color: #6f4300;
  font-size: 12px;
  font-weight: 850;
}

.lead-price strong {
  color: var(--dark);
  font-size: 24px;
  line-height: 1.1;
}

.lead-checks {
  display: grid;
  gap: 6px;
  min-height: 84px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-checks li {
  border-left: 3px solid var(--green);
  padding-left: 8px;
  color: #3e4a59;
  font-size: 13px;
  line-height: 1.45;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-card,
.guide-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.product-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef1f5;
}

.product-body,
.guide-card > div {
  padding: 14px;
}

.pill {
  display: inline-flex;
  border-radius: 8px;
  background: #f1f4f8;
  color: #4b5869;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.pill.soft {
  background: #fff1d6;
  color: #8a4a00;
}

.product-meta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.deal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 8px;
  background: #101820;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.click-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 8px;
  background: #e8f7ee;
  color: #176340;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 900;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin: 9px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}

.price-row strong {
  color: var(--coral);
  font-size: 18px;
  line-height: 1.1;
}

.price-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-align: right;
}

.product-card h3,
.guide-card h3 {
  margin: 8px 0 7px;
  font-size: 20px;
  line-height: 1.32;
  letter-spacing: 0;
}

.product-name,
.criteria,
.guide-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.product-name {
  min-height: 42px;
}

.criteria {
  margin-top: 9px;
  color: #2d3948;
  font-weight: 760;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.buy-button {
  background: var(--coral);
  color: #fff;
}

.review-button,
.guide-card a,
.trust-band a {
  border: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.category-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 0;
  padding: 16px;
  color: #fff;
  text-align: left;
  background: #222;
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.category-card:hover img { transform: scale(1.04); }

.category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.74));
}

.category-card span,
.category-card strong,
.category-card small,
.category-card em {
  position: relative;
  z-index: 1;
  display: block;
}

.category-card span {
  color: #ffd1c7;
  font-size: 12px;
}

.category-card strong {
  margin-top: 86px;
  font-size: 23px;
}

.category-card small {
  margin-top: 5px;
  color: rgba(255,255,255,0.82);
}

.category-card em {
  margin-top: 9px;
  font-style: normal;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 34px 0 18px;
}

.trust-band article {
  min-height: 220px;
  border-radius: 8px;
  padding: 22px;
  background: var(--dark);
  color: #fff;
}

.trust-band article:nth-child(2) {
  background: #214c3b;
}

.trust-band p:not(.eyebrow) {
  color: rgba(255,255,255,0.82);
}

.trust-band a {
  margin-top: 8px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
}

.guide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #eef1f5;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0 12px;
}

.tag-row span {
  display: inline-flex;
  border-radius: 8px;
  background: #f1f4f8;
  color: #4b5869;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 760;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer strong {
  color: var(--ink);
  white-space: nowrap;
}

.site-footer nav {
  display: flex;
  gap: 10px;
  white-space: nowrap;
}

.article-main {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 8px;
}

.article-layout {
  display: grid;
  gap: 18px;
}

.article-hero {
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  padding: clamp(28px, 5vw, 56px);
}

.article-hero h1 {
  max-width: 820px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.03;
}

.article-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.affiliate-box,
.article-content,
.related-links {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.affiliate-box {
  padding: 14px 16px;
  color: #4c3500;
  background: #fff1d6;
  font-size: 14px;
}

.article-content {
  padding: clamp(20px, 4vw, 38px);
}

.article-content h2 {
  margin: 30px 0 12px;
  font-size: 28px;
  letter-spacing: 0;
}

.article-content h3 {
  margin: 22px 0 8px;
  font-size: 20px;
  letter-spacing: 0;
}

.article-content p {
  margin: 0 0 15px;
  color: #303b4a;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 12px 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.article-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
}

.article-table th,
.article-table td {
  padding: 12px 13px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

.article-table th {
  background: #eef1f5;
  color: #364152;
  font-size: 13px;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table td span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.article-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px 0 18px;
}

.article-product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 15px;
}

.article-product-card h3 {
  margin: 8px 0;
}

.article-product-card small {
  display: block;
  margin: 10px 0;
  color: var(--muted);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px;
}

.related-links a {
  border: 1px solid var(--line);
  color: var(--blue);
  background: #fff;
}

.archive-main {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 10px;
}

.archive-hero {
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  padding: clamp(28px, 5vw, 56px);
}

.archive-hero h1 {
  max-width: 820px;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1;
}

.archive-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
}

.archive-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.archive-stats span,
.archive-stats a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 6px 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.archive-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 16px;
}

.archive-card h2 {
  margin: 9px 0 8px;
  font-size: 20px;
  line-height: 1.32;
}

.archive-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.archive-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.archive-legacy {
  background: #fbfcfe;
}

.shop-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 4px;
}

.shop-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #354153;
  padding: 7px 11px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
}

.shop-tabs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  border-radius: 8px;
  background: #f1f4f8;
  color: var(--muted);
  padding: 2px 6px;
  font-size: 12px;
}

.product-detail-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 10px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 18px;
  align-items: stretch;
}

.product-detail-copy,
.product-detail-media,
.product-detail-grid article,
.product-detail-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.product-detail-copy {
  padding: clamp(24px, 4vw, 48px);
}

.product-detail-copy h1 {
  max-width: 720px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 1.02;
}

.product-detail-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
}

.detail-price-panel {
  display: grid;
  gap: 5px;
  width: min(440px, 100%);
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 14px;
}

.detail-price-panel strong {
  color: var(--coral);
  font-size: 28px;
  line-height: 1.1;
}

.detail-price-panel span {
  color: #485466;
  font-size: 13px;
  font-weight: 850;
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.product-detail-media {
  overflow: hidden;
  min-height: 360px;
}

.product-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.product-detail-grid article {
  padding: 18px;
}

.product-detail-grid h2,
.product-detail-section h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}

.product-detail-grid p:not(.eyebrow) {
  margin: 10px 0 0;
  color: #354153;
}

.product-detail-section {
  margin-top: 14px;
  padding: 18px;
}

.detail-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-link-list a {
  display: block;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  color: var(--blue);
  padding: 10px 12px;
  text-decoration: none;
  font-weight: 850;
}

.redirect-main {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.redirect-card {
  width: min(560px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: clamp(24px, 5vw, 42px);
  box-shadow: var(--shadow);
}

.redirect-card h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.02;
}

.redirect-card p:not(.eyebrow) {
  color: #354153;
}

.redirect-note {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .product-grid,
  .guide-grid,
  .deal-grid,
  .archive-grid,
  .future-deal-grid,
  .next-drop-grid,
  .trend-grid,
  .exhibition-grid,
  .brand-grid,
  .lead-pick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .product-detail-hero,
  .product-detail-grid,
  .next-drop-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 14px;
    gap: 10px;
  }
  .top-nav { display: none; }
  .hero {
    min-height: 640px;
    padding: 70px 20px 112px;
  }
  h1 { font-size: 46px; }
  .hero-content p:not(.eyebrow) { font-size: 16px; }
  .search-panel,
  .section,
  .trust-band,
  .site-footer {
    width: min(100% - 28px, 1280px);
  }
  .section-head,
  .site-footer {
    display: block;
  }
  .product-grid,
  .category-grid,
  .guide-grid,
  .deal-grid,
  .archive-grid,
  .future-deal-grid,
  .next-drop-grid,
  .trend-grid,
  .exhibition-grid,
  .brand-grid,
  .lead-pick-grid,
  .article-product-grid,
  .detail-link-list,
  .trust-band {
    grid-template-columns: 1fr;
  }
  .guide-card {
    grid-template-columns: 1fr;
  }
  .guide-card img {
    aspect-ratio: 4 / 3;
  }
}
