:root {
  --font-display: "Outfit", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
  --bg: #fff8f8;
  --bg-soft: #fff1f3;
  --bg-tint: #ffe3e8;
  --panel: #ffffff;
  --panel-soft: #fff6f7;
  --line: rgba(223, 90, 111, 0.18);
  --text: #4f1720;
  --muted: #86505a;
  --accent: #f45d72;
  --accent-strong: #df4d65;
  --accent-soft: #ffb8c2;
  --shadow: 0 18px 48px rgba(223, 90, 111, 0.12);
  --radius: 26px;
  --radius-lg: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 184, 194, 0.35), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 215, 220, 0.4), transparent 20%),
    linear-gradient(180deg, #fffefe 0%, var(--bg-soft) 48%, var(--bg-tint) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(244, 93, 114, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 93, 114, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent 85%);
}

.promo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px 16px;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  text-align: center;
}

.promo-message {
  position: relative;
  width: fit-content;
  min-width: min(540px, calc(100vw - 92px));
  min-height: 24px;
  margin: 0 2px;
}

.promo-bar p {
  margin: 0;
}

.promo-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 250ms ease;
  text-decoration: underline;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

.promo-item.active {
  opacity: 1;
}

.promo-arrow {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
  flex: 0 0 auto;
}

.promo-arrow:hover {
  background: rgba(255, 255, 255, 0.28);
}

.page-shell {
  width: min(1380px, calc(100% - 24px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px 28px;
  padding: 22px 0 18px;
  text-align: left;
}

.review-page {
  min-height: 100vh;
}

.review-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.review-main {
  width: min(100%, 760px);
}

.review-feedback-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(214, 84, 111, 0.16);
  border-radius: 40px;
  box-shadow: 0 24px 60px rgba(88, 20, 36, 0.08);
  padding: 36px;
  display: grid;
  gap: 24px;
}

.review-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

.review-copy h1 {
  margin: 0 0 10px;
}

.review-copy p {
  margin: 0;
  color: var(--text-soft, #8b5b65);
}

.review-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d64d69;
  margin-bottom: 10px;
}

.review-rating-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.review-rating-star {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  border: 1px solid rgba(214, 84, 111, 0.2);
  background: #fff7f8;
  color: #d7a8b0;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.review-rating-star:hover,
.review-rating-star:focus-visible,
.review-rating-star.active {
  transform: translateY(-2px);
  background: #fff0f2;
  border-color: rgba(214, 84, 111, 0.5);
  color: #f3b341;
}

.review-hint {
  margin: -8px 0 0;
  color: var(--text-soft, #8b5b65);
  font-weight: 600;
}

.review-form {
  display: grid;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(214, 84, 111, 0.12);
}

.review-feedback-actions {
  display: flex;
  justify-content: center;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  justify-content: flex-start;
  align-self: center;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.button,
button,
input,
textarea,
select,
.site-nav a,
.hero-text,
.info-card p,
.media-copy p,
.news-card p,
.site-footer p,
.site-footer a {
  font-family: var(--font-body);
}

.brand,
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}

.eyebrow,
.card-label,
.review-person h3,
.site-footer h3,
.site-footer h4,
.form-field span {
  font-family: var(--font-display);
}

.brand {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}

.eyebrow,
.card-label {
  margin: 0;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 600;
}

.site-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  justify-content: center;
  grid-column: 1 / -1;
}

.site-search-wrap {
  width: 100%;
  max-width: 820px;
  justify-self: stretch;
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 0;
  align-items: center;
  width: 100%;
}

.site-search-input {
  width: 100%;
  min-height: 68px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  color: var(--text);
  font-size: 1.08rem;
}

.site-search-input::placeholder {
  color: var(--muted);
}

.site-search-button {
  min-height: 68px;
  min-width: 72px;
  padding: 0;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: var(--shadow);
  color: #fff;
  cursor: pointer;
}

.site-search-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-search-button:hover {
  background: linear-gradient(135deg, #cc425b, var(--accent-strong));
}

.site-search-button:focus-visible,
.site-search-input:focus-visible {
  outline: 2px solid rgba(223, 77, 101, 0.42);
  outline-offset: 2px;
  position: relative;
  z-index: 1;
}

.mobile-menu-toggle,
.mobile-nav-shell {
  display: none;
}

.mobile-menu-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-nav-shell {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(33, 10, 16, 0.42);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  left: 0;
  width: min(360px, 88vw);
  height: 100%;
  padding: 18px 16px 24px;
  background: #fff;
  box-shadow: 18px 0 48px rgba(79, 23, 32, 0.18);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  overflow: hidden;
}

.mobile-nav-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav-head h2 {
  margin: 4px 0 0;
  font-size: 1.5rem;
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff4f6;
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-content {
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 2px;
}

.mobile-nav-groups {
  display: grid;
  gap: 0;
}

.mobile-nav-section {
  display: grid;
  gap: 10px;
}

.mobile-nav-section + .mobile-nav-section {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(90, 27, 38, 0.08);
}

.mobile-nav-section-title {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav-list {
  display: grid;
  gap: 8px;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.mobile-nav-list > a,
.mobile-nav-list .nav-dropdown-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  min-height: 52px;
  padding: 14px 16px;
  border: 0;
  border-radius: 18px;
  background: #fff6f7;
  color: var(--text);
  line-height: 1.15;
  text-decoration: none;
}

.mobile-nav-list > a.active,
.mobile-nav-list > a:hover,
.mobile-nav-list .nav-dropdown.is-active > .nav-dropdown-toggle,
.mobile-nav-list .nav-dropdown.is-open > .nav-dropdown-toggle {
  background: linear-gradient(135deg, rgba(244, 93, 114, 0.16), rgba(223, 77, 101, 0.2));
  color: var(--accent-strong);
}

.mobile-nav-list .nav-dropdown {
  width: 100%;
}

.mobile-nav-list .nav-dropdown-menu {
  position: static;
  width: 100%;
  min-width: 0;
  margin-top: 8px;
  transform: none;
  opacity: 0;
  visibility: hidden;
  display: none;
  padding: 8px;
  border-radius: 20px;
  box-shadow: none;
  background: #fffafb;
  overflow: visible;
}

.mobile-nav-list .nav-dropdown.is-open .nav-dropdown-menu {
  display: grid;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list .nav-dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-radius: 14px;
  line-height: 1.15;
  text-decoration: none;
}

.mobile-nav-list .nav-submenu {
  display: grid;
  gap: 4px;
  position: static;
  width: 100%;
  min-width: 0;
}

.mobile-nav-list .nav-submenu-panel {
  position: static;
  left: auto;
  top: auto;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 6px 0 0;
  padding: 6px 0 6px 12px;
  border: 0;
  border-left: 2px solid rgba(244, 93, 114, 0.16);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  visibility: visible;
  transform: none;
  display: grid;
  gap: 4px;
}

.mobile-nav-list .nav-submenu-panel .nav-submenu-panel {
  margin-left: 8px;
  width: calc(100% - 8px);
}

.mobile-nav-list .nav-dropdown-menu a,
.mobile-nav-list .nav-submenu-trigger {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mobile-nav-open {
  overflow: hidden;
}

.shop-filters-open {
  overflow: hidden;
}

.mobile-nav-open .mobile-nav-shell {
  display: block;
  pointer-events: auto;
}

.mobile-nav-open .mobile-nav-overlay {
  opacity: 1;
}

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

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #fff;
}

.site-nav a.active {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.nav-label-mobile {
  display: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
}

.nav-dropdown.is-open .nav-dropdown-toggle,
.nav-dropdown.is-active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #fff;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 20;
  min-width: 240px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--text);
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-dropdown-menu a.active,
.nav-dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(244, 93, 114, 0.14), rgba(223, 77, 101, 0.2));
  color: var(--accent-strong);
}

.nav-dropdown-section {
  display: grid;
  gap: 4px;
}

.nav-dropdown-section + .nav-dropdown-section {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.nav-dropdown-parent {
  font-weight: 700;
}

.nav-dropdown-parent.active,
.nav-dropdown-parent:hover {
  color: var(--accent-strong);
}

.nav-submenu {
  position: relative;
}

.nav-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.nav-submenu-panel {
  position: absolute;
  top: -10px;
  left: calc(100% + 10px);
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(10px, 0);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  z-index: 30;
}

.nav-submenu:hover > .nav-submenu-panel,
.nav-submenu:focus-within > .nav-submenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

main {
  position: relative;
  z-index: 1;
}

.hero-shell,
.shop-section,
.services-section,
.media-section,
.news-section {
  padding: 16px 0 22px;
}

.hero-slider,
.category-card,
.product-card,
.promo-tile,
.info-card,
.media-card,
.news-card,
.site-footer {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-slider {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.slideshow-frame {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 28px;
  background: #f7d9df;
}

.slide-track {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms ease;
}

.slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(79, 23, 32, 0.62), rgba(79, 23, 32, 0.18) 45%, transparent 70%);
}

.slide-copy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(100% - 220px, 720px);
  color: #fff;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.slide-copy .card-label {
  color: #ffe4e8;
}

h1 {
  margin: 12px 0 16px;
  font-size: clamp(2.4rem, 4.8vw, 4.4rem);
  line-height: 0.93;
  font-weight: 600;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 600;
}

h3 {
  margin: 10px 0;
  font-size: 1.3rem;
  font-weight: 500;
}

h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
}

.hero-text,
.info-card p,
.product-card p,
.media-copy p,
.news-card p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.slide-copy .hero-text {
  color: #fff1f3;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  justify-content: center;
}

.info-hero {
  width: min(920px, 100%);
  margin: 0 auto 28px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(244, 93, 114, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 244, 246, 0.94));
  box-shadow: var(--shadow);
  text-align: center;
}

.info-hero h1 {
  margin: 0;
}

.info-hero .hero-text {
  max-width: 680px;
  margin: 16px auto 0;
}

.single-cards-placeholder {
  cursor: default;
  opacity: 0.84;
}

.single-cards-placeholder:hover {
  transform: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #e25369, #b93449);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.slide-button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #234954;
  cursor: pointer;
  font-size: 1.05rem;
  z-index: 2;
}

.slide-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(79, 23, 32, 0.18);
  z-index: 3;
}

.slide-count {
  min-width: 46px;
  text-align: center;
  color: #234954;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
}

.slide-count-current,
.slide-count-total {
  display: inline-block;
  min-width: 1.2em;
}

.popular-card h3 {
  margin-bottom: 10px;
}

.popular-card h3 a {
  color: inherit;
  text-decoration: none;
}

.popular-card h3 a:hover {
  color: var(--accent-strong);
}

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

.gallery-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.gallery-card-wide {
  grid-column: span 2;
}

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

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31, 12, 18, 0.05), rgba(31, 12, 18, 0.72));
}

.gallery-card-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 14px;
  color: #fff;
  z-index: 1;
}

.gallery-card-copy .eyebrow {
  color: rgba(255, 240, 244, 0.92);
}

.gallery-card-copy h3 {
  margin: 6px 0 0;
  font-size: 1.02rem;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.42);
}

.error-hero {
  max-width: 760px;
  padding-top: 46px;
  padding-bottom: 56px;
}

.error-actions {
  justify-content: center;
}

.category-row,
.product-grid,
.content-grid,
.news-grid,
.media-grid,
.stack-grid,
.promo-grid {
  display: grid;
  gap: 18px;
}

.category-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-card {
  display: block;
  padding: 24px;
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
}

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

.section-head-centered {
  justify-content: center;
  text-align: center;
}

.section-head-centered > div {
  text-align: center;
}

.section-link,
.inline-link {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 600;
}

.location-link {
  color: inherit;
  text-decoration: none;
}

.location-link:hover,
.site-footer a:hover,
.section-link:hover,
.inline-link:hover {
  color: var(--accent-strong);
}

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

.product-card,
.info-card,
.news-card {
  padding: 24px;
  border-radius: var(--radius);
}

.product-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  margin-bottom: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff8e9e, #f45d72);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.product-thumb-soft {
  background: linear-gradient(135deg, #ffc2cb, #ff8393);
}

.product-meta,
.news-date {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 600;
}

.promo-grid {
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 10px 0 18px;
}

.promo-tile {
  display: block;
  min-height: 220px;
  padding: 26px;
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff, #fff4f6);
}

.promo-large {
  background: linear-gradient(135deg, #fff0f3, #ffd5dc);
}

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

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

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

.carry-card {
  position: relative;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 118px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #ffffff, #fff4f6);
}

.carry-card h3 {
  margin: 0;
  color: var(--text);
  text-shadow: none;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.shop-drop-card {
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.shop-drop-card::before {
  transition: transform 260ms ease, filter 260ms ease;
}

.shop-drop-card:hover,
.shop-drop-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: 0 20px 44px rgba(79, 23, 32, 0.18);
}

.shop-drop-card:hover::before,
.shop-drop-card:focus-visible::before {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.shop-drop-card:focus-visible {
  outline: 3px solid rgba(244, 93, 114, 0.42);
  outline-offset: 3px;
}

.shop-drop-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(31, 12, 18, 0.16);
}

.shop-drop-label::after {
  content: "\2192";
  font-size: 0.85rem;
  letter-spacing: 0;
}

.carry-pokemon::after,
.carry-sports::after,
.carry-magic::after,
.carry-other-tcgs::after,
.carry-lorcana::after,
.carry-blind-boxes::after,
.carry-single-cards::after,
.carry-plushies::after,
.carry-supplies::after,
.carry-graded-cards::after,
.carry-legos::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 8, 15, 0.18), rgba(26, 8, 15, 0.62));
  z-index: 0;
}

.carry-pokemon,
.carry-lorcana,
.carry-blind-boxes,
.carry-single-cards {
  background: transparent;
}

.carry-lorcana h3,
.carry-blind-boxes h3,
.carry-single-cards h3,
.carry-pokemon h3,
.carry-sports h3,
.carry-magic h3,
.carry-other-tcgs h3,
.carry-plushies h3,
.carry-supplies h3,
.carry-graded-cards h3,
.carry-legos h3 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.64);
}

.carry-pokemon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-pokemon-640.jpg") 1x,
    url("carry-pokemon-1200.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-lorcana::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-sealed-640.jpg") 1x,
    url("carry-sealed-1200.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-blind-boxes::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-plushies-640.jpg") 1x,
    url("carry-plushies.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-single-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-slabs-640.jpg") 1x,
    url("carry-slabs-1200.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-sports {
  background: transparent;
}

.carry-sports h3 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.64);
}

.carry-sports::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-sports-640.jpg") 1x,
    url("carry-sports.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-magic {
  background: transparent;
}

.carry-magic h3 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.64);
}

.carry-magic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-magic-640.jpg") 1x,
    url("carry-magic.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-plushies {
  background: transparent;
}

.carry-plushies h3 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.64);
}

.carry-plushies::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-plushies-640.jpg") 1x,
    url("carry-plushies.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-supplies {
  background: transparent;
}

.carry-supplies h3 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.64);
}

.carry-supplies::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-sleeves-640.jpg") 1x,
    url("carry-sleeves.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-other-tcgs {
  background: transparent;
}

.carry-other-tcgs h3 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.64);
}

.carry-other-tcgs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-sealed-640.jpg") 1x,
    url("carry-sealed-1200.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-graded-cards {
  background: transparent;
}

.carry-graded-cards h3 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.64);
}

.carry-graded-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-slabs-640.jpg") 1x,
    url("carry-slabs-1200.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.carry-legos {
  background: transparent;
}

.carry-legos h3 {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.64);
}

.carry-legos::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: image-set(
    url("carry-sealed-640.jpg") 1x,
    url("carry-sealed-1200.jpg") 2x
  );
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.hours-note {
  margin-top: 10px !important;
  font-size: 0.88rem;
  line-height: 1.5 !important;
}

.location-detail {
  margin-top: 8px !important;
  color: var(--accent-strong) !important;
  font-size: 0.9rem;
  font-weight: 500;
}

.hours-list {
  margin: 2px 0 14px;
}

.hours-list p {
  margin: 0 0 4px;
}

.follow-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 28px;
  margin-top: 8px;
  background: linear-gradient(135deg, #fff4f6, #ffd6de);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.follow-strip-copy h2 {
  margin-top: 6px;
}

.follow-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promise-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 8px 0 14px;
}

.promise-pill {
  padding: 20px 22px;
  background: linear-gradient(180deg, #ffffff, #fff4f6);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.promise-pill h3 {
  margin: 8px 0 0;
  font-size: 1.08rem;
}

.social-button {
  gap: 10px;
}

.social-button img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

.map-grid {
  align-items: start;
}

.map-embed-shell {
  margin: 14px 0 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius);
}

.review-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 22px;
}

.media-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.media-copy {
  padding: 16px;
}

.review-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 16px 0;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1d48c, #bd8242);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.82rem;
}

.review-profile .review-avatar-image {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.9);
  display: block;
}

.review-person h3 {
  margin: 4px 0 0;
  text-align: left;
}

.review-stars {
  margin: 0 0 10px;
  color: #fbbc04 !important;
  font-size: 1.16rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.review-inline-photo {
  width: 100%;
  min-height: 148px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.review-card .media-copy {
  text-align: center;
}

.review-card .media-copy .eyebrow,
.review-card .media-copy p,
.review-card .media-copy h3,
.review-card .media-copy .inline-link {
  text-align: center;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.news-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 16px);
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.review-card {
  min-width: 0;
}

.review-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-strong);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.55rem;
}

.news-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 12px);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

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

.news-arrow {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--accent-strong);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.8rem;
}

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

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

.page-hero {
  padding: 18px 0 28px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.inner-page {
  padding-top: 20px;
}

.form-section {
  padding-bottom: 24px;
}

.collection-form {
  max-width: 920px;
  margin: 0 auto;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.form-field {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
}

.form-choices {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.form-field span {
  font-family: var(--font-display);
  font-size: 1rem;
}

.form-choices legend {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-soft);
  color: var(--text);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-soft);
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-pill span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

.choice-pill:has(input:checked) {
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  border-color: rgba(223, 90, 111, 0.3);
  color: #fff;
  box-shadow: 0 10px 24px rgba(223, 90, 111, 0.16);
}

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

.form-submit {
  margin-top: 20px;
}

.form-helper,
.form-status {
  margin-top: 14px;
  text-align: center;
  font-size: 0.95rem;
}

.form-helper {
  color: var(--muted);
}

.form-status {
  min-height: 24px;
  color: var(--accent-strong);
  font-weight: 500;
}

.form-status.is-error {
  color: #a43246;
}

.form-status.is-success {
  color: #267b55;
}

.site-footer {
  margin-top: 34px;
  padding: 30px;
  border-radius: var(--radius-lg);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.footer-brand-logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand-text h3 {
  margin: 0;
}

.site-footer a.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  margin-bottom: 0;
  vertical-align: middle;
}

.site-footer a.social-link img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
  display: block;
}

.social-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  flex: 0 0 18px;
  line-height: 1;
  transform: translateY(-1px);
  overflow: hidden;
}

.social-icon.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
}

.social-icon svg {
  width: 13px;
  height: 13px;
}

.social-icon svg rect,
.social-icon svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 22px;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.compact-footer .footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-support-block {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.footer-support-block h4,
.footer-support-copy,
.footer-support-note {
  margin: 0;
}

.footer-support-copy {
  color: var(--muted);
}

.footer-support-note {
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.newsletter-signup-section {
  margin-top: 30px;
}

.newsletter-signup-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 241, 244, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.newsletter-signup-copy,
.newsletter-signup-form-wrap {
  display: grid;
  gap: 12px;
  align-content: start;
}

.newsletter-signup-copy h2,
.newsletter-signup-copy p,
.newsletter-signup-form-wrap p,
.newsletter-status {
  margin: 0;
}

.newsletter-signup-form {
  display: grid;
  gap: 12px;
}

.newsletter-signup-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 12px;
}

.newsletter-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 600;
}

.newsletter-status.is-success {
  color: #1c7747;
}

.newsletter-status.is-error {
  color: var(--accent-strong);
}

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

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

@media (max-width: 1080px) {
  .category-row,
  .product-grid,
  .content-grid,
  .carry-grid,
  .media-grid,
  .news-grid,
  .promo-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-large {
    grid-column: span 2;
  }

}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    border-radius: 24px;
    gap: 8px;
    padding: 10px;
    flex-wrap: wrap;
    overflow: visible;
  }

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

  .site-nav a {
    flex: 0 0 auto;
    text-align: center;
    min-height: 46px;
    white-space: nowrap;
    padding: 10px 12px;
  }

  .nav-label-desktop {
    display: none;
  }

  .nav-label-mobile {
    display: inline;
  }

  .nav-dropdown {
    width: auto;
    flex: 0 0 auto;
  }

  .nav-dropdown-toggle {
    width: auto;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: absolute;
    left: 50%;
    min-width: min(280px, calc(100vw - 40px));
    margin-top: 8px;
    transform: translate(-50%, 10px);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
  }

  .nav-dropdown.is-open .nav-submenu {
    display: grid;
    gap: 6px;
  }

  .nav-dropdown.is-open .nav-submenu-panel {
    position: static;
    min-width: 0;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.7);
  }

  .slideshow-frame {
    height: 420px;
  }

  .slide-copy {
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(100% - 88px, 620px);
    top: 50%;
    bottom: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  h1 {
    font-size: 3rem;
  }
}

@media (max-width: 640px) {
  .promo-bar {
    display: flex;
    padding: 10px 8px;
    gap: 0;
  }

  .promo-message {
    min-height: 40px;
    min-width: min(100%, calc(100vw - 72px));
    margin: 0 1px;
  }

  .page-shell {
    width: min(100% - 16px, 1380px);
    padding-bottom: 34px;
  }

  .site-header {
    gap: 16px;
    padding: 16px 0 12px;
  }

  .site-search-wrap {
    order: 2;
    width: 100%;
    max-width: none;
  }

  .brand-lockup {
    gap: 12px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .category-row,
  .product-grid,
  .content-grid,
  .carry-grid,
  .news-grid,
  .stack-grid,
  .promo-grid,
  .gallery-grid,
  .footer-grid,
  .compact-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-wide {
    grid-column: span 1;
  }

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

  .reviews-carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
  }

  .news-carousel {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 6px;
  }

  .reviews-track {
    grid-auto-columns: 88%;
  }

  .review-card {
    align-self: start;
  }

  .review-person h3 {
    font-size: 0.98rem;
  }

  .review-stars {
    font-size: 1rem;
    margin: 2px 0 6px;
  }

  .review-card .media-copy {
    padding: 12px 14px 14px;
  }

  .review-card .media-copy p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .review-card .media-copy > p:not(.review-stars) {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .review-inline-photo {
    min-height: 128px;
    max-height: 160px;
    margin-top: 10px;
  }

  .news-track {
    grid-auto-columns: 88%;
  }

  .promo-large {
    grid-column: auto;
  }

  .slideshow-frame {
    height: 360px;
    border-radius: 24px;
  }

  .slide-overlay {
    background: linear-gradient(
      to top,
      rgba(79, 23, 32, 0.74),
      rgba(79, 23, 32, 0.28) 48%,
      rgba(79, 23, 32, 0.08) 70%
    );
  }

  h1 {
    font-size: 2.2rem;
    line-height: 1;
  }

  h2 {
    font-size: 1.65rem;
  }

  .hero-shell,
  .reviews-section,
  .news-section,
  .shop-section,
  .form-section {
    padding-top: 10px;
    padding-bottom: 16px;
  }

  .hero-text,
  .info-card p,
  .news-card p,
  .site-footer p {
    line-height: 1.6;
  }

  .slide-button {
    width: 32px;
    height: 32px;
  }

  .slide-controls {
    bottom: 12px;
    right: 12px;
  }

  .slide-copy {
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(100% - 38px, 520px);
    top: 50%;
    padding: 0 4px;
  }

  .slide-copy .hero-text {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
  }

  .slide-count {
    min-width: 42px;
    font-size: 0.9rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 48px;
  }

  .hero-slider {
    padding: 12px;
    border-radius: 28px;
  }

  .section-head {
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .section-head-centered {
    flex-direction: column;
  }

  .section-link {
    font-size: 0.92rem;
  }

  .collection-form {
    padding: 22px 16px;
  }

  .follow-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px;
    gap: 14px;
  }

  .follow-strip-actions {
    width: 100%;
  }

  .follow-strip-actions .button {
    flex: 1 1 100%;
  }

  .site-search-form {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
  }

  .site-search-input,
  .site-search-button {
    min-height: 60px;
  }

  .site-search-button {
    flex: 0 0 60px;
    min-width: 60px;
    width: auto;
  }

  .product-card,
  .info-card,
  .news-card {
    padding: 20px;
    border-radius: 22px;
  }

  .site-footer {
    padding: 22px 18px;
  }

  .footer-brand {
    margin-bottom: 10px;
  }

  .footer-brand-logo {
    width: 46px;
    height: 46px;
  }

  .footer-grid {
    gap: 18px;
  }
}

@media (max-width: 420px) {
  .site-nav {
    border-radius: 20px;
    padding: 8px;
    gap: 6px;
  }

  .site-nav a {
    font-size: 0.9rem;
    min-height: 42px;
    padding: 9px 11px;
  }

  .nav-dropdown,
  .nav-dropdown-toggle {
    width: auto;
  }

  .nav-dropdown-menu {
    left: 50%;
    min-width: min(260px, calc(100vw - 36px));
    transform: translate(-50%, 10px);
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    transform: translate(-50%, 0);
  }

  .nav-submenu-panel {
    position: static;
    min-width: 100%;
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.7);
  }

  .site-search-form {
    display: flex;
    flex-wrap: nowrap;
  }

  .site-search-input {
    min-width: 0;
    min-height: 58px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .site-search-button {
    flex: 0 0 56px;
    min-height: 58px;
    min-width: 56px;
  }

  .slideshow-frame {
    height: 390px;
  }

  .slide-copy {
    width: min(100% - 28px, 420px);
    top: 47%;
  }

  .slide-copy .hero-text {
    max-width: 270px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.52rem;
  }

  .hero-actions {
    margin-top: 14px;
    gap: 8px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .reviews-track,
  .news-track {
    grid-auto-columns: 92%;
  }

  .site-footer {
    padding: 20px 16px;
  }

  .section-head {
    gap: 8px;
  }

  .section-link {
    font-size: 0.88rem;
  }

  .review-card .media-copy > p:not(.review-stars) {
    -webkit-line-clamp: 6;
  }

  .review-inline-photo {
    min-height: 118px;
    max-height: 146px;
  }

  .review-arrow,
  .news-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }
}

.site-header {
  position: relative;
}

.cart-launcher {
  position: absolute;
  top: 26px;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.cart-launcher-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
}

.cart-launcher-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.cart-count-badge,
.price-pill,
.product-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
}

.cart-count-badge {
  min-width: 28px;
  min-height: 28px;
  padding: 0 8px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #fff;
}

.cart-drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(62, 19, 27, 0.42);
  opacity: 0;
  transition: opacity 200ms ease;
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  padding: 22px;
  background: linear-gradient(180deg, #fffefe 0%, #fff3f5 100%);
  border-left: 1px solid var(--line);
  box-shadow: -18px 0 52px rgba(79, 23, 32, 0.12);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-open .cart-drawer-shell {
  pointer-events: auto;
}

.cart-open .cart-overlay {
  opacity: 1;
}

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

.cart-drawer-head,
.cart-item-head,
.cart-summary-line,
.checkout-summary-line,
.product-card-top,
.checkout-item-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.cart-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 93, 114, 0.1);
  color: var(--accent-strong);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.cart-drawer-body,
.checkout-items {
  display: grid;
  gap: 14px;
  align-content: start;
}

.cart-item,
.checkout-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.cart-item-image,
.checkout-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.cart-item-copy,
.checkout-item-copy,
.product-card-body {
  display: grid;
  gap: 12px;
}

.cart-item-copy h3,
.checkout-item-copy h3,
.product-card-body h3 {
  margin: 0;
}

.cart-item-copy p,
.checkout-item-copy p,
.empty-state p,
.checkout-note,
.cart-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cart-progress-note,
.checkout-progress-note {
  margin: 0;
  color: var(--accent-strong);
  font-weight: 700;
}

.cart-progress-note.is-unlocked,
.checkout-progress-note.is-unlocked {
  color: #1c7747;
}

.cart-progress-bar {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 93, 114, 0.14);
  border: 1px solid rgba(223, 77, 101, 0.14);
}

.checkout-progress-bar {
  width: 100%;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(244, 93, 114, 0.14);
  border: 1px solid rgba(223, 77, 101, 0.14);
}

.cart-progress-bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transition: width 220ms ease;
}

.checkout-progress-bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-strong), var(--accent));
  transition: width 220ms ease;
}

.cart-progress-bar-fill.is-unlocked {
  background: linear-gradient(90deg, #2b9b5c, #4db37e);
}

.checkout-progress-bar-fill.is-unlocked {
  background: linear-gradient(90deg, #2b9b5c, #4db37e);
}

.cart-item-controls,
.cart-drawer-actions,
.product-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}

.quantity-stepper button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 93, 114, 0.12);
  color: var(--accent-strong);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

.text-action {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 0.22em;
  cursor: pointer;
}

.empty-state,
.order-hero-card,
.checkout-summary,
.collection-form.checkout-form {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-hero-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.product-highlight-card {
  min-height: 100%;
}

.product-highlight-card h2,
.checkout-summary h2,
.order-hero-card h2 {
  margin-top: 0;
}

.product-stat-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.product-stat {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-soft);
}

.product-stat strong {
  display: block;
  font-size: 1.15rem;
}

.shop-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shop-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.shop-breadcrumb strong {
  color: var(--text);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(250px, 300px) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 16px;
}

.shop-sidebar-head,
.shop-mobile-filter-toggle,
.shop-filter-overlay {
  display: none;
}

.shop-sidebar-head {
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.shop-sidebar-head h2 {
  margin: 4px 0 0;
  font-size: 1.35rem;
}

.shop-sidebar-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(244, 93, 114, 0.12);
  color: var(--accent-strong);
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
}

.shop-mobile-filter-toggle {
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--accent-strong);
  font-weight: 700;
  box-shadow: var(--shadow);
}

.shop-mobile-filter-toggle-icon {
  position: relative;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.shop-mobile-filter-toggle-icon::before,
.shop-mobile-filter-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: inherit;
  background: currentColor;
}

.shop-mobile-filter-toggle-icon::before {
  top: -5px;
}

.shop-mobile-filter-toggle-icon::after {
  top: 5px;
}

.shop-filter-overlay {
  position: fixed;
  inset: 0;
  z-index: 24;
  border: 0;
  background: rgba(46, 14, 20, 0.48);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.shop-filter-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.shop-filter-head,
.shop-filter-option,
.shop-toolbar,
.shop-sort {
  display: flex;
  align-items: center;
}

.shop-filter-head,
.shop-toolbar {
  justify-content: space-between;
  gap: 14px;
}

.shop-filter-group {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.shop-filter-group h3,
.shop-count {
  margin: 0;
}

.shop-filter-group h3 {
  font-size: 1rem;
  font-family: var(--font-display);
}

.shop-filter-option {
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 0.94rem;
}

.shop-filter-option input {
  width: 17px;
  height: 17px;
  margin: 0;
}

.shop-filter-option span {
  flex: 1 1 auto;
}

.shop-filter-option strong {
  color: var(--muted);
  font-size: 0.86rem;
}

.shop-main {
  display: grid;
  gap: 16px;
}

.shop-mobile-toolbar {
  display: none;
}

.shop-results-head {
  align-items: center;
  padding: 10px 0 4px;
}

.shop-results-head h1 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.shop-toolbar {
  width: 100%;
  flex-wrap: nowrap;
}

.shop-count {
  color: var(--muted);
  font-size: 0.94rem;
  flex: 0 0 auto;
}

.shop-sort {
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-left: auto;
  flex: 0 0 auto;
}

.shop-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  flex-wrap: nowrap;
  justify-content: center;
  flex: 1 1 auto;
}

.shop-toolbar-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.shop-toolbar-check input {
  margin: 0;
}

.shop-toolbar-check strong {
  color: var(--accent-strong);
  font-size: 0.88rem;
}

.shop-sort select {
  min-height: 46px;
  padding: 0 42px 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

[data-featured-products-grid],
[data-new-arrivals-grid] {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: center;
}

.shop-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-shop-card {
  overflow: hidden;
  padding: 0;
}

.product-shop-card.is-sold-out {
  opacity: 0.92;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1;
  overflow: visible;
  display: grid;
  place-items: center;
  grid-template-areas: "stack";
  padding: 10px;
  background: #fff;
}

.product-card-media img {
  border-radius: 0;
}

.product-card-link {
  display: grid;
  color: inherit;
  text-decoration: none;
}

.product-image-primary,
.product-image-hover {
  grid-area: stack;
  align-self: center;
  justify-self: center;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.product-image-primary {
  opacity: 1;
}

.product-image-hover {
  opacity: 0;
  transform: scale(1.04);
}

.product-shop-card:hover .product-image-primary,
.product-shop-card:focus-within .product-image-primary {
  opacity: 0;
}

.product-shop-card:hover .product-image-hover,
.product-shop-card:focus-within .product-image-hover {
  opacity: 1;
  transform: scale(1);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 12px;
  background: rgba(79, 23, 32, 0.78);
  color: #fff;
  font-size: 0.82rem;
}

.sold-out-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  padding: 10px 12px;
  background: rgba(20, 15, 16, 0.72);
  color: #fff;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transform: translateY(-50%);
}

.product-card-body {
  padding: 22px;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 3px;
}

.product-meta-line {
  color: var(--accent-strong);
  font-weight: 600;
}

.product-card-body h3 {
  min-height: 3.2em;
}

.price-pill {
  padding: 9px 14px;
  background: transparent;
  color: var(--text);
}

.product-price-centered {
  margin-top: 2px;
}

.product-card-stock {
  margin: 0;
  color: #1f7f47;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-card-stock.is-sold-out {
  color: var(--accent-strong);
}

.price-pill.is-sold-out {
  color: var(--accent-strong);
}

.product-card-actions {
  padding: 0;
  margin-bottom: 6px;
}

.product-card-actions .button {
  flex: 1 1 100%;
  min-width: 0;
  text-align: center;
  min-height: 42px;
  padding: 0 14px;
}

.product-view-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 0.94fr);
  gap: 28px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-view-gallery {
  display: grid;
  gap: 14px;
  align-content: start;
}

.product-view-media {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(90, 27, 38, 0.08);
}

.product-view-media img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(100% - 8px);
  max-height: calc(100% - 8px);
  object-fit: contain;
  object-position: center;
  border-radius: 14px;
}

.product-view-media-main {
  min-height: 460px;
}

.product-view-carousel {
  position: relative;
  display: block;
  padding: 0 56px;
}

.product-view-carousel-frame {
  min-width: 0;
}

.product-view-carousel-meta {
  display: flex;
  justify-content: center;
}

.product-view-carousel-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(90, 27, 38, 0.06);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.product-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(90, 27, 38, 0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--accent-strong);
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
  box-shadow: 0 10px 24px rgba(90, 27, 38, 0.08);
}

.product-carousel-button-prev {
  left: 0;
}

.product-carousel-button-next {
  right: 0;
}

.product-carousel-button:hover,
.product-carousel-button:focus-visible {
  transform: translateY(calc(-50% - 1px));
  border-color: rgba(223, 77, 105, 0.45);
  box-shadow: 0 14px 28px rgba(90, 27, 38, 0.14);
}

.product-carousel-button:disabled {
  opacity: 0.45;
  cursor: default;
  transform: translateY(-50%);
  box-shadow: none;
}

.product-view-copy {
  display: grid;
  align-content: start;
  gap: 18px;
}

.product-view-copy h1 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.95rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.product-view-meta {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.product-view-meta .price-pill {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-strong);
  font-size: 1.5rem;
}

.product-view-purchase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.product-view-purchase-main {
  display: grid;
  gap: 8px;
}

.product-view-add {
  min-height: 48px;
  font-size: 0.98rem;
}

.product-view-fulfillment {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.product-view-back-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.product-view-back-link:hover,
.product-view-back-link:focus-visible {
  color: var(--accent-strong);
}

.product-view-details {
  display: grid;
  gap: 12px;
  padding-top: 8px;
}

.product-related-section {
  max-width: 1240px;
  margin: 24px auto 0;
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.product-related-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.product-related-carousel {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.product-related-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 6px 2px 12px;
  scrollbar-width: none;
}

.product-related-grid::-webkit-scrollbar {
  display: none;
}

.product-related-arrow {
  position: static;
  width: 48px;
  height: 48px;
  transform: none;
  justify-self: center;
}

.product-related-arrow:hover,
.product-related-arrow:focus-visible {
  transform: translateY(-1px);
}

.product-related-arrow:disabled {
  transform: none;
}

.product-related-grid .product-shop-card {
  background: rgba(255, 255, 255, 0.98);
  flex: 0 0 clamp(210px, 22vw, 248px);
  min-width: 0;
}

.product-related-head {
  margin-bottom: 4px;
}

.product-related-head .hero-text {
  max-width: 720px;
  margin-top: 10px;
}

.product-view-details h2 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.05;
}

.product-view-summary {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.stock-note {
  margin: 0;
  color: #1c7747;
  font-weight: 700;
}

.stock-note.is-ready {
  color: var(--text);
}

.stock-note.is-sold-out {
  color: var(--accent-strong);
}

.product-card-actions .button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.detail-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.detail-list li + li {
  margin-top: 4px;
}

.checkout-grid {
  display: grid;
  gap: 18px;
}

.checkout-summary {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
}

.checkout-summary-line strong {
  font-size: 1.1rem;
}

.cart-summary-total strong,
.checkout-summary-line:last-child strong {
  font-size: 1.2rem;
}

.checkout-summary-block {
  display: grid;
  gap: 12px;
}

.checkout-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.checkout-form textarea {
  min-height: 120px;
  resize: vertical;
}

.checkout-form button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.checkout-note[hidden] {
  display: none;
}

[data-checkout-error] {
  color: #b93449;
  font-weight: 600;
}

.order-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(74, 179, 126, 0.12);
  color: #1c7747;
  font-weight: 700;
}

.order-status::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

.inventory-admin-shell {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inventory-admin-head h1 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.inventory-admin-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.inventory-admin-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inventory-admin-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel-soft);
  color: var(--muted);
  font-weight: 600;
}

.checkout-admin-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(244, 93, 114, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(244, 93, 114, 0.12), transparent 36%),
    rgba(255, 255, 255, 0.96);
}

.checkout-admin-copy h2 {
  margin: 6px 0 8px;
  font-size: 1.5rem;
}

.checkout-admin-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.checkout-admin-controls {
  display: grid;
  gap: 12px;
}

.checkout-admin-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
}

.checkout-admin-toggle input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.checkout-admin-status {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.checkout-availability-message {
  color: #b93449;
  font-weight: 700;
}

.button.is-disabled,
.button[aria-disabled="true"] {
  opacity: 0.58;
  cursor: not-allowed;
  transform: none;
}

.inventory-admin-grid {
  display: grid;
  gap: 12px;
}

.dashboard-section {
  display: grid;
  gap: 12px;
}

.dashboard-grid {
  display: grid;
  gap: 12px;
}

.dashboard-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.dashboard-stat-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
}

.dashboard-stat-card strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.dashboard-stat-card span {
  color: var(--muted);
  font-weight: 600;
}

.dashboard-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
}

.dashboard-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-card-head h3 {
  margin: 0;
  font-size: 1rem;
}

.dashboard-card-head p,
.dashboard-meta {
  margin: 4px 0 0;
  color: var(--muted);
}

.dashboard-duplicate-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.dashboard-duplicate-row {
  display: grid;
  gap: 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(90, 27, 38, 0.08);
}

.dashboard-duplicate-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.dashboard-duplicate-row strong {
  font-size: 0.96rem;
}

.dashboard-duplicate-row span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.dashboard-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dashboard-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--panel-soft);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
}

.dashboard-order-controls {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.dashboard-order-controls textarea,
.dashboard-order-controls select {
  width: 100%;
}

.dashboard-low-stock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 84px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(255, 244, 214, 0.9);
  color: #8a5a00;
  font-weight: 700;
}

.inventory-admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.inventory-admin-product {
  display: grid;
  gap: 4px;
}

.inventory-admin-product strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.inventory-admin-product span,
.inventory-admin-meta {
  color: var(--muted);
}

.inventory-admin-stock input {
  width: 112px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}

.inventory-admin-stock-group {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.inventory-admin-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.inventory-admin-flag input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.inventory-admin-quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.inventory-quick-button {
  min-height: 36px;
  padding: 0 12px;
  font-size: 0.88rem;
}

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

.site-nav a[href="products.html"] {
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  [data-featured-products-grid],
  [data-new-arrivals-grid] {
    grid-template-columns: repeat(auto-fit, minmax(200px, 240px));
  }

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

@media (max-width: 980px) {
  .cart-launcher {
    position: static;
    order: 3;
    align-self: flex-end;
  }

  .site-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .brand-lockup {
    justify-content: center;
    order: 1;
  }

  .site-search-wrap {
    order: 2;
  }

  .site-nav {
    order: 4;
  }

  .product-hero-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-admin-card {
    grid-template-columns: 1fr;
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
    order: 1;
  }

  .shop-main {
    order: 2;
  }

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

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

  .product-view-media-main {
    min-height: 360px;
  }

  .product-view-copy h1 {
    font-size: clamp(1.8rem, 7vw, 2.7rem);
  }

  .inventory-admin-controls {
    grid-template-columns: 1fr;
  }

  .promise-strip {
    grid-template-columns: 1fr;
  }

  .newsletter-signup-card,
  .newsletter-signup-fields {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  [data-featured-products-grid],
  [data-new-arrivals-grid] {
    grid-template-columns: 1fr;
  }

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

  .product-view-media-main {
    min-height: 300px;
  }

  .product-view-card,
  .product-related-section {
    padding: 18px;
  }

  .product-carousel-button,
  .product-related-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }

  .product-related-grid {
    padding-bottom: 4px;
  }

  .product-related-grid .product-shop-card {
    flex-basis: min(82vw, 260px);
  }

  .product-view-carousel {
    padding: 0 44px;
  }

  .product-related-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 6px;
  }

  .cart-drawer {
    width: 100%;
    padding: 18px;
  }

  .cart-item,
  .checkout-item {
    grid-template-columns: 1fr;
  }

  .empty-state,
  .order-hero-card,
  .checkout-summary,
  .collection-form.checkout-form {
    padding: 22px 18px;
  }

  .shop-filter-card {
    gap: 14px;
    padding: 14px;
    border-radius: 20px;
  }

  .shop-filter-group {
    gap: 8px;
    padding-top: 14px;
  }

  .shop-results-head {
    display: grid;
    gap: 12px;
    align-items: stretch;
    padding: 4px 0 0;
  }

  .shop-results-head h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
  }

  .shop-results-head .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .shop-toolbar {
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 10px;
  }

  .shop-count {
    width: 100%;
    font-size: 0.92rem;
  }

  .shop-sort {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .shop-sort select {
    flex: 1 1 auto;
    min-width: 0;
  }

  .shop-availability {
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
  }

  .shop-toolbar-check {
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
    min-width: 0;
    padding: 0 12px;
  }

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

  .product-shop-card {
    min-width: 0;
  }

  .product-card-media {
    aspect-ratio: 0.92;
    padding: 8px;
  }

  .product-card-body {
    padding: 14px 12px 16px;
    gap: 6px;
  }

  .product-card-body h3 {
    min-height: 0;
    font-size: 1rem;
    line-height: 1.28;
  }

  .product-card-stock,
  .price-pill,
  .product-card-body p {
    font-size: 0.88rem;
  }

  .product-card-actions .button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .inventory-admin-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .inventory-admin-stock input {
    width: 100%;
  }

  .inventory-admin-stock-group {
    justify-items: stretch;
  }

  .inventory-admin-quick-actions {
    justify-content: stretch;
  }
}

@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: inline-flex;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px 12px;
    text-align: left;
  }

  .brand-lockup {
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    width: 100%;
    order: 0;
  }

  .cart-launcher {
    grid-column: 3;
    grid-row: 1;
    position: static;
    order: 0;
    justify-self: end;
    align-self: center;
    min-width: 0;
    padding: 12px 14px;
  }

  .cart-launcher > span:not(.cart-count-badge):not(.cart-launcher-icon) {
    display: none;
  }

  .site-search-wrap {
    grid-column: 1 / -1;
    grid-row: 2;
    order: 0;
    width: 100%;
    max-width: none;
  }

  .site-nav {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shop-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 26;
    width: min(340px, calc(100vw - 28px));
    max-width: 100%;
    padding: 18px 14px 22px;
    background: linear-gradient(180deg, #fffefe 0%, #fff4f6 100%);
    border-right: 1px solid var(--line);
    box-shadow: 18px 0 42px rgba(79, 23, 32, 0.12);
    transform: translateX(calc(-100% - 16px));
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 200ms ease;
    overflow-y: auto;
    order: 0;
    top: 0;
  }

  .shop-main {
    order: 1;
    gap: 14px;
  }

  .shop-filter-overlay,
  .shop-sidebar-head,
  .shop-mobile-filter-toggle {
    display: flex;
  }

  .shop-mobile-toolbar {
    position: sticky;
    top: 10px;
    z-index: 18;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
    background: rgba(255, 249, 250, 0.94);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
  }

  .shop-mobile-sort {
    display: grid;
    gap: 6px;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .shop-mobile-sort-select {
    min-height: 46px;
    padding: 0 40px 0 14px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--text);
  }

  .shop-filters-open .shop-filter-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .shop-filters-open .shop-sidebar {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .shop-results-head {
    display: grid;
    gap: 12px;
    align-items: stretch;
    padding: 4px 0 0;
  }

  .shop-results-head h1 {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
    line-height: 0.95;
  }

  .shop-results-head .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

  .shop-toolbar {
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .shop-count {
    width: auto;
    font-size: 0.92rem;
    order: 0;
  }

  .shop-results-head .shop-sort,
  .shop-availability {
    display: none;
  }

  .shop-mobile-toolbar .shop-mobile-filter-toggle {
    display: flex;
    justify-content: center;
    width: 100%;
    box-shadow: none;
  }

  .shop-mobile-sort span {
    display: none;
  }

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

  .product-shop-card {
    min-width: 0;
  }

  .product-card-media {
    aspect-ratio: 0.92;
    padding: 8px;
  }

  .product-card-body {
    padding: 14px 12px 16px;
    gap: 6px;
  }

  .product-card-body h3 {
    min-height: 0;
    font-size: 1rem;
    line-height: 1.28;
  }

  .product-card-stock,
  .price-pill,
  .product-card-body p {
    font-size: 0.88rem;
  }

  .product-card-actions .button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .cart-drawer {
    gap: 16px;
    padding: 16px;
  }

  .cart-item,
  .checkout-item {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    align-items: start;
  }

  .cart-item-copy,
  .checkout-item-copy {
    gap: 10px;
  }

  .checkout-summary,
  .collection-form.checkout-form {
    padding: 20px 16px;
  }
}

@media (max-width: 420px) {
  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand {
    font-size: 1rem;
  }

  .site-search-input {
    min-height: 60px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .site-search-button {
    min-height: 60px;
    min-width: 64px;
  }

  .mobile-nav-drawer {
    width: min(320px, 90vw);
    padding: 16px 14px 22px;
  }

  .mobile-nav-head h2 {
    font-size: 1.45rem;
  }

  .mobile-nav-list > a,
  .mobile-nav-list .nav-dropdown-toggle {
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.98rem;
  }

  .shop-sidebar {
    width: min(312px, calc(100vw - 18px));
    padding: 16px 12px 20px;
  }

  .shop-mobile-filter-toggle {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .shop-mobile-toolbar {
    top: 8px;
    gap: 8px;
    padding: 8px;
    border-radius: 16px;
  }

  .shop-mobile-sort {
    font-size: 0.76rem;
  }

  .shop-mobile-sort-select {
    min-height: 44px;
    padding: 0 36px 0 12px;
    font-size: 0.92rem;
  }

  .shop-products-grid {
    gap: 10px;
  }

  .product-card-body {
    padding: 12px 10px 14px;
  }

  .product-card-body h3 {
    font-size: 0.94rem;
    line-height: 1.24;
  }

  .product-card-stock,
  .price-pill,
  .product-card-body p {
    font-size: 0.82rem;
  }

  .cart-drawer {
    gap: 14px;
    padding: 14px;
  }

  .cart-drawer-head h2 {
    font-size: 1.45rem;
  }

  .cart-item,
  .checkout-item {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .cart-item-image,
  .checkout-item-image {
    border-radius: 14px;
  }

  .cart-item-copy,
  .checkout-item-copy {
    gap: 8px;
  }

  .cart-item-copy h3,
  .checkout-item-copy h3 {
    font-size: 0.96rem;
    line-height: 1.3;
  }

  .cart-item-copy p,
  .checkout-item-copy p,
  .cart-progress-note,
  .checkout-progress-note,
  .checkout-note,
  .cart-note {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .quantity-stepper {
    gap: 8px;
    padding: 3px;
  }

  .quantity-stepper button {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .checkout-summary,
  .collection-form.checkout-form,
  .empty-state,
  .order-hero-card {
    padding: 18px 14px;
    border-radius: 20px;
  }
}
