:root {
  --bg: #f5f1e8;
  --bg-deep: #ece5d7;
  --surface: rgba(255, 253, 248, 0.86);
  --surface-strong: #fffdf9;
  --surface-dark: #111317;
  --surface-dark-soft: #1a1f27;
  --text: #141414;
  --muted: #6d6559;
  --line: rgba(20, 20, 20, 0.08);
  --line-strong: rgba(20, 20, 20, 0.14);
  --blue: #2457ff;
  --blue-dark: #1d40d8;
  --green: #0f8a68;
  --orange: #ff6b00;
  --red: #ef3e36;
  --shadow: 0 22px 60px rgba(17, 19, 23, 0.08);
  --shadow-soft: 0 12px 26px rgba(17, 19, 23, 0.05);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1280px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Outfit", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(36, 87, 255, 0.09), transparent 24%),
    radial-gradient(circle at 85% 8%, rgba(255, 107, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #f8f5ef 0%, #f5f1e8 56%, #efe8db 100%);
  overflow-x: hidden;
}

body.cart-open,
body.mobile-nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

input,
select {
  border: 0;
  background: transparent;
}

img {
  max-width: 100%;
  display: block;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.14) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.04;
  mask-image: radial-gradient(circle at center, black, transparent 88%);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0 0;
}

.header-inner {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 248, 0.74);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--surface-dark);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
  text-transform: lowercase;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.22s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.06);
}

.mobile-nav-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--surface-dark);
}

.cart-button,
.button,
.icon-button,
.filter-chip,
.footer-button {
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.cart-button:hover,
.button:hover,
.icon-button:hover,
.filter-chip:hover,
.footer-button:hover {
  transform: translateY(-2px);
}

.cart-button {
  min-width: 148px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  box-shadow: 0 12px 22px rgba(17, 19, 23, 0.18);
}

.cart-button strong {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.button-small {
  min-height: 44px;
  padding: 0 16px;
}

.button-full {
  width: 100%;
}

.button-primary {
  background: linear-gradient(135deg, var(--blue), #5f82ff);
  color: #fff;
  box-shadow: 0 14px 26px rgba(36, 87, 255, 0.22);
}

.button-dark {
  background: var(--surface-dark);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.button-ghost {
  background: rgba(20, 20, 20, 0.04);
  color: var(--text);
}

main {
  padding-bottom: 110px;
}

.hero-section {
  padding: 34px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: 18px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.page-hero-inner,
.sidebar-card,
.product-card,
.store-card,
.table-shell,
.cta-band-inner,
.stat-card,
.cart-drawer,
.cookie-banner,
.thanks-summary,
.thanks-list,
.detail-card,
.detail-sticky,
.detail-media-card,
.shop-feature-section,
.catalog-toolbar {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.page-hero-inner,
.cta-band-inner,
.detail-media-card,
.detail-sticky,
.thanks-summary,
.thanks-list {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 34px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  box-shadow: var(--shadow-soft);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(15, 138, 104, 0.12);
  animation: pulse 1.9s infinite;
}

.hero-copy h1,
.section-head h2,
.page-hero h1,
.detail-sticky h1,
.thanks-summary h1,
.cta-band-inner h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin-top: 22px;
  font-size: clamp(3rem, 6vw, 5.9rem);
  max-width: 10ch;
}

.lead,
.hero-panel p,
.section-head p,
.product-description,
.product-meta,
.store-card p,
.footer-note,
.cart-item p,
.cart-empty p,
.cookie-banner p,
.thanks-summary p,
.thanks-list p,
.detail-intro,
.detail-card p,
.detail-card li,
.results-copy span,
.page-hero p {
  color: var(--muted);
}

.lead {
  margin: 20px 0 0;
  max-width: 660px;
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-search {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-field,
.select-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.search-field span,
.select-field span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.search-field input,
.select-field select {
  width: 100%;
  color: var(--text);
}

.search-field input:focus,
.select-field select:focus {
  outline: none;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

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

.stat-card {
  padding: 18px;
  border-radius: 24px;
}

.stat-card span,
.sidebar-head strong,
.detail-kicker,
.thanks-mini span,
.price-box span,
.feature-card small {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.hero-panel {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(36, 87, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 242, 234, 0.78));
}

.hero-panel-head,
.section-head,
.catalog-toolbar,
.results-copy,
.sidebar-head,
.detail-meta-row,
.detail-action-row,
.store-card-top,
.shop-feature-head,
.cart-head,
.cart-item-head,
.cart-item-meta,
.thanks-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-panel-head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hero-panel-head span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.hero-panel-head a {
  color: var(--blue);
  font-weight: 600;
}

.feature-compare-grid,
.category-grid,
.brand-wall,
.product-grid,
.store-grid,
.stats-grid,
.shop-feature-grid,
.shop-feature-products {
  display: grid;
  gap: 16px;
}

.feature-compare-grid {
  margin-top: 18px;
}

.feature-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.feature-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.12rem;
}

.feature-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.feature-card .savings-pill {
  margin-top: 12px;
}

.logo-strip {
  padding-top: 18px;
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  font-weight: 600;
}

.section-block {
  padding-top: 26px;
}

.section-head {
  align-items: end;
  margin-bottom: 18px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  max-width: 12ch;
}

.section-head p {
  max-width: 460px;
  line-height: 1.7;
}

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

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

.category-card {
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 241, 233, 0.74)),
    var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.brand-card {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 238, 229, 0.78)),
    var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.brand-card strong {
  display: block;
  margin-top: 14px;
  font-size: 1.24rem;
}

.brand-card p,
.brand-card small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.brand-card p {
  margin: 10px 0 0;
}

.brand-card small {
  margin-top: 10px;
}

.category-card h3 {
  margin: 16px 0 10px;
  font-size: 1.28rem;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.category-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 600;
}

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

.product-card {
  overflow: hidden;
  border-radius: 30px;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(17, 19, 23, 0.1);
}

.product-media {
  display: block;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #f4ede2, #e8dfd2);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.03);
}

.product-body {
  padding: 20px;
  display: grid;
  gap: 16px;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shop-badge,
.product-category,
.filter-chip,
.savings-pill,
.detail-pill,
.thanks-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.shop-badge {
  color: #fff;
}

.shop-badge.amazon {
  background: #111827;
}

.shop-badge.mediamarkt {
  background: #ef3e36;
}

.shop-badge.zalando {
  background: #ff6b00;
}

.product-category {
  background: rgba(20, 20, 20, 0.05);
  color: var(--muted);
}

.product-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.18;
}

.product-card h3 a:hover {
  color: var(--blue);
}

.product-description {
  margin: 0;
  line-height: 1.62;
}

.price-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-compare > div,
.price-box {
  padding: 14px 16px;
  border-radius: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.price-compare span,
.price-box span {
  color: var(--muted);
  font-size: 0.82rem;
}

.price-compare strong,
.price-box strong {
  display: block;
  margin-top: 6px;
  font-size: 1.38rem;
}

.savings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.savings-pill {
  background: rgba(15, 138, 104, 0.12);
  color: var(--green);
}

.savings-row small {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 0.92rem;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

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

.store-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.store-card {
  padding: 24px;
  border-radius: 28px;
}

.store-card-top strong {
  font-size: 1.22rem;
}

.store-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--dot);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--dot) 14%, transparent);
}

.store-card p {
  margin: 14px 0 0;
  line-height: 1.62;
}

.store-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 600;
}

.cta-band {
  padding-top: 26px;
}

.cta-band-inner {
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at top right, rgba(36, 87, 255, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 229, 0.76));
}

.cta-band-inner h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  max-width: 10ch;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 26px 0 42px;
}

.footer-grid {
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 248, 0.74);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  margin-bottom: 14px;
}

.footer-note {
  max-width: 420px;
  margin: 0;
  line-height: 1.62;
}

.site-footer h3 {
  margin: 4px 0 12px;
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-footer a,
.footer-button {
  color: var(--muted);
}

.footer-button {
  padding: 0;
  background: transparent;
  text-align: left;
}

.subpage-main {
  padding-top: 30px;
}

.page-hero-inner {
  padding: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  max-width: 11ch;
}

.page-hero p {
  max-width: 460px;
  margin: 0;
  line-height: 1.7;
}

.catalog-layout {
  padding-top: 22px;
}

.catalog-layout-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 18px;
}

.catalog-sidebar {
  display: grid;
  gap: 16px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.sidebar-card,
.catalog-toolbar,
.detail-card,
.shop-feature-section {
  padding: 20px;
  border-radius: 28px;
}

.sidebar-head {
  margin-bottom: 14px;
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  border: 1px solid var(--line);
}

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

.catalog-content {
  display: grid;
  gap: 16px;
}

.results-copy {
  display: grid;
  gap: 4px;
  justify-content: start;
}

.results-copy strong {
  font-size: 1.08rem;
}

.catalog-footer-actions {
  display: flex;
  justify-content: center;
}

.table-shell {
  overflow-x: auto;
  border-radius: 30px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.comparison-table th {
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.table-product {
  display: flex;
  align-items: center;
  gap: 14px;
}

.table-product img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
  background: rgba(20, 20, 20, 0.05);
}

.table-product strong {
  display: block;
  font-size: 1rem;
}

.table-product span {
  color: var(--muted);
}

.table-savings {
  color: var(--green);
  font-weight: 700;
}

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

.insight-stat {
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 239, 229, 0.74)),
    var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.insight-stat span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.insight-stat strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
}

.insight-stat p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.product-breadcrumbs a {
  color: var(--muted);
}

.product-detail-section {
  padding-top: 10px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 18px;
}

.detail-media-card {
  overflow: hidden;
}

.detail-media-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.detail-main {
  display: grid;
  gap: 18px;
}

.detail-sticky {
  padding: 26px;
  align-self: start;
  position: sticky;
  top: 92px;
}

.detail-meta-row {
  justify-content: start;
  gap: 12px;
}

.detail-pill,
.thanks-pill {
  background: rgba(20, 20, 20, 0.05);
  color: var(--muted);
}

.detail-sticky h1 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.detail-intro {
  margin: 18px 0 0;
  line-height: 1.7;
}

.detail-price-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.detail-highlights {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-highlight {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.05);
  color: var(--text);
}

.detail-action-row {
  margin-top: 20px;
  justify-content: start;
  flex-wrap: wrap;
}

.detail-card h2,
.thanks-summary h1,
.thanks-list h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
}

.detail-card p {
  margin: 12px 0 0;
  line-height: 1.68;
}

.bullet-list {
  margin: 14px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

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

.spec-item {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.spec-item dt {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.spec-item dd {
  margin: 8px 0 0;
  font-weight: 600;
}

.shop-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-feature-head {
  margin-bottom: 16px;
}

.shop-feature-products {
  grid-template-columns: 1fr;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 19, 23, 0.42);
  backdrop-filter: blur(6px);
  z-index: 50;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(17, 19, 23, 0.34);
  backdrop-filter: blur(6px);
}

.mobile-nav-drawer {
  position: fixed;
  top: 18px;
  left: 18px;
  width: min(380px, calc(100vw - 36px));
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
  z-index: 45;
  transform: translateX(calc(-100% - 26px));
  transition: transform 0.34s ease;
}

.mobile-nav-drawer.is-open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.mobile-nav-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.mobile-nav-links {
  margin-top: 22px;
  display: grid;
  gap: 8px;
}

.mobile-nav-links a {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(20, 20, 20, 0.04);
  color: var(--muted);
  font-weight: 600;
}

.mobile-nav-links a.is-active {
  background: var(--surface-dark);
  color: #fff;
}

.mobile-nav-actions {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.cart-drawer {
  position: fixed;
  top: 18px;
  right: 18px;
  width: min(430px, calc(100vw - 20px));
  height: calc(100vh - 36px);
  padding: 22px;
  border-radius: 30px;
  z-index: 51;
  display: flex;
  flex-direction: column;
  transform: translateX(calc(100% + 26px));
  transition: transform 0.34s ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-head {
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-head span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.cart-head h2 {
  margin-top: 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 2.1rem;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.06);
  font-size: 1.8rem;
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 0;
  display: grid;
  gap: 12px;
}

.cart-empty,
.cart-item {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.cart-empty h3,
.thanks-empty h3 {
  margin: 0;
  font-size: 1.1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
}

.cart-item-image {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 18px;
}

.cart-item-copy {
  display: grid;
  gap: 10px;
}

.cart-item-head {
  align-items: start;
}

.cart-item h3 {
  margin: 0;
  font-size: 1rem;
}

.cart-item p {
  margin: 4px 0 0;
}

.cart-item-meta {
  justify-content: space-between;
  color: var(--muted);
}

.cart-item-meta a {
  color: var(--blue);
  font-weight: 600;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.05);
}

.qty-controls button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.cart-summary {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.cart-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.summary-highlight {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(15, 138, 104, 0.12);
  color: var(--green);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 26px;
  z-index: 61;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner p {
  margin: 0;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--surface-dark);
  color: #fff;
  box-shadow: 0 18px 34px rgba(17, 19, 23, 0.2);
  opacity: 0;
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
  z-index: 60;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.thanks-layout {
  padding-top: 30px;
}

.thanks-grid {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 18px;
}

.thanks-summary,
.thanks-list {
  padding: 28px;
}

.thanks-summary h1 {
  margin-top: 16px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  max-width: 9ch;
}

.thanks-summary p {
  margin: 16px 0 0;
  line-height: 1.72;
}

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

.thanks-mini {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.thanks-mini strong {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
}

.thanks-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.thanks-list h2 {
  font-size: 2.2rem;
}

.thanks-list p {
  margin: 10px 0 0;
  line-height: 1.65;
}

.thanks-list-rows {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.thanks-row,
.thanks-empty {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.thanks-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.thanks-row h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.thanks-row p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

@media (max-width: 1160px) {
  .hero-grid,
  .catalog-layout-inner,
  .product-detail-layout,
  .thanks-grid {
    grid-template-columns: 1fr;
  }

  .category-grid,
  .brand-wall,
  .product-grid,
  .store-grid,
  .store-grid-large,
  .stats-grid,
  .shop-feature-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-inner,
  .section-head,
  .catalog-toolbar,
  .cta-band-inner,
  .hero-panel-head {
    align-items: start;
    flex-direction: column;
  }

  .catalog-sidebar,
  .detail-sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 20px, 100%);
  }

  .header-inner {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .brand {
    width: 100%;
  }

  .site-nav {
    display: none;
  }

  .mobile-nav-button {
    display: inline-flex;
  }

  .cart-button {
    flex: 1;
  }

  main {
    padding-bottom: 140px;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-inner,
  .sidebar-card,
  .catalog-toolbar,
  .detail-card,
  .shop-feature-section,
  .thanks-summary,
  .thanks-list,
  .cookie-banner,
  .cart-drawer {
    border-radius: 24px;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-inner,
  .thanks-summary,
  .thanks-list {
    padding: 22px;
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-sticky h1,
  .thanks-summary h1 {
    max-width: none;
  }

  .hero-search,
  .hero-stats,
  .category-grid,
  .brand-wall,
  .product-grid,
  .store-grid,
  .store-grid-large,
  .stats-grid,
  .shop-feature-grid,
  .thanks-mini-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .price-compare,
  .detail-price-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions,
  .product-actions,
  .detail-action-row,
  .cookie-actions,
  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .product-actions .button,
  .detail-action-row .button,
  .cookie-actions .button,
  .thanks-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 26px;
  }

  .comparison-table {
    min-width: 760px;
  }

  .cart-drawer {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    height: calc(100vh - 20px);
  }

  .mobile-nav-drawer {
    top: 10px;
    left: 10px;
    width: calc(100vw - 20px);
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-image {
    width: 100%;
    height: 180px;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  .thanks-row {
    flex-direction: column;
    align-items: stretch;
  }
}
