:root {
  --primary: #d81b60;
  --primary-dark: #ad1457;
  --primary-mid: #e91e8c;
  --surface: #fffdf9;
  --surface-2: #f7edf1;
  --surface-3: #fce4ec;
  --text: #1b0e13;
  --muted: #6f5a64;
  --line: #ebc9d9;
  --shadow: 0 12px 32px rgba(216, 27, 96, 0.16);
  --shadow-soft: 0 4px 20px rgba(216, 27, 96, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito", system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, #fbe2ee 0%, transparent 52%),
    linear-gradient(180deg, #fffdf9 0%, #fff8fb 48%, #fffdf9 100%);
  min-height: 100vh;
}

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

button,
input,
select {
  font: inherit;
}

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

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

.container {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.announcement-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.48rem 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 14, 20, 0.06);
  box-shadow: 0 2px 16px rgba(216, 27, 96, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  min-height: 68px;
}

.icon-btn {
  border: 0;
  background: transparent;
  color: var(--text);
  inline-size: 48px;
  block-size: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.icon-btn:hover {
  background: rgba(216, 27, 96, 0.1);
  color: var(--primary-dark);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.brand img {
  inline-size: 40px;
  block-size: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  gap: 0.06rem;
}

.brand-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  color: var(--primary);
  font-size: clamp(1.02rem, 2.1vw, 1.16rem);
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 1;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  padding-bottom: 2px;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-dark);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 48px;
  flex-shrink: 0;
  gap: 0;
}

.menu-btn {
  display: grid;
}

.cart-button {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 3px;
  min-inline-size: 18px;
  block-size: 18px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 900;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}

.search-row {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0 0.85rem;
}

.search-box {
  position: relative;
}

.search-box .material-symbols-outlined {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  translate: 0 -50%;
  color: var(--primary);
}

.search-box input {
  inline-size: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  block-size: 46px;
  padding: 0.75rem 0.9rem 0.75rem 2.9rem;
  outline: none;
  box-shadow: var(--shadow-soft);
}

.search-box input:focus {
  border-color: color-mix(in oklab, var(--primary) 45%, white);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--primary) 12%, transparent);
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease;
  z-index: 80;
}

.mobile-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  inline-size: min(288px, 80vw);
  background: #f8f6f7;
  border-right: 1px solid rgba(27, 14, 20, 0.08);
  transform: translateX(-105%);
  transition: transform 240ms ease;
  z-index: 81;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  box-shadow: 0 20px 44px rgba(20, 8, 17, 0.22);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid rgba(27, 14, 20, 0.08);
}

.mobile-drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.mobile-drawer-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.mobile-drawer-brand span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-drawer-close {
  border: 0;
  background: transparent;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mobile-drawer-close:hover {
  background: rgba(27, 14, 20, 0.06);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem;
  min-height: 0;
  overflow-y: auto;
}

.mobile-nav a {
  display: block;
  padding: 0.72rem 0.78rem;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1b0e14;
  transition: background-color 160ms ease, color 160ms ease;
}

.mobile-nav a:hover {
  background: rgba(218, 27, 97, 0.1);
  color: var(--primary);
}

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

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

.main-wrap {
  padding: 1.1rem 0 6.4rem;
}

.hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 370px;
  background: linear-gradient(135deg, #d81b60 0%, #e91e8c 46%, #f06292 100%);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.18), transparent 36%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14), transparent 38%);
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  mix-blend-mode: multiply;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 12%, rgba(19, 6, 11, 0.62) 100%);
  z-index: 1;
}

.hero-deco {
  position: absolute;
  color: rgba(255, 255, 255, 0.14);
  pointer-events: none;
  user-select: none;
  z-index: 2;
  animation: float-deco 8s ease-in-out infinite;
}

.hero-deco--1 {
  top: 12%;
  left: 5%;
  font-size: 3rem;
}

.hero-deco--2 {
  top: 16%;
  right: 8%;
  font-size: 2.2rem;
  animation-delay: 2.4s;
}

.hero-deco--3 {
  bottom: 20%;
  left: 42%;
  font-size: 2.6rem;
  animation-delay: 4.8s;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  padding: 1.35rem;
  display: grid;
  gap: 0.78rem;
  align-content: center;
  text-align: center;
  justify-items: center;
  min-height: 370px;
}

.hero-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.14);
  display: inline-flex;
  inline-size: fit-content;
  padding: 0.42rem 0.74rem;
  border-radius: 999px;
}

.hero-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.06;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

.hero-description {
  margin: 0;
  max-inline-size: 62ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.5;
}

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

.hero-price {
  font-size: 1.45rem;
  font-weight: 900;
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 74px;
}

.badge-bar {
  margin-top: 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 18px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-soft);
}

.badge-bar span:nth-child(even) {
  color: #ebb4cb;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 130ms ease, background-color 180ms ease, color 180ms ease;
  font-weight: 800;
}

.btn-primary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid rgba(255, 255, 255, 0.54);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  padding: 0.74rem 1.08rem;
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: #fff8fb;
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  padding: 0.65rem 0.95rem;
}

.btn-secondary:hover {
  background: #f0dae4;
}

.btn-outline {
  border: 1px solid color-mix(in oklab, var(--primary) 40%, white);
  color: #fff;
  background: var(--primary-dark);
  padding: 0.5rem 0.85rem;
}

.btn-outline:hover {
  background: #8f0f46;
}

.btn-primary:active,
.btn-secondary:active,
.btn-outline:active {
  transform: translateY(1px) scale(0.99);
}

.store-layout {
  margin-top: 1.2rem;
  display: grid;
  gap: 1.1rem;
}

.filters-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
  height: fit-content;
  position: sticky;
  top: 94px;
  box-shadow: var(--shadow-soft);
}

.filter-title {
  margin: 0 0 0.9rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
}

.filter-group {
  margin-bottom: 1.1rem;
}

.filter-group h4 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.category-list {
  display: grid;
  gap: 0.4rem;
}

.category-btn {
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.58rem 0.72rem;
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
}

.category-btn.is-active {
  background: #ffe9f3;
  border-color: color-mix(in oklab, var(--primary) 35%, white);
  color: var(--primary-dark);
}

.field,
.select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: var(--text);
  min-height: 42px;
  padding: 0.45rem 0.65rem;
}

.check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.catalog-panel {
  min-width: 0;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.toolbar {
  margin-top: 0.2rem;
  display: grid;
  gap: 0.75rem;
}

.toolbar-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.toolbar-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--primary-dark);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
}

.toolbar-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mobile-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.2rem 0 0.45rem;
}

.mobile-chips::-webkit-scrollbar {
  display: none;
}

.chip {
  border: 1px solid var(--line);
  background: #fff;
  color: #5b3d4a;
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  white-space: nowrap;
  font-weight: 700;
  cursor: pointer;
}

.chip.is-active {
  border-color: color-mix(in oklab, var(--primary) 40%, white);
  background: #ffeaf4;
  color: var(--primary);
}

.product-grid {
  margin-top: 0.7rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(216, 27, 96, 0.18);
}

.product-media {
  position: relative;
  background: linear-gradient(180deg, #fef7fa, #f8eaf0);
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform 240ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.03);
}

.zoom-btn {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: var(--primary);
  cursor: pointer;
}

.media-arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: #53333f;
  display: none;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.13);
}

.product-media.has-multiple .media-arrow {
  display: grid;
}

.media-arrow--left {
  left: 0.55rem;
  animation: nudge-left 1300ms ease-in-out infinite;
}

.media-arrow--right {
  right: 0.55rem;
  animation: nudge-right 1300ms ease-in-out infinite;
}

.media-arrow:disabled {
  opacity: 0.2;
  animation: none;
  cursor: default;
}

.swipe-hint {
  position: absolute;
  left: 50%;
  bottom: 0.52rem;
  translate: -50% 0;
  background: rgba(15, 7, 11, 0.62);
  color: #fff;
  border-radius: 999px;
  font-size: 0.67rem;
  padding: 0.2rem 0.48rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  animation: fade-pulse 1300ms ease-in-out infinite;
}

.product-body {
  padding: 0.95rem;
  display: grid;
  gap: 0.6rem;
}

.product-name {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
  font-family: "Playfair Display", Georgia, serif;
  color: #2a1821;
}

.product-preview-price {
  margin: 0;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

.price-wrap {
  display: grid;
  gap: 0.14rem;
  border: 1px solid #f1d5e3;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff 0%, #fff2f8 100%);
  padding: 0.55rem 0.65rem;
}

.price-label {
  color: var(--primary-dark);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.price-amount {
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 1.18rem;
}

.variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.card-click-hint {
  margin: 0;
  font-size: 0.74rem;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.variant-chip {
  border: 1px solid #f0d8e4;
  background: #fff3f8;
  color: #5b3d4a;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.56rem;
}

.option-select {
  width: 100%;
  min-height: 38px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
  color: #53333f;
  padding: 0.42rem 0.58rem;
}

.model-wrap {
  display: grid;
  gap: 0.28rem;
}

.model-label {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  margin-top: auto;
}

.card-actions--quote {
  grid-template-columns: 1fr;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  border: 0;
  background: #fff;
  color: #58404a;
  width: 34px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.qty-control span {
  min-width: 30px;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.add-btn {
  border: 0;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  padding: 0 0.95rem;
  min-height: 38px;
  cursor: pointer;
  transition: transform 140ms ease, background-color 180ms ease;
}

.add-btn:hover {
  background: var(--primary-dark);
}

.add-btn.is-quote {
  background: #2f1d26;
}

.add-btn:disabled,
.add-btn.is-disabled {
  background: #d3a9bc;
  color: #fff;
  cursor: not-allowed;
  box-shadow: none;
}

.product-card.is-focus {
  animation: card-focus 900ms ease;
}

.empty-message {
  border: 1px dashed #dcbcc9;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 1.3rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.buy-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 7, 14, 0.46);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
  z-index: 92;
}

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

.buy-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: min(560px, 94vw);
  max-height: 88vh;
  transform: translate(-50%, -48%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, transform 200ms ease;
  z-index: 93;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.buy-modal.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.buy-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  background: #fff8fb;
}

.buy-modal-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.22rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.buy-modal-close {
  width: 38px;
  height: 38px;
}

.buy-modal-body {
  padding: 1rem;
  overflow-y: auto;
  display: grid;
  gap: 0.72rem;
}

.buy-modal-media {
  position: relative;
}

.buy-modal-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f7edf1;
}

.buy-modal-nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2c1821;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.buy-modal-nav--prev {
  left: 0.55rem;
}

.buy-modal-nav--next {
  right: 0.55rem;
}

.buy-modal-nav:disabled {
  opacity: 0.25;
  cursor: default;
}

.buy-modal-counter {
  margin: -0.2rem 0 0.1rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.buy-modal.single-image .buy-modal-nav,
.buy-modal.single-image .buy-modal-counter {
  display: none;
}

.buy-modal-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.5;
}

.buy-modal-status {
  min-height: 1.2rem;
  margin: 0;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.cart-overlay,
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(22, 7, 14, 0.46);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease;
  z-index: 90;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 95vw);
  background: #fff;
  box-shadow: -24px 0 46px rgba(0, 0, 0, 0.24);
  transform: translateX(104%);
  transition: transform 240ms ease;
  z-index: 91;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

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

.cart-head,
.cart-foot {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-title {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
}

.cart-items {
  padding: 0.7rem;
  overflow-y: auto;
  display: grid;
  gap: 0.55rem;
  grid-auto-rows: max-content;
  align-content: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.4rem;
}

.cart-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 7px;
  background: #f7edf1;
}

.cart-item-main {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.cart-item h5 {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.15;
}

.cart-item-option {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.2;
}

.cart-item-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}

.cart-item-price {
  color: var(--primary-dark);
  font-weight: 900;
  font-size: 0.82rem;
}

.cart-qty {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.cart-qty button {
  border: 0;
  background: #fff;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cart-qty span {
  min-width: 22px;
  text-align: center;
  line-height: 24px;
  font-weight: 800;
  font-size: 0.76rem;
}

.cart-remove {
  border: 0;
  background: transparent;
  color: #a17d8b;
  cursor: pointer;
  align-self: start;
  padding-top: 0.05rem;
}

.cart-foot {
  border-bottom: 0;
  border-top: 1px solid var(--line);
  background: #fff8fb;
  display: grid;
  gap: 0.8rem;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 900;
}

.cart-total strong {
  color: var(--primary-dark);
  font-size: 1.18rem;
}

.checkout-btn {
  border: 0;
  min-height: 46px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.checkout-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 96;
  display: grid;
  align-items: center;
  justify-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 190ms ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-frame {
  width: min(1060px, 94vw);
  max-height: 90vh;
  border-radius: 18px;
  overflow: hidden;
  background: #170710;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #2c1821;
  cursor: pointer;
  margin-inline: 0.6rem;
}

.lightbox-main {
  position: relative;
  background: #170710;
  min-height: min(82vh, 620px);
  display: grid;
  align-items: center;
  justify-items: center;
}

.lightbox-main img {
  width: 100%;
  height: min(82vh, 620px);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  z-index: 2;
}

.lightbox-meta {
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  gap: 0.1rem;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.lightbox-meta strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
}

.mobile-cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  border: 0;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.65rem 0.88rem;
  background: #140811;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(20, 8, 17, 0.32);
}

.mobile-cart-fab .dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary);
  font-size: 0.66rem;
  display: grid;
  place-items: center;
}

.stitch-note {
  display: none;
}

@keyframes float-deco {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(8deg);
  }
}

@keyframes nudge-left {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(-3px);
  }
}

@keyframes nudge-right {
  0%,
  100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(3px);
  }
}

@keyframes fade-pulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes card-focus {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.45);
  }
  100% {
    box-shadow: 0 0 0 12px rgba(216, 27, 96, 0);
  }
}

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

@media (min-width: 800px) {
  .hero {
    min-height: 400px;
  }

  .hero-content {
    min-height: 400px;
    padding: 1.5rem 1.35rem;
  }

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

  .mobile-cart-fab {
    display: none;
  }
}

@media (min-width: 1040px) {
  .store-layout {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }

  .filters-panel {
    display: block;
  }

  .mobile-chips {
    display: none;
  }

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

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .menu-btn {
    display: grid;
  }
}

@media (max-width: 720px) {
  .header-row {
    min-height: 68px;
  }

  .announcement-bar {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .badge-bar {
    font-size: 0.76rem;
    gap: 6px 12px;
  }

  .hero {
    min-height: 340px;
  }

  .hero-content {
    min-height: 340px;
    padding: 1.1rem;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2.35rem);
  }

  .catalog-panel {
    padding: 0.78rem;
    border-color: rgba(216, 27, 96, 0.26);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 251, 253, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
    box-shadow:
      0 0 0 1px rgba(255, 240, 247, 0.95) inset,
      0 12px 28px rgba(216, 27, 96, 0.12);
  }

  .chip {
    border-color: rgba(216, 27, 96, 0.3);
    background: #fff8fb;
  }

  .product-card {
    border-color: rgba(216, 27, 96, 0.34);
    border-radius: 20px;
    box-shadow:
      0 0 0 1px rgba(255, 242, 248, 0.96) inset,
      0 10px 24px rgba(216, 27, 96, 0.13);
    -webkit-tap-highlight-color: rgba(216, 27, 96, 0.12);
  }

  .product-media {
    border-bottom: 1px solid rgba(216, 27, 96, 0.16);
  }

  .price-wrap {
    border-color: rgba(216, 27, 96, 0.3);
    border-radius: 14px;
  }

  .variant-chip {
    border-color: rgba(216, 27, 96, 0.24);
    background: #fff6fa;
  }

  .buy-modal {
    width: 95vw;
    max-height: 90vh;
    border-color: rgba(216, 27, 96, 0.34);
    border-radius: 20px;
    box-shadow:
      0 0 0 1px rgba(255, 242, 248, 0.94) inset,
      0 20px 46px rgba(20, 8, 17, 0.28);
  }

  .buy-modal-head {
    border-bottom-color: rgba(216, 27, 96, 0.22);
    background: linear-gradient(180deg, #fff6fa 0%, #fff 100%);
  }

  .buy-modal-image {
    border-color: rgba(216, 27, 96, 0.28);
    border-radius: 14px;
  }

  .buy-modal-nav {
    border: 1px solid rgba(216, 27, 96, 0.28);
    background: rgba(255, 250, 253, 0.96);
  }

  .buy-modal-close {
    border: 1px solid rgba(216, 27, 96, 0.2);
    border-radius: 12px;
  }

  .buy-modal-counter {
    margin: 0 auto 0.2rem;
    width: fit-content;
    border: 1px solid rgba(216, 27, 96, 0.22);
    border-radius: 999px;
    background: #fff7fb;
    padding: 0.16rem 0.56rem;
  }

  .model-wrap .option-select,
  .buy-modal .qty-control {
    border-color: rgba(216, 27, 96, 0.24);
  }

  .cart-drawer {
    border-left: 1px solid rgba(216, 27, 96, 0.26);
    box-shadow:
      -1px 0 0 rgba(255, 241, 248, 0.92),
      -24px 0 46px rgba(20, 8, 17, 0.24);
  }

  .cart-head,
  .cart-foot {
    border-color: rgba(216, 27, 96, 0.22);
    background: linear-gradient(180deg, #fff9fc 0%, #fff 100%);
  }

  .cart-item {
    border-color: rgba(216, 27, 96, 0.24);
    border-radius: 13px;
    background: #fffafb;
  }

  .cart-qty {
    border-color: rgba(216, 27, 96, 0.26);
  }

  .cart-remove {
    color: #8f5f74;
  }

  .lightbox-frame {
    grid-template-columns: 1fr;
    width: 95vw;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    width: 40px;
    height: 40px;
    margin: 0;
    z-index: 2;
  }

  .lightbox-nav--prev {
    left: 0.45rem;
  }

  .lightbox-nav--next {
    right: 0.45rem;
  }

  .buy-modal-title {
    font-size: 1.05rem;
  }

  .buy-modal-body .card-actions {
    grid-template-columns: 1fr;
  }

  .buy-modal-body .add-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .catalog-panel,
  .product-card,
  .buy-modal {
    border-radius: 18px;
  }
}
