:root {
  --bg: #08080D;
  --surface: #0F0F18;
  --surface-2: #13131F;
  --border: #1E1E2E;
  --border-light: #2A2A3E;
  --accent: #A855F7;
  --accent-dim: rgba(168, 85, 247, 0.15);
  --accent-glow: rgba(168, 85, 247, 0.25);
  --accent-hover: #9333EA;
  --success: #22C55E;
  --danger: #EF4444;
  --text: #F0F0FF;
  --text-muted: #9CA3AF;
  --text-heading: #FFFFFF;
  --muted: #6B7280;
  --subtle: #3F3F5A;
  --nav-h: 64px;
  --radius: 10px;
  --radius-sm: 6px;
  --container: 1200px;
  --font: 'Inter', 'Segoe UI', Arial, Helvetica, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

input, select, textarea {
  font: inherit;
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.bg-glow::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.container--narrow {
  max-width: 860px;
}
.container--wide {
  max-width: 1300px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  transition: opacity 0.15s, background 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
}
.btn--secondary {
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--border-light);
  color: var(--text);
}
.btn--success {
  background: var(--success);
  color: #000;
}
.btn--lg {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius);
}
.btn--full {
  width: 100%;
}
.btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(8, 8, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo__img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}
.nav-logo__text {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.nav-logo__text strong {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text);
  background: var(--surface-2);
}

.nav-basket {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
}
.nav-basket:hover {
  color: var(--text);
  background: var(--surface-2);
}
.nav-basket__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: 0.2s;
}

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1.25rem;
}
.nav-mobile.open {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile__link {
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-mobile__link:hover {
  background: var(--surface-2);
  color: var(--text);
}

.page-shell {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 4rem;
}

.page-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.page-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.section-title {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover {
  color: var(--text);
}
.breadcrumb span {
  color: var(--subtle);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 5rem 1.25rem 4rem;
  text-align: center;
}

.hero-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent-dim);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
}
.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}
.hero-headline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-heading);
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tiers-section {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.tiers-section .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.tier-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}
.tier-card--accent {
  border-color: rgba(168, 85, 247, 0.4);
  background: var(--accent-dim);
}
.tier-card__qty {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}
.tier-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.tier-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.featured-section {
  position: relative;
  z-index: 1;
  padding: 3rem 1.25rem;
}

.section-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.link-all {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
}
.link-all:hover {
  text-decoration: underline;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.product-card__img-wrap {
  background: var(--surface-2);
  aspect-ratio: 1/1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.product-card:hover .product-card__img {
  transform: scale(1.04);
}
.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
}
.product-card__body {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.product-card__brand {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.product-card__model {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.product-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
}
.product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.25rem;
}
.product-card__specs span {
  font-size: 0.7rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
}
.product-card__price {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-heading);
}

.hero--compact {
  padding: 3.5rem 1.25rem 2.5rem;
}
.hero--compact .hero-headline {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.brands-feed {
  position: relative;
  z-index: 1;
}

.brand-section {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}
.brand-section:first-child {
  border-top: 1px solid var(--border);
}

.brand-section__header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  align-items: start;
}
@media (min-width: 640px) {
  .brand-section__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
  .brand-section__header .brand-section__desc {
    grid-column: 1;
  }
  .brand-section__header .brand-section__browse-btn {
    grid-row: 1/3;
    grid-column: 2;
    align-self: center;
    white-space: nowrap;
  }
}
@media (min-width: 900px) {
  .brand-section__header {
    grid-template-columns: 220px minmax(0, 1fr) auto;
    gap: 1.5rem;
  }
  .brand-section__header .brand-section__identity {
    grid-row: 1;
    grid-column: 1;
  }
  .brand-section__header .brand-section__desc {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
  }
  .brand-section__header .brand-section__browse-btn {
    grid-row: 1;
    grid-column: 3;
  }
}

.brand-section__identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.brand-section__logo {
  height: 30px;
  max-width: 130px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  padding: 3px 8px;
}

.brand-section__name-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
}

.brand-section__count {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.15rem 0.55rem;
  white-space: nowrap;
}

.brand-section__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}
@media (min-width: 640px) {
  .brand-section__desc {
    max-width: 100%;
  }
}

.brand-section__browse-btn {
  flex-shrink: 0;
}

.brand-products-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.brand-products-scroll::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .brand-products-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }
}

.brand-product-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 768px) {
  .brand-product-card {
    flex: none;
  }
}
.brand-product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.brand-product-card__img-wrap {
  aspect-ratio: 1/1;
  background: var(--surface-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.brand-product-card:hover .brand-product-card__img {
  transform: scale(1.05);
}
.brand-product-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
}
.brand-product-card__body {
  padding: 0.7rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
}
.brand-product-card__model {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.brand-product-card__title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-heading);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.2rem;
}
.brand-product-card__puffs {
  font-size: 0.68rem;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
}
.brand-product-card__price {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-heading);
}
.brand-product-card--see-all {
  background: var(--surface-2);
  border-style: dashed;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.brand-product-card--see-all:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}

.brand-product-card__see-all-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.see-all-count {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-heading);
}

.see-all-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.brand-hero {
  padding: 2rem 0 1.75rem;
}
.brand-hero .back-link {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  transition: color 0.15s;
}
.brand-hero .back-link:hover {
  color: var(--text);
}
.brand-hero__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .brand-hero__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}
.brand-hero__logo {
  height: 40px;
  max-width: 180px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 4px 10px;
  flex-shrink: 0;
}
.brand-hero__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.brand-hero__name {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-heading);
}
.brand-hero__desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}
.brand-hero__count {
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.2rem 0.65rem;
  align-self: flex-start;
}

.page-shell {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

.cta-section {
  position: relative;
  z-index: 1;
  padding: 4rem 1.25rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-inner {
  max-width: 540px;
  margin: 0 auto;
}

.cta-headline {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}

.cta-sub {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.catalog-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.catalog-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-bottom: 1.75rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.filter-input,
.filter-select {
  background: var(--surface-2);
  border: 1px solid var(--border-light);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.15s;
}
.filter-input:focus,
.filter-select:focus {
  border-color: var(--accent);
}

.filter-input {
  min-width: 220px;
}

.filter-select {
  min-width: 160px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.page-btn {
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: border-color 0.15s, color 0.15s;
}
.page-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.page-info {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.gallery-main {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
}
.gallery-main__placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-2);
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.gallery-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s;
}
.gallery-thumb:hover, .gallery-thumb.active {
  border-color: var(--accent);
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-info__brand {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  min-height: 1.2em;
}

.product-brand-logo {
  display: block;
  height: 34px;
  max-width: 120px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 5px;
  padding: 3px 8px;
}

.card-brand-logo {
  display: block;
  height: 22px;
  max-width: 70px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 3px;
  padding: 2px 5px;
}

.product-info__title {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
  line-height: 1.2;
}

.product-info__flavor {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
}

.spec-label {
  color: var(--text-muted);
}

.spec-val {
  font-weight: 600;
  color: var(--text-heading);
}

.spec-val--mono {
  font-family: monospace;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.nic-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
  background: var(--surface-2);
  color: var(--text-muted);
}
.nic-badge.nic--zero {
  background: rgba(100, 116, 139, 0.18);
  color: #94a3b8;
}
.nic-badge.nic--low {
  background: rgba(22, 163, 74, 0.18);
  color: #4ade80;
}
.nic-badge.nic--mid {
  background: rgba(234, 179, 8, 0.18);
  color: #facc15;
}
.nic-badge.nic--high {
  background: rgba(220, 38, 38, 0.18);
  color: #f87171;
}

.tier-table-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tier-table {
  width: 100%;
  border-collapse: collapse;
}
.tier-table th, .tier-table td {
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  text-align: left;
}
.tier-table thead th {
  background: var(--surface-2);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.tier-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.tier-table tbody tr:last-child {
  border: none;
}
.tier-table .tier-row--accent {
  background: var(--accent-dim);
}
.tier-table .tier-row--accent .tier-price {
  color: var(--accent);
}
.tier-table .tier-price {
  font-weight: 700;
  color: var(--text-heading);
}
.tier-table .tier-total {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.tier-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.6rem 1rem;
  border-top: 1px solid var(--border);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.add-to-basket {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qty-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.qty-min-note {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--subtle);
  margin-left: 0.3rem;
}

.qty-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  background: var(--surface-2);
  transition: color 0.15s, background 0.15s;
}
.qty-btn:hover {
  color: var(--text);
  background: var(--surface);
}

.qty-input {
  width: 70px;
  text-align: center;
  background: var(--surface);
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button {
  display: none;
}
.qty-input--sm {
  width: 56px;
}

.add-feedback {
  font-size: 0.8rem;
}
.add-feedback--ok {
  color: var(--success);
}
.add-feedback--err {
  color: var(--danger);
}

.related-section {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.related-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 1rem;
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 90px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.related-card:hover {
  opacity: 0.8;
}
.related-card__img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
}
.related-card__placeholder {
  width: 72px;
  height: 72px;
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
}
.related-card__title {
  font-size: 0.7rem;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.3;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.basket-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.basket-table {
  width: 100%;
  border-collapse: collapse;
}
.basket-table th, .basket-table td {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  text-align: left;
  vertical-align: middle;
}
.basket-table thead th {
  background: var(--surface-2);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.basket-table .basket-row {
  border-bottom: 1px solid var(--border);
}
.basket-table .basket-row:last-child {
  border: none;
}
.basket-table .text-right {
  text-align: right;
}
.basket-table td:first-child {
  padding: 0.5rem 0.75rem;
}

.basket-thumb {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.basket-thumb--empty {
  background: var(--surface-2);
}

.basket-product-link {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.basket-product-link:hover .basket-title {
  color: var(--accent);
}

.basket-brand {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.basket-model {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.basket-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-heading);
}

.basket-sku {
  font-size: 0.7rem;
  color: var(--muted);
  font-family: monospace;
  margin-top: 0.1rem;
  display: block;
}

.tier-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(168, 85, 247, 0.25);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.remove-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.remove-btn:hover {
  color: var(--danger);
  background: rgba(239, 68, 68, 0.1);
}

.basket-summary {
  max-width: 380px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.basket-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
}

.basket-summary__note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2.5rem;
  align-items: start;
}

.form-section-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.form-row {
  margin-bottom: 1rem;
}
.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form-label .req {
  color: var(--accent);
}

.form-input {
  background: var(--surface);
  border: 1px solid var(--border-light);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  outline: none;
  font-size: 0.9rem;
  transition: border-color 0.15s;
}
.form-input:focus {
  border-color: var(--accent);
}
.form-input::placeholder {
  color: var(--muted);
}

.form-select {
  appearance: none;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}

.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.order-summary__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.order-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.order-item__brand {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.order-item__name {
  color: var(--text);
  font-weight: 500;
}

.order-item__right {
  text-align: right;
  flex-shrink: 0;
}

.order-item__qty {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
}

.order-item__total {
  font-weight: 700;
  color: var(--text-heading);
}

.order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.95rem;
}

.order-summary__note {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.link-back {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.link-back:hover {
  color: var(--text);
}

.success-page {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
}

.success-card {
  max-width: 480px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}
.success-icon--muted {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.25);
  color: var(--accent);
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.success-ref {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.success-ref strong {
  color: var(--text);
}

.success-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.success-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.basket-brand-group {
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.basket-brand-group--warn {
  border-color: rgba(239, 68, 68, 0.4);
}

.basket-brand-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.65rem 1rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}

.basket-brand-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-heading);
  flex: 1;
}

.basket-brand-total {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.basket-brand-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.basket-brand-status--ok {
  background: rgba(34, 197, 94, 0.12);
  color: #86EFAC;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.basket-brand-status--warn {
  background: rgba(239, 68, 68, 0.12);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.basket-tier-pill {
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.5rem;
}

.basket-brand-hint {
  padding: 0.5rem 1rem 0.6rem;
  font-size: 0.8rem;
  background: rgba(239, 68, 68, 0.06);
  border-top: 1px solid rgba(239, 68, 68, 0.2);
}
.basket-brand-hint a {
  color: #FCA5A5;
  text-decoration: underline;
}

.basket-subtotal-label {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.basket-subtotal {
  font-weight: 700;
  color: var(--text-heading);
}

.basket-error {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-sm);
  color: #FCA5A5;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}
.basket-error svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.order-brand-group {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.order-brand-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.order-brand-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}

.order-brand-tier {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.order-brand-subtotal {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-top: 0.4rem;
  margin-top: 0.4rem;
  border-top: 1px dashed var(--border);
}

.brand-model-row {
  margin-bottom: 1rem;
}
.brand-model-row__header {
  padding: 0 0 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.brand-model-row__name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-muted);
}

.brand-more-models {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.25rem 0 0.5rem;
}
.brand-more-models a {
  color: var(--accent);
  text-decoration: underline;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem 1.25rem;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-brand__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--subtle);
  letter-spacing: 0.04em;
}

.nav-contact-btn {
  background: var(--accent-dim);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: var(--accent) !important;
  border-radius: 20px;
  padding: 0.3rem 0.9rem !important;
  font-weight: 600;
  transition: background 0.15s, border-color 0.15s;
}
.nav-contact-btn:hover {
  background: rgba(168, 85, 247, 0.25);
  border-color: var(--accent);
}

.nav-mobile__link--btn {
  width: 100%;
  text-align: left;
  color: var(--accent);
  font-weight: 600;
}

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fade-in 0.15s ease;
}
.contact-modal__box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: modal-in 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.contact-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.contact-modal__close:hover {
  background: var(--border);
  color: var(--text);
}
.contact-modal__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.contact-modal__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.contact-modal__sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.contact-modal__options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.contact-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.contact-option:hover {
  transform: translateY(-1px);
}
.contact-option--wa:hover {
  border-color: #25D366;
  background: rgba(37, 211, 102, 0.08);
}
.contact-option--wa .contact-option__icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}
.contact-option--email:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.contact-option--email .contact-option__icon {
  background: var(--accent-dim);
  color: var(--accent);
}
.contact-option__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-option__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-option__body strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-heading);
}
.contact-option__body span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.contact-option__arrow {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.15s, color 0.15s;
}
.contact-option:hover .contact-option__arrow {
  transform: translateX(3px);
  color: var(--text-muted);
}

.wa-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 0.7rem 1.1rem 0.7rem 0.9rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.15s;
  animation: wa-pulse 2.5s infinite;
}
.wa-btn:hover {
  background: #1ebe5d;
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5);
  animation: none;
}
.wa-btn svg {
  flex-shrink: 0;
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}
@media (max-width: 480px) {
  .wa-btn__label {
    display: none;
  }
  .wa-btn {
    padding: 0.75rem;
    border-radius: 50%;
  }
}
.page-hero {
  text-align: center;
  padding: 3rem 0 2.5rem;
}
.page-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.container--narrow {
  max-width: 760px;
}

.how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-bottom: 3rem;
}
.how-steps::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 48px;
  bottom: 48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  opacity: 0.3;
}

.how-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
}
.how-step:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.how-step__num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.how-step__body {
  flex: 1;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.how-step__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.how-step__content {
  flex: 1;
}
.how-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 0.4rem;
}
.how-step__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.how-step__desc strong {
  color: var(--text);
}
.how-step__cta {
  display: inline-block;
  margin-top: 0.25rem;
}

.how-cta {
  text-align: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
}
.how-cta__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}
.how-cta__sub {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.how-cta__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child {
  border-bottom: none;
}
.faq-item.open .faq-q__icon {
  transform: rotate(180deg);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  text-align: left;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  background: var(--surface);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.faq-q:hover {
  background: var(--surface-2);
  color: var(--accent);
}
.faq-q span {
  flex: 1;
}
.faq-q__icon {
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--text-muted);
}

.faq-a {
  padding: 1rem 1.25rem 1.25rem;
  background: var(--surface-2);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-a p {
  margin: 0;
}
.faq-a a {
  color: var(--accent);
  text-decoration: underline;
}

.faq-a--pending {
  font-style: italic;
  opacity: 0.8;
}

.faq-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 3rem;
}
.faq-contact p {
  color: var(--text-muted);
  margin: 0;
  flex: 1;
  min-width: 160px;
}

.status-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.status-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}
.status-notice svg {
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.status-notice a {
  color: inherit;
  text-decoration: underline;
}
.status-notice--warn {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #FCA5A5;
}

.status-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.status-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.status-card__ref {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-heading);
  font-family: monospace;
}
.status-card__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.5rem;
}
.status-card__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
}

.status-card__note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.status-card__note a {
  color: var(--accent);
  text-decoration: underline;
}

.inquiry-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}
.inquiry-badge--new {
  background: rgba(168, 85, 247, 0.15);
  color: #D8B4FE;
  border: 1px solid rgba(168, 85, 247, 0.3);
}
.inquiry-badge--reviewed {
  background: rgba(59, 130, 246, 0.15);
  color: #93C5FD;
  border: 1px solid rgba(59, 130, 246, 0.3);
}
.inquiry-badge--converted {
  background: rgba(34, 197, 94, 0.15);
  color: #86EFAC;
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.inquiry-badge--declined {
  background: rgba(239, 68, 68, 0.15);
  color: #FCA5A5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.filter-group--search {
  flex: 1;
  min-width: 200px;
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .order-summary {
    position: static;
  }
}
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-inner {
    gap: 0.75rem;
  }
  .hero {
    padding: 3rem 1rem 2.5rem;
  }
  .hero-headline {
    font-size: 1.75rem;
  }
  .basket-table {
    font-size: 0.8rem;
  }
  .basket-table th, .basket-table td {
    padding: 0.5rem 0.6rem;
  }
  .form-row--2 {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .tiers-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 400px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
