﻿:root {
  --ink: #111827;
  --ink-soft: #334155;
  --paper: #fffaf2;
  --white: #ffffff;
  --coral: #f25f4c;
  --pink: #ff4d8d;
  --brand-red: #f25f4c;
  --sun: #ffd166;
  --teal: #00a896;
  --blue: #2563eb;
  --line: rgba(17, 24, 39, 0.12);
  --shadow: 0 22px 60px rgba(17, 24, 39, 0.18);
  --container: min(1140px, calc(100% - 40px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: middle;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  min-height: 42px;
  padding: 8px 20px;
  color: var(--white);
  background: linear-gradient(90deg, var(--ink), #17324d 42%, #7d1f46);
  font-size: 0.9rem;
}

.top-strip p {
  margin: 0;
}

.top-strip-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 30px;
  font-weight: 800;
}

.top-strip-actions a:not(:first-child) {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.top-strip-actions a:hover,
.top-strip-actions a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.nav-shell {
  width: var(--container);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-logo {
  width: clamp(156px, 18vw, 220px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(135deg, var(--coral), var(--pink) 52%, var(--blue));
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(242, 95, 76, 0.28);
}

.brand strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 750;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(37, 99, 235, 0.1);
  outline: none;
}

.nav-cta {
  color: var(--white);
  background: var(--teal);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus-visible {
  color: var(--white);
  background: #008b7d;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 120px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.88) 0%, rgba(17, 24, 39, 0.66) 38%, rgba(17, 24, 39, 0.18) 72%),
    linear-gradient(0deg, rgba(17, 24, 39, 0.58), rgba(17, 24, 39, 0.04) 46%);
}

.hero-content {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 132px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--sun);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: var(--ink);
  background: var(--sun);
  box-shadow: 0 14px 28px rgba(255, 209, 102, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffe08d;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.quick-bar {
  width: var(--container);
  margin: -64px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.quick-bar div {
  padding: 24px;
  border-left: 1px solid var(--line);
}

.quick-bar div:first-child {
  border-left: 0;
}

.quick-bar strong,
.quick-bar span {
  display: block;
}

.quick-bar span {
  margin-top: 4px;
  color: var(--ink-soft);
}

.section {
  padding: 112px 0;
}

.section-light {
  background:
    linear-gradient(180deg, var(--paper), #ffffff 62%),
    var(--white);
}

.section-head,
.feature-copy,
.contact-info,
.service-list,
.contact-section,
.contact-layout,
.contact-services {
  width: var(--container);
  margin-inline: auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-head p:not(.eyebrow),
.feature-copy p,
.contact-info address,
.site-footer p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

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

.collections-section {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
}

.collections-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(242, 95, 76, 0.08), transparent 34%, rgba(0, 168, 150, 0.08)),
    repeating-linear-gradient(90deg, transparent 0 118px, rgba(17, 24, 39, 0.035) 118px 119px);
  pointer-events: none;
}

.collection-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.collection-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.collection-card {
  grid-column: span 2;
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.13);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 95, 76, 0.38);
  box-shadow: 0 26px 58px rgba(17, 24, 39, 0.16);
}

.collection-card:nth-child(1),
.collection-card:nth-child(2) {
  grid-column: span 3;
}

.collection-card-accessories {
  grid-column: span 2;
}

.collection-card-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.collection-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.72)),
    linear-gradient(90deg, rgba(17, 24, 39, 0.5), transparent 62%);
  pointer-events: none;
}

.collection-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.collection-card:hover .collection-card-media img {
  transform: scale(1.04);
}

.collection-card h3 {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.collection-card p {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.collection-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 46px;
  margin-top: 22px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 8px;
  font-weight: 900;
}

.collection-card a:hover,
.collection-card a:focus-visible {
  background: var(--teal);
  outline: none;
}

.about-original {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.94) 54%, rgba(0, 168, 150, 0.88)),
    var(--ink);
}

.about-shell {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 36px;
  align-items: start;
}

.about-card {
  position: sticky;
  top: 112px;
  padding: clamp(24px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.18);
}

.about-card .eyebrow {
  color: var(--sun);
}

.about-card h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.about-store-photo {
  margin: 24px 0 0;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.about-store-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.about-facts {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.about-facts div {
  display: grid;
  gap: 2px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.about-facts strong {
  color: var(--sun);
  font-size: 1.4rem;
  line-height: 1;
}

.about-facts span {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.about-store-card {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding: 16px;
  color: var(--white);
  background: rgba(0, 168, 150, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.about-store-card strong,
.about-store-card span {
  display: block;
}

.about-store-card span {
  color: rgba(255, 255, 255, 0.78);
}

.about-store-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--sun);
  border-radius: 8px;
  font-weight: 900;
}

.about-text {
  padding: clamp(24px, 4vw, 44px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.16);
}

.about-text h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.about-text p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.about-text p + p {
  margin-top: 16px;
}

@media (min-width: 720px) {
  .collection-card p,
  .contact-services .service-item p,
  .about-text p {
    text-align: justify;
    text-align-last: left;
    hyphens: auto;
  }
}

.service-item p {
  margin: 10px 0 0;
}

.feature-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(17, 24, 39, 0.98), rgba(17, 24, 39, 0.92) 52%, rgba(0, 168, 150, 0.9)),
    var(--ink);
}

.feature-copy {
  width: auto;
  margin-left: max(20px, calc((100vw - 1140px) / 2));
  max-width: 620px;
}

.feature-copy .eyebrow {
  color: var(--sun);
}

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

.stats-panel {
  width: min(480px, calc(100% - 40px));
  margin-right: max(20px, calc((100vw - 1140px) / 2));
  display: grid;
  gap: 14px;
}

.stats-panel div {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.stats-panel strong {
  color: var(--sun);
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
}

.stats-panel span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.section-color {
  background: #f5f7fb;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-item {
  min-height: 220px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-item h3::before {
  content: "";
  display: block;
  width: 46px;
  height: 6px;
  margin-bottom: 22px;
  background: linear-gradient(90deg, var(--coral), var(--sun), var(--teal));
}

.contact-section {
  width: auto;
  margin-inline: 0;
  background:
    linear-gradient(180deg, var(--paper), #ffffff 54%, #f5f7fb),
    var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}

.contact-services {
  width: auto;
  grid-column: 1 / -1;
}

.contact-services h2 {
  max-width: 760px;
}

.contact-services .service-list {
  width: 100%;
  margin-top: 28px;
}

.contact-info address {
  margin-top: 24px;
  font-style: normal;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.contact-form {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.contact-form h3 {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  margin-top: 14px;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf8;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(0, 168, 150, 0.22);
  border-color: var(--teal);
}

.contact-form .button {
  width: 100%;
  margin-top: 18px;
  border: 0;
  cursor: pointer;
}

.contact-map {
  grid-column: 1 / -1;
  height: 430px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.05) contrast(1.02);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px max(20px, calc((100vw - 1140px) / 2));
  background: var(--ink);
  color: var(--white);
}

.footer-brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
  width: fit-content;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 8px;
}

.site-footer p {
  max-width: 460px;
  margin: 10px 0 0;
}

.catalog-hero {
  position: relative;
  min-height: 42svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.catalog-hero-bg,
.catalog-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.catalog-hero-bg {
  object-fit: cover;
}

.catalog-hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.58) 52%, rgba(17, 24, 39, 0.22)),
    linear-gradient(0deg, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.08) 58%);
}

.catalog-hero-content {
  position: relative;
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 62px;
}

.catalog-hero-content h1 {
  max-width: 820px;
  font-size: clamp(2.4rem, 5.4vw, 4.9rem);
}

.catalog-hero-content p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.catalog-section {
  width: min(1540px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  padding-bottom: 120px;
}

.catalog-panel {
  position: sticky;
  top: 82px;
  z-index: 5;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(17, 24, 39, 0.12);
  backdrop-filter: blur(18px);
}

.catalog-panel-head,
.catalog-tools,
.catalog-sync {
  display: flex;
  align-items: center;
  gap: 18px;
}

.catalog-panel-head {
  justify-content: space-between;
}

.catalog-panel-head h2 {
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
}

.catalog-sync {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.catalog-sync span,
.catalog-sync strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  font-weight: 900;
}

.catalog-sync span {
  color: var(--ink-soft);
  background: #f5f7fb;
}

.catalog-sync strong {
  color: var(--ink);
  background: var(--sun);
}

.catalog-tools {
  margin-top: 16px;
  align-items: end;
  justify-content: space-between;
}

.catalog-search {
  flex: 1 1 320px;
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 900;
}

.catalog-search input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-search input:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 168, 150, 0.2);
}

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.catalog-refine {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(130px, 0.55fr) minmax(180px, 0.8fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.catalog-refine label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
}

.catalog-refine select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.catalog-refine select:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 168, 150, 0.18);
}

.catalog-photo-toggle {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: #f5f7fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-photo-toggle:hover,
.catalog-photo-toggle:focus-visible,
.catalog-photo-toggle.is-active {
  color: var(--white);
  background: var(--brand-red);
  border-color: var(--brand-red);
  outline: none;
}

.catalog-filter {
  min-height: 38px;
  padding: 8px 11px;
  color: var(--ink);
  background: #f5f7fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-filter:hover,
.catalog-filter:focus-visible,
.catalog-filter.is-active {
  color: var(--white);
  background: var(--ink);
  outline: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

@media (min-width: 1500px) {
  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.catalog-load-more {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 10px 0 4px;
}

.catalog-load-more .button {
  color: var(--ink);
  border-color: rgba(31, 42, 52, 0.18);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 42, 52, 0.1);
}

.catalog-load-more .button:hover,
.catalog-load-more .button:focus-visible {
  color: var(--brand-red);
  border-color: var(--brand-red);
}

.product-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 150, 0.35);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.12);
}

.product-card-media {
  position: relative;
  margin: 0;
  background: #f5f7fb;
}

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-thumbs {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  gap: 7px;
  padding: 6px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.product-thumb {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 7px;
  cursor: pointer;
}

.product-thumb.is-active,
.product-thumb:hover,
.product-thumb:focus-visible {
  border-color: var(--brand-red);
  outline: none;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.product-card-topline,
.product-meta,
.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.product-card-topline {
  justify-content: space-between;
}

.product-card-topline span,
.product-tags span,
.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.product-card-topline span {
  color: var(--white);
  background: var(--teal);
}

.product-card-topline strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.product-card h2 {
  min-height: 2.7em;
  font-size: 1rem;
  line-height: 1.22;
}

.product-card p {
  display: none;
  margin: 0;
  color: var(--ink-soft);
}

.product-tags span {
  color: var(--ink-soft);
  background: #f5f7fb;
}

.product-meta span {
  color: var(--ink);
  background: rgba(255, 209, 102, 0.4);
}

.product-sizes {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.product-sizes button {
  flex: 0 0 auto;
  min-width: 38px;
  min-height: 34px;
  padding: 6px 9px;
  color: var(--ink);
  background: #f5f7fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
  cursor: pointer;
}

.product-sizes button:hover,
.product-sizes button:focus-visible,
.product-sizes button.is-active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  outline: none;
}

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

.product-card-actions button,
.product-card-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 11px;
  min-width: 0;
  color: var(--ink);
  background: #fff7dd;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  cursor: pointer;
}

.product-card-actions button {
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--ink);
}

.product-card-actions .product-details-link {
  color: var(--ink);
  background: var(--white);
}

.product-card-actions button.is-selected {
  background: var(--teal);
  border-color: var(--teal);
}

.product-card-actions button:hover,
.product-card-actions button:focus-visible,
.product-card-actions a:hover,
.product-card-actions a:focus-visible {
  color: var(--white);
  background: var(--brand-red);
  border-color: var(--brand-red);
  outline: none;
}

.catalog-consultbar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: min(980px, calc(100% - 28px));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(17, 24, 39, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(17, 24, 39, 0.26);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.catalog-consultbar > div:first-child {
  min-width: 0;
}

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

.catalog-consultbar strong,
.catalog-consultbar span {
  display: block;
}

.catalog-consultbar span {
  max-width: 560px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-consultbar strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-consultbar-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.catalog-consultbar-actions button,
.catalog-consultbar-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.catalog-consultbar-actions a {
  color: var(--ink);
  background: var(--sun);
  border-color: var(--sun);
}

.catalog-consultbar-actions button:hover,
.catalog-consultbar-actions button:focus-visible,
.catalog-consultbar-actions a:hover,
.catalog-consultbar-actions a:focus-visible {
  background: var(--teal);
  border-color: var(--teal);
  outline: none;
}

.catalog-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 14px;
  justify-items: start;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.catalog-empty h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.catalog-empty p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
}

.product-detail-page {
  background:
    linear-gradient(180deg, #fffaf2 0%, #ffffff 48%, #f5f7fb 100%);
}

.product-detail-shell {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 14px;
}

.product-detail-main {
  margin: 0;
  overflow: hidden;
  background: #f5f7fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.12);
}

.product-detail-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-thumbs button {
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
}

.product-detail-thumbs button.is-active,
.product-detail-thumbs button:hover,
.product-detail-thumbs button:focus-visible {
  border-color: var(--brand-red);
  outline: none;
}

.product-detail-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-info {
  position: sticky;
  top: 108px;
  min-width: 0;
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(17, 24, 39, 0.1);
}

.product-backlink {
  width: fit-content;
  color: var(--teal);
  font-weight: 900;
}

.product-detail-info h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.product-detail-description {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-detail-price {
  display: grid;
  gap: 2px;
  padding: 18px;
  color: var(--ink);
  background: #fff7dd;
  border: 1px solid rgba(255, 209, 102, 0.72);
  border-radius: 8px;
}

.product-detail-price span,
.product-detail-sizes > span {
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-price strong {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.product-detail-sizes {
  display: grid;
  gap: 10px;
}

.product-detail-sizes div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-detail-sizes button {
  min-width: 44px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  color: var(--ink);
  background: #f5f7fb;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.product-detail-sizes button:hover,
.product-detail-sizes button:focus-visible,
.product-detail-sizes button.is-active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
  outline: none;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.product-detail-meta div {
  padding: 13px;
  background: #f5f7fb;
  border-radius: 8px;
}

.product-detail-meta dt {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-detail-meta dd {
  margin: 2px 0 0;
  font-weight: 900;
}

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

.product-detail-actions .button {
  width: 100%;
  min-width: 0;
  text-align: center;
}

.product-detail-add {
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
}

.product-detail-add.is-selected {
  background: var(--teal);
}

.product-detail-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.product-detail-consult-status {
  margin: 0;
  padding: 12px 14px;
  color: #065f46;
  background: rgba(0, 168, 150, 0.12);
  border: 1px solid rgba(0, 168, 150, 0.22);
  border-radius: 8px;
  font-weight: 800;
}

.product-detail-empty {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
}

.product-detail-empty h1 {
  color: var(--ink);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
}

.product-detail-empty p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: 16px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-credit img {
  width: min(340px, 54vw);
  height: 74px;
  object-fit: contain;
  padding: 8px 14px;
  background: var(--white);
  border-radius: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button:hover,
  .button:focus-visible {
    transform: none;
  }

}

@media (max-width: 900px) {
  .top-strip {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-strip-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 14px 20px 20px;
    background: rgba(255, 250, 242, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 0;
    border-radius: 0;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 12px 14px !important;
    text-align: center;
    border-radius: 8px !important;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-content {
    padding: 80px 0 112px;
  }

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

  .collection-card,
  .collection-card:nth-child(1),
  .collection-card:nth-child(2),
  .collection-card-accessories {
    grid-column: auto;
  }

  .quick-bar,
  .service-list,
  .contact-layout,
  .product-grid,
  .product-detail-shell {
    grid-template-columns: 1fr;
  }

  .catalog-panel-head,
  .catalog-tools {
    display: grid;
  }

  .catalog-panel {
    position: static;
  }

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

  .catalog-filters {
    justify-content: flex-start;
  }

  .product-detail-info {
    position: static;
  }

  .product-detail-meta {
    grid-template-columns: 1fr;
  }

  .quick-bar div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .quick-bar div:first-child {
    border-top: 0;
  }

  .feature-band {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-shell {
    grid-template-columns: 1fr;
  }

  .about-card {
    position: static;
  }

  .feature-copy,
  .stats-panel {
    width: var(--container);
    margin-inline: auto;
  }

  .contact-layout {
    gap: 28px;
  }

  .site-footer {
    display: grid;
  }

  .footer-contact {
    justify-items: start;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-credit {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100% - 28px, 1140px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand-logo {
    width: 146px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 24, 39, 0.9) 0%, rgba(17, 24, 39, 0.76) 58%, rgba(17, 24, 39, 0.38)),
      linear-gradient(0deg, rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.12) 46%);
  }

  .hero-actions {
    display: grid;
  }

  .quick-bar {
    margin-top: -44px;
  }

  .section {
    padding: 76px 0;
  }

  .service-item {
    min-height: 210px;
  }

  .collection-cards {
    grid-template-columns: 1fr;
  }

  .collection-card,
  .collection-card:nth-child(1),
  .collection-card:nth-child(2),
  .collection-card-accessories {
    grid-column: auto;
    min-height: 360px;
  }

  .stats-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-links {
    display: grid;
  }

  .catalog-section {
    padding-bottom: 72px;
  }

  .catalog-panel {
    padding: 20px;
  }

  .catalog-consultbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    left: 12px;
    right: 12px;
    width: auto;
    bottom: 10px;
    gap: 8px;
    padding: 10px;
    overflow: hidden;
    transform: none;
  }

  .catalog-consultbar span {
    display: none;
  }

  .catalog-consultbar strong {
    font-size: 0.9rem;
    line-height: 1.15;
    white-space: normal;
  }

  .catalog-consultbar-actions {
    display: grid;
    grid-template-columns: auto minmax(136px, auto);
    width: auto;
    gap: 6px;
  }

  .catalog-consultbar-actions button,
  .catalog-consultbar-actions a {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 8px 9px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .catalog-consultbar-actions button {
    width: 58px;
    padding-inline: 0;
    overflow: hidden;
    font-size: 0.72rem;
  }

  .product-thumbs {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .product-card-actions,
  .product-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-detail-shell {
    width: min(100% - 28px, 1280px);
    padding: 44px 0 70px;
  }

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