:root {
  --shop-bg: #1c1c1c;
  --shop-bg-dark: #141414;
  --shop-bg-footer: #000000;
  --shop-surface: linear-gradient(180deg, rgba(28, 28, 28, 0.96), rgba(20, 20, 20, 0.98));
  --shop-surface-strong: #111111;
  --shop-surface-soft: rgba(255, 255, 255, 0.04);
  --shop-line: rgba(255, 255, 255, 0.08);
  --shop-text: #ffffff;
  --shop-muted: #d1d5db;
  --shop-muted-soft: #9ca3af;
  --shop-accent: #f7c00c;
  --shop-accent-strong: #e0ac00;
  --shop-accent-dark: #b58d0a;
  --shop-header-contrast: #fff5d6;
  --shop-ink: #141414;
  --shop-ok: #22c55e;
  --shop-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
  --shop-radius-xl: 30px;
  --shop-radius-lg: 22px;
  --shop-radius-md: 16px;
  --shop-wrap: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.shop-body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--shop-text);
  background:
    radial-gradient(circle at 12% 8%, rgba(247, 192, 12, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(247, 192, 12, 0.08), transparent 24%),
    linear-gradient(180deg, #141414 0%, #1c1c1c 45%, #111111 100%);
}

.shop-home-body .shop-topbar {
  display: none;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shop-shell {
  min-height: 100vh;
}

.shop-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(14px);
  background: rgba(20, 20, 20, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-topbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.84);
}

.shop-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 42px;
}

.shop-topbar-note,
.shop-topbar-links a {
  font-size: 0.8rem;
  line-height: 1.4;
  text-decoration: none;
  color: inherit;
}

.shop-topbar-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.shop-topbar-links a:hover,
.shop-topbar-links a:focus-visible {
  color: #ffffff;
}

.shop-header-inner,
.shop-wrap {
  width: min(calc(100% - 32px), var(--shop-wrap));
  margin: 0 auto;
}

.shop-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.shop-brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  max-width: 100%;
}

.shop-brand img {
  width: clamp(118px, 8vw, 148px);
}

.shop-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.shop-home-header {
  background: rgba(17, 17, 17, 0.96);
  border-bottom: none;
}

.shop-home-header-main {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 22px 0 18px;
}

.shop-brand-pavoni {
  min-width: 0;
}

.shop-brand-pavoni img {
  width: clamp(176px, 14vw, 248px);
}

.shop-header-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 68px;
  min-width: 0;
  align-items: stretch;
}

.shop-header-search-box {
  min-width: 0;
}

.shop-header-search input {
  width: 100%;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(247, 192, 12, 0.34);
  border-right: none;
  border-radius: 18px 0 0 18px;
  background: var(--shop-header-contrast);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: var(--shop-ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
}

.shop-header-search input::placeholder {
  color: rgba(20, 20, 20, 0.46);
}

.shop-header-search input:focus-visible {
  outline: 2px solid rgba(247, 192, 12, 0.34);
  outline-offset: 2px;
}

.shop-header-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: none;
  border-radius: 0 18px 18px 0;
  background: linear-gradient(180deg, var(--shop-accent) 0%, var(--shop-accent-strong) 100%);
  box-shadow: 0 18px 34px rgba(247, 192, 12, 0.22);
  color: var(--shop-ink);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.shop-header-search-submit:hover,
.shop-header-search-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(247, 192, 12, 0.28);
  filter: brightness(1.02);
}

.shop-header-search-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop-home-nav {
  gap: 18px 24px;
}

.shop-home-nav a {
  color: #f7e8ac;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.shop-home-nav a:hover,
.shop-home-nav a:focus-visible {
  color: #ffffff;
}

.shop-brand-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(247, 192, 12, 0.96), rgba(224, 172, 0, 0.96));
}

.shop-brand-strip-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-brand-strip-track::-webkit-scrollbar {
  display: none;
}

.shop-brand-strip-link {
  flex: 0 0 auto;
  padding: 16px 22px;
  border-right: 1px solid rgba(20, 20, 20, 0.12);
  color: #141414;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.shop-brand-strip-link:hover,
.shop-brand-strip-link:focus-visible {
  background: rgba(20, 20, 20, 0.08);
}

.shop-brand-strip-selector {
  position: relative;
  flex: 0 0 auto;
  min-width: 240px;
  border-right: 1px solid rgba(20, 20, 20, 0.12);
}

.shop-brand-strip-selector::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(20, 20, 20, 0.78);
  border-bottom: 2px solid rgba(20, 20, 20, 0.78);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.shop-brand-strip-selector select {
  width: 100%;
  min-height: 56px;
  padding: 0 44px 0 20px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(20, 20, 20, 0.9);
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  appearance: none;
  cursor: pointer;
}

.shop-brand-strip-selector select:hover,
.shop-brand-strip-selector select:focus-visible {
  background: rgba(20, 20, 20, 0.08);
  outline: none;
}

.shop-brand-strip-selector select option {
  color: #141414;
  background: #fff7dc;
}

.shop-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.shop-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--shop-muted);
}

.shop-nav a:hover,
.shop-nav a:focus-visible {
  color: var(--shop-accent);
}

.shop-hero,
.product-section {
  padding: 42px 0 24px;
}

.shop-hero {
  padding: 28px 0 16px;
}

.shop-hero-grid,
.product-grid,
.product-detail-grid {
  display: grid;
  gap: 22px;
}

.shop-hero-grid {
  grid-template-columns: minmax(0, 1fr);
}

.product-grid {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.product-detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-hero-copy,
.shop-hero-panel,
.product-visual-card,
.product-info-card,
.product-detail-card {
  padding: 30px;
  border: 1px solid var(--shop-line);
  border-radius: var(--shop-radius-xl);
  background: var(--shop-surface);
  box-shadow: var(--shop-shadow);
}

.shop-hero-copy,
.product-info-card {
  position: relative;
  overflow: hidden;
}

.shop-hero-copy {
  max-width: 920px;
  padding: 24px;
}

.shop-hero-copy::before,
.product-info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 4px;
  border-radius: 999px;
  background: var(--shop-accent);
}

.shop-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(247, 192, 12, 0.12);
  color: var(--shop-accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-hero-copy h1 {
  margin: 10px 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.product-info-card h1 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.shop-hero-copy p,
.shop-panel-card p,
.product-summary,
.product-muted,
.product-journey-card p,
.product-detail-card p,
.product-detail-card li {
  margin: 0;
  color: var(--shop-muted);
  line-height: 1.72;
}

.shop-search {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(180px, 0.5fr) minmax(180px, 0.5fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 18px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-filter-bar {
  grid-template-columns: minmax(170px, 1.05fr) minmax(150px, 0.85fr) minmax(150px, 0.85fr) auto;
  max-width: 860px;
}

.shop-search-field {
  display: grid;
  gap: 6px;
}

.shop-search-field-code {
  position: relative;
}

.shop-search-field span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--shop-accent);
}

.shop-search-field input,
.shop-search-field select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.24);
  color: var(--shop-text);
  font: inherit;
  font-size: 0.96rem;
}

.shop-search-field input::placeholder {
  color: var(--shop-muted-soft);
}

.shop-search-field-code span {
  color: #fff0bb;
}

.shop-search-field-code::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(20, 20, 20, 0.56);
  border-radius: 50%;
  pointer-events: none;
}

.shop-search-field-code::before {
  content: "";
  position: absolute;
  left: 29px;
  bottom: 11px;
  width: 8px;
  height: 2px;
  background: rgba(20, 20, 20, 0.56);
  transform: rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
  z-index: 1;
}

.shop-search-field-code input {
  padding-left: 42px;
  border-color: rgba(247, 192, 12, 0.3);
  background: var(--shop-header-contrast);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
  color: var(--shop-ink);
}

.shop-search-field-code input::placeholder {
  color: rgba(20, 20, 20, 0.44);
}

.shop-filter-bar .shop-btn {
  min-height: 48px;
  padding: 0 18px;
  box-shadow: 0 10px 18px rgba(247, 192, 12, 0.16);
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  background: var(--shop-accent);
  box-shadow: 0 12px 24px rgba(247, 192, 12, 0.18);
  color: #141414;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.shop-btn-secondary {
  background: transparent;
  color: var(--shop-text);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.shop-btn:hover,
.shop-btn:focus-visible {
  background: var(--shop-accent-strong);
}

.shop-btn-secondary:hover,
.shop-btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.shop-btn:hover,
.shop-btn:focus-visible,
.shop-chip:hover,
.shop-chip:focus-visible,
.kit-content h3 a:hover,
.kit-content h3 a:focus-visible,
.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible {
  transform: translateY(-2px);
}

.shop-chip-row,
.kit-tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.shop-chip,
.kit-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: var(--shop-text);
  font-size: 0.84rem;
  font-weight: 700;
}

.shop-hero-copy .shop-chip-row {
  gap: 8px;
  margin-top: 12px;
}

.shop-hero-copy .shop-chip {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.78rem;
}

.shop-hero-panel {
  display: grid;
  gap: 14px;
}

.shop-panel-card,
.product-journey-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-panel-card strong,
.shop-section-head h2,
.product-detail-card h2,
.product-journey-card strong {
  display: block;
  margin: 0 0 10px;
}

.product-hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(330px, 33vw, 470px);
  margin: 0 0 6px;
  padding: 18px 0 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  aspect-ratio: auto;
  box-shadow: none;
  isolation: isolate;
}

.product-hero-art::before,
.product-hero-art::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.product-hero-art::before {
  inset: 8% 16% 22%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1) 24%, rgba(255, 196, 56, 0.06) 42%, rgba(255, 196, 56, 0.015) 56%, transparent 72%);
  filter: blur(16px);
  opacity: 0.72;
  z-index: 0;
}

.product-hero-art::after {
  content: none;
}

.product-hero-art img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 540px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
  transform: translateY(-2px) scale(1.03);
  filter:
    drop-shadow(0 22px 26px rgba(0, 0, 0, 0.24))
    drop-shadow(0 6px 12px rgba(255, 198, 52, 0.06));
}

@media (max-width: 720px) {
  .product-hero-art {
    min-height: 260px;
    margin: 0 0 4px;
    padding: 12px 0 16px;
  }

  .product-hero-art::before {
    inset: 10% 10% 24%;
    filter: blur(12px);
  }

  .product-hero-art img {
    width: min(100%, 372px);
    transform: translateY(-1px) scale(1.01);
  }
}

.shop-section {
  padding: 20px 0 28px;
}

.shop-storefront-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-storefront-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(21, 38, 48, 0.98), rgba(10, 19, 28, 0.98)),
    url("assets/img/kit-completo-maquinas.png") center/cover no-repeat;
  color: #fff8ec;
  box-shadow: var(--shop-shadow);
}

.shop-storefront-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.22));
}

.shop-storefront-card > * {
  position: relative;
  z-index: 1;
}

.shop-storefront-card-alt {
  background:
    linear-gradient(145deg, rgba(181, 141, 10, 0.96), rgba(247, 192, 12, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.18));
}

.shop-storefront-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.shop-storefront-card p {
  margin: 0;
  color: rgba(255, 248, 236, 0.84);
  line-height: 1.7;
}

.shop-storefront-kicker,
.shop-price-lock,
.product-price-lock {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 192, 12, 0.14);
  border: 1px solid rgba(247, 192, 12, 0.2);
  backdrop-filter: blur(8px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-storefront-actions,
.kit-commerce-row,
.product-category-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.shop-storefront-actions {
  margin-top: 18px;
}

.shop-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.shop-link-card {
  padding: 24px;
  border-radius: var(--shop-radius-lg);
  background: var(--shop-surface);
  border: 1px solid var(--shop-line);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
}

.shop-chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shop-chip small {
  margin-left: 6px;
  color: var(--shop-muted-soft);
  font-size: 0.74rem;
}

.shop-section-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  max-width: 820px;
}

.shop-section-head h2,
.shop-toolbar h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
}

.shop-section-head p,
.shop-toolbar p,
.shop-empty p {
  margin: 0;
  color: var(--shop-muted);
  line-height: 1.72;
}

.shop-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-grid-featured {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-grid-related {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kit-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: var(--shop-radius-lg);
  background: var(--shop-surface);
  border: 1px solid var(--shop-line);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.kit-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.kit-visual {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 172px;
  padding: 18px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(20, 20, 20, 0.76), rgba(28, 28, 28, 0.7)),
    url("assets/img/kit-completo-maquinas.png") center/cover no-repeat;
  color: #f8f4eb;
  border: 1px solid rgba(247, 192, 12, 0.12);
}

.kit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.08));
}

.kit-visual > * {
  position: relative;
  z-index: 1;
}

.kit-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 192, 12, 0.16);
  backdrop-filter: blur(8px);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--shop-accent);
}

.kit-visual strong {
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.kit-visual small {
  font-size: 0.9rem;
  color: rgba(248, 244, 235, 0.82);
}

.kit-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.kit-content h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.24;
}

.kit-content h3 a {
  text-decoration: none;
}

.kit-content p,
.kit-models,
.kit-meta-row {
  margin: 0;
  color: var(--shop-muted);
  line-height: 1.68;
}

.kit-category-link,
.product-category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 192, 12, 0.12);
  color: var(--shop-accent);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.kit-commerce-row {
  margin-bottom: -2px;
}

.shop-price-lock {
  color: var(--shop-accent);
  background: rgba(247, 192, 12, 0.1);
  border-color: rgba(247, 192, 12, 0.18);
}

.kit-meta-row,
.kit-actions,
.product-cta-row,
.product-visual-top,
.product-visual-foot,
.shop-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.kit-actions .shop-btn,
.kit-actions .shop-btn-secondary,
.product-cta-row .shop-btn,
.product-cta-row .shop-btn-secondary {
  flex: 1 1 220px;
}

.shop-pagination {
  margin-top: 18px;
}

.shop-pagination a,
.shop-pagination span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: var(--shop-text);
  font-weight: 700;
}

.shop-empty {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: var(--shop-radius-lg);
  background: var(--shop-surface);
  border: 1px solid var(--shop-line);
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--shop-muted);
  flex-wrap: wrap;
}

.product-breadcrumb a {
  color: var(--shop-accent);
  text-decoration: none;
  font-weight: 700;
}

.product-visual-card {
  display: grid;
  gap: 18px;
  background: linear-gradient(155deg, rgba(20, 20, 20, 0.98), rgba(35, 35, 35, 0.98));
  color: #fff8ec;
  border-color: rgba(247, 192, 12, 0.12);
}

.product-sku-block {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(247, 192, 12, 0.08);
  border: 1px solid rgba(247, 192, 12, 0.12);
}

.product-sku-block small,
.product-visual-foot small,
.product-spec-card small {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 248, 236, 0.7);
}

.product-sku-block strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.product-sku-block span,
.product-visual-foot strong {
  color: rgba(255, 248, 236, 0.86);
}

.product-visual-foot {
  padding: 0 6px;
}

.product-info-card {
  display: grid;
  gap: 18px;
}

.product-category-line {
  margin-top: -4px;
}

.product-price-lock {
  color: var(--shop-accent);
  background: rgba(247, 192, 12, 0.1);
  border-color: rgba(247, 192, 12, 0.18);
}

.product-summary {
  font-size: 1.02rem;
}

.product-spec-grid,
.product-journey-grid {
  display: grid;
  gap: 14px;
}

.product-spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-journey-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-spec-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-spec-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.02rem;
}

.product-detail-card h2 {
  font-size: 1.24rem;
}

.product-bullet-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
}

.product-model-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-model-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(247, 192, 12, 0.1);
  color: var(--shop-accent);
  font-weight: 700;
}

.product-chip-list {
  margin-top: 14px;
}

.product-faq-list {
  display: grid;
  gap: 14px;
}

.product-faq-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-faq-item strong {
  display: block;
  margin-bottom: 8px;
}

.product-info-table {
  display: grid;
  gap: 12px;
}

.product-info-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-info-row span {
  color: var(--shop-muted);
}

.shop-section-head h2,
.shop-toolbar h2,
.product-detail-card h2,
.product-journey-card strong,
.shop-panel-card strong,
.product-spec-card strong,
.product-info-row strong,
.shop-brand strong,
.kit-content h3,
.kit-content h3 a,
.product-info-card h1,
.shop-hero-copy h1 {
  color: var(--shop-text);
}

.kit-card:hover,
.kit-card:focus-within,
.shop-link-card:hover,
.product-detail-card:hover,
.product-info-card:hover,
.product-visual-card:hover {
  border-color: rgba(247, 192, 12, 0.22);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
}

.product-info-row strong {
  max-width: 58%;
  text-align: right;
}

.kit-card-compact .kit-actions .shop-btn,
.kit-card-compact .kit-actions .shop-btn-secondary {
  flex-basis: 150px;
}

@media (max-width: 1180px) {
  .shop-home-header-main {
    grid-template-columns: 1fr;
  }

  .shop-home-nav {
    justify-content: flex-start;
  }

  .shop-grid,
  .shop-grid-featured,
  .shop-grid-related {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .shop-hero-grid,
  .shop-storefront-grid,
  .shop-link-grid,
  .product-grid,
  .product-detail-grid,
  .product-journey-grid,
  .product-spec-grid,
  .shop-search {
    grid-template-columns: 1fr;
  }

  .shop-btn,
  .shop-btn-secondary {
    width: 100%;
  }
}

@media (max-width: 780px) {
  .shop-topbar-inner,
  .shop-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-brand img {
    width: clamp(118px, 34vw, 138px);
  }

  .shop-brand-pavoni img {
    width: clamp(176px, 52vw, 228px);
  }

  .shop-topbar-links,
  .shop-nav {
    justify-content: flex-start;
  }

  .shop-home-header-main {
    gap: 16px;
  }

  .shop-home-nav {
    width: 100%;
    gap: 10px 18px;
  }

  .shop-brand-strip-link {
    padding: 14px 18px;
    font-size: 0.92rem;
  }

  .shop-brand-strip-selector {
    min-width: 210px;
  }

  .shop-grid,
  .shop-grid-featured,
  .shop-grid-related {
    grid-template-columns: 1fr;
  }

  .shop-hero-copy,
  .shop-hero-panel,
  .product-visual-card,
  .product-info-card,
  .product-detail-card,
  .shop-empty,
  .kit-card {
    padding: 22px;
  }

  .kit-actions,
  .kit-commerce-row,
  .product-category-line,
  .product-cta-row,
  .product-visual-top,
  .product-visual-foot,
  .shop-toolbar,
  .shop-storefront-actions,
  .product-info-row,
  .shop-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .product-info-row strong {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .shop-brand img {
    width: clamp(108px, 34vw, 126px);
  }

  .shop-brand-pavoni img {
    width: clamp(156px, 56vw, 198px);
  }

  .shop-home-header-main {
    gap: 12px;
  }
}
