body[data-page="home"] {
  --premium-bg: var(--bg);
  --premium-surface: color-mix(in srgb, var(--surface) 78%, transparent);
  --premium-ink: var(--text);
  --premium-muted: var(--muted);
  --premium-line: color-mix(in srgb, var(--line) 78%, transparent);
  --premium-accent: var(--accent);
  --premium-accent-light: var(--accent-soft);
  --premium-lime: #d7ff65;
  --premium-dark: var(--color-gray-900);
  --premium-shadow: 0 22px 60px rgba(25, 26, 32, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 179, 128, 0.16), rgba(253, 251, 247, 0) 740px),
    var(--premium-bg);
  color: var(--premium-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-page="home"].dark-theme {
  --premium-bg: var(--bg);
  --premium-surface: color-mix(in srgb, var(--surface) 86%, transparent);
  --premium-ink: var(--text);
  --premium-muted: var(--muted);
  --premium-line: color-mix(in srgb, var(--line) 82%, transparent);
  --premium-accent: var(--accent);
  --premium-accent-light: var(--accent-strong);
  --premium-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  background: var(--bg);
}

body[data-page="home"] h1,
body[data-page="home"] h2,
body[data-page="home"] h3,
body[data-page="home"] .brand {
  font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

body[data-page="home"] main {
  overflow: clip;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  padding: 10px 14px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.daily-update-bar {
  position: relative;
  z-index: 12;
  border-bottom: 1px solid var(--premium-line);
  background: var(--surface-soft);
  color: var(--premium-ink);
}

.daily-update-content {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
}

.daily-update-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 12px;
  color: var(--premium-muted);
  font-weight: 500;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75e6a4;
  box-shadow: 0 0 0 4px rgba(117, 230, 164, 0.12);
}

body[data-page="home"] .site-header {
  background: rgba(250, 250, 248, 0.78);
  border-color: var(--premium-line);
  backdrop-filter: blur(22px) saturate(140%);
}

body[data-page="home"].dark-theme .site-header {
  background: rgba(13, 14, 16, 0.82);
}

body[data-page="home"] .header-content {
  min-height: 72px;
  gap: 28px;
}

body[data-page="home"] .brand {
  flex: 0 0 auto;
  font-size: 0.98rem;
  font-weight: 700;
}

body[data-page="home"] .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--premium-accent);
  color: #ffffff;
  box-shadow: none;
}

body[data-page="home"].dark-theme .brand-mark {
  background: var(--premium-accent);
  color: #ffffff !important;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--premium-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--premium-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

body[data-page="home"] .header-actions {
  flex: 0 0 auto;
}

body[data-page="home"] .language-switcher,
body[data-page="home"] .theme-toggle {
  border-color: var(--premium-line);
  background: var(--premium-surface);
}

body[data-page="home"] .language-btn.is-active {
  background: var(--premium-ink);
  color: var(--premium-bg);
}

body[data-page="home"].dark-theme .language-btn.is-active {
  background: var(--premium-accent);
  color: #ffffff !important;
}

.premium-hero {
  position: relative;
  height: clamp(520px, calc(100svh - 132px), 610px);
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--premium-line);
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 255, 255, 0.82), transparent 26%),
    radial-gradient(circle at 62% 68%, rgba(255, 179, 128, 0.44), transparent 34%),
    linear-gradient(126deg, #fff8ef 0%, #fdfbf7 34%, rgba(255, 179, 128, 0.74) 68%, rgba(230, 92, 0, 0.88) 100%);
  color: var(--premium-ink);
}

.premium-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}

.premium-hero::after {
  position: absolute;
  top: -30%;
  right: 5%;
  width: 52%;
  height: 150%;
  border-left: 1px solid rgba(230, 92, 0, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 65%);
  content: "";
  transform: rotate(16deg);
  transform-origin: center;
}

body[data-page="home"].dark-theme .premium-hero {
  background:
    radial-gradient(circle at 88% 14%, rgba(255, 138, 61, 0.2), transparent 28%),
    radial-gradient(circle at 62% 68%, rgba(255, 179, 128, 0.12), transparent 34%),
    linear-gradient(126deg, var(--bg) 0%, var(--surface) 48%, rgba(90, 47, 29, 0.86) 100%);
  color: var(--premium-ink);
}

body[data-page="home"].dark-theme .hero-tag {
  border-color: rgba(255, 179, 128, 0.2);
  background: rgba(30, 30, 30, 0.58);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  padding-block: 32px;
}

.hero-copy {
  max-width: 660px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  border: 1px solid rgba(230, 92, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--premium-accent);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 12px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.hero-tag::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--premium-lime);
  box-shadow: 0 0 14px rgba(215, 255, 101, 0.7);
  content: "";
}

.premium-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--premium-ink);
  font-size: clamp(2.95rem, 4vw, 4.35rem);
  font-weight: 600;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-description {
  max-width: 590px;
  margin: 22px 0 0;
  color: color-mix(in srgb, var(--premium-ink) 72%, transparent);
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.primary-cta {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(230, 92, 0, 0.28);
  border-radius: 12px;
  background: var(--premium-accent);
  color: #ffffff;
  font-weight: 800;
  padding: 14px 20px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  outline: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.hero-disclaimer {
  max-width: 170px;
  color: color-mix(in srgb, var(--premium-ink) 62%, transparent);
  font-size: 0.78rem;
  line-height: 1.45;
}

.hero-proof {
  display: flex;
  gap: 28px;
  margin-top: 24px;
  color: color-mix(in srgb, var(--premium-ink) 62%, transparent);
  font-size: 0.74rem;
}

.hero-proof > span {
  display: grid;
  gap: 2px;
}

.hero-proof strong {
  color: var(--premium-ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  min-height: 400px;
  perspective: 1100px;
}

.hero-glow {
  position: absolute;
  inset: 12% 5% 3% 12%;
  border: 1px solid rgba(230, 92, 0, 0.14);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.025);
  clip-path: polygon(13% 0, 100% 13%, 86% 100%, 0 84%);
  backdrop-filter: blur(18px);
}

.hero-product {
  position: absolute;
  display: grid;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(230, 92, 0, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.32);
  transition: transform 220ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(18px);
}

.hero-product:hover,
.hero-product:focus-visible {
  z-index: 8;
  outline: 0;
  box-shadow: 0 34px 78px rgba(0, 0, 0, 0.44);
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
}

.hero-product-1 {
  top: 5%;
  right: 7%;
  z-index: 4;
  width: 42%;
  height: 48%;
  transform: rotate(4deg);
}

.hero-product-1:hover {
  transform: rotate(2deg) translateY(-6px) scale(1.02);
}

.hero-product-2 {
  bottom: 5%;
  left: 3%;
  z-index: 3;
  width: 45%;
  height: 45%;
  transform: rotate(-5deg);
}

.hero-product-2:hover {
  transform: rotate(-2deg) translateY(-6px) scale(1.02);
}

.hero-product-3 {
  right: 3%;
  bottom: 0;
  z-index: 5;
  width: 34%;
  height: 32%;
  transform: rotate(7deg);
}

.hero-product-3:hover {
  transform: rotate(3deg) translateY(-6px) scale(1.03);
}

.hero-product-4 {
  top: 8%;
  left: 6%;
  z-index: 2;
  width: 31%;
  height: 35%;
  transform: rotate(-7deg);
}

.hero-product-4:hover,
.hero-product-4:focus-visible {
  transform: rotate(-3deg) translateY(-6px) scale(1.02);
}

.hero-product-5 {
  top: 39%;
  left: 38%;
  z-index: 6;
  width: 24%;
  height: 45%;
  transform: rotate(2deg);
}

.hero-product-5:hover,
.hero-product-5:focus-visible {
  transform: rotate(0deg) translateY(-6px) scale(1.02);
}

.amazon-box {
  position: absolute;
  right: 24%;
  bottom: 24%;
  z-index: 7;
  display: grid;
  width: 118px;
  height: 92px;
  place-items: center;
  border-radius: 10px;
  background: #c98b4c;
  color: #231f20;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
  transform: rotate(-3deg);
}

.amazon-box::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 22px;
  background: rgba(245, 219, 176, 0.72);
  content: "";
  transform: translateX(-50%);
}

.amazon-box span,
.amazon-box i {
  position: relative;
  z-index: 1;
}

.amazon-box i {
  position: absolute;
  right: 30px;
  bottom: 24px;
  width: 42px;
  height: 14px;
  border-bottom: 3px solid #231f20;
  border-radius: 50%;
  transform: rotate(-8deg);
}

.trust-strip {
  border-bottom: 1px solid var(--premium-line);
  background: var(--premium-surface);
  color: var(--premium-ink);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid > div {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--premium-line);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 13px 18px;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 116, 67, 0.1);
  color: #087443;
  font-weight: 900;
}

.discovery-section {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  background: var(--premium-bg);
  padding-top: 48px;
}

.search-panel {
  border: 1px solid var(--premium-line);
  border-radius: 16px;
  background: var(--premium-surface);
  padding: 24px;
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(20px);
}

.search-panel-heading,
.premium-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.search-panel-heading {
  margin-bottom: 18px;
}

.search-panel-heading h2,
.premium-section-heading h2 {
  margin: 0;
  color: var(--premium-ink);
}

.search-panel-heading h2 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--premium-muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.search-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.7fr));
  gap: 10px;
}

.premium-search,
.filter-control {
  position: relative;
  display: grid;
}

.premium-search input,
.filter-control select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--premium-line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--premium-bg) 70%, transparent);
  color: var(--premium-ink);
  outline: 0;
}

.premium-search input {
  padding: 0 16px 0 48px;
}

.search-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 2px solid var(--premium-muted);
  border-radius: 50%;
}

.search-icon::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 7px;
  height: 2px;
  background: var(--premium-muted);
  content: "";
  transform: rotate(45deg);
}

.filter-control span {
  position: absolute;
  top: 7px;
  left: 13px;
  z-index: 1;
  color: var(--premium-muted);
  font-size: 0.65rem;
  font-weight: 700;
  pointer-events: none;
}

.filter-control select {
  appearance: none;
  padding: 19px 34px 3px 13px;
  font-size: 0.82rem;
  font-weight: 700;
}

.filter-control::after {
  position: absolute;
  top: 23px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--premium-muted);
  border-bottom: 2px solid var(--premium-muted);
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.premium-search input:focus,
.filter-control select:focus {
  border-color: var(--premium-accent);
  box-shadow: 0 0 0 4px rgba(230, 92, 0, 0.12);
}

.premium-section {
  background: var(--premium-bg);
  padding-block: clamp(72px, 8vw, 112px);
}

.premium-section-heading {
  margin-bottom: 32px;
}

.premium-section-heading > p {
  max-width: 500px;
  margin: 0;
  color: var(--premium-muted);
  line-height: 1.65;
}

.premium-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.02;
}

body[data-page="home"] .eyebrow {
  margin-bottom: 10px;
  color: var(--premium-accent);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.7rem;
}

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

.premium-category-card {
  position: relative;
  display: grid;
  min-height: 204px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: end;
  gap: 14px;
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: 14px;
  background: var(--premium-surface);
  color: var(--premium-ink);
  padding: 20px;
  text-align: left;
  box-shadow: 0 10px 28px rgba(20, 20, 24, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.premium-category-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(145deg, transparent, rgba(230, 92, 0, 0.08));
  content: "";
  transform: translateX(70%);
  transition: transform 220ms ease;
}

.premium-category-card:hover,
.premium-category-card:focus-visible {
  border-color: rgba(230, 92, 0, 0.48);
  outline: 0;
  box-shadow: var(--premium-shadow);
  transform: translateY(-4px);
}

.premium-category-card:hover::before,
.premium-category-card:focus-visible::before {
  transform: translateX(15%);
}

.premium-category-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--premium-line);
  border-radius: 12px;
  background: var(--premium-bg);
  font-size: 1.25rem;
}

.premium-category-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
}

.premium-category-card .category-card-name {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.premium-category-card .category-card-subcategories {
  display: -webkit-box;
  overflow: hidden;
  color: var(--premium-muted);
  font-size: 0.74rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.premium-category-card .category-card-count {
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--premium-muted);
  font-family: Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0;
}

.premium-category-arrow {
  position: relative;
  z-index: 1;
  align-self: start;
  color: var(--premium-muted);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.premium-category-card:hover .premium-category-arrow {
  color: var(--premium-accent);
  transform: translate(2px, -2px);
}

.featured-section {
  position: relative;
  border-block: 1px solid var(--premium-line);
  background:
    linear-gradient(135deg, rgba(230, 92, 0, 0.06), transparent 42%),
    var(--premium-bg);
}

.featured-products,
body[data-page="home"] .products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--premium-line);
  border-radius: 16px;
  background: var(--premium-surface);
  box-shadow: 0 10px 32px rgba(20, 20, 24, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  backdrop-filter: blur(16px);
}

body[data-page="home"] .product-card:hover,
body[data-page="home"] .product-card:focus-within {
  border-color: rgba(230, 92, 0, 0.4);
  box-shadow: var(--premium-shadow);
  transform: translateY(-5px);
}

body[data-page="home"] .card-image-link {
  display: block;
  flex: 0 0 auto;
  min-height: 0;
  width: 100%;
}

body[data-page="home"] .card-image-container {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-bottom: 1px solid var(--premium-line);
  background: #ffffff;
}

body[data-page="home"] .card-image {
  inset: 18px;
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  object-fit: contain;
  transition: transform 260ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

body[data-page="home"] .product-card:hover .card-image {
  transform: scale(1.035);
}

.discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  border-radius: 8px;
  background: var(--premium-accent);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 7px 9px;
}

body[data-page="home"] .card-body {
  gap: 14px;
  background: transparent;
  padding: 18px;
}

.card-topline {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

body[data-page="home"] .category-badge {
  overflow: hidden;
  max-width: 48%;
  border: 0;
  background: transparent;
  color: var(--premium-muted);
  font-family: Inter, sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 2px 0;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.deal-badge {
  overflow: hidden;
  max-width: 56%;
  border: 1px solid rgba(230, 92, 0, 0.2);
  border-radius: 999px;
  background: rgba(230, 92, 0, 0.08);
  color: var(--premium-accent);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.3;
  padding: 5px 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-title-link {
  display: block;
}

body[data-page="home"] .product-title {
  min-height: 2.8em;
  color: var(--premium-ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.4;
}

.card-price-block {
  display: grid;
  min-height: 69px;
  align-content: end;
  gap: 5px;
}

.previous-price {
  color: var(--premium-muted);
  font-size: 0.7rem;
  text-decoration: line-through;
}

.card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

body[data-page="home"] .product-price {
  color: var(--premium-ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.16rem, 2vw, 1.38rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

body[data-page="home"] .rating {
  flex: 0 0 auto;
  gap: 5px;
  padding-bottom: 3px;
  color: var(--premium-muted);
  font-size: 0.72rem;
  white-space: nowrap;
}

body[data-page="home"] .stars {
  color: #e65c00;
  font-size: 0.76rem;
}

.savings-label {
  color: #087443;
  font-size: 0.72rem;
  font-weight: 700;
}

.card-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.card-details-link {
  color: var(--premium-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body[data-page="home"] .amazon-buy-button {
  min-height: 44px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: var(--premium-accent);
  color: #ffffff;
  font-size: 0.78rem;
  box-shadow: none;
  transition: background 180ms ease, transform 180ms ease;
}

body[data-page="home"] .amazon-buy-button:hover,
body[data-page="home"] .amazon-buy-button:focus-visible {
  background: var(--accent-strong);
  color: #ffffff;
  outline: 0;
  transform: translateY(-1px);
}

.price-note {
  margin: 18px 0 0;
  color: var(--premium-muted);
  font-size: 0.7rem;
  text-align: center;
}

.social-proof-section {
  border-block: 1px solid var(--premium-line);
  background: var(--surface-soft);
  color: var(--premium-ink);
  padding-block: 36px;
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.social-proof-grid > div {
  display: grid;
  gap: 4px;
  border-right: 1px solid var(--premium-line);
  padding: 8px 28px;
  text-align: center;
}

.social-proof-grid > div:last-child {
  border-right: 0;
}

.social-proof-grid strong {
  color: var(--premium-ink);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
}

.social-proof-grid span {
  color: var(--premium-muted);
  font-size: 0.74rem;
}

.premium-section-heading.centered {
  display: grid;
  max-width: 680px;
  justify-items: center;
  margin-inline: auto;
  text-align: center;
}

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

.benefit-card {
  min-height: 250px;
  border: 1px solid var(--premium-line);
  border-radius: 14px;
  background: var(--premium-surface);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.benefit-card:hover {
  border-color: rgba(230, 92, 0, 0.4);
  transform: translateY(-3px);
}

.benefit-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid var(--premium-line);
  border-radius: 50%;
  color: var(--premium-accent);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.benefit-card h3 {
  margin: 0 0 10px;
  color: var(--premium-ink);
  font-size: 1.02rem;
}

.benefit-card p {
  margin: 0;
  color: var(--premium-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

body[data-page="home"] .catalog-section {
  margin: 0;
}

body[data-page="home"] .back-button {
  border: 1px solid var(--premium-line);
  border-radius: 10px;
  background: var(--premium-ink);
  color: var(--premium-bg);
  box-shadow: none;
}

body[data-page="home"] .empty-state {
  border: 1px solid var(--premium-line);
  background: var(--premium-surface);
  color: var(--premium-muted);
  text-align: center;
}

.premium-footer {
  border-top: 1px solid var(--premium-line, var(--line));
  background: var(--surface-soft);
  color: var(--premium-muted, var(--muted));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 40px;
  padding-block: 58px 46px;
}

.premium-footer .brand {
  color: var(--premium-ink, var(--text));
}

.premium-footer .brand-mark {
  background: var(--premium-accent, var(--accent));
  color: #ffffff;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--premium-muted, var(--muted));
  font-size: 0.78rem;
  line-height: 1.65;
  padding: 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--premium-ink, var(--text));
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--premium-muted, var(--muted));
  font-size: 0.78rem;
  transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--premium-accent, var(--accent));
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--premium-line, var(--line));
  padding-block: 22px;
}

.premium-footer .footer-bottom p {
  max-width: 720px;
  margin: 0;
  padding: 0;
  color: var(--premium-muted, var(--muted));
  font-size: 0.7rem;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

body[data-page="home"].dark-theme h1,
body[data-page="home"].dark-theme h2,
body[data-page="home"].dark-theme h3,
body[data-page="home"].dark-theme p,
body[data-page="home"].dark-theme span,
body[data-page="home"].dark-theme a {
  color: inherit !important;
}

body[data-page="home"].dark-theme .product-title,
body[data-page="home"].dark-theme .product-price,
body[data-page="home"].dark-theme .search-panel-heading h2,
body[data-page="home"].dark-theme .premium-section-heading h2,
body[data-page="home"].dark-theme .benefit-card h3 {
  color: var(--premium-ink) !important;
}

body[data-page="home"].dark-theme .product-card,
body[data-page="home"].dark-theme .card-body {
  background: var(--premium-surface);
}

body[data-page="home"].dark-theme .card-image-container {
  background: #ffffff;
}

body[data-page="home"].dark-theme .deal-badge,
body[data-page="home"].dark-theme .savings-label,
body[data-page="home"].dark-theme .eyebrow {
  color: var(--premium-accent-light) !important;
}

@media (max-width: 1120px) {
  .featured-products,
  body[data-page="home"] .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    gap: 22px;
    padding-block: 24px;
  }

  .premium-hero h1 {
    max-width: 560px;
    font-size: clamp(3rem, 6.2vw, 3.95rem);
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-description {
    max-width: 520px;
    font-size: 1rem;
  }

  .hero-proof {
    gap: 18px;
    margin-top: 20px;
  }

  .search-controls {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .premium-search {
    grid-column: 1 / -1;
  }

  .premium-category-grid,
  .featured-products,
  body[data-page="home"] .products-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 720px) {
  body[data-page="home"] .site-header {
    position: sticky;
    top: 0;
  }

  body[data-page="home"] .header-content {
    display: flex;
    min-height: 64px;
    align-items: center;
    gap: 10px;
    padding-block: 8px;
  }

  body[data-page="home"] .brand {
    min-width: 0;
    margin-right: auto;
  }

  .brand-name {
    display: none;
  }

  body[data-page="home"] .header-actions {
    display: flex;
    width: auto;
    gap: 7px;
  }

  body[data-page="home"] .language-switcher {
    width: auto;
  }

  body[data-page="home"] .theme-toggle {
    width: auto;
    min-width: 82px;
  }

  .daily-update-content {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .daily-update-status {
    margin-left: auto;
  }

  .premium-hero {
    height: auto;
    min-height: auto;
  }

  .hero-layout {
    height: auto;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 22px 14px;
  }

  .hero-tag {
    margin-bottom: 12px;
    font-size: 0.62rem;
    padding: 5px 9px;
  }

  .premium-hero h1 {
    max-width: 560px;
    font-size: clamp(2.05rem, 6vw, 2.72rem);
    line-height: 1.05;
  }

  .hero-description {
    max-width: 560px;
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 14px;
  }

  .primary-cta {
    min-height: 44px;
    padding: 10px 16px;
  }

  .hero-disclaimer {
    max-width: none;
    font-size: 0.68rem;
  }

  .hero-proof {
    display: none;
  }

  .hero-visual {
    min-height: 184px;
    margin-top: 0;
  }

  .hero-product-4,
  .hero-product-5 {
    display: none;
  }

  .amazon-box {
    right: 36%;
    bottom: 28%;
    width: 44px;
    height: 34px;
    font-size: 0.56rem;
  }

  .hero-product-1 {
    top: 8%;
    right: 4%;
    width: min(31vw, 150px);
    height: min(22vw, 108px);
  }

  .hero-product-2 {
    bottom: 20%;
    left: 7%;
    width: min(32vw, 154px);
    height: min(18vw, 88px);
  }

  .hero-product-3 {
    right: 28%;
    bottom: 23%;
    width: min(24vw, 112px);
    height: min(15vw, 72px);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid var(--premium-line);
    padding: 12px 8px;
  }

  .trust-grid > div:nth-child(odd) {
    border-right: 1px solid var(--premium-line);
  }

  .discovery-section {
    padding-top: 24px;
  }

  .search-panel {
    padding: 16px;
  }

  .search-panel-heading,
  .premium-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .search-panel-heading {
    position: relative;
  }

  .search-panel-heading .text-button {
    position: absolute;
    right: 0;
    bottom: 4px;
  }

  .search-controls {
    grid-template-columns: 1fr 1fr;
  }

  .premium-search {
    grid-column: 1 / -1;
  }

  .filter-control:last-child {
    grid-column: 1 / -1;
  }

  .premium-section {
    padding-block: 68px;
  }

  .premium-section-heading h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .premium-category-grid {
    gap: 10px;
  }

  .premium-category-card {
    min-height: 138px;
    grid-template-columns: 40px minmax(0, 1fr);
    align-content: end;
    padding: 14px;
  }

  .premium-category-icon {
    width: 40px;
    height: 40px;
  }

  .premium-category-arrow {
    position: absolute;
    top: 15px;
    right: 15px;
  }

  .featured-products,
  body[data-page="home"] .products-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .product-card {
    display: flex;
    flex-direction: column;
  }

  body[data-page="home"] .card-image-container {
    height: 230px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--premium-line);
  }

  body[data-page="home"] .card-body {
    padding: 14px;
  }

  .card-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-page="home"] .category-badge,
  .deal-badge {
    max-width: 100%;
  }

  .card-price-row,
  .card-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .card-price-row {
    display: grid;
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .card-details-link {
    text-align: center;
  }

  .social-proof-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0;
  }

  .social-proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefit-card {
    min-height: 220px;
    padding: 18px;
  }

  .benefit-icon {
    margin-bottom: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 601px) and (max-width: 720px) {
  .premium-hero {
    height: 548px;
    min-height: 0;
  }

  .hero-layout {
    height: 100%;
    grid-template-columns: minmax(0, 0.92fr) minmax(270px, 0.88fr);
    align-items: center;
    gap: 18px;
    padding-block: 22px;
  }

  .hero-tag {
    margin-bottom: 16px;
  }

  .premium-hero h1 {
    max-width: 440px;
    font-size: clamp(2.55rem, 5.7vw, 2.95rem);
    line-height: 1.02;
  }

  .hero-description {
    max-width: 420px;
    margin-top: 12px;
    font-size: 0.9rem;
  }

  .hero-actions {
    align-items: center;
    flex-direction: row;
    gap: 14px;
    margin-top: 16px;
  }

  .hero-disclaimer {
    max-width: 150px;
  }

  .hero-proof {
    display: flex;
    gap: 18px;
    margin-top: 14px;
  }

  .hero-visual {
    min-height: 300px;
    margin-top: 0;
  }

  .hero-product-4,
  .hero-product-5 {
    display: grid;
  }

  .hero-product-1 {
    top: 8%;
    right: 3%;
    width: 42%;
    height: 44%;
  }

  .hero-product-2 {
    bottom: 8%;
    left: 2%;
    width: 44%;
    height: 38%;
  }

  .hero-product-3 {
    right: 0;
    bottom: 2%;
    width: 34%;
    height: 30%;
  }

  .hero-product-4 {
    top: 6%;
    left: 4%;
    width: 30%;
    height: 35%;
  }

  .hero-product-5 {
    top: 42%;
    left: 38%;
    width: 24%;
    height: 45%;
  }

  .amazon-box {
    right: 32%;
    bottom: 31%;
    width: 56px;
    height: 44px;
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .trust-grid > div {
    min-height: 78px;
    border-right: 1px solid var(--premium-line);
    border-bottom: 0;
    padding: 12px 10px;
  }

  .trust-grid > div:last-child {
    border-right: 0;
  }
}

@media (max-width: 600px) {
  .hero-proof {
    display: flex;
    gap: 18px;
    margin-top: 4px;
  }

  .hero-proof strong {
    font-size: 0.98rem;
  }

  .hero-visual {
    min-height: 238px;
  }

  .hero-product-4,
  .hero-product-5 {
    display: grid;
  }

  .hero-product-1 {
    top: 16%;
    right: auto;
    left: calc(50% + 10px);
    width: clamp(106px, 18.4vw, 112px);
    height: clamp(125px, 22vw, 132px);
  }

  .hero-product-2 {
    bottom: 12%;
    left: calc(50% - 124px);
    width: clamp(110px, 19.5vw, 116px);
    height: clamp(107px, 18.9vw, 113px);
  }

  .hero-product-3 {
    right: auto;
    left: calc(50% + 54px);
    bottom: 12%;
    width: clamp(88px, 15.5vw, 94px);
    height: clamp(88px, 15.2vw, 92px);
  }

  .hero-product-4 {
    top: 17%;
    left: calc(50% - 150px);
    width: clamp(76px, 13.2vw, 82px);
    height: 35%;
  }

  .hero-product-5 {
    top: 43%;
    left: calc(50% - 28px);
    width: clamp(58px, 10.2vw, 62px);
    height: 45%;
  }

  .amazon-box {
    right: auto;
    left: calc(50% - 10px);
    bottom: 34%;
    width: 56px;
    height: 44px;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(var(--container-max), calc(100% - 24px));
  }

  .daily-update-status {
    display: none;
  }

  body[data-page="home"] .theme-toggle {
    min-width: 68px;
    font-size: 0.68rem;
  }

  body[data-page="home"] .language-btn {
    font-size: 0.64rem;
    padding-inline: 7px;
  }

  .premium-hero h1 {
    font-size: clamp(2.05rem, 10.3vw, 2.75rem);
  }

  .hero-product-1 {
    left: calc(50% + 2px);
  }

  .hero-product-2 {
    left: calc(50% - 112px);
  }

  .hero-product-3 {
    left: calc(50% + 40px);
  }

  .hero-product-4 {
    left: calc(50% - 130px);
  }

  .hero-product-5 {
    left: calc(50% - 24px);
  }

  .amazon-box {
    left: calc(50% - 14px);
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid > div:nth-child(odd) {
    border-right: 1px solid var(--premium-line);
  }

  .trust-grid > div {
    min-height: 64px;
    align-items: flex-start;
    font-size: 0.68rem;
    padding: 10px 8px;
  }

  .search-controls,
  .premium-category-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .filter-control:last-child {
    grid-column: auto;
  }

  body[data-page="home"] .product-card {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .card-image-container {
    height: 240px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--premium-line);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
