:root {
  --bg: #fefefe;
  --bg-soft: #fefefe;
  --surface: rgba(255, 255, 255, 0.98);
  --surface-strong: #fefefe;
  --surface-ink: #1b1b1b;
  --surface-muted: rgba(27, 27, 27, 0.66);
  --line: rgba(27, 27, 27, 0.1);
  --line-strong: rgba(27, 27, 27, 0.18);
  --brand: #ff3131;
  --brand-strong: #5b0909;
  --brand-soft: rgba(255, 49, 49, 0.08);
  --accent-yellow: #fff3c4;
  --accent-cyan: #eaf8fb;
  --warning: #ffe1e1;
  --shadow-lg: 0 6px 14px rgba(27, 27, 27, 0.075);
  --shadow-md: 0 4px 10px rgba(27, 27, 27, 0.055);
  --shadow-sm: 0 1px 4px rgba(27, 27, 27, 0.04);
  --radius-xl: 8px;
  --radius-lg: 6px;
  --radius-md: 4px;
  --radius-sm: 3px;
  --shell: 1180px;
  --ease: 240ms cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Boss Balloon", "Poppins", "Trebuchet MS", sans-serif;
  --font-body: "Poppins", "Aptos", "Trebuchet MS", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  --font-accent: "Core Label", "Poppins", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--surface-ink);
  background:
    linear-gradient(180deg, rgba(255, 49, 49, 0.045) 0%, rgba(255, 49, 49, 0.015) 22%, transparent 48%),
    linear-gradient(180deg, #ffffff 0%, #fff8f6 48%, #fefefe 100%);
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.page-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(27, 27, 27, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 27, 27, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 72%);
  opacity: 0.08;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--brand-strong);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-button,
.secondary-button,
.ghost-button,
.selector-pill,
.filter-pill,
.quantity-button,
.remove-button {
  transition:
    transform var(--ease),
    background-color var(--ease),
    color var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    opacity var(--ease);
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius-md);
  padding: 0.92rem 1.35rem;
  font-family: var(--font-accent);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-align: center;
  text-transform: uppercase;
}

.primary-button {
  color: #fefefe;
  background: var(--brand);
  box-shadow: none;
}

.secondary-button {
  color: var(--surface-ink);
  background: #fff;
  border: 1px solid var(--line);
  backdrop-filter: none;
}

.ghost-button {
  color: var(--surface-ink);
  background: #fff;
  border: 1px solid var(--line-strong);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.selector-pill:hover,
.filter-pill:hover,
.quantity-button:hover,
.remove-button:hover {
  transform: translateY(-1px);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.ghost-button:focus-visible,
.selector-pill:focus-visible,
.filter-pill:focus-visible,
.quantity-button:focus-visible,
.remove-button:focus-visible,
.field input:focus-visible,
.catalog-search:focus-visible,
.product-card__view:focus-visible,
.product-card__favorite:focus-visible,
.cart-fab:focus-visible,
.hero-category:focus-visible,
.hero-product:focus-visible,
.gallery-thumb:focus-visible {
  outline: 3px solid rgba(255, 49, 49, 0.22);
  outline-offset: 2px;
}

.hero {
  position: relative;
  padding: 0.8rem 0 3rem;
}

.inner-page .hero {
  padding-bottom: 1.25rem;
}

.inner-page .hero__content {
  display: none;
}

.inner-page .catalog-section,
.inner-page .info-section {
  padding-top: 1.5rem;
}

.contact-page .main-content {
  display: none;
  padding-bottom: 0;
}

.brand-banner {
  padding-top: 0.2rem;
}

.brand-banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(8rem, 28vw, 11rem);
  overflow: hidden;
  border: 1px solid rgba(27, 27, 27, 0.1);
  border-radius: var(--radius-lg);
  background: #1b1b1b;
}

.brand-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.8rem;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand--compact {
  gap: 0;
}

.topbar-favorites {
  min-width: 9.25rem;
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  padding: 0.18rem;
  border: 1px solid rgba(27, 27, 27, 0.08);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  box-shadow: none;
}

.brand__mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand__copy strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand__copy small {
  color: var(--surface-muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  order: 3;
  width: 100%;
  overflow-x: auto;
  padding: 0.25rem 0 0.35rem;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--surface-ink);
  background: #fff;
  border: 1px solid rgba(27, 27, 27, 0.08);
}

.site-nav a.is-active {
  color: #fff;
  background: var(--brand);
  border-color: transparent;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__cart-shortcut {
  display: none;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
  padding-top: 2rem;
}

.hero__copy,
.hero-card,
.filter-panel,
.trust-card,
.modal,
.drawer,
.cart-fab {
  backdrop-filter: none;
}

.hero__copy {
  position: relative;
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.2rem, 4vw, 2rem);
  border: 1px solid rgba(91, 9, 9, 0.16);
  border-radius: var(--radius-xl);
  background: var(--brand);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: #fff;
}

.hero__copy::before {
  content: none;
}

.hero__copy::after {
  content: none;
}

.hero__copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 8vw, 5.7rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  color: #fff;
  max-width: 10ch;
  text-wrap: balance;
  text-transform: uppercase;
}

.hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: -0.3rem;
}

.hero__headline {
  max-width: 30rem;
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 3.7vw, 2.15rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero__copy .hero__text {
  max-width: 21rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero__text,
.section-head__text,
.checkout-panel__text,
.product-detail__description,
.drawer__note {
  color: var(--surface-muted);
  line-height: 1.6;
}

.hero__text {
  margin: 0;
  max-width: 32rem;
  font-size: 1rem;
}

.hero__sale-tag {
  display: inline-flex;
  width: max-content;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--surface-ink);
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__shop-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.hero-category {
  display: grid;
  gap: 0.18rem;
  width: 100%;
  padding: 0.95rem;
  border-radius: var(--radius-lg);
  text-align: left;
  color: var(--surface-ink);
  background: #fff;
  border: 1px solid rgba(91, 9, 9, 0.08);
  transition: transform var(--ease), box-shadow var(--ease);
}

.hero-category:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(91, 9, 9, 0.14);
}

.hero-category span,
.hero-category small {
  color: var(--surface-muted);
  font-size: 0.78rem;
}

.hero-category span {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-category strong {
  font-size: 1.15rem;
  line-height: 1;
}

.hero-category--main {
  color: #fff;
  background: var(--surface-ink);
  border-color: var(--surface-ink);
}

.hero-category--main span,
.hero-category--main small {
  color: rgba(255, 255, 255, 0.72);
}

.hero__actions {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.35rem;
  align-items: stretch;
}

.hero__copy .primary-button {
  background: var(--surface-ink);
  box-shadow: 0 10px 20px rgba(91, 9, 9, 0.18);
}

.hero__copy .secondary-button {
  color: var(--surface-ink);
  background: #fff;
  border-color: rgba(91, 9, 9, 0.12);
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  margin: 0.55rem 0 0;
  padding: 0;
  list-style: none;
}

.hero__stats li {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid #fff;
}

.hero__stats strong,
.hero-card__footer strong,
.product-card__price strong,
.price-card strong,
.drawer__summary strong,
.ticket__footer strong,
.cart-line__meta strong {
  font-family: var(--font-body);
  font-size: 1rem;
}

.hero__stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero__stats strong {
  color: #fff;
}

.hero-card {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  background: #fff;
  color: var(--surface-ink);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27, 27, 27, 0.08);
}

.hero-card__header,
.ticket__header,
.drawer__summary,
.cart-line__footer,
.checkout-actions,
.product-detail__actions,
.selector-group__head,
.section-head,
.drawer__header,
.cart-fab {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card__header,
.product-detail__actions {
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-card__badge,
.product-badge,
.ticket__id,
.empty-state__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-card__badge,
.ticket__id {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.hero-card__list {
  display: grid;
  gap: 0.85rem;
}

.hero-product {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  padding: 0.7rem;
  text-align: left;
  color: inherit;
  border-radius: var(--radius-md);
  background: rgba(255, 49, 49, 0.045);
  border: 1px solid rgba(27, 27, 27, 0.08);
  align-items: center;
}

.hero-product img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.hero-product strong {
  display: block;
  margin-bottom: 0.25rem;
  line-height: 1.15;
}

.hero-product span {
  color: var(--surface-muted);
  font-size: 0.88rem;
}

.hero-card__footer {
  display: grid;
  gap: 0.2rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(27, 27, 27, 0.08);
  color: var(--surface-muted);
  font-size: 0.92rem;
}

.main-content {
  padding-bottom: 8rem;
}

.catalog-section {
  padding-top: 1rem;
}

.section-head {
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head > div {
  display: grid;
  gap: 0.45rem;
}

.section-head .ghost-button {
  width: 100%;
}

.section-head h2,
.trust-card h3,
.checkout-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head h2 {
  font-size: clamp(1.65rem, 4vw, 2.5rem);
}

.filter-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(27, 27, 27, 0.08);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0.8rem;
  z-index: 20;
}

.filter-block {
  display: grid;
  gap: 0.65rem;
}

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

.filter-block__label {
  font-family: var(--font-accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.catalog-search {
  width: 100%;
  min-height: 48px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 27, 27, 0.1);
  color: var(--surface-ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.catalog-search::placeholder {
  color: rgba(27, 27, 27, 0.45);
}

.filter-pill,
.selector-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-align: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--surface-ink);
}

.filter-pill.is-active,
.selector-pill.is-active {
  color: #fff;
  border-color: transparent;
  background: var(--brand);
  box-shadow: none;
}

.catalog-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
}

.catalog-loading,
.catalog-progress {
  grid-column: 1 / -1;
}

.catalog-loading {
  position: relative;
  display: grid;
  gap: 1.15rem;
  place-items: center;
  min-height: 21rem;
  padding: 2rem;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.catalog-loading__spinner {
  width: 3.4rem;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 0.35rem solid rgba(255, 49, 49, 0.16);
  border-top-color: var(--brand);
  border-right-color: var(--brand-strong);
  animation: loading-spin 760ms linear infinite;
  box-shadow: none;
}

.catalog-loading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 7vw, 2.8rem);
  line-height: 0.95;
}

.catalog-loading p {
  max-width: 32rem;
  margin: 0.35rem auto 0;
  color: var(--surface-muted);
  line-height: 1.55;
}

.catalog-loading__skeletons {
  display: grid;
  width: 100%;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-loading__skeletons span {
  min-height: 5.8rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(100deg, rgba(255, 49, 49, 0.04) 0%, rgba(255, 49, 49, 0.1) 48%, rgba(255, 49, 49, 0.04) 100%),
    rgba(255, 49, 49, 0.035);
  background-size: 220% 100%;
  animation: loading-sheen 1.45s ease-in-out infinite;
}

.catalog-loading__skeletons span:nth-child(2) {
  animation-delay: 120ms;
}

.catalog-loading__skeletons span:nth-child(3) {
  animation-delay: 240ms;
}

.catalog-progress {
  display: grid;
  gap: 0.85rem;
  place-items: center;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  text-align: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.catalog-progress span,
.catalog-progress strong {
  color: var(--surface-muted);
}

.catalog-progress .secondary-button {
  width: min(100%, 240px);
}

.info-section {
  padding-top: 1rem;
}

.section-head--stacked {
  align-items: flex-start;
}

.info-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}

.info-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(27, 27, 27, 0.08);
  box-shadow: var(--shadow-sm);
}

.info-card--single {
  grid-column: 1 / -1;
  max-width: 920px;
  margin-inline: auto;
}

.info-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.info-card__body {
  display: grid;
  gap: 0.8rem;
}

.info-card__list {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding-left: 1.1rem;
  color: var(--surface-muted);
  line-height: 1.5;
}

.info-card h3,
.contact-section h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.05;
}

.info-card p,
.contact-section p {
  margin: 0;
  color: var(--surface-muted);
  line-height: 1.55;
}

.info-card__footer {
  display: grid;
  gap: 0.75rem;
}

.info-card__footer strong {
  font-size: 1.1rem;
}

.product-card,
.catalog-loading,
.catalog-progress,
.empty-state,
.cart-line,
.ticket-line,
.price-card,
.field input,
.catalog-search,
.gallery-panel__hero,
.gallery-thumb,
.info-card,
.trust-card,
.drawer,
.modal {
  border: 1px solid rgba(27, 27, 27, 0.08);
}

.product-card {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--brand);
}

.product-card__media {
  position: relative;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.product-card__thumbnail {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  width: 64px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 14px rgba(27, 27, 27, 0.08);
}

.product-card__favorite {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  letter-spacing: 0.015em;
  line-height: 1.05;
  background: #fff;
  border: 1px solid rgba(27, 27, 27, 0.08);
  box-shadow: 0 6px 14px rgba(27, 27, 27, 0.08);
}

.product-card__favorite.is-active,
.product-detail__favorite.is-active {
  color: #fff;
  background: var(--brand);
  border-color: transparent;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-badge {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

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

.product-card__body {
  display: grid;
  gap: 0.7rem;
}

.product-card__body h3,
.product-detail h3,
.ticket h3 {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.product-card__body p {
  margin: 0;
  color: var(--surface-muted);
  line-height: 1.5;
}

.product-card__footer {
  display: grid;
  gap: 0.8rem;
  align-items: stretch;
}

.product-card__price {
  display: grid;
  gap: 0.15rem;
}

.product-card__price span,
.price-card__label,
.cart-line__meta span,
.ticket__meta,
.ticket-line small,
.hero-card__footer span {
  color: var(--surface-muted);
}

.product-card__view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0.82rem 1.1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #fff;
  background: var(--brand);
}

.empty-state {
  display: grid;
  gap: 1rem;
  place-items: center;
  text-align: center;
  min-height: 18rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.empty-state__badge {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.trust-strip {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.trust-card h3 {
  font-size: 1.3rem;
}

.contact-section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 6rem;
  background:
    linear-gradient(135deg, rgba(255, 49, 49, 0.16) 0%, transparent 38%),
    #1b1b1b;
  color: #fefefe;
}

.contact-section .eyebrow {
  color: #ff9a9a;
}

.contact-section p {
  color: rgba(254, 254, 254, 0.72);
}

.contact-section__layout {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.contact-section__copy {
  display: grid;
  gap: 0.7rem;
  max-width: 44rem;
}

.contact-section h2 {
  font-size: clamp(2rem, 7vw, 4rem);
  letter-spacing: -0.04em;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.contact-actions .primary-button,
.contact-actions .secondary-button {
  width: 100%;
}

.contact-section .secondary-button {
  color: #fefefe;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.22);
}

.is-hidden {
  display: none !important;
}

.cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  gap: 0.7rem;
  min-width: 158px;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-lg);
  color: #fff;
  background: #1b1b1b;
  box-shadow: 0 14px 28px rgba(27, 27, 27, 0.18);
  border: 1px solid rgba(255, 49, 49, 0.24);
  z-index: 45;
}

.cart-fab.is-bumped {
  animation: cart-bump 420ms ease;
}

.cart-fab__icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 49, 49, 0.16);
}

.cart-fab__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.cart-fab__copy {
  display: grid;
  font-family: var(--font-accent);
  text-align: left;
  gap: 0.1rem;
}

.cart-fab__copy strong {
  font-size: 0.92rem;
  line-height: 1;
}

.cart-fab__copy small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  line-height: 1.1;
}

.cart-fab__count {
  display: inline-grid;
  place-items: center;
  min-width: 1.85rem;
  height: 1.85rem;
  padding-inline: 0.3rem;
  border-radius: var(--radius-sm);
  color: #fff;
  font-weight: 800;
  background: var(--brand);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 6.4rem;
  transform: translate(-50%, 120%);
  min-width: min(calc(100% - 2rem), 320px);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-lg);
  color: #fff;
  background: #1b1b1b;
  text-align: center;
  box-shadow: 0 14px 28px rgba(27, 27, 27, 0.18);
  transition: transform var(--ease), opacity var(--ease);
  opacity: 0;
  z-index: 60;
}

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

.overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(27, 27, 27, 0.68);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
  z-index: 70;
}

.overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.overlay--drawer {
  justify-items: end;
  padding: 0;
}

.modal,
.drawer {
  width: min(100%, 1080px);
  max-height: min(92vh, 920px);
  overflow: auto;
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.modal {
  position: relative;
  padding: 1.2rem;
  transform: translateY(18px) scale(0.98);
  transition: transform var(--ease);
}

.overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.drawer {
  width: min(100%, 420px);
  height: 100vh;
  border-radius: 0;
  border-right: 0;
  border-top: 0;
  border-bottom: 0;
  padding: 1.2rem;
  transform: translateX(100%);
  transition: transform var(--ease);
}

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

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border-radius: var(--radius-sm);
  color: var(--surface-ink);
  background: #fff;
  border: 1px solid rgba(27, 27, 27, 0.08);
  box-shadow: 0 6px 14px rgba(27, 27, 27, 0.08);
}

.product-modal__layout,
.checkout-modal__layout {
  display: grid;
  gap: 1.2rem;
}

.gallery-panel {
  display: grid;
  gap: 0.85rem;
}

.gallery-panel__hero {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
}

.gallery-panel__hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-panel__thumbs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0.35rem;
  border-radius: var(--radius-md);
  background: #fff;
}

.gallery-thumb.is-active {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 49, 49, 0.1);
}

.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 0.35rem);
}

.product-detail {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.product-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-detail h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.price-card {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: var(--brand-strong);
  box-shadow: var(--shadow-sm);
}

.price-card strong {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fefefe;
}

.price-card__label,
#productPriceHint {
  color: rgba(254, 254, 254, 0.72);
}

.selector-group {
  display: grid;
  gap: 0.8rem;
}

.selector-group__head {
  gap: 1rem;
}

.selector-group__head span {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.selector-group__head small {
  color: var(--surface-muted);
}

.selector-group__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.selector-pill {
  flex: 1 1 140px;
  min-height: 70px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.2rem;
  border-radius: var(--radius-md);
  text-align: left;
}

.selector-pill small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.82;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: none;
}

.selector-group.is-hidden {
  display: none;
}

.drawer__header {
  gap: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.drawer__header .modal__close {
  position: static;
}

.drawer__body {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.cart-line,
.ticket-line {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.cart-line {
  grid-template-columns: 72px 1fr;
}

.cart-line img {
  width: 72px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-line__meta {
  display: grid;
  gap: 0.35rem;
}

.cart-line__meta strong {
  line-height: 1.2;
}

.cart-line__controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.quantity-button,
.remove-button {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
}

.quantity-value {
  min-width: 1.4rem;
  text-align: center;
  font-weight: 700;
}

.cart-line__footer {
  grid-column: 2 / -1;
  gap: 1rem;
  flex-wrap: wrap;
}

.drawer__footer {
  display: grid;
  gap: 0.8rem;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
}

.drawer__summary {
  font-size: 1rem;
}

.drawer__checkout:disabled,
.primary-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.checkout-panel,
.ticket {
  display: grid;
  gap: 1rem;
}

.checkout-panel {
  align-content: start;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field span {
  font-family: var(--font-accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.field input {
  min-height: 52px;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: none;
}

.field textarea {
  width: 100%;
  min-height: 14rem;
  resize: vertical;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 27, 27, 0.08);
  background: #fff;
  box-shadow: none;
}

.field input.is-invalid {
  border-color: rgba(255, 49, 49, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.08);
}

.checkout-actions {
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.checkout-actions .ghost-button,
.checkout-actions .primary-button,
.product-detail__actions .ghost-button,
.product-detail__actions .primary-button {
  flex: 1 1 220px;
}

.ticket {
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #1b1b1b 0%, #2b0c0c 100%);
  color: #f7f6fb;
  border: 1px solid rgba(255, 49, 49, 0.16);
}

.ticket__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(247, 246, 251, 0.68);
}

.ticket__items {
  display: grid;
  gap: 0.7rem;
}

.ticket-line {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  color: rgba(255, 255, 255, 0.9);
}

.ticket-line strong,
.ticket__footer strong {
  color: #fff;
}

.ticket .eyebrow {
  color: rgba(255, 255, 255, 0.64);
}

.ticket h3,
.ticket__footer span {
  color: #fff;
}

.ticket-line small {
  color: rgba(255, 255, 255, 0.7);
}

.ticket__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@keyframes cart-bump {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes loading-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loading-sheen {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

@media (min-width: 720px) {
  .hero__cart-shortcut {
    display: inline-flex;
  }

  .site-nav {
    order: initial;
    width: auto;
    flex: 1;
    justify-content: center;
    padding: 0;
  }

  .section-head .ghost-button {
    width: auto;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }

  .hero__copy .hero__text {
    max-width: 26rem;
  }

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

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

  .filter-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .info-card--single {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .cart-fab {
    gap: 0.85rem;
    min-width: 180px;
    padding: 0.9rem 1rem;
  }

  .cart-fab__icon {
    width: 2.8rem;
    height: 2.8rem;
  }

  .cart-fab__icon svg {
    width: 1.35rem;
    height: 1.35rem;
  }

  .cart-fab__copy strong {
    font-size: 1rem;
  }

  .cart-fab__copy small {
    font-size: 0.82rem;
  }

  .cart-fab__count {
    min-width: 2rem;
    height: 2rem;
  }

  .product-card {
    padding: 1.1rem;
  }

  .product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .product-card__view {
    width: auto;
  }

  .checkout-actions {
    justify-content: flex-start;
  }

  .info-card__footer,
  .contact-section__layout,
  .contact-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .contact-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 560px) {
  .cart-fab {
    right: 0.85rem;
    bottom: 0.85rem;
    min-width: auto;
    padding: 0.7rem;
    gap: 0.55rem;
  }

  .cart-fab__copy {
    display: none;
  }

  .cart-fab__icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .cart-fab__icon svg {
    width: 1rem;
    height: 1rem;
  }

  .cart-fab__count {
    min-width: 1.9rem;
    height: 1.9rem;
  }

  .selector-group__head,
  .ticket__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

@media (min-width: 900px) {
  .hero {
    padding-bottom: 4.5rem;
  }

  .hero__content {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .product-modal__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
    align-items: start;
  }

  .checkout-modal__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(27, 27, 27, 0.08);
  }
}

.hero__copy,
.hero-card,
.filter-panel,
.catalog-loading,
.catalog-progress,
.info-card,
.product-card,
.empty-state,
.trust-card,
.price-card,
.cart-line,
.ticket-line,
.product-card__thumbnail,
.product-card__favorite,
.modal__close {
  box-shadow: none;
}

.hero-category:hover {
  box-shadow: none;
}

.hero__copy .primary-button,
.hero__copy .secondary-button {
  box-shadow: none;
}

.cart-fab,
.toast,
.modal,
.drawer {
  box-shadow: 0 5px 14px rgba(27, 27, 27, 0.12);
}

.product-card:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.primary-button,
.secondary-button,
.ghost-button,
.product-card__view {
  min-height: 44px;
  padding: 0.78rem 1rem;
  gap: 0.35rem;
  line-height: 1.15;
  white-space: normal;
  text-wrap: balance;
}

.site-nav a {
  min-height: 40px;
  padding: 0.68rem 0.95rem;
  line-height: 1.05;
}

.hero-category {
  min-height: 88px;
  align-content: center;
}

.contact-actions .primary-button,
.contact-actions .secondary-button {
  min-height: 48px;
  padding-inline: 0.9rem;
  text-align: center;
}

.checkout-actions .ghost-button,
.checkout-actions .primary-button,
.product-detail__actions .ghost-button,
.product-detail__actions .primary-button {
  min-width: 0;
}

@media (min-width: 720px) {
  .product-card__footer .product-card__view {
    min-width: 9.5rem;
  }
}

@media (max-width: 560px) {
  .hero__actions .primary-button,
  .hero__actions .secondary-button,
  .info-card__footer .product-card__view,
  .checkout-actions .ghost-button,
  .checkout-actions .primary-button,
  .product-detail__actions .ghost-button,
  .product-detail__actions .primary-button {
    width: 100%;
  }
}

.contact-page {
  background: #1b1b1b;
}

.contact-page .hero {
  background: #fefefe;
}

.contact-page .contact-section {
  display: grid;
  min-height: calc(100svh - 14rem);
  place-items: center;
  margin-top: 0;
  padding: clamp(2.2rem, 6vw, 4rem) 0;
}

.contact-page .contact-section__layout {
  display: grid;
  width: min(calc(100% - 2rem), 980px);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  border-top: 2px solid var(--brand);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-page .contact-actions {
  display: grid;
  justify-content: stretch;
}

.contact-page .cart-fab {
  display: none;
}

@media (min-width: 560px) {
  .contact-page .contact-section__layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }

  .contact-page .contact-actions {
    align-self: center;
  }
}

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