:root {
  --bg: #f6f1e8;
  --bg-accent: #efe3d2;
  --surface: rgba(255, 252, 246, 0.85);
  --surface-strong: #fffaf2;
  --text: #1f1a17;
  --muted: #6e6258;
  --line: rgba(31, 26, 23, 0.08);
  --brand: #bf4f24;
  --brand-deep: #8a2f0d;
  --forest: #26413c;
  --gold: #e3b655;
  --shadow: 0 20px 60px rgba(63, 36, 18, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(227, 182, 85, 0.28), transparent 22%),
    radial-gradient(circle at 80% 10%, rgba(191, 79, 36, 0.16), transparent 18%),
    linear-gradient(180deg, #f8f4ec 0%, #f2ebdf 100%);
  min-height: 100vh;
}

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

button,
input,
select {
  font: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 16px;
  z-index: 20;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

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

.brand strong,
.hero h1,
.section-heading h2,
.campaign-copy h2,
.about-panel h2,
.cart-header h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand span {
  display: flex;
  flex-direction: column;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  color: #fff;
  font-weight: 800;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.cart-button,
.button,
.filter,
.icon-button {
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button:disabled,
.cart-button:disabled {
  opacity: 0.56;
  cursor: not-allowed;
  transform: none;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--forest);
  color: #fff;
  font-weight: 700;
}

.cart-button span {
  display: grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 58px 0 42px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--brand-deep);
  font-weight: 800;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.96;
  max-width: 11ch;
}

.hero-text,
.campaign-copy p,
.about-panel p,
.highlights p,
.campaign-cards p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

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

.button.primary {
  background: var(--brand);
  color: #fff;
}

.button.secondary {
  background: rgba(255, 250, 242, 0.7);
  color: var(--text);
  border: 1px solid var(--line);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-metrics li,
.highlights article,
.campaign-cards article,
.about-panel,
.product-card,
.cart-drawer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-metrics li {
  flex: 1;
  padding: 18px;
  border-radius: 24px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.hero-metrics span {
  color: var(--muted);
}

.hero-card {
  min-height: 500px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(38, 65, 60, 0.94), rgba(24, 26, 24, 0.92)),
    linear-gradient(180deg, rgba(227, 182, 85, 0.3), transparent);
  box-shadow: var(--shadow);
}

.hero-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  top: 60px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 182, 85, 0.58), transparent 60%);
}

.floating-card,
.floating-note {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
}

.floating-card {
  left: 34px;
  bottom: 34px;
  max-width: 280px;
  padding: 24px;
  border-radius: 28px;
  animation: float 4s ease-in-out infinite;
}

.floating-card p,
.floating-note {
  color: rgba(255, 255, 255, 0.76);
}

.floating-card h2 {
  margin: 10px 0 12px;
  font-size: 2rem;
}

.floating-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.floating-note {
  top: 38px;
  right: 32px;
  padding: 14px 16px;
  border-radius: 999px;
  animation: pulse 3s ease-in-out infinite;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 12px 0 62px;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: -18px 0 48px;
}

.benefit-card {
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.benefit-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
}

.benefit-card span {
  color: var(--muted);
  line-height: 1.6;
}

.highlights article,
.campaign-cards article,
.about-panel {
  padding: 24px;
  border-radius: 28px;
}

.section-heading,
.campaigns,
.cart-header,
.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.section-heading {
  align-items: end;
  margin-bottom: 22px;
}

.section-heading h2,
.campaign-copy h2,
.about-panel h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.controls {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 12px;
}

.product-section-heading {
  align-items: start;
}

.section-lead {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

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

.catalog-main {
  min-width: 0;
}

.category-block,
.catalog-toolbar {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.category-block {
  padding: 20px;
  border-radius: 30px;
}

.category-block h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.category-block p:not(.eyebrow) {
  margin: 8px 0 16px;
  color: var(--muted);
  line-height: 1.6;
}

.category-tree {
  display: grid;
  gap: 8px;
  max-height: 540px;
  overflow: auto;
  padding-right: 6px;
}

.category-node {
  display: grid;
  gap: 6px;
}

.category-list {
  display: grid;
  gap: 6px;
  margin-left: 12px;
  padding-left: 10px;
  border-left: 1px solid rgba(38, 65, 60, 0.14);
}

.category-tree-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  text-align: left;
  line-height: 1.35;
  cursor: pointer;
}

.category-level-1 > .category-tree-button {
  background: rgba(38, 65, 60, 0.08);
  font-weight: 850;
}

.category-level-2 > .category-tree-button,
.category-level-3 > .category-tree-button {
  padding: 9px 10px;
  font-size: 0.9rem;
}

.category-tree-button:hover,
.category-tree-button.active {
  border-color: rgba(38, 65, 60, 0.22);
  transform: translateX(2px);
}

.category-tree-button.active {
  background: var(--forest);
  color: #fff;
}

.category-count {
  flex: 0 0 auto;
  min-width: 30px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(38, 65, 60, 0.1);
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.category-tree-button.active .category-count {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.compact-category-filters {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}

.compact-category-filters .filter {
  padding: 8px 10px;
  font-size: 0.86rem;
}

.catalog-toolbar {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 30px;
}

.catalog-search input {
  width: min(100%, 560px);
}

.advanced-filters {
  margin-bottom: 24px;
}

.filter-panel {
  padding: 24px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.catalog-sidebar .advanced-filters {
  margin-bottom: 0;
}

.catalog-sidebar .filter-panel {
  padding: 18px;
  border-radius: 28px;
  box-shadow: none;
}

.filter-panel-header,
.range-head,
.results-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.filter-panel-header h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
}

.compact {
  padding: 10px 14px;
}

.filter-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 20px 0;
}

.catalog-sidebar .filter-layout {
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 16px 0 0;
}

.filter-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.catalog-sidebar .filter-block {
  padding: 14px;
  border-radius: 18px;
}

.filter-block.wide {
  grid-column: 1 / -1;
}

.field-label {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.filter-hint {
  color: var(--muted);
  line-height: 1.5;
}

.select-field {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.95);
  outline: none;
}

.text-field {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.95);
  outline: none;
}

.pill-group,
.active-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill,
.active-tag {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.pill {
  background: rgba(255, 250, 242, 0.8);
  cursor: pointer;
}

.pill.active {
  background: var(--brand);
  color: #fff;
  border-color: transparent;
}

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

.catalog-sidebar .checkbox-grid {
  grid-template-columns: 1fr;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}

.brand-panel {
  width: min(520px, 100%);
}

.full-search input {
  width: 100%;
  margin-bottom: 18px;
}

.results-bar {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  align-items: start;
}

.catalog-toolbar .results-bar {
  padding-top: 0;
  border-top: 0;
}

.results-count {
  margin: 0 0 6px;
}

.results-bar small {
  color: var(--muted);
}

.active-tag {
  background: rgba(38, 65, 60, 0.08);
  font-size: 0.9rem;
}

.active-tag.muted {
  color: var(--muted);
  background: rgba(31, 26, 23, 0.04);
}

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

.filter {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.7);
  color: var(--muted);
  border: 1px solid var(--line);
}

.filter.active,
.filter:hover,
.button:hover,
.cart-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.filter.active {
  background: var(--forest);
  color: #fff;
}

.search input {
  width: 240px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.75);
  outline: none;
}

.predictive-search {
  position: relative;
}

.suggestions-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 12;
  padding: 10px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.96);
  box-shadow: var(--shadow);
}

.suggestion-item {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.suggestion-item:hover,
.suggestion-item.active {
  background: rgba(38, 65, 60, 0.08);
}

.suggestion-item strong,
.suggestion-item small {
  display: block;
}

.suggestion-item small {
  margin-top: 4px;
  color: var(--muted);
}

.suggestion-type {
  align-self: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(191, 79, 36, 0.12);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.engagement-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
}

.catalog-toolbar .engagement-bar {
  margin-top: 0;
  padding-top: 14px;
}

.engagement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.counter-button {
  gap: 10px;
}

.counter-button span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(38, 65, 60, 0.12);
  color: var(--forest);
  font-weight: 800;
}

.engagement-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.engagement-note[data-tone="success"] {
  color: var(--forest);
}

.engagement-note[data-tone="warning"] {
  color: var(--brand-deep);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.catalog-load-more {
  display: flex;
  justify-content: center;
  padding: 24px 0 4px;
}

.catalog-load-more[hidden] {
  display: none;
}

.catalog-load-more .secondary-button {
  min-width: min(100%, 260px);
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
}

.product-visual {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.product-visual > * {
  position: relative;
  z-index: 2;
}

.product-visual-hit {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.product-visual-hit:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.86);
  outline-offset: -8px;
  border-radius: 22px;
}

.product-media-image,
.product-visual-shade {
  position: absolute;
  inset: 0;
}

.product-media-image {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-visual-shade {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.62)),
    linear-gradient(135deg, rgba(38, 65, 60, 0.18), rgba(31, 26, 23, 0.42));
  transition: background 180ms ease;
}

.product-visual:hover .product-visual-shade {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.72)),
    linear-gradient(135deg, rgba(38, 65, 60, 0.08), rgba(31, 26, 23, 0.5));
}

.product-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-visual-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.product-utilities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
  position: relative;
  z-index: 3;
}

.utility-button {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.utility-button.active {
  background: rgba(31, 26, 23, 0.22);
  border-color: rgba(255, 255, 255, 0.64);
}

.product-topline {
  font-size: 0.9rem;
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-visual .signal-chip {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

.signal-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(38, 65, 60, 0.08);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 700;
}

.media-count-badge {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.media-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.quick-view-cue {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 850;
}

.review-snippet {
  display: grid;
  gap: 8px;
  margin: 14px 0 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.review-snippet.is-rated {
  background: rgba(227, 182, 85, 0.12);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.review-badge strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.review-badge span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(38, 65, 60, 0.08);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
}

.review-badge.is-pending span {
  background: rgba(31, 26, 23, 0.06);
  color: var(--muted);
}

.review-meta-note,
.review-excerpt {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-meta-note {
  font-size: 0.9rem;
  font-weight: 700;
}

.review-excerpt {
  font-size: 0.92rem;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.product-body h3 {
  margin: 0;
  font-size: 1.18rem;
}

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

.product-card-clickable {
  cursor: zoom-in;
}

.product-card-clickable .add-button,
.product-card-clickable .stock-out-button,
.product-card-clickable .utility-button,
.product-card-clickable .product-title-button {
  cursor: pointer;
}

.product-body-simple {
  justify-content: space-between;
}

.product-title-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
}

.product-title-button:hover,
.product-title-button:focus-visible {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.feature-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-chip {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(191, 79, 36, 0.08);
  border: 1px solid rgba(191, 79, 36, 0.12);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.product-meta,
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price {
  font-weight: 800;
  font-size: 1.05rem;
}

.stock-badge {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.stock-badge.instock {
  background: rgba(38, 65, 60, 0.12);
  color: var(--forest);
}

.stock-badge.low {
  background: rgba(191, 79, 36, 0.12);
  color: var(--brand-deep);
}

.stock-count-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 92, 175, 0.09);
  color: var(--tekzan-blue);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.add-button {
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
}

.stock-out-button {
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: #e5e7eb;
  color: #64748b;
  font-weight: 800;
  cursor: not-allowed;
}

.saved-collections,
.comparison-section {
  margin-top: 56px;
}

.saved-collections {
  display: grid;
  gap: 24px;
}

.collection-panel,
.comparison-section {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

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

.collection-card,
.compare-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.collection-card-clickable {
  cursor: zoom-in;
}

.collection-card-clickable .add-button,
.collection-card-clickable .utility-button,
.collection-card-clickable .product-title-button {
  cursor: pointer;
}

.collection-visual {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  margin: -6px -6px 14px;
  border: 1px solid #e0eaf5;
  border-radius: 16px;
  background: #fff;
}

.collection-visual .product-media-image {
  object-fit: contain;
  padding: 22px;
}

.collection-card .product-utilities,
.compare-card .product-utilities {
  justify-content: start;
  margin-top: 12px;
}

.collection-card .utility-button,
.compare-card .utility-button {
  background: rgba(38, 65, 60, 0.06);
  color: var(--forest);
  border-color: var(--line);
}

.collection-card .utility-button.active,
.compare-card .utility-button.active {
  background: var(--forest);
  color: #fff;
  border-color: transparent;
}

.collection-card h3,
.compare-card h3 {
  margin: 8px 0 12px;
  font-family: "Space Grotesk", sans-serif;
}

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

.collection-card .review-snippet,
.compare-card .review-snippet {
  margin: 10px 0 14px;
  padding: 12px 14px;
}

.collection-card .review-excerpt,
.compare-card .review-excerpt {
  font-size: 0.86rem;
}

.collection-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.compare-rows {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.compare-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--line);
}

.compare-row span {
  color: var(--muted);
}

.compare-row strong {
  text-align: right;
}

.compare-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 36;
  width: min(1120px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(31, 26, 23, 0.94);
  color: #fff;
  box-shadow: 0 24px 50px rgba(15, 10, 8, 0.3);
}

.compare-bar .eyebrow {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.7);
}

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

.compare-preview-chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.campaigns {
  align-items: stretch;
  margin: 68px 0;
  padding: 28px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(38, 65, 60, 0.96), rgba(191, 79, 36, 0.9));
  color: #fff;
  box-shadow: var(--shadow);
}

.campaign-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.campaign-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  width: min(480px, 100%);
}

.campaign-cards article {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.campaign-cards span {
  display: inline-block;
  margin-bottom: 18px;
  font-weight: 800;
  font-size: 1.45rem;
}

.about {
  margin-top: 24px;
}

.about-panel {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.84), rgba(244, 235, 223, 0.84));
}

.membership-hub,
.contact-section,
.payment-section,
.trust-section,
.faq-section {
  margin-top: 56px;
}

.membership-grid,
.contact-grid,
.payment-grid,
.trust-grid,
.policy-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.membership-grid,
.contact-grid {
  grid-template-columns: repeat(2, 1fr);
}

.membership-card-account {
  grid-column: 1 / -1;
}

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

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 18px;
}

.policy-grid,
.faq-list {
  grid-template-columns: repeat(2, 1fr);
}

.membership-card,
.contact-card,
.payment-card,
.trust-card,
.policy-card,
.faq-item {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.82);
  box-shadow: var(--shadow);
}

.membership-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.membership-copy h3 {
  margin: 10px 0 12px;
  font-family: "Space Grotesk", sans-serif;
}

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

.account-panel {
  display: grid;
  gap: 16px;
}

.account-form[hidden],
.account-profile[hidden] {
  display: none;
}

.account-reset-form {
  margin-top: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.account-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 8px;
  padding: 16px;
  border: 1px solid rgba(6, 72, 150, 0.16);
  border-radius: 18px;
  background: #f7fbff;
}

.account-status strong,
.account-status span {
  display: block;
}

.account-status span {
  color: var(--muted);
  margin-top: 3px;
}

.membership-form .field {
  display: grid;
  gap: 8px;
}

.membership-form .field span,
.membership-form > .field > span {
  font-size: 0.92rem;
  font-weight: 700;
}

.membership-form input,
.membership-form textarea,
.membership-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 14px;
  background: #fff;
  color: var(--text);
}

.membership-form textarea {
  resize: vertical;
}

.membership-form .wide {
  grid-column: 1 / -1;
}

.address-fieldset {
  display: grid;
  gap: 14px;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px solid rgba(6, 72, 150, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.94), rgba(255, 255, 255, 0.9));
}

.address-fieldset legend {
  padding: 0 8px;
  color: var(--brand-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

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

.same-address-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px dashed rgba(6, 72, 150, 0.28);
  border-radius: 16px;
  background: rgba(6, 72, 150, 0.06);
  color: var(--brand-deep);
  font-weight: 800;
}

.same-address-row input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.consent-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  line-height: 1.7;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
}

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

.channel-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.channel-grid input {
  width: 16px;
  height: 16px;
}

.form-helper,
.form-feedback {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.form-helper a {
  color: var(--brand-deep);
}

.form-actions-inline {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.form-feedback {
  min-height: 24px;
  font-weight: 700;
}

.form-feedback[data-tone="success"] {
  color: #15724e;
}

.form-feedback[data-tone="error"] {
  color: #9f2d2d;
}

.form-feedback[data-tone="info"] {
  color: var(--brand-deep);
}

.contact-card-strong {
  background: linear-gradient(135deg, rgba(38, 65, 60, 0.96), rgba(191, 79, 36, 0.9));
  color: #fff;
}

.payment-card-strong {
  background: linear-gradient(135deg, rgba(191, 79, 36, 0.96), rgba(227, 182, 85, 0.92));
  color: #fff;
}

.payment-card-strong p,
.payment-card-strong .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.payment-card-wide {
  grid-column: span 2;
}

.contact-card-strong p,
.contact-card-strong .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.contact-card h3,
.payment-card h3,
.trust-card h3,
.policy-card h3,
.faq-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: "Space Grotesk", sans-serif;
}

.contact-card p,
.contact-card a,
.payment-card p,
.trust-card p,
.policy-card li,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}

.iban-line {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.06em;
  word-break: break-word;
}

.contact-card h3 a,
.site-footer a,
.site-footer strong {
  color: inherit;
}

.site-footer {
  margin-top: 56px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.84);
  box-shadow: var(--shadow);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 0.8fr;
  gap: 18px;
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.footer-legal {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal-links a {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  text-decoration: none;
  font-weight: 700;
}

.footer-legal-note {
  max-width: 560px;
}

.policy-card ul {
  margin: 0;
  padding-left: 18px;
}

.quick-view-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 45;
  width: min(980px, calc(100% - 32px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 18px;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 248, 240, 0.97);
  box-shadow: 0 28px 80px rgba(15, 10, 8, 0.34);
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.quick-view-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.quick-view-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  background: rgba(15, 10, 8, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.quick-view-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.quick-view-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
}

.quick-view-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.quick-view-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border-radius: 28px;
  color: #fff;
}

.quick-view-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-view-media > * {
  position: relative;
  z-index: 1;
}

.quick-view-info {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 14px 54px 14px 4px;
}

.quick-view-info h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.quick-view-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quick-view-price-row,
.quick-view-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.quick-view-price-row {
  padding: 16px;
  border-radius: 20px;
  background: rgba(38, 65, 60, 0.08);
}

.quick-view-price-row .price {
  font-size: 1.4rem;
}

.quick-view-section {
  display: grid;
  gap: 12px;
}

.quick-view-section h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.quick-view-specs {
  padding: 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.quick-view-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
}

.quick-view-spec-row:last-child {
  border-bottom: 0;
}

.quick-view-spec-row span {
  color: var(--muted);
}

.quick-view-spec-row strong {
  text-align: right;
}

.cart-drawer {
  position: fixed;
  top: 18px;
  right: 18px;
  width: min(620px, calc(100% - 28px));
  height: calc(100vh - 36px);
  z-index: 40;
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 248, 240, 0.94);
  transform: translateX(calc(100% + 24px));
  transition: transform 220ms ease;
  display: flex;
  flex-direction: column;
}

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

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(31, 26, 23, 0.08);
}

.cart-items {
  flex: 0 1 auto;
  max-height: 31vh;
  overflow: auto;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.empty-state {
  color: var(--muted);
  line-height: 1.7;
}

.cart-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-strong);
}

.cart-item p,
.cart-item small {
  margin: 0;
  color: var(--muted);
}

.cart-item strong {
  display: block;
  margin-bottom: 8px;
}

.remove-button {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(191, 79, 36, 0.12);
  color: var(--brand-deep);
  border: 0;
  cursor: pointer;
}

.checkout-panel {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  overflow: auto;
}

.checkout-panel[hidden] {
  display: none;
}

.checkout-heading h3,
.checkout-heading p {
  margin: 0;
}

.checkout-heading h3 {
  font-family: "Space Grotesk", sans-serif;
}

.checkout-heading p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

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

.checkout-step-note {
  grid-column: 1 / -1;
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(6, 72, 150, 0.16);
  border-radius: 12px;
  background: #f7fbff;
  color: var(--brand-deep);
  font-size: 0.88rem;
}

.checkout-step-note span {
  color: var(--muted);
}

.checkout-form .field {
  display: grid;
  gap: 7px;
}

.checkout-form .field span,
.checkout-consent span {
  font-size: 0.86rem;
  font-weight: 750;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  color: var(--text);
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-form .wide,
.checkout-consent,
.checkout-bank-note,
.checkout-fieldset,
.checkout-form .button,
.checkout-form .form-feedback {
  grid-column: 1 / -1;
}

.checkout-fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(6, 72, 150, 0.16);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(246, 251, 255, 0.95), rgba(255, 255, 255, 0.9));
}

.checkout-fieldset legend {
  padding: 0 8px;
  color: var(--brand-deep);
  font-weight: 850;
}

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

.checkout-same-row {
  align-self: end;
}

.checkout-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7fbff;
  color: var(--muted);
  line-height: 1.5;
}

.checkout-consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  flex: 0 0 auto;
}

.checkout-bank-note {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 12px;
  background: #eef5fc;
  color: var(--brand-deep);
  font-size: 0.86rem;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 8, 0.34);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 1080px) {
  .hero,
  .campaigns,
  .section-heading {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: static;
  }

  .category-tree {
    max-height: 420px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-strip,
  .collection-grid,
  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .membership-grid,
  .contact-grid,
  .payment-grid,
  .trust-grid,
  .policy-grid,
  .faq-list,
  .filter-layout,
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
  }

  .controls {
    width: 100%;
    align-items: start;
  }

  .engagement-bar,
  .compare-bar {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar,
  .nav,
  .hero-metrics,
  .highlights,
  .benefit-strip,
  .campaign-cards,
  .products-grid,
  .collection-grid,
  .compare-grid,
  .membership-grid,
  .contact-grid,
  .payment-grid,
  .trust-grid,
  .policy-grid,
  .faq-list,
  .footer-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-card {
    min-height: 380px;
  }

  .floating-card {
    right: 18px;
    left: 18px;
    max-width: none;
  }

  .search input {
    width: 100%;
  }

  .filter-panel-header,
  .range-head,
  .results-bar,
  .engagement-bar,
  .form-actions-inline,
  .filter-layout,
  .checkbox-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: start;
  }

  .filter-group,
  .controls,
  .catalog-search {
    width: 100%;
  }

  .filter-block,
  .filter-block.wide,
  .quick-view-modal,
  .payment-card-wide,
  .select-field,
  .text-field,
  .brand-panel,
  .membership-form,
  .predictive-search,
  .search input,
  .suggestions-panel,
  .counter-button,
  .compare-bar {
    width: 100%;
  }

  .catalog-toolbar {
    padding: 16px;
  }

  .category-tree {
    max-height: none;
  }

  .membership-form,
  .channel-grid {
    grid-template-columns: 1fr;
  }

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

  .checkout-address-grid,
  .checkout-form {
    grid-template-columns: 1fr;
  }

  .account-status {
    align-items: stretch;
    flex-direction: column;
  }

  .payment-card-wide {
    grid-column: auto;
  }

  .product-utilities,
  .collection-actions,
  .compare-row {
    justify-content: space-between;
  }

  .quick-view-content {
    grid-template-columns: 1fr;
  }

  .quick-view-media {
    min-height: 320px;
  }

  .quick-view-info {
    padding: 4px;
  }

  .quick-view-close {
    top: 12px;
    right: 12px;
  }
}

/* Tekzan klasik mağaza görünümü */
:root {
  --bg: #f3f9fd;
  --bg-accent: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text: #222222;
  --muted: #5e7480;
  --line: #cbd8e8;
  --brand: #064896;
  --brand-deep: #04356f;
  --forest: #083f7f;
  --logo-accent: #22b8c7;
  --gold: #f4c84e;
  --shadow: 0 8px 22px rgba(6, 72, 150, 0.14);
}

body {
  background: linear-gradient(180deg, #f7fbff 0%, #edf5fb 42%, #e6f0f8 100%);
}

.page-shell {
  width: min(1260px, calc(100% - 24px));
  padding: 0 0 56px;
}

.store-utility-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 9px 12px;
  color: #244b79;
  font-size: 0.86rem;
  background: #edf7fb;
  border: 1px solid #cbd8e8;
  border-top: 0;
}

.utility-links,
.utility-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.top-search-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 0;
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
}

.top-member-button.secondary {
  border: 1px solid rgba(6, 72, 150, 0.22);
  background: #fff;
  color: var(--brand-deep);
}

.utility-links a,
.utility-contact a {
  color: var(--brand-deep);
  font-weight: 750;
}

.top-search-button:hover,
.top-search-button:focus-visible {
  color: #fff;
  background: var(--brand-deep);
}

.top-member-button.secondary:hover,
.top-member-button.secondary:focus-visible {
  color: #fff;
  background: var(--brand);
}

.utility-links a:hover,
.utility-contact a:hover {
  color: var(--brand);
}

.topbar {
  top: 0;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px;
  border: 1px solid #cbd8e8;
  border-top: 4px solid var(--brand);
  border-radius: 0 0 6px 6px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 72, 150, 0.14);
  backdrop-filter: none;
}

.brand-logo-frame {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(132px, 18vw, 190px);
  padding: 4px 6px;
  border-radius: 6px;
  background: #fff;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand strong {
  letter-spacing: 0.08em;
}

.brand small {
  font-size: 0.78rem;
}

.nav {
  order: 3;
  width: 100%;
  display: flex;
  gap: 0;
  overflow-x: auto;
  color: #fff;
  background: linear-gradient(180deg, #0755a8 0%, #064896 100%);
  border-radius: 3px;
}

.nav a {
  flex: 0 0 auto;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.nav a:hover,
.nav a:focus-visible {
  color: #fff;
  background: #04356f;
}

.cart-button,
.button.primary,
.add-button {
  border-radius: 4px;
  background: var(--brand);
  color: #fff;
}

.button.secondary,
.filter,
.pill,
.icon-button {
  border-radius: 4px;
}

.hero {
  grid-template-columns: minmax(0, 1.35fr) 320px;
  gap: 20px;
  margin: 18px 0 20px;
  padding: 24px;
  border: 1px solid #cbd8e8;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(6, 72, 150, 0.08), rgba(255, 255, 255, 0.8)),
    #fff;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.hero-card {
  min-height: 330px;
  border-radius: 6px;
  background: linear-gradient(135deg, #0b5db2 0%, #04356f 100%);
}

.floating-card {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.highlights,
.benefit-strip {
  margin-top: 14px;
}

.highlights article,
.benefit-card,
.about-panel,
.campaigns,
.contact-card,
.payment-card,
.membership-card,
.trust-card,
.policy-card,
.faq-item,
.footer {
  border-radius: 6px;
}

.section-heading h2,
.campaign-copy h2,
.about-panel h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.catalog-layout {
  grid-template-columns: 285px minmax(0, 1fr);
  gap: 18px;
}

.catalog-sidebar {
  top: 116px;
  gap: 12px;
}

.category-block,
.filter-panel,
.catalog-toolbar,
.side-info-card,
.product-card,
.collection-panel,
.collection-card,
.comparison-section,
.compare-card {
  border: 1px solid #cbd8e8;
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
  backdrop-filter: none;
}

.category-block,
.catalog-sidebar .filter-panel {
  padding: 0;
  overflow: hidden;
}

.category-block .eyebrow,
.category-block p:not(.eyebrow),
.category-tree,
.compact-category-filters {
  padding-left: 14px;
  padding-right: 14px;
}

.category-block .eyebrow {
  padding-top: 14px;
}

.category-block h3,
.side-info-card h3,
.catalog-sidebar .filter-panel-header h3 {
  margin: 0;
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(180deg, #0755a8 0%, #064896 100%);
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.category-block p:not(.eyebrow) {
  margin: 0 0 12px;
  font-size: 0.9rem;
}

.category-tree {
  max-height: 520px;
  gap: 0;
  padding-bottom: 10px;
}

.category-list {
  gap: 0;
  margin-left: 0;
  padding-left: 12px;
  border-left: 2px solid #efefef;
}

.category-tree-button {
  border: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
  background: #fff;
}

.category-level-1 > .category-tree-button {
  color: #222;
  background: #f1f7fd;
}

.category-tree-button:hover,
.category-tree-button.active,
.filter.active,
.pill.active {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.category-count {
  color: #555;
  background: #e7f0fa;
}

.compact-category-filters {
  padding-bottom: 14px;
}

.catalog-sidebar .filter-panel-header {
  display: grid;
  gap: 10px;
  padding-bottom: 12px;
}

.catalog-sidebar .filter-panel-header .eyebrow {
  display: none;
}

.catalog-sidebar .filter-panel-header .button {
  margin: 0 14px;
}

.catalog-sidebar .filter-layout {
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 14px 14px;
}

.catalog-sidebar .filter-block {
  padding: 10px 0;
  border-radius: 0;
  background: transparent;
}

.select-field,
.text-field,
.search input {
  border-radius: 4px;
  background: #fff;
}

.catalog-toolbar {
  margin-bottom: 14px;
  padding: 12px;
  border-radius: 5px;
}

.catalog-search input {
  width: 100%;
}

.side-info-card {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.side-info-card .eyebrow,
.side-info-card p {
  margin: 0;
}

.side-info-card p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.92rem;
}

.brand-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.brand-cloud a,
.side-card-link,
.blog-side-card a,
.blog-category-card a {
  padding: 7px 9px;
  border: 1px solid #cbd8e8;
  border-radius: 4px;
  color: var(--brand-deep);
  background: #f6fcff;
  font-size: 0.86rem;
  font-weight: 800;
}

.brand-cloud a:hover,
.side-card-link:hover,
.blog-side-card a:hover,
.blog-category-card a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.blog-side-card a,
.blog-category-card a {
  display: block;
}

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

.product-card {
  border-radius: 5px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(6, 72, 150, 0.42);
  box-shadow: 0 12px 28px rgba(6, 72, 150, 0.14);
  transform: translateY(-2px);
}

.product-visual {
  min-height: 190px;
  padding: 10px;
  color: #222;
  background: #fff !important;
  border-bottom: 1px solid #e0eaf5;
}

.product-media-image {
  object-fit: contain;
  padding: 30px 20px 22px;
  background: #fff;
}

.product-visual-shade {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.1));
}

.product-visual:hover .product-visual-shade {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08));
}

.product-tag,
.media-count-badge {
  border-radius: 3px;
  font-size: 0.72rem;
}

.product-tag {
  color: #fff;
  background: var(--brand);
}

.product-utilities {
  justify-content: end;
}

.utility-button {
  border: 1px solid #dddddd;
  color: #333;
  background: rgba(255, 255, 255, 0.9);
}

.utility-button.active {
  color: #fff;
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

.product-visual .signal-list {
  display: none;
}

.media-action-row {
  margin-top: auto;
}

.media-count-badge {
  color: #555;
  background: #eef5fc;
  border: 1px solid #cbd8e8;
}

.quick-view-cue {
  color: var(--brand);
  background: #fff;
  border: 1px solid rgba(6, 72, 150, 0.26);
  border-radius: 3px;
}

.footer-brand-block {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-logo {
  width: min(170px, 100%);
  height: auto;
  padding: 4px;
  border-radius: 6px;
  background: #fff;
}

.product-body {
  gap: 9px;
  padding: 12px;
}

.product-topline {
  color: #777;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-body h3 {
  font-size: 0.98rem;
  line-height: 1.35;
}

.product-body p {
  font-size: 0.85rem;
  line-height: 1.48;
}

.feature-chip-row {
  gap: 6px;
}

.feature-chip {
  border-radius: 3px;
  font-size: 0.72rem;
}

.review-snippet {
  margin: 4px 0;
  padding: 8px;
  border-radius: 4px;
}

.review-excerpt {
  display: none;
}

.price {
  color: var(--brand);
  font-size: 1.08rem;
}

.stock-badge {
  border-radius: 3px;
  padding: 6px 8px;
  font-size: 0.74rem;
}

.add-button {
  padding: 10px 12px;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.detail-link {
  color: var(--brand-deep);
  font-weight: 850;
}

.product-body-simple .detail-link {
  max-width: 160px;
  font-size: 0.78rem;
  line-height: 1.35;
}

.quick-view-media {
  background: #fff !important;
}

.quick-view-media img {
  object-fit: contain;
  padding: 28px;
}

@media (max-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 1080px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-main {
    order: 1;
  }

  .catalog-sidebar {
    order: 2;
    position: static;
  }
}

@media (max-width: 760px) {
  .store-utility-strip,
  .utility-links,
  .utility-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar {
    position: static;
  }

  .nav {
    display: flex;
  }

  .hero {
    padding: 18px;
  }

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

/* Minimal white theme */
:root {
  --bg: #ffffff;
  --bg-accent: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text: #111111;
  --muted: #6b6b6b;
  --line: #e7e7e7;
  --brand: #111111;
  --brand-deep: #111111;
  --forest: #111111;
  --logo-accent: #111111;
  --gold: #111111;
  --shadow: none;
}

* {
  letter-spacing: 0;
}

html {
  accent-color: #111111;
}

body {
  background: #ffffff;
  color: #111111;
}

.page-shell {
  width: min(1180px, calc(100% - 48px));
  padding-bottom: 72px;
}

.store-utility-strip,
.topbar,
.catalog-toolbar,
.catalog-sidebar,
.category-block,
.side-info-card,
.filter-panel,
.product-card,
.collection-panel,
.campaigns,
.about-panel,
.contact-card,
.payment-card,
.membership-card,
.trust-card,
.policy-card,
.faq-item,
.checkout-panel,
.cart-drawer,
.quick-view-modal {
  background: #ffffff;
  border-color: #e7e7e7;
  box-shadow: none;
}

.store-utility-strip {
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  color: #666666;
  background: #ffffff;
}

.utility-links,
.utility-contact {
  gap: 18px;
}

.utility-links a,
.utility-contact a,
.nav a,
.brand,
.detail-link,
.side-card-link,
.payment-card a,
.contact-card a {
  color: #111111;
  text-decoration: none;
}

a,
a:visited {
  color: #111111;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
}

.brand-logo-frame {
  width: clamp(112px, 14vw, 156px);
  padding: 0;
  border: 0;
}

.brand-copy small,
.store-utility-strip .top-member-button.secondary,
.category-tree,
.side-info-card,
.campaigns,
.notify-side-card,
.blog-category-card,
.blog-side-card,
.product-visual-shade,
.signal-list,
.media-action-row,
.product-body-simple .detail-link,
.hero-glow {
  display: none;
}

.category-block p {
  display: none;
}

.nav {
  gap: 22px;
  background: #ffffff !important;
  border: 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.nav a {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #333333;
  font-size: 0.86rem;
  font-weight: 500;
}

.nav a:hover,
.nav a:focus-visible {
  color: #000000;
  background: transparent;
}

.top-search-button,
.cart-button,
.button,
.primary-button,
.secondary-button,
.add-button,
.utility-button,
.pill,
.filter,
.side-card-link {
  border-radius: 0;
  border: 1px solid #111111;
  background: #ffffff;
  color: #111111;
  box-shadow: none;
  text-transform: none;
}

.top-search-button,
.cart-button,
.add-button,
.button.primary,
.primary-button {
  background: #111111;
  color: #ffffff;
}

.top-search-button:hover,
.top-search-button:focus-visible,
.cart-button:hover,
.cart-button:focus-visible,
.add-button:hover,
.add-button:focus-visible,
.button:hover,
.button:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.utility-button:hover,
.utility-button:focus-visible,
.pill:hover,
.pill:focus-visible,
.filter:hover,
.filter:focus-visible {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.filter.active,
.pill.active,
.utility-button.active {
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.products-section {
  padding-top: 52px;
}

.catalog-layout {
  gap: 48px;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
}

.catalog-sidebar {
  top: 96px;
  gap: 28px;
  padding: 0;
  border: 0;
}

.category-block,
.side-info-card,
.filter-panel {
  padding: 0 0 28px;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
}

.category-list,
.category-row,
.category-button,
.category-count,
.filter-panel-header,
.checkbox-grid label,
.brand-card,
.footer,
.site-footer {
  background: #ffffff;
  color: #111111;
  border-color: #e7e7e7;
  box-shadow: none;
}

.category-count,
.category-button,
.category-row button {
  color: #111111;
}

.category-block h3,
.side-info-card h3,
.filter-panel h3,
.section-heading h2,
.campaign-copy h2,
.about-panel h2,
.membership-copy h3,
.checkout-heading h2 {
  color: #111111;
  font-weight: 500;
}

.category-block h3,
.filter-panel-header,
.filter-block,
.filter-block.wide {
  background: #ffffff;
}

.filter-block.wide:has(#categoryChecks),
.filter-block.wide:has(#featureFilters),
.filter-block:has(#badgeFilters),
.filter-block:has(#pricePresetGroup) {
  display: none;
}

.category-block p,
.side-info-card p,
.campaign-copy p,
.about-panel p,
.contact-card p,
.payment-card p,
.membership-copy p,
.product-body p,
.engagement-note,
.results-bar small {
  color: #666666;
}

.eyebrow,
.product-topline,
.field-label,
.results-count,
.product-tag,
.stock-badge,
.stock-count-badge,
.media-count-badge {
  color: #777777;
  letter-spacing: 0;
  text-transform: none;
}

.product-tag,
.stock-badge,
.stock-count-badge,
.media-count-badge,
.active-tag {
  border-radius: 0;
  border-color: #e7e7e7;
  background: #ffffff;
  color: #666666;
}

.catalog-toolbar {
  gap: 20px;
  padding: 0 0 28px;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
}

.search input,
.text-field,
.select-field,
textarea,
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="number"],
input[type="text"],
select {
  border-radius: 0;
  border-color: #dcdcdc;
  background: #ffffff;
  color: #111111;
  box-shadow: none;
}

.search input:focus,
.text-field:focus,
.select-field:focus,
textarea:focus,
input:focus,
select:focus {
  border-color: #111111;
  box-shadow: none;
  outline: 1px solid #111111;
  outline-offset: 0;
}

input[type="range"] {
  accent-color: #111111;
}

.products-grid {
  gap: 40px 28px;
}

.product-card {
  border: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
  overflow: visible;
}

.product-card:hover {
  transform: none;
  box-shadow: none;
}

.product-visual {
  min-height: 220px;
  border: 1px solid #eeeeee;
  border-radius: 0;
  background: #ffffff !important;
}

.product-media-image {
  object-fit: contain;
  padding: 24px;
}

.product-visual-head {
  align-items: flex-start;
}

.product-body {
  gap: 18px;
  padding: 20px 0 28px;
}

.product-body h3,
.product-title-button {
  color: #111111;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.product-title-button:hover,
.product-title-button:focus-visible {
  color: #000000;
  text-decoration: underline;
}

.price {
  color: #111111;
  font-weight: 500;
}

.catalog-load-more {
  padding-top: 36px;
}

.campaigns,
.about,
.contact-section,
.payment-section,
.membership-hub,
.trust-section,
.faq-section {
  margin-top: 88px;
}

.about {
  margin-top: 72px;
}

.about-panel {
  max-width: 760px;
}

.footer,
footer {
  background: #ffffff;
  border-color: #eeeeee;
}

.campaigns,
.section-heading,
.about-panel {
  padding: 0 0 28px;
  border: 0;
  border-bottom: 1px solid #eeeeee;
  border-radius: 0;
}

.contact-grid,
.payment-grid,
.membership-grid,
.trust-grid,
.policy-grid,
.faq-list {
  gap: 18px;
}

.contact-card,
.payment-card,
.membership-card,
.trust-card,
.policy-card,
.faq-item {
  border-radius: 0;
}

.address-fieldset,
.checkout-fieldset,
.same-address-row,
.checkout-same-row,
.channel-grid label,
.checkout-bank-note,
.checkout-step-note,
.checkout-consent {
  background: #ffffff;
  border-color: #e7e7e7;
  border-radius: 0;
  box-shadow: none;
}

.cart-drawer,
.checkout-panel,
.quick-view-modal {
  border-radius: 0;
}

.overlay,
.quick-view-backdrop {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

@media (max-width: 1080px) {
  .catalog-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    grid-template-columns: 1fr;
  }

  .catalog-main {
    order: 1;
    width: 100%;
  }

  .catalog-sidebar {
    order: 2;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .store-utility-strip {
    gap: 10px;
  }

  .topbar {
    padding: 18px 0;
  }

  .nav {
    gap: 14px;
  }

  .products-section {
    padding-top: 36px;
  }

  .products-grid,
  .collection-grid,
  .contact-grid,
  .payment-grid,
  .membership-grid,
  .trust-grid,
  .policy-grid,
  .faq-list,
  .filter-layout,
  .checkbox-grid,
  .address-grid,
  .checkout-address-grid,
  .checkout-form {
    grid-template-columns: 1fr;
  }

  .topbar,
  .store-utility-strip,
  .catalog-main,
  .catalog-sidebar,
  .catalog-toolbar,
  .product-card,
  .product-visual,
  .membership-card,
  .contact-card,
  .payment-card {
    max-width: 100%;
  }

  .product-visual {
    min-height: 200px;
  }
}
