:root {
  --paper: #f7f5f0;
  --paper-soft: #eeebe4;
  --ink: #161514;
  --muted: #6f6b64;
  --line: rgba(22, 21, 20, 0.14);
  --gold: #b8995d;
  --forest: #193a34;
  --rose: #9d645f;
  --blue: #516f8c;
  --white: #fffdf9;
  --shadow: 0 24px 70px rgba(22, 21, 20, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html,
body,
a,
button,
input,
select,
textarea,
[role="button"],
.product-card,
.mosaic-tile,
.chip,
.size-pill,
.thumb {
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Manrope, Arial, sans-serif;
  min-height: 100vh;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  -webkit-touch-callout: none;
  user-select: none;
}

a:focus,
button:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(184, 153, 93, 0.72);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
  background: white;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.header-compact {
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.header-top {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: min(1480px, 100%);
  margin-inline: auto;
  min-height: 82px;
  padding: 10px clamp(18px, 3vw, 34px) 8px;
}

.brand {
  display: grid;
  align-items: center;
  justify-content: center;
  color: #111;
  line-height: 1;
  text-align: center;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.brand strong,
.hero-title,
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 3.6vw, 58px);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: 0;
}

.brand-rule {
  position: relative;
  display: block;
  min-width: 0;
  margin-top: 3px;
  color: #111;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 16px;
  font-style: italic;
  text-align: center;
}

.mobile-header-actions,
.mobile-nav-search-form {
  display: none;
}

.main-nav {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: min(760px, calc(100% - 48px));
  min-height: 46px;
  margin: 0 auto 14px;
  overflow: hidden;
  border: 1px solid rgba(22, 21, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(22, 21, 20, 0.07);
  backdrop-filter: blur(16px);
}

.nav-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
}

.nav-search-form {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px 44px;
  align-items: center;
  background: rgba(255, 253, 249, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-header.search-open .nav-search-form {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-search-form input {
  min-height: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 22px;
  outline: none;
  font-size: 15px;
  font-weight: 700;
}

.nav-search-form input::placeholder {
  color: rgba(22, 21, 20, 0.44);
}

.nav-search-form button {
  display: grid;
  place-items: center;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
}

.nav-search-form svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.burger-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.burger-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #111;
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease;
}

.burger-button.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-button.open span:nth-child(2) {
  opacity: 0;
}

.burger-button.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.admin-pill {
  min-height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.9);
  border-radius: 999px;
  background: #111;
  color: white;
  padding: 0 14px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav .nav-links a {
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(22, 21, 20, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 11px 12px;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.main-nav .nav-links a:hover,
.main-nav .nav-links a.active {
  background: #111;
  color: white;
  transform: translateY(-1px);
}

.header-actions {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  color: #111;
  background: rgba(255, 253, 249, 0.72);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.social-links svg,
.mobile-social-links svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-links svg path:first-child,
.social-links svg rect,
.mobile-social-links svg path:first-child,
.mobile-social-links svg rect {
  fill: none;
}

.social-links a:hover {
  border-color: rgba(17, 17, 17, 0.24);
  background: #f7f4ee;
  transform: translateY(-1px);
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  padding: 3px;
  background: #f6f4ef;
}

.language-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  min-width: 34px;
  padding: 7px 8px;
}

.language-switch button.active {
  background: white;
  color: #111;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.08);
}

.icon-button,
.wish-toggle {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 22px;
  transition: transform 160ms ease, background 160ms ease;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.icon-button:hover,
.wish-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(17, 17, 17, 0.1);
  background: #f7f4ee;
}

.icon-button b {
  position: absolute;
  right: -3px;
  top: -3px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--rose);
  color: white;
  font-size: 11px;
}

.page {
  animation: pageIn 420ms ease both;
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-copy {
  display: none;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(58px, 9vw, 142px);
  line-height: 0.84;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
  color: var(--forest);
}

.hero-text {
  max-width: 620px;
  margin: 26px 0 0;
  color: #504c46;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-button,
.secondary-button,
.add-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  padding: 12px 18px;
  transition: transform 190ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 190ms ease, background 190ms ease, color 190ms ease, border-color 190ms ease;
}

.primary-button,
.add-button {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(22, 21, 20, 0.16);
}

.secondary-button {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover,
.add-button:hover {
  transform: translateY(-2px);
}

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

.hero-visual {
  display: none;
}

.home-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: calc(100vh - 108px);
}

.mosaic-tile {
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
  min-height: 620px;
  background: #e9e9e9;
}

.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.38)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%, rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.mosaic-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.mosaic-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 580ms cubic-bezier(0.78, 0, 0.22, 1), filter 760ms ease;
  filter: brightness(0.78) saturate(0.96);
  will-change: transform;
}

.mosaic-slides.is-resetting .mosaic-frame {
  transition: none;
}

.mosaic-frame.current {
  transform: translateX(0) scale(1.02);
}

.mosaic-frame.next {
  transform: translateX(100%) scale(1.02);
}

.mosaic-slides.is-sliding .mosaic-frame.current {
  transform: translateX(-100%) scale(1.02);
}

.mosaic-slides.is-sliding .mosaic-frame.next {
  transform: translateX(0) scale(1.02);
}

.mosaic-tile:nth-child(1) .mosaic-frame {
  object-fit: cover;
  object-position: 0% center;
  padding: 0;
  background: #efeae2;
}

.mosaic-tile:nth-child(2) .mosaic-frame {
  object-fit: cover;
  object-position: 50% center;
  padding: 0;
  background: #efeae2;
}

.mosaic-tile:nth-child(3) .mosaic-frame {
  object-fit: cover;
  object-position: 100% center;
  padding: 0;
  background: #efeae2;
}

.mosaic-tile:hover .mosaic-frame {
  filter: brightness(0.86) saturate(1.02);
}

.mosaic-tile span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-width: min(68%, 300px);
  min-height: 58px;
  margin-bottom: 48px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(17, 17, 17, 0.64);
  backdrop-filter: blur(14px);
  color: white;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), background 260ms ease, border-color 260ms ease;
}

.mosaic-tile:hover span {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(17, 17, 17, 0.74);
}

.request-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  border-radius: 18px;
  background: #f8f8f8;
}

.request-feature .request-box {
  margin-top: 0;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 234, 0.88)),
    url("/assets/hero-perfume-lifestyle.png") center / cover;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.08);
}

.request-feature-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 66px);
  line-height: 0.94;
}

.request-feature-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.7;
}

.logo-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(22, 21, 20, 0.1);
  transform: rotate(-8deg);
}

.hero-logo {
  position: relative;
  width: min(84%, 520px);
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  border: 1px solid rgba(22, 21, 20, 0.12);
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: min(310px, 74%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(16px);
}

.hero-card strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.hero-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.section {
  padding: clamp(34px, 6vw, 72px) clamp(20px, 5vw, 76px);
}

.page.section {
  width: min(1480px, 100%);
  margin-inline: auto;
}

.section.alt {
  background: rgba(255, 255, 255, 0.46);
  border-block: 1px solid rgba(22, 21, 20, 0.08);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h1,
.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 0.95;
}

.section-head p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit {
  min-height: 174px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.62);
  padding: 18px;
}

.benefit b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  margin-bottom: 18px;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 26px;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.catalog-shell {
  padding: 34px clamp(14px, 3vw, 44px) 80px;
  width: min(1680px, 100%);
  margin-inline: auto;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(34px, 4vw, 62px);
  align-items: start;
}

.filters {
  position: sticky;
  top: 118px;
  border: 0;
  border-radius: 0;
  background: white;
  box-shadow: none;
  padding: 4px 0 0;
}

.filters h2 {
  margin: 0 0 22px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.field label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 0;
  background: #fafafa;
  color: var(--ink);
  outline: none;
  padding: 13px 12px;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.checkout-form input:focus,
.checkout-form textarea:focus {
  border-color: #111;
  box-shadow: inset 0 -1px 0 #111;
}

.chip-list {
  display: grid;
  gap: 7px;
}

.chip {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 12px;
  font-weight: 500;
  padding: 0;
  text-align: left;
  transition: color 160ms ease, transform 160ms ease;
}

.chip.active {
  background: transparent;
  color: #111;
  font-weight: 900;
}

.chip:hover {
  transform: translateX(3px);
  color: #516f8c;
}

.chip.active:hover {
  color: #111;
  background: transparent;
}

.request-box {
  position: relative;
  margin-top: 26px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #f7f3ed);
  padding: 18px;
}

.request-box h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.05;
}

.request-box p,
.form-status {
  color: var(--muted);
  line-height: 1.55;
}

.request-box form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.request-box input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  color: #111;
  outline: none;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  transition: border 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.request-box input::placeholder {
  color: rgba(17, 17, 17, 0.45);
  font-weight: 500;
}

.request-box input:focus {
  border-color: rgba(17, 17, 17, 0.38);
  background: white;
  box-shadow: 0 0 0 4px rgba(184, 153, 93, 0.12), 0 14px 34px rgba(0, 0, 0, 0.08);
}

.request-box form input[name="email"],
.request-box form .primary-button,
.request-box form .form-status {
  grid-column: 1 / -1;
}

.request-box form .primary-button {
  min-height: 54px;
  margin-top: 2px;
  border-radius: 999px;
}

.request-box .primary-button {
  width: 100%;
}

.catalog-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: -4px 0 28px;
}

.catalog-tools p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.catalog-tools .field {
  width: min(260px, 42vw);
  margin: 0;
}

.catalog-tools .field label {
  display: none;
}

.catalog-tools select {
  min-height: 36px;
  border: 0;
  background: #f4f4f4;
  padding: 0 12px;
  font-size: 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: 42px 20px;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.pagination button {
  min-width: 42px;
  min-height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pagination button:hover:not(:disabled),
.pagination button.active {
  background: #111;
  color: #fff;
  border-color: #111;
  transform: translateY(-1px);
}

.pagination button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.featured-grid {
  grid-template-columns: repeat(5, minmax(180px, 236px));
  justify-content: center;
}

#wishlistGrid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 236px));
  justify-content: start;
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: white;
  box-shadow: none;
  cursor: pointer;
  animation: cardIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--card-index, 0) * 24ms);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

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

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wish-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: white;
  color: #111;
  font-size: 0;
  box-shadow: 0 10px 22px rgba(17, 17, 17, 0.08);
  transition: transform 190ms cubic-bezier(0.22, 1, 0.36, 1), background 190ms ease, color 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.wish-toggle svg,
.heart-svg {
  width: 22px;
  height: 22px;
  fill: transparent;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: fill 180ms ease, transform 180ms ease;
}

.wish-toggle.active {
  background: #c8193c;
  color: white;
  border-color: #c8193c;
  box-shadow: 0 14px 30px rgba(200, 25, 60, 0.28);
}

.wish-toggle.active svg {
  fill: currentColor;
}

.wish-toggle:hover {
  transform: translateY(-2px) scale(1.02);
}

.wish-toggle.wish-pop {
  animation: wishPop 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes wishPop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(0.82);
  }
  100% {
    transform: scale(1);
  }
}

.product-image-link {
  display: block;
  aspect-ratio: 1 / 0.98;
  background: radial-gradient(circle at 50% 46%, #fff 0, #fff 34%, #f7f7f7 75%);
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: clamp(22px, 2.4vw, 36px);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 520ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.035);
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.12));
}

.product-info {
  display: grid;
  gap: 6px;
  padding: 16px 0 0;
}

.product-title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.product-brand {
  margin: 0;
  color: #111;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-name {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.28;
}

.product-notes {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.product-volume-line {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 11px;
}

.product-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}

.size-picker {
  --active-index: 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 3px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: #f2f2f2;
  overflow: hidden;
}

.size-thumb {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc((100% - 6px) / 5);
  border-radius: 999px;
  background: #111;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transform: translateX(calc(var(--active-index) * 100%));
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.size-pill {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #454545;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  outline: none;
  transition: color 170ms ease;
}

.size-pill:focus {
  outline: none;
}

.size-pill:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(184, 153, 93, 0.45);
}

.size-pill::after {
  content: none;
}

.size-pill:hover,
.size-pill.active {
  color: white;
}

.product-price {
  min-height: 0;
  color: #111;
  font-size: 17px;
  font-weight: 500;
  white-space: nowrap;
}

.buy-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
  background: transparent;
  overflow: visible;
}

.buy-row .wish-toggle {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.buy-row .wish-toggle.active {
  border-color: #c8193c;
  background: #c8193c;
  box-shadow: 0 10px 22px rgba(200, 25, 60, 0.22);
}

.size-select {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: #f6f6f6;
  color: var(--ink);
  padding: 0 10px;
  min-height: 32px;
  font-size: 12px;
  font-weight: 800;
}

.add-button {
  min-width: 0;
  min-height: 48px;
  border-radius: 999px;
  background: #111;
  color: white;
  border-color: #111;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

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

  .featured-grid,
  #wishlistGrid {
    grid-template-columns: repeat(5, minmax(180px, 236px));
  }
}

.add-button:hover {
  background: #b8995d;
  border-color: #b8995d;
  color: white;
  box-shadow: 0 16px 34px rgba(184, 153, 93, 0.28);
}

.detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 68px);
  padding: clamp(28px, 5vw, 74px);
}

.detail img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-page {
  background: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  width: min(1480px, 100%);
  margin-inline: auto;
  padding: 20px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: #263f52;
}

.breadcrumbs b {
  color: var(--ink);
  font-weight: 700;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(480px, 680px) minmax(390px, 500px);
  gap: clamp(30px, 4vw, 62px);
  align-items: start;
  width: min(1320px, 100%);
  margin-inline: auto;
  padding: clamp(34px, 5vw, 70px) clamp(20px, 4vw, 56px) 28px;
}

.product-gallery {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 34px);
  min-height: clamp(460px, 34vw, 560px);
}

.thumb-rail {
  display: grid;
  align-content: start;
  gap: 12px;
}

.thumb {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: white;
  padding: 5px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.thumb.active,
.thumb:hover {
  border-color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(460px, 34vw, 560px);
  background:
    radial-gradient(circle at 50% 42%, rgba(184, 153, 93, 0.1), transparent 34%),
    linear-gradient(180deg, #fbfbfb, #f5f3ef);
  overflow: hidden;
}

.product-stage::after {
  content: "";
  position: absolute;
  inset: auto 14% 9% 14%;
  height: 16px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
  filter: blur(14px);
}

.product-stage img {
  position: relative;
  z-index: 1;
  width: min(54%, 360px);
  max-height: 68%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, 0.14));
  animation: productFloat 5.2s ease-in-out infinite;
}

.product-stage img.image-swap {
  animation: imageSwap 260ms ease both, productFloat 5.2s ease-in-out 260ms infinite;
}

@keyframes imageSwap {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes productFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.delivery-pill {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  border-radius: 999px;
  background: #050505;
  color: white;
  font-size: 13px;
  font-weight: 900;
  padding: 0 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.delivery-pill.mini {
  top: 8px;
  right: auto;
  left: 0;
  min-height: 28px;
  font-size: 12px;
  padding: 0 11px;
}

.purchase-card {
  position: sticky;
  top: 128px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 241, 0.92));
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 28px 80px rgba(22, 21, 20, 0.12);
}

.purchase-card h1 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.08;
  text-transform: uppercase;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 14px 0;
  color: var(--muted);
  font-size: 12px;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: #a9a9a9;
}

.stars-button {
  border: 0;
  background: transparent;
  padding: 0;
}

.stars svg {
  width: 20px;
  height: 20px;
  fill: transparent;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.stars svg.filled {
  color: #b88932;
  fill: currentColor;
  stroke: currentColor;
}

.text-link,
.sample-link {
  border: 0;
  background: transparent;
  color: #111;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.detail-price {
  margin: 8px 0 18px;
  font-size: 34px;
  font-weight: 900;
}

.sample-intro {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  padding-top: 18px;
}

.sample-intro h2,
.delivery-box h2 {
  margin: 0 0 8px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.sample-intro p,
.assurance-list p,
.delivery-box span {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.sample-size-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 18px 0 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-size-picker {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.detail-size-pill {
  display: grid;
  gap: 2px;
  min-height: 54px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 8px 6px;
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.detail-size-pill b {
  font-size: 13px;
}

.detail-size-pill span {
  color: var(--muted);
  font-size: 12px;
}

.detail-size-pill.active,
.detail-size-pill:not(.unavailable):hover {
  border-color: #111;
  background: #111;
  color: white;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.detail-size-pill.active span,
.detail-size-pill:not(.unavailable):hover span {
  color: rgba(255, 255, 255, 0.72);
}

.detail-size-pill.unavailable {
  cursor: not-allowed;
  border-color: rgba(17, 17, 17, 0.08);
  background: #eeeeee;
  color: rgba(17, 17, 17, 0.34);
  box-shadow: none;
  opacity: 0.72;
  transform: none;
}

.detail-size-pill.unavailable span {
  color: rgba(17, 17, 17, 0.28);
}

.assurance-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 14px;
}

.assurance-list div {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 12px;
}

.assurance-list b {
  display: block;
  color: #b88932;
  font-size: 13px;
  text-transform: uppercase;
}

.sample-link {
  width: 100%;
  margin: 4px 0 20px;
  text-transform: uppercase;
  font-size: 12px;
}

.detail-actions .detail-add {
  min-height: 54px;
  flex: 1 1 auto;
  border-radius: 10px;
  text-transform: uppercase;
}

.detail-wish {
  width: 54px;
  height: 54px;
}

.purchase-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.purchase-badges div {
  display: grid;
  gap: 4px;
  align-content: start;
  min-height: 72px;
}

.purchase-badges b {
  font-size: 18px;
}

.purchase-badges .badge-star {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.purchase-badges .badge-star::after {
  content: "4.9";
  font-size: 18px;
}

.purchase-badges .badge-star svg {
  width: 18px;
  height: 18px;
  fill: #b88932;
  stroke: #b88932;
  stroke-width: 1.7;
}

.purchase-badges span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.delivery-box {
  margin-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
  padding-top: 16px;
}

.delivery-box div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 12px;
  padding: 12px 0;
  border-bottom: 1px dotted rgba(17, 17, 17, 0.28);
}

.delivery-box b {
  font-size: 12px;
  text-transform: uppercase;
}

.delivery-box span {
  grid-column: 1;
}

.delivery-box strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: end;
  font-size: 12px;
}

.product-tabs-section {
  width: min(1480px, 100%);
  margin-inline: auto;
  padding: 22px clamp(20px, 4vw, 56px) 50px;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.product-tabs button {
  min-width: 122px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 900;
  padding: 18px 14px 14px;
  transition: color 160ms ease, border-color 160ms ease;
}

.product-tabs button.active,
.product-tabs button:hover {
  color: #000;
  border-color: #111;
}

.tab-panel {
  display: none;
  max-width: 1100px;
  padding: 28px 0 0;
  animation: tabIn 260ms ease both;
}

.tab-panel.active {
  display: block;
}

@keyframes tabIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel h3 {
  margin: 28px 0 12px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 17px;
}

.tab-panel p {
  color: #111;
  font-size: 14px;
  line-height: 1.75;
}

.spec-lines {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.spec-lines p {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 60px;
}

.property-line {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.property-line::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: center;
  border-bottom: 1px dotted rgba(17, 17, 17, 0.28);
}

.property-line span,
.property-line b {
  position: relative;
  z-index: 1;
  background: white;
}

.property-line span {
  color: var(--muted);
  padding-right: 8px;
}

.property-line b {
  justify-self: end;
  padding-left: 8px;
}

.reviews-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: center;
  min-height: 210px;
}

.reviews-panel.active {
  display: grid;
}

.reviews-panel > p {
  color: #b8b8b8;
  text-align: center;
}

.reviews-list {
  display: grid;
  gap: 14px;
}

.empty-review {
  margin: 0;
  color: #b8b8b8;
  text-align: center;
}

.review-item {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  padding: 0 0 16px;
}

.review-item div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
}

.review-item strong {
  font-size: 15px;
}

.review-item .stars svg {
  width: 16px;
  height: 16px;
}

.review-item p {
  margin: 0;
  line-height: 1.65;
}

.review-card {
  border-radius: 18px;
  background: #f6f6f6;
  padding: 28px;
  text-align: center;
}

.review-card h3 {
  margin-top: 0;
  font-size: 24px;
}

.sample-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow-y: auto;
  background: rgba(17, 17, 17, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, background 220ms ease;
}

.sample-modal.open {
  opacity: 1;
  pointer-events: auto;
  background: rgba(17, 17, 17, 0.38);
}

.sample-modal-panel {
  position: relative;
  width: min(520px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow-y: auto;
  overscroll-behavior: contain;
  border-radius: 18px;
  background: white;
  padding: 30px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  transform: translateY(18px) scale(0.98);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sample-modal.open .sample-modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: #f2f2f2;
  font-size: 24px;
}

.sample-modal-panel h2,
.sample-modal-panel h3 {
  margin: 0 0 12px;
  font-family: Manrope, Arial, sans-serif;
}

.sample-modal-panel p {
  color: #222;
  line-height: 1.45;
}

.review-modal .sample-modal-panel {
  width: min(560px, 100%);
}

.review-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.review-form input,
.review-form textarea,
.review-form select {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
  transition: border-color 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.review-form input:focus,
.review-form textarea:focus,
.review-form select:focus {
  border-color: #111;
  background: white;
  box-shadow: 0 0 0 4px rgba(184, 153, 93, 0.14);
}

.review-rating-field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-login-page {
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
}

.admin-login-card {
  display: grid;
  gap: 14px;
  width: min(440px, 100%);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: #fff;
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 28px 80px rgba(22, 21, 20, 0.12);
}

.admin-login-card h1 {
  margin: 0;
}

.admin-login-card p {
  margin: 0;
  color: var(--muted);
}

.admin-login-card input,
.admin-price-grid input {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.admin-mode .admin-editable {
  border-radius: 7px;
  outline: 1px dashed rgba(184, 153, 93, 0.38);
  outline-offset: 4px;
  transition: background 160ms ease, outline-color 160ms ease, box-shadow 160ms ease;
}

.admin-mode .admin-editable:hover,
.admin-mode .admin-editable:focus {
  background: rgba(255, 248, 226, 0.54);
  outline-color: #b8995d;
  box-shadow: 0 0 0 5px rgba(184, 153, 93, 0.12);
}

.admin-mode .admin-editable.dirty {
  outline-color: #c8193c;
}

.admin-save-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 85;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.admin-save-floating small {
  color: var(--muted);
}

.admin-save-floating small:empty {
  display: none;
}

.admin-save-icon,
.admin-cancel-button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.admin-save-icon {
  background: #111;
  color: white;
  border-color: #111;
}

.admin-save-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.admin-save-icon:hover {
  background: #2b2b2b;
  transform: translateY(-1px);
}

.admin-cancel-button:hover {
  background: #f4f1eb;
  transform: rotate(90deg);
}

.admin-product-panel {
  width: min(1480px, calc(100% - 40px));
  margin: 26px auto 44px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, #fbf7ee);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 24px 70px rgba(22, 21, 20, 0.1);
}

.admin-product-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.admin-product-panel h2 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: 20px;
}

.admin-toggle {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 900;
}

.admin-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.admin-toggle span {
  position: relative;
  width: 48px;
  height: 28px;
  border-radius: 999px;
  background: #d8d5cd;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.12);
  transition: background 180ms ease;
}

.admin-toggle span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease;
}

.admin-toggle input:checked + span {
  background: #111;
}

.admin-toggle input:checked + span::after {
  transform: translateX(20px);
}

.admin-price-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.admin-price-grid label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  padding: 12px;
}

.admin-price-grid input[type="number"] {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: white;
  padding: 0 10px;
}

.admin-size-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
}

.admin-size-availability input {
  width: 18px;
  height: 18px;
  accent-color: #111;
}

.admin-size-availability i {
  color: #111;
  font-style: normal;
  font-size: 12px;
}

.admin-images-panel {
  display: grid;
  gap: 14px;
  margin: 18px 0;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 16px;
}

.admin-images-panel h3 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.admin-image-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 10px;
}

.admin-image-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 12px;
  background: #f4f4f4;
}

.admin-image-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.admin-image-item button {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 20px;
}

.admin-image-item button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.admin-image-actions,
.admin-product-form {
  display: grid;
  gap: 12px;
}

.admin-image-actions {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.admin-image-actions input,
.admin-product-form input,
.admin-product-form textarea,
.admin-product-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  background: #fbfaf7;
  color: var(--ink);
  padding: 0 13px;
  outline: none;
}

.admin-product-form textarea {
  padding-top: 12px;
  resize: vertical;
}

.admin-file-button,
.admin-file-field {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.admin-file-button input,
.admin-file-field input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.admin-file-field {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px dashed rgba(17, 17, 17, 0.22);
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-product-create-panel {
  width: min(720px, 100%);
}

.danger-button {
  min-height: 46px;
  border: 1px solid rgba(200, 25, 60, 0.28);
  border-radius: 999px;
  background: #fff;
  color: #c8193c;
  font-size: 13px;
  font-weight: 900;
  padding: 0 18px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.danger-button:hover {
  background: #c8193c;
  color: #fff;
  transform: translateY(-1px);
}

.editable-blocks {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.editable-block {
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: #fff;
  padding: 20px;
}

.editable-block h2 {
  margin: 0 0 10px;
  font-family: Manrope, Arial, sans-serif;
  font-size: 20px;
}

.editable-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.admin-add-content {
  justify-self: start;
}

.related-section {
  overflow: hidden;
  padding: 44px clamp(20px, 4vw, 56px) 70px;
  background: #f7f7f7;
}

.related-section h2,
.related-carousel,
.service-strip {
  width: min(1480px, 100%);
}

.related-section h2 {
  margin: 0 auto 28px;
  color: #06101f;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  text-transform: uppercase;
}

.related-carousel {
  position: relative;
  margin-inline: auto;
}

.related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 15vw);
  gap: 28px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 4px 28px;
}

.related-track::-webkit-scrollbar {
  display: none;
}

.related-card {
  position: relative;
  display: grid;
  gap: 7px;
  align-content: start;
  min-height: 430px;
}

.related-card img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: contain;
  background: #fff;
  padding: 18px;
  transition: transform 300ms ease, filter 300ms ease;
}

.related-card:hover img {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.14));
}

.related-card small {
  justify-self: start;
  border-radius: 4px;
  background: #eee8e0;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.related-card b,
.related-card strong {
  font-size: 15px;
}

.related-card p {
  min-height: 40px;
  margin: 0;
  color: #444;
  font-size: 14px;
  line-height: 1.3;
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: 34%;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.12);
  font-size: 34px;
  line-height: 1;
}

.carousel-arrow[data-carousel-prev] {
  left: -22px;
}

.carousel-arrow[data-carousel-next] {
  right: -22px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin: 26px auto 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  padding-top: 26px;
}

.service-strip div {
  display: grid;
  justify-items: center;
  text-align: center;
}

.service-strip b {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: #050505;
  color: white;
}

.service-strip strong {
  margin-bottom: 4px;
}

.service-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.detail-copy h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 0.92;
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.72);
  padding: clamp(18px, 3vw, 28px);
}

.info-card h2,
.info-card h3 {
  margin: 0 0 10px;
  font-size: 34px;
}

.info-card p,
.info-card li {
  color: var(--muted);
  line-height: 1.7;
}

.info-card ul {
  padding-left: 18px;
}

.empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: var(--muted);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  background: rgba(22, 21, 20, 0);
  transition: background 180ms ease;
}

.cart-drawer.open {
  pointer-events: auto;
  background: rgba(22, 21, 20, 0.32);
}

.cart-panel {
  position: absolute;
  inset: 0 0 0 auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(500px, 100%);
  background: #fff;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.18);
  transform: translateX(104%);
  transition: transform 220ms ease;
}

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

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-head h2 {
  margin: 0;
  font-size: 40px;
}

.cart-items {
  overflow: auto;
  padding: 10px 24px;
}

.cart-line {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line img {
  width: 68px;
  height: 82px;
  object-fit: contain;
  border-radius: 8px;
  background: #f7f7f7;
}

.cart-line h3 {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.cart-line p {
  margin: 4px 0;
  color: var(--muted);
  font-size: 13px;
}

.quantity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
}

.quantity button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: white;
}

.remove-line {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
}

.cart-meter {
  border-top: 1px solid var(--line);
  padding: 18px 24px;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.meter-track {
  height: 8px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(22, 21, 20, 0.12);
}

.meter-track span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--forest));
}

.shipping-note {
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.checkout-form {
  display: grid;
  gap: 9px;
  padding: 0 24px 24px;
}

.compact-checkout .primary-button {
  min-height: 52px;
  border-radius: 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: clamp(18px, 3vw, 36px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.checkout-details,
.checkout-summary {
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 18px 55px rgba(22, 21, 20, 0.08);
}

.checkout-details {
  display: grid;
  gap: 18px;
  padding: clamp(16px, 2.4vw, 28px);
}

.checkout-summary {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 0;
  padding: clamp(16px, 2vw, 24px);
}

.checkout-summary h2,
.checkout-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-section {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.checkout-section:last-of-type {
  border-bottom: 0;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.checkout-field.full {
  grid-column: 1 / -1;
}

.checkout-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-details input,
.checkout-details select,
.checkout-details textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #fffdf9;
  color: var(--ink);
  padding: 0 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.checkout-details textarea {
  min-height: 104px;
  resize: vertical;
  padding-block: 14px;
}

.checkout-details input:focus,
.checkout-details select:focus,
.checkout-details textarea:focus {
  border-color: rgba(184, 153, 93, 0.78);
  box-shadow: 0 0 0 4px rgba(184, 153, 93, 0.14);
  background: #fff;
}

.delivery-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.delivery-choice {
  min-width: 0;
}

.delivery-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  opacity: 0;
  pointer-events: none;
}

.delivery-card {
  display: grid;
  min-height: 168px;
  gap: 8px;
  align-content: start;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  transition: transform 200ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.delivery-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #111;
  color: #fff;
}

.delivery-card svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.delivery-card b {
  font-size: 13px;
  line-height: 1.25;
}

.delivery-card em {
  min-height: 34px;
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.delivery-card strong {
  align-self: end;
  font-size: 14px;
}

.delivery-choice input:checked + .delivery-card {
  border-color: rgba(17, 17, 17, 0.9);
  background: #f8f1e5;
  box-shadow: 0 18px 34px rgba(22, 21, 20, 0.12);
  transform: translateY(-2px);
}

.checkout-details textarea,
.checkout-details .primary-button,
.checkout-details .form-status {
  grid-column: 1 / -1;
}

.checkout-line,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.checkout-line {
  align-items: center;
}

.checkout-line img {
  width: 64px;
  height: 74px;
  flex: 0 0 auto;
  object-fit: contain;
  background: #f4f1eb;
  border-radius: 8px;
}

.checkout-line span {
  display: grid;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.checkout-line strong,
.checkout-line small,
.checkout-line em {
  overflow-wrap: anywhere;
}

.checkout-line strong {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.checkout-line small,
.checkout-line em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
}

.checkout-line b {
  white-space: nowrap;
}

.checkout-total {
  border-bottom: 0;
  font-size: 18px;
}

.checkout-total.muted {
  color: var(--muted);
  font-size: 14px;
}

.checkout-total.grand {
  margin-top: 4px;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  padding-top: 18px;
  font-size: 20px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(20px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 1120px) {
  .header-top {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    justify-items: center;
    text-align: center;
  }

  .header-actions {
    justify-self: end;
    justify-content: flex-end;
  }

  .catalog-layout,
  .detail,
  .product-detail-shell,
  .checkout-layout,
  .request-feature {
    grid-template-columns: 1fr;
  }

  .purchase-card {
    position: static;
  }

  .checkout-summary {
    position: static;
  }

  .product-gallery {
    min-height: auto;
  }

  .product-stage {
    min-height: 520px;
  }

  .home-mosaic {
    min-height: auto;
  }

  .mosaic-tile {
    min-height: 520px;
  }

  .filters {
    position: static;
  }

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

@media (max-width: 720px) {
  .header-top {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 92px;
    min-height: 68px;
    padding: 8px 12px;
    gap: 8px;
  }

  .header-top .brand {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    justify-self: center;
  }

  .brand-name {
    font-size: clamp(30px, 9vw, 36px);
  }

  .brand-rule {
    font-size: 13px;
  }

  .brand,
  .mobile-header-actions {
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .burger-button {
    display: block;
    justify-self: start;
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 6;
  }

  .main-nav {
    display: none;
  }

  .mobile-header-actions {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
    justify-self: end;
  }

  .mobile-header-actions .icon-button {
    width: 38px;
    height: 38px;
  }

  .mobile-nav-search-form {
    grid-column: 2 / 4;
    grid-row: 1;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px 40px;
    align-items: center;
    min-height: 46px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: #111;
    opacity: 0;
    pointer-events: none;
    transform: translateX(12px);
    transition: opacity 210ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-nav-search-form input {
    min-width: 0;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    padding: 0 16px;
    outline: none;
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-nav-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.58);
  }

  .mobile-nav-search-form button {
    display: grid;
    place-items: center;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
  }

  .mobile-nav-search-form svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .site-header.mobile-search-open .brand,
  .site-header.mobile-search-open .mobile-header-actions {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
  }

  .site-header.mobile-search-open .mobile-nav-search-form {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    z-index: 19;
    display: grid;
    gap: 0;
    padding: 8px 16px 18px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 200ms ease;
  }

  .mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu > a,
  .mobile-menu > span {
    display: flex;
    align-items: center;
    min-height: 48px;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    color: #111;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .header-actions {
    display: none;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .language-switch {
    display: none;
  }

  .mobile-menu-tools {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 14px;
  }

  .mobile-menu-tools a,
  .mobile-menu-tools button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    background: #f7f4ee;
    color: #111;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-menu-tools svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .mobile-social-links {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 4px 0;
  }

  .mobile-menu-tools .mobile-social-links a {
    width: 46px;
    min-height: 46px;
    padding: 0;
    border-radius: 999px;
    background: #fff;
  }

  .mobile-menu-tools .mobile-social-links svg {
    width: 19px;
    height: 19px;
  }

  .mobile-language-switch {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    background: #fff;
    padding: 3px;
  }

  .mobile-language-switch button {
    min-height: 38px;
    border: 0;
    background: transparent;
  }

  .mobile-language-switch button.active {
    background: #111;
    color: white;
  }

  .home-mosaic {
    grid-template-columns: 1fr;
  }

  .mosaic-tile {
    min-height: 420px;
  }

  .mosaic-tile span {
    margin-bottom: 28px;
  }

  .section-head {
    display: grid;
  }

  .request-box form {
    grid-template-columns: 1fr;
  }

  .benefits,
  .info-grid,
  .property-grid,
  .reviews-panel.active,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .featured-grid,
  #wishlistGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  .product-image-link {
    aspect-ratio: 1 / 1.06;
  }

  .product-image {
    padding: 14px;
  }

  .product-info {
    gap: 4px;
    padding-top: 10px;
  }

  .product-title-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-brand,
  .product-price {
    font-size: 11px;
  }

  .product-name {
    font-size: 13px;
    line-height: 1.22;
  }

  .product-notes,
  .product-volume-line {
    font-size: 11px;
  }

  .product-detail-shell {
    padding-inline: 14px;
  }

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

  .thumb-rail {
    grid-template-columns: repeat(2, 58px);
    grid-auto-flow: column;
  }

  .product-stage {
    min-height: 390px;
  }

  .detail-size-picker {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-image-actions {
    grid-template-columns: 1fr;
  }

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

  .admin-save-floating {
    left: auto;
    right: 12px;
    bottom: 12px;
    gap: 8px;
    justify-content: center;
  }

  .admin-product-panel {
    width: calc(100% - 24px);
    margin-top: 18px;
    padding: 16px;
  }

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

  .admin-product-panel h2 {
    font-size: 16px;
    line-height: 1.25;
  }

  .admin-stock-toggle {
    justify-content: space-between;
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    padding: 10px 12px;
  }

  .admin-stock-toggle b {
    font-size: 12px;
  }

  .admin-size-availability {
    justify-content: space-between;
  }

  .admin-size-availability i {
    font-size: 11px;
  }

  .sample-modal {
    align-items: start;
    padding: 12px;
  }

  .sample-modal-panel {
    max-height: calc(100dvh - 24px);
    padding: 24px 18px;
    border-radius: 14px;
  }

  .related-section h2 {
    text-align: center;
  }

  .purchase-badges {
    grid-template-columns: 1fr;
  }

  .product-tabs button {
    min-width: 50%;
  }

  .related-track {
    grid-auto-columns: minmax(210px, 74vw);
  }

  .carousel-arrow {
    display: none;
  }

  .catalog-tools {
    display: grid;
  }

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

  .checkout-page {
    padding-inline: 14px;
  }

  .checkout-layout {
    gap: 16px;
    width: 100%;
  }

  .checkout-details,
  .checkout-summary {
    width: 100%;
    min-width: 0;
    padding: 16px;
  }

  .checkout-fields,
  .delivery-choice-grid {
    grid-template-columns: 1fr;
  }

  .checkout-section {
    gap: 12px;
    padding-bottom: 16px;
  }

  .checkout-section h2,
  .checkout-summary h2 {
    font-size: 13px;
  }

  .delivery-card {
    min-height: auto;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px 12px;
    padding: 12px;
  }

  .delivery-card i {
    grid-row: 1 / 3;
  }

  .delivery-card em {
    min-height: 0;
  }

  .delivery-card strong {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    white-space: nowrap;
  }

  .checkout-details .primary-button {
    min-height: 56px;
    font-size: 15px;
  }

  .checkout-line {
    gap: 10px;
  }

  .checkout-line img {
    width: 54px;
    height: 64px;
  }

  .checkout-total.grand {
    font-size: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}
