* { box-sizing: border-box; }
:root {
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --line: #d9e1ea;
  --text: #1e293b;
  --muted: #5b6f84;
  --shop-card-radius: 18px;
  --shop-button-radius: 10px;
  --shop-product-image-ratio: 4 / 3;
  --shop-font-scale: 1;
  --shop-grid-gap: 1.05rem;
  --shop-card-bg: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  --shop-card-shadow: 0 12px 26px rgba(15, 23, 42, 0.07);
  --shop-surface-soft: #f5f9fd;
  --shop-shell-bg: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  --shop-topbar-bg: rgba(255, 255, 255, 0.82);
  --shop-topbar-border: 1px solid rgba(217, 225, 234, 0.9);
  --shop-topbar-shell-bg: rgba(255, 255, 255, 0.82);
  --shop-topbar-row-bg: rgba(255, 255, 255, 0.82);
  --shop-topbar-border-color: rgba(217, 225, 234, 0.9);
  --shop-topbar-divider-color: rgba(225, 233, 241, 0.95);
  --shop-topbar-blur: 8px;
  --shop-topbar-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  --shop-topbar-sticky-shell-bg: rgba(255, 255, 255, 0.96);
  --shop-topbar-sticky-row-bg: rgba(255, 255, 255, 0.98);
  --shop-topbar-sticky-border-color: rgba(255, 255, 255, 0.98);
  --shop-topbar-sticky-divider-color: rgba(255, 255, 255, 0.92);
  --shop-topbar-sticky-shadow: 0 16px 34px rgba(15, 23, 42, 0.16);
  --shop-sticky-header-height: 0px;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  font-size: calc(16px * var(--shop-font-scale, 1));
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--primary, #1f7a8c) 18%, white) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, #f6f9fc 0%, #ffffff 28%);
  color: var(--text);
}
.store-services-ribbon {
  position: fixed;
  top: 50%;
  right: max(0.45rem, calc((100vw - 100%) + 0.45rem));
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  z-index: 1400;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 268px;
  padding: 0.8rem 1.1rem;
  border-radius: 12px 12px 0 0;
  background: linear-gradient(180deg, var(--service-ribbon-bg-start, #d11d27) 0%, var(--service-ribbon-bg-end, #b90f18) 100%);
  border: 1px solid rgba(120, 7, 15, 0.28);
  color: var(--service-ribbon-text, #ffffff);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: background 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.store-services-ribbon:hover,
.store-services-ribbon:focus-visible {
  background: var(--service-ribbon-hover-bg, #000000);
  color: var(--service-ribbon-hover-text, #ffffff);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 0 34px rgba(0, 0, 0, 0.42);
  outline: none;
}
img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}
.topbar {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0.55rem auto 0;
  padding: 0.85rem 1.25rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  background: var(--shop-topbar-bg);
  border: var(--shop-topbar-border);
  border-radius: 14px;
  box-shadow: var(--shop-topbar-shadow);
  backdrop-filter: blur(8px);
}
.top-link {
  text-decoration: none;
  color: var(--primary, #1f7a8c);
  font-weight: 600;
  padding: 0.36rem 0.64rem;
  border-radius: 999px;
  transition: background 0.2s ease;
}
.top-link:hover {
  background: color-mix(in srgb, var(--primary, #1f7a8c) 15%, white);
}
.hero {
  margin-top: 0.8rem;
  background: radial-gradient(circle at 15% 20%, color-mix(in srgb, var(--primary, #1f7a8c) 20%, white) 0%, #f5f9fd 34%),
              linear-gradient(135deg, #ffffff 0%, #edf2f7 100%);
  border-top: 1px solid #d8e0ea;
  border-bottom: 1px solid #d8e0ea;
}
.hero-inner {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0 auto;
  padding: 2.55rem 1.25rem 1.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.logo {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #d9e1ea;
}
.logo.logo-dynamic {
  width: auto;
  height: auto;
  max-height: 64px;
  max-width: min(260px, 42vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  border-radius: 10px;
  border: 1px solid #d9e1ea;
  background: #ffffff;
  padding: 0.24rem;
}
.logo.logo-dynamic.logo-transparent {
  background: transparent;
  border-color: transparent;
  padding: 0;
}
.hero-logo-only {
  margin: 0;
}
.shop-name {
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--primary, #1f7a8c);
}
.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}
.hero p {
  max-width: 700px;
  font-size: 1.04rem;
  color: #334155;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 1rem;
  align-items: start;
}
.hero-grid.hero-grid-single {
  grid-template-columns: minmax(0, 1fr);
}
.hero-search {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
}
.hero-search input[type="search"] {
  border: 1px solid #ccd7e3;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.7rem 0.8rem;
  font: inherit;
}
.hero-info-card {
  border: 1px solid #d9e3ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 0.9rem;
}
.hero-info-card h3 {
  margin: 0 0 0.55rem;
}
.hero-info-card ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.35rem;
  color: #334155;
}
.hero-bar {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0.9rem auto 0;
  padding: 0 1.25rem;
}
.hero-bar .shop-name {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #d9e1ea;
  background: #f7fbff;
}
.category-strip {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0.9rem auto;
  padding: 0 1.25rem;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.chip {
  text-decoration: none;
  padding: 0.45rem 0.84rem;
  border-radius: 999px;
  background: #eaf1f6;
  color: #35526a;
  font-weight: 600;
  font-size: 0.86rem;
}
.chip-active {
  background: var(--primary, #1f7a8c);
  color: #fff;
}
.chip-tree {
  --depth: 0;
  padding-left: calc(0.84rem + (var(--depth) * 0.8rem));
}
.category-tree-nav {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0.9rem auto 0.2rem;
  padding: 0 1.25rem;
  display: grid;
  gap: 0.38rem;
}
.category-tree-link {
  --depth: 0;
  display: block;
  text-decoration: none;
  border: 1px solid #d9e1ea;
  border-radius: 10px;
  background: #f6f9fc;
  color: #27445f;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.46rem 0.68rem;
  margin-left: calc(var(--depth) * 16px);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.category-tree-link:hover {
  background: #ffffff;
  border-color: #c6d4e4;
}
.category-tree-link.root {
  background: #eef4f8;
  color: #1f3e57;
}
.category-tree-link-active {
  background: var(--primary, #1f7a8c);
  border-color: var(--primary, #1f7a8c);
  color: #ffffff;
}
.shop-layout {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 1rem auto 0.2rem;
  padding: 0 1.25rem;
  display: grid;
  --shop-sidebar-min-width: 240px;
  --shop-sidebar-max-width: 420px;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  align-items: start;
}
.shop-layout > * {
  min-width: 0;
}
.shop-layout.shop-layout-right {
  grid-template-columns: minmax(0, 1fr) auto;
}
.shop-layout.shop-layout-right .shop-sidebar {
  order: 2;
}
.shop-sidebar {
  position: sticky;
  top: calc(var(--shop-sticky-header-height, 0px) + 0.8rem);
  width: max-content;
  min-width: var(--shop-sidebar-min-width, 240px);
  max-width: min(var(--shop-sidebar-max-width, 420px), 36vw);
  align-self: start;
}
.shop-sidebar.is-static {
  position: static;
  top: auto;
}
.shop-cat-menu {
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--shop-shell-bg);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.shop-cat-sticky-head {
  position: static;
  top: auto;
  z-index: auto;
  display: grid;
  gap: 0.7rem;
  padding-bottom: 0.7rem;
  margin-bottom: 0.1rem;
  background: transparent;
  backdrop-filter: none;
}
.shop-sidebar.shop-sidebar--inner-scroll .shop-cat-menu {
  max-height: calc(100vh - var(--shop-sticky-header-height, 0px) - 1.6rem);
  overflow: auto;
  scrollbar-gutter: stable;
}
.shop-sidebar.shop-sidebar--inner-scroll .shop-cat-sticky-head {
  position: sticky;
  top: 0;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 82%, rgba(248, 251, 255, 0) 100%);
  backdrop-filter: blur(6px);
}
.shop-sidebar.is-static .shop-cat-menu {
  max-height: none;
  overflow: visible;
  scrollbar-gutter: auto;
}
.shop-sidebar.is-static .shop-cat-sticky-head {
  position: static;
  top: auto;
  z-index: auto;
  padding-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}
.shop-filter-form {
  border: 1px solid #dbe5ef;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.72rem;
  margin-bottom: 0;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}
.shop-filter-form h3 {
  margin: 0 0 0.52rem;
  font-size: 0.9rem;
  color: #1e293b;
}
.shop-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.shop-filter-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: #4b5f74;
}
.shop-filter-form input[type="number"] {
  width: 100%;
  border: 1px solid #d4e0ec;
  border-radius: 8px;
  padding: 0.4rem 0.48rem;
  font-size: 0.84rem;
  color: #102437;
  background: #fdfefe;
}
.shop-filter-check {
  display: inline-flex !important;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.54rem;
  font-size: 0.8rem !important;
}
.shop-filter-actions {
  display: flex;
  gap: 0.44rem;
  margin-top: 0.62rem;
}
.shop-filter-actions .btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
}
.shop-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}
.shop-cat-head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: #1e293b;
}
.shop-cat-all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  border: 1px solid #d9e1ea;
  border-radius: 999px;
  background: #f6f9fc;
  color: #27445f;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 0.42rem 0.74rem;
}
.shop-cat-all-count {
  min-width: 1.85rem;
  text-align: center;
  border-radius: 999px;
  background: #e5eef7;
  color: #35526b;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.14rem 0.42rem;
}
.shop-cat-all-active {
  background: var(--primary, #1f7a8c);
  border-color: var(--primary, #1f7a8c);
  color: #ffffff;
}
.shop-cat-all-active .shop-cat-all-count {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}
.shop-cat-tree {
  display: grid;
  gap: 0.46rem;
}
.shop-cat-empty {
  margin: 0;
  border: 1px dashed #c9d8e8;
  border-radius: 12px;
  background: #f8fbff;
  color: #4a5f75;
  padding: 0.75rem;
}
.shop-cat-node {
  --depth: 0;
  margin-left: calc(var(--depth) * 20px);
}
.shop-cat-row {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #d8e3ee;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.45rem 0.6rem;
}
.shop-cat-row.no-count {
  grid-template-columns: 30px 1fr;
}
.shop-cat-toggle,
.shop-cat-spacer {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}
.shop-cat-spacer {
  opacity: 0;
}
.shop-cat-toggle {
  border: 1px solid #d3dfeb;
  border-radius: 8px;
  background: #ffffff;
  color: #35526a;
  cursor: pointer;
  padding: 0;
}
.shop-cat-chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.16s ease;
}
.shop-cat-toggle.is-open .shop-cat-chevron {
  transform: rotate(45deg);
}
.shop-cat-link {
  text-decoration: none;
  color: #23425d;
  font-weight: 700;
  font-size: 0.92rem;
}
.shop-cat-link-active {
  color: var(--primary, #1f7a8c);
}
.shop-cat-count {
  min-width: 2rem;
  text-align: center;
  border-radius: 999px;
  background: #e7f0f7;
  color: #35526a;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.48rem;
}
.shop-cat-children {
  display: none;
  gap: 0.46rem;
  margin-top: 0.42rem;
  padding-left: 0.54rem;
  border-left: 2px dashed #d8e4f0;
}
.shop-cat-children.is-open {
  display: grid;
}
.product-grid {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0 auto;
  padding: 1.2rem 1.25rem 3rem;
  display: grid;
  gap: var(--shop-grid-gap, 1.05rem);
  grid-template-columns: repeat(var(--shop-product-columns, 4), minmax(0, 1fr));
}
.product-grid > * {
  min-width: 0;
}
.shop-products {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  padding: 0 0 3rem;
  background: var(--shop-shell-bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}
.shop-quick-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.shop-quick-chip {
  text-decoration: none;
  border: 1px solid #d8e3ee;
  border-radius: 999px;
  background: #f7fbff;
  color: #26445f;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.36rem 0.62rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.shop-quick-chip span {
  min-width: 1.4rem;
  text-align: center;
  border-radius: 999px;
  background: #e4eef8;
  color: #35516b;
  font-size: 0.74rem;
  padding: 0.1rem 0.36rem;
}
.shop-quick-chip.active {
  background: var(--primary, #1f7a8c);
  border-color: var(--primary, #1f7a8c);
  color: #fff;
}
.shop-quick-chip.active span {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.shop-breadcrumb-wrap {
  grid-column: 1 / -1;
  margin: 0 0 0.25rem;
}
.shop-breadcrumb {
  margin: 0;
  color: #405972;
  background: #edf3f8;
  border: 1px solid #d8e3ee;
  border-radius: 999px;
  padding: 0.36rem 0.72rem;
  font-size: 0.86rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.34rem;
}
.shop-breadcrumb a {
  color: #1f4f75;
  text-decoration: none;
}
.shop-breadcrumb a:hover {
  text-decoration: underline;
}
.shop-breadcrumb-sep {
  color: #6a7e92;
  font-weight: 700;
}
.shop-breadcrumb-current {
  color: #1f3346;
  font-weight: 700;
}
.shop-search-result-info {
  grid-column: 1 / -1;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  background: #f4f9ff;
  color: #23415d;
  font-size: 0.9rem;
  padding: 0.5rem 0.7rem;
}
.category-products-hero {
  grid-column: 1 / -1;
  border: 1px solid #cfe0ee;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fcff 0%, #eaf4ff 52%, #ffffff 100%);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  padding: 0.85rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}
.category-products-hero__copy {
  min-width: 0;
}
.category-products-hero__eyebrow,
.category-section-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: #edf5fb;
  color: #35556f;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.category-products-hero h2 {
  margin: 0.45rem 0 0;
  color: #163a59;
  font-size: 1.14rem;
}
.category-products-hero p {
  margin: 0.26rem 0 0;
  color: #3b5975;
  font-size: 0.9rem;
}
.category-products-hero__meta {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}
.category-products-hero__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.68rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #d3dfeb;
  color: #284864;
  font-size: 0.79rem;
  font-weight: 700;
}
.category-products-hero-count {
  min-width: 88px;
  border-radius: 14px;
  border: 1px solid #bfd6ea;
  background: #ffffff;
  text-align: center;
  padding: 0.42rem 0.6rem;
}
.category-products-hero-count strong {
  display: block;
  color: #103553;
  font-size: 1.18rem;
  line-height: 1.1;
}
.category-products-hero-count span {
  color: #4d6780;
  font-size: 0.78rem;
  font-weight: 700;
}
.category-seo-intro-card,
.category-seo-footer-card,
.category-faq-card,
.category-internal-links-card,
.category-discovery-card {
  grid-column: 1 / -1;
  border: 1px solid #d8e3ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  padding: 0.78rem 0.88rem;
}
.category-seo-text {
  color: #304b66;
  line-height: 1.62;
}
.category-internal-links-card h2 {
  margin: 0 0 0.66rem;
  font-size: 1.02rem;
  color: #153652;
}
.category-section-head {
  margin-bottom: 0.7rem;
}
.category-section-head h2 {
  margin: 0.45rem 0 0.18rem;
  color: #153652;
  font-size: 1.08rem;
}
.category-section-head p {
  margin: 0;
  color: #4b647c;
  font-size: 0.9rem;
}
.category-link-group + .category-link-group {
  margin-top: 0.62rem;
}
.category-link-group > p {
  margin: 0 0 0.36rem;
  color: #4c647a;
  font-size: 0.82rem;
  font-weight: 700;
}
.category-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.45rem 0.7rem;
}
.category-link-list a {
  color: #1a4b74;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 1px dashed rgba(26, 75, 116, 0.25);
  padding-bottom: 0.18rem;
}
.category-link-list a:hover {
  color: #0d3556;
  border-bottom-color: rgba(13, 53, 86, 0.45);
}
.category-link-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}
.category-link-chip {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #d4e0ec;
  border-radius: 999px;
  background: #f6fbff;
  color: #204766;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.26rem 0.58rem;
}
.category-link-chip small {
  min-width: 1.5rem;
  text-align: center;
  border-radius: 999px;
  background: #e2edf8;
  color: #38536c;
  font-size: 0.73rem;
  padding: 0.08rem 0.33rem;
}
.category-link-chip:hover {
  background: #edf6ff;
}
.category-discovery-block + .category-discovery-block {
  margin-top: 0.9rem;
}
.category-discovery-grid .category-discovery-block + .category-discovery-block {
  margin-top: 0;
}
.category-discovery-head {
  margin-bottom: 0.62rem;
}
.category-discovery-head h2 {
  margin: 0.45rem 0 0;
  color: #153652;
  font-size: 1.06rem;
}
.category-discovery-head p {
  margin: 0.28rem 0 0;
  color: #4b647c;
  font-size: 0.9rem;
}
.category-discovery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.82rem;
}
.category-discovery-block {
  border: 1px solid #d4e3ef;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 0.75rem;
}
.category-discovery-block.category-discovery-block-full {
  margin-top: 0.82rem;
}
.category-faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.8rem;
}
.category-faq-item {
  border: 1px solid #d8e3ee;
  border-radius: 14px;
  background: #fcfeff;
  padding: 0.85rem 0.9rem;
}
.category-faq-item h3 {
  margin: 0 0 0.4rem;
  font-size: 0.98rem;
  color: #153652;
}
.category-discovery-block h2,
.category-discovery-block h3 {
  margin: 0 0 0.48rem;
  font-size: 0.96rem;
  color: #153652;
}
.category-discovery-products {
  justify-content: start;
}
.product-card--category-showcase .product-image-frame img.is-noimage {
  object-fit: contain;
  background: #f8fafc;
  padding: 1rem;
}
.product-card {
  background: var(--shop-card-bg);
  border: 1px solid var(--line);
  border-radius: var(--shop-card-radius, 18px);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  box-shadow: var(--shop-card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.09);
}
.product-card.empty {
  grid-column: 1 / -1;
}
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: var(--shop-product-image-ratio, 4 / 3);
  object-fit: contain;
  object-position: center;
  border-radius: calc(var(--shop-card-radius, 18px) - 6px);
  border: 1px solid #d9e1ea;
  background: #ffffff;
}
.product-image-link {
  display: block;
}
.product-card h2 {
  margin: 0;
  font-size: 1.12rem;
}
.product-title-link {
  color: inherit;
  text-decoration: none;
}
.product-title-link:hover {
  text-decoration: underline;
}
.category-badge {
  margin: 0;
  font-size: 0.8rem;
  color: #41607c;
  background: #eef4f8;
  border-radius: 999px;
  padding: 0.26rem 0.54rem;
  display: inline-block;
}
.card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-footer a {
  color: var(--primary, #1f7a8c);
  font-weight: 700;
  text-decoration: none;
}
.price-value {
  color: var(--accent, #f4a261);
  font-weight: 700;
}
.price-sale {
  color: var(--accent, #f4a261);
}
.price-regular {
  margin-left: 0.4rem;
  color: #64748b;
  text-decoration: line-through;
  font-size: 0.9em;
}
.add-cart-form {
  display: flex;
  gap: 0.55rem;
  align-items: center;
  flex-wrap: wrap;
}
.buy-btn,
.btn {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary, #1f7a8c) 86%, #ffffff) 0%, var(--primary, #1f7a8c) 100%);
  color: #fff;
  border: 0;
  border-radius: var(--shop-button-radius, 10px);
  padding: 0.62rem 0.98rem;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
}
.product-detail {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 1rem auto 2.2rem;
  padding: 0 1.25rem;
}
.product-detail article {
  background: var(--shop-shell-bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  padding: 1rem;
  margin-top: 0.8rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}
.product-gallery {
  display: grid;
  gap: 0.7rem;
}
.product-gallery > img,
.product-main-image {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d9e1ea;
  background: #fff;
  object-fit: contain;
}
.product-main-image.is-noimage {
  min-height: 320px;
  object-fit: contain;
  padding: 1.1rem;
  background: #f8fbff;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(62px, 1fr));
  gap: 0.55rem;
}
.thumb-btn {
  border: 1px solid #cfd9e4;
  border-radius: 10px;
  padding: 0.12rem;
  background: #fff;
  cursor: pointer;
}
.thumb-btn img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: #ffffff;
}
.thumb-btn.active {
  border-color: var(--primary, #1f7a8c);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary, #1f7a8c) 25%, white);
}
.price {
  color: var(--accent, #f4a261);
  font-size: 1.7rem;
  font-weight: 700;
  margin: 0.35rem 0;
}
.sale-note {
  margin-top: -0.2rem;
  color: #334155;
  font-size: 0.88rem;
}
.product-meta p {
  margin: 0.18rem 0;
  font-size: 0.93rem;
  color: #334155;
}
.product-attrs {
  margin: 0.7rem 0;
}
.product-attrs ul {
  margin: 0.35rem 0 0;
  padding-left: 1.1rem;
}
.variant-box {
  margin: 0.9rem 0;
}
.variant-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dbe5ef;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.variant-table th,
.variant-table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 0.5rem;
  text-align: left;
}
.variant-table th {
  background: #f8fafc;
  font-size: 0.82rem;
  color: #334155;
}
.related-section {
  margin-top: 1.4rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
}
.related-grid-products {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.95rem;
}
.related-grid.category-discovery-products {
  grid-template-columns: repeat(var(--shop-product-columns, 4), minmax(0, 1fr));
  align-items: stretch;
}
.related-card {
  border: 1px solid #dbe5ef;
  border-radius: 12px;
  background: #fff;
  padding: 0.75rem;
}
.related-card a {
  color: #0f172a;
  font-weight: 700;
  text-decoration: none;
}
.related-card p {
  color: var(--accent, #f4a261);
  font-weight: 700;
}
@media (max-width: 1400px) {
  .related-grid-products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1160px) {
  .related-grid-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 860px) {
  .category-products-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-detail-intro,
  .product-service-strip,
  .product-trust-grid,
  .related-section__head {
    grid-template-columns: 1fr;
  }
  .product-detail-intro,
  .related-section__head {
    display: grid;
  }
  .category-products-hero-count {
    min-width: 0;
  }
  .category-discovery-grid {
    grid-template-columns: 1fr;
  }
  .product-buy-panel__topline {
    align-items: flex-start;
  }
  .related-grid-products,
  .related-grid.category-discovery-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .product-detail-intro__meta,
  .product-highlight-card__stats {
    flex-direction: column;
    align-items: stretch;
  }
  .product-trust-grid,
  .product-service-strip,
  .product-facts-grid {
    grid-template-columns: 1fr;
  }
  .product-buy-form {
    grid-template-columns: 1fr;
  }
  .related-grid-products,
  .related-grid.category-discovery-products {
    grid-template-columns: 1fr;
  }
}
.qty-input {
  width: 95px;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  padding: 0.47rem 0.58rem;
}
.checkout-shell {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 1rem auto 2.2rem;
  padding: 0 1.25rem;
}
.page-shell {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 1rem auto 2rem;
  padding: 0 1.25rem;
}
.page-card {
  margin-top: 0.8rem;
  border: 1px solid #d8e3ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  padding: 1rem;
}
.page-card h1 {
  margin-top: 0;
}
.page-content {
  color: #24384d;
  line-height: 1.6;
}
.page-content h2,
.page-content h3 {
  margin-top: 1rem;
}
.page-content p {
  margin: 0.55rem 0;
}
.page-content ul,
.page-content ol {
  padding-left: 1.15rem;
}
.contact-form-wrap {
  margin-top: 1.15rem;
  border: 1px solid #d8e4ef;
  border-radius: 16px;
  background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  padding: 0.95rem;
}
.contact-form-wrap h2 {
  margin: 0;
  color: #1d3f5f;
  font-size: 1.08rem;
}
.contact-form-intro {
  margin: 0.42rem 0 0.86rem;
  color: #48647d;
  font-size: 0.9rem;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}
.contact-form-grid label {
  display: grid;
  gap: 0.32rem;
  color: #3c5770;
  font-size: 0.83rem;
  font-weight: 600;
}
.contact-form-grid .wide {
  grid-column: 1 / -1;
}
.contact-form-grid input[type="text"],
.contact-form-grid input[type="email"],
.contact-form-grid textarea {
  border: 1px solid #cedbe8;
  border-radius: 10px;
  background: #ffffff;
  color: #102437;
  padding: 0.6rem 0.68rem;
  font: inherit;
}
.contact-form-grid textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-form-grid .btn {
  grid-column: 1 / -1;
  justify-self: start;
}
.contact-form-alert {
  border-radius: 10px;
  padding: 0.66rem 0.74rem;
  margin: 0 0 0.78rem;
}
.contact-form-alert p {
  margin: 0.2rem 0;
}
.contact-form-alert-success {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}
.contact-form-alert-error {
  background: #fee2e2;
  border: 1px solid #fecaca;
  color: #991b1b;
}
.contact-form-hp {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  margin: 1rem 0;
}
.cart-table th,
.cart-table td {
  border-bottom: 1px solid #e5ecf3;
  padding: 0.72rem;
  text-align: left;
}
.checkout-total {
  font-size: 1.06rem;
  background: #eef4fb;
  border: 1px solid #d4dfec;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
}
.checkout-total strong {
  color: var(--accent, #f4a261);
}
.checkout-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}
.checkout-form label {
  display: grid;
  gap: 0.36rem;
  font-weight: 600;
  color: #334155;
  border: 1px solid #dbe5ef;
  border-radius: 12px;
  background: #f8fbff;
  padding: 0.62rem 0.68rem 0.68rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.checkout-form label:focus-within {
  border-color: color-mix(in srgb, var(--primary, #1f7a8c) 55%, #ffffff);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary, #1f7a8c) 20%, #ffffff);
  background: #fff;
}
.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  padding: 0.58rem 0.64rem;
  background: #fff;
  font: inherit;
}
.checkout-form label.checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  background: transparent;
  padding: 0.2rem 0;
}
.checkout-form label.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
}
.checkout-form .code-field {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  letter-spacing: 0.04em;
}
.qr-code {
  width: min(220px, 100%);
  display: block;
  border: 1px solid #d9e3ee;
  border-radius: 12px;
  padding: 6px;
  background: #ffffff;
}
.checkout-form textarea {
  min-height: 110px;
}
.checkout-form .wide,
.checkout-form label.wide {
  grid-column: 1 / -1;
}
.form-section-store {
  grid-column: 1 / -1;
  border: 1px solid #dbe5ef;
  border-radius: 14px;
  background: linear-gradient(180deg, #f9fbfe 0%, #ffffff 100%);
  padding: 0.85rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.form-section-store h3 {
  margin: 0;
  grid-column: 1 / -1;
  font-size: 0.95rem;
  color: #33516d;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.form-section-store label.wide {
  grid-column: 1 / -1;
}
.form-intro {
  background: #eef4fb;
  border: 1px solid #d4dfec;
  border-radius: 10px;
  padding: 0.68rem 0.82rem;
  color: #334155;
}
.checkout-form button,
.checkout-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
}
.error {
  background: #fee2e2;
  color: #991b1b;
  padding: 0.66rem;
  border-radius: 10px;
}
.account-shell {
  display: grid;
  gap: 0.95rem;
}
.account-hero {
  border: 1px solid #d9e3ee;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8fcff 0%, #ffffff 48%, #f3f8fd 100%);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  padding: 1.05rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 2fr minmax(220px, 1fr);
}
.account-eyebrow {
  margin: 0 0 0.24rem;
  color: #4d6780;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  font-size: 0.75rem;
}
.account-hero h1 {
  margin: 0;
}
.account-hero p {
  margin: 0.35rem 0 0;
  color: #3e556d;
}
.account-hero-meta {
  border: 1px solid #d9e5f0;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.8rem;
  display: grid;
  gap: 0.48rem;
  align-content: start;
}
.account-hero-meta p {
  margin: 0;
  color: #2f4357;
  font-size: 0.9rem;
}
.account-kpi-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.account-kpi-card {
  border: 1px solid #d9e3ee;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);
  padding: 0.85rem;
}
.account-kpi-card p {
  margin: 0;
  color: #536d84;
  font-size: 0.82rem;
}
.account-kpi-card strong {
  display: block;
  margin-top: 0.42rem;
  color: #10283f;
  font-size: 1.16rem;
}
.account-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 2.05fr) minmax(280px, 1fr);
  align-items: start;
}
.account-main {
  display: grid;
  gap: 0.9rem;
}
.account-sidebar {
  display: grid;
  gap: 0.75rem;
  position: sticky;
  top: calc(var(--shop-sticky-header-height, 0px) + 0.8rem);
}
.account-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.account-tabs a {
  text-decoration: none;
  border: 1px solid #d8e3ee;
  border-radius: 999px;
  background: #f6fafe;
  color: #234862;
  font-size: 0.86rem;
  font-weight: 700;
  padding: 0.4rem 0.74rem;
}
.account-tabs a:hover {
  background: #eef5fc;
}
.account-card {
  border: 1px solid #d9e3ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  padding: 0.95rem;
}
.account-card-head {
  margin-bottom: 0.78rem;
}
.account-card-head h2 {
  margin: 0;
}
.account-card-head p {
  margin: 0.3rem 0 0;
  color: #506a82;
  font-size: 0.9rem;
}
.account-form {
  box-shadow: none;
  border: 0;
  padding: 0;
  background: transparent;
}
.account-form .form-section-store {
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}
.account-form label.is-readonly {
  border-style: dashed;
}
.account-form label.is-readonly input[readonly] {
  background: #f4f8fc;
  color: #52687d;
}
.account-order-table-wrap {
  overflow-x: auto;
}
.account-order-table {
  margin-top: 0.2rem;
}
.account-order-link {
  color: #0f4c7f;
  font-weight: 700;
  text-decoration: none;
}
.account-order-link:hover {
  text-decoration: underline;
}
.account-order-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.36rem;
}
.account-side-card {
  border: 1px solid #d9e3ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  padding: 0.85rem;
}
.account-side-card h3 {
  margin: 0 0 0.62rem;
  color: #1f3d59;
}
.account-side-list {
  margin: 0;
  display: grid;
  gap: 0.42rem;
}
.account-side-list div {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto;
  gap: 0.6rem;
  align-items: center;
}
.account-side-list dt {
  color: #546d82;
  font-size: 0.84rem;
}
.account-side-list dd {
  margin: 0;
  color: #1f3449;
  font-weight: 700;
  font-size: 0.88rem;
}
.account-side-actions {
  display: grid;
  gap: 0.45rem;
}
.account-side-actions .btn {
  width: 100%;
  text-align: center;
}
.account-address-preview {
  margin: 0;
  border: 1px dashed #d3dfeb;
  border-radius: 12px;
  background: #f7fbff;
  padding: 0.68rem;
  color: #324a60;
  font-style: normal;
  line-height: 1.45;
}
.order-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d9e3ee;
  background: #f6fafe;
  color: #24465f;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.18rem 0.54rem;
  letter-spacing: 0.01em;
}
.order-pill.is-success {
  border-color: #86efac;
  background: #dcfce7;
  color: #166534;
}
.order-pill.is-danger {
  border-color: #fecaca;
  background: #fee2e2;
  color: #991b1b;
}
.order-pill.is-warning {
  border-color: #fde68a;
  background: #fef9c3;
  color: #92400e;
}
.order-pill.is-neutral {
  border-color: #d9e3ee;
  background: #f6fafe;
  color: #24465f;
}
.account-btn-secondary {
  background: #e9f3fb;
  color: #1f4767;
  border: 1px solid #cfe0ee;
}
.account-btn-ghost {
  background: #ffffff;
  color: #1f4767;
  border: 1px solid #cfdeec;
}
.account-btn-danger {
  background: #b91c1c;
  color: #ffffff;
}
.account-empty {
  margin: 0;
  border: 1px dashed #d1deeb;
  border-radius: 12px;
  background: #f8fbff;
  color: #445e75;
  padding: 0.74rem;
}
.account-back-link {
  margin: 0;
}
.account-back-link a {
  color: #0f4c7f;
  text-decoration: none;
  font-weight: 700;
}
.account-back-link a:hover {
  text-decoration: underline;
}
.account-order-head-card {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.account-order-head-main h1 {
  margin: 0;
}
.account-order-head-main p {
  margin: 0.4rem 0 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
}
.account-order-head-date {
  color: #536a81;
  font-size: 0.86rem;
}
.account-order-head-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
  justify-content: flex-end;
}
.account-inline-form {
  margin: 0;
  display: inline-flex;
}
.account-order-meta-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.account-order-filters {
  margin-bottom: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.account-order-filters a {
  text-decoration: none;
  border: 1px solid #d7e2ee;
  border-radius: 999px;
  color: #1f4767;
  background: #f4f8fc;
  padding: 0.28rem 0.68rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.account-order-filters a.active {
  border-color: #3b82f6;
  background: #e8f1ff;
  color: #1e40af;
}
.account-wishlist-grid {
  display: grid;
  gap: 0.72rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.account-wishlist-card {
  border: 1px solid #d8e3ef;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
}
.account-wishlist-image {
  display: block;
  border-right: 1px solid #e2eaf2;
  background: #f8fbff;
}
.account-wishlist-image img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: contain;
  display: block;
}
.account-wishlist-body {
  padding: 0.68rem;
  display: grid;
  gap: 0.3rem;
}
.account-wishlist-body h3 {
  margin: 0;
  font-size: 0.97rem;
}
.account-wishlist-body h3 a {
  text-decoration: none;
  color: #123b5c;
}
.account-wishlist-price {
  margin: 0;
  color: #0f2f4a;
  font-weight: 800;
}
.account-wishlist-stock {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}
.account-wishlist-stock.is-in-stock {
  color: #166534;
}
.account-wishlist-stock.is-out-of-stock {
  color: #991b1b;
}
.account-wishlist-actions {
  margin-top: 0.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.34rem;
}
.link-btn {
  border: 0;
  background: transparent;
  color: #b91c1c;
  cursor: pointer;
  text-decoration: underline;
}
.site-footer {
  margin-top: 1.5rem;
  border-top: 1px solid #dbe5ef;
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7fc 100%);
}
.site-footer-inner {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0 auto;
  padding: 1.1rem 1.25rem 0.85rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr repeat(3, minmax(180px, 1fr));
}
.site-footer-col h3,
.site-footer-col h4 {
  margin: 0 0 0.55rem;
  color: #213a52;
}
.site-footer-col h4 {
  font-size: 0.94rem;
}
.site-footer-col p {
  margin: 0.3rem 0;
  color: #415b73;
}
.site-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.36rem;
}
.site-footer-col a {
  color: #274862;
  text-decoration: none;
}
.site-footer-col a:hover {
  text-decoration: underline;
}
.footer-muted {
  color: #687f95;
}
.site-footer-bottom {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0 auto;
  padding: 0.8rem 1.25rem 1rem;
  border-top: 1px solid #dbe5ef;
  color: #62798f;
  font-size: 0.84rem;
}
@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .account-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .account-layout {
    grid-template-columns: 1fr;
  }
  .account-sidebar {
    position: static;
  }
  .account-order-head-card {
    grid-template-columns: 1fr;
  }
  .account-order-head-actions {
    justify-content: flex-start;
  }
  .account-wishlist-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .store-services-ribbon {
    min-width: 224px;
    padding: 0.72rem 0.88rem;
    font-size: 0.79rem;
  }
  .topbar {
    justify-content: flex-start;
  }
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .shop-layout.shop-layout-right {
    grid-template-columns: 1fr;
  }
  .shop-layout.shop-layout-right .shop-sidebar {
    order: 0;
  }
  .shop-sidebar {
    position: static;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .shop-cat-menu {
    max-height: none;
    overflow: visible;
  }
  .shop-cat-sticky-head {
    position: static;
    padding-bottom: 0;
    background: transparent;
    backdrop-filter: none;
  }
  .shop-filter-form {
    position: static;
    box-shadow: none;
  }
  .checkout-form {
    grid-template-columns: 1fr;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  .form-section-store {
    grid-template-columns: 1fr;
  }
  .cart-table {
    font-size: 0.92rem;
  }
  .shop-cat-node {
    margin-left: calc(var(--depth) * 14px);
  }
  .shop-cat-row {
    grid-template-columns: 26px 1fr auto;
  }
  .shop-cat-row.no-count {
    grid-template-columns: 26px 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-footer-inner {
    grid-template-columns: 1fr;
  }
  .account-hero {
    grid-template-columns: 1fr;
  }
  .account-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .account-order-meta-grid {
    grid-template-columns: 1fr;
  }
  .account-wishlist-card {
    grid-template-columns: 100px minmax(0, 1fr);
  }
  .account-wishlist-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .account-wishlist-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .account-kpi-grid {
    grid-template-columns: 1fr;
  }
  .account-order-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .account-order-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* Premium Theme v0.0.61 */
.shop-header-premium {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0.6rem auto 0;
  padding: 0.65rem 0.85rem 0.85rem;
  position: var(--shop-topbar-position, static);
  top: var(--shop-topbar-top, auto);
  z-index: var(--shop-topbar-z, 1);
  border-radius: 18px;
  border: 1px solid var(--shop-topbar-border-color, rgba(214, 224, 235, 0.9));
  box-shadow: var(--shop-topbar-shadow, 0 14px 30px rgba(15, 23, 42, 0.08));
  background: var(--shop-topbar-shell-bg, rgba(255, 255, 255, 0.92));
  display: grid;
  gap: 0.62rem;
  backdrop-filter: blur(var(--shop-topbar-blur, 8px));
}
.shop-header-premium.is-sticky-enabled {
  position: sticky;
  top: 0;
  z-index: 140;
  margin-top: 0;
}
.shop-header-premium.is-sticky-enabled.is-scrolled {
  width: var(--shop-topbar-sticky-scrolled-width, 100%);
  max-width: var(--shop-topbar-sticky-scrolled-max-width, none);
  margin: var(--shop-topbar-sticky-scrolled-margin, 0);
  border-radius: var(--shop-topbar-sticky-scrolled-radius, 0);
  background: var(--shop-topbar-sticky-shell-bg, rgba(255, 255, 255, 0.96));
  border-color: var(--shop-topbar-sticky-border-color, rgba(255, 255, 255, 0.98));
  box-shadow: var(--shop-topbar-sticky-shadow, 0 16px 34px rgba(15, 23, 42, 0.16));
}
.shop-header-premium.is-sticky-enabled.is-scrolled .topbar-service {
  background: var(--shop-topbar-sticky-row-bg, rgba(255, 255, 255, 0.98));
  border-bottom-color: var(--shop-topbar-sticky-divider-color, rgba(255, 255, 255, 0.92));
}
.shop-header-premium.is-sticky-enabled.is-scrolled .topbar-main {
  background: var(--shop-topbar-sticky-row-bg, rgba(255, 255, 255, 0.98));
}
.shop-header-premium.is-sticky-enabled.is-sticky-collapse-service {
  overflow: hidden;
}
.shop-header-premium.is-sticky-enabled.is-sticky-collapse-service .topbar-service {
  max-height: 96px;
  opacity: 1;
  overflow: hidden;
  transition: max-height 0.24s ease, opacity 0.18s ease, padding 0.2s ease, margin 0.2s ease, border-color 0.2s ease;
}
.shop-header-premium.is-sticky-enabled.is-sticky-collapse-service.is-scrolled {
  padding-top: 0.45rem;
  gap: 0.34rem;
}
.shop-header-premium.is-sticky-enabled.is-sticky-collapse-service.is-scrolled .topbar-service {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
  margin: 0;
}
.topbar-service {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--shop-topbar-divider-color, rgba(225, 233, 241, 0.95));
  padding-bottom: 0.55rem;
  text-align: center;
  background: var(--shop-topbar-row-bg, transparent);
  border-radius: 12px;
  padding-top: 0.2rem;
  padding-left: 0.3rem;
  padding-right: 0.3rem;
}
.service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
  border: 1px solid #d7e3ef;
  background: #f5faff;
  color: #35516b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.service-link {
  color: #204766;
  font-size: 0.85rem;
  text-decoration: none;
  font-weight: 600;
}
.service-link:hover {
  text-decoration: underline;
}
.topbar-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  background: var(--shop-topbar-row-bg, transparent);
  border-radius: 12px;
  padding: 0.2rem 0.28rem;
}
.topbar-main > * {
  min-width: 0;
}
.topbar-brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  gap: 0.62rem;
  text-decoration: none;
  color: inherit;
}
.topbar-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--shop-topbar-logo-wrap-min-height, 54px);
  max-width: min(var(--shop-topbar-logo-wrap-max-width, 240px), 34vw);
}
.topbar-logo {
  width: auto;
  height: auto;
  max-height: var(--shop-topbar-logo-max-height, 52px);
  max-width: 100%;
  border: 1px solid #d5e0eb;
  border-radius: 10px;
  object-fit: contain;
  object-position: left center;
  background: #ffffff;
  padding: 0.18rem;
}
.topbar-logo.topbar-logo-transparent {
  background: transparent;
  border-color: transparent;
  padding: 0;
}
.topbar-logo-fallback {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary, #1f7a8c) 0%, color-mix(in srgb, var(--primary, #1f7a8c) 70%, #0f172a) 100%);
}
.topbar-brand-text {
  display: grid;
  line-height: 1.1;
}
.topbar-brand-text strong {
  color: #0f1f33;
  font-size: 1rem;
}
.topbar-brand-text small {
  color: #55708a;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
  gap: 0.48rem;
}
.top-action {
  text-decoration: none;
  border: 1px solid #d8e2ec;
  background: #f6fafe;
  color: #24455f;
  border-radius: 999px;
  padding: 0.44rem 0.68rem;
  font-weight: 700;
  font-size: 0.84rem;
  position: relative;
}
.top-action.top-action-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.top-action.top-action-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.top-action.top-action-with-text {
  width: auto;
  min-height: 42px;
  padding: 0.44rem 0.72rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.36rem;
}
.top-action.top-action-with-text svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.top-action-label {
  display: inline;
  font-size: 0.82rem;
  line-height: 1;
}
.top-action-account {
  background: #eef5fc;
  color: #1f4768;
  border-color: #d5e4f2;
}
.top-action-logout {
  background: #fff1f2;
  color: #9f1239;
  border-color: #fecdd3;
}
.top-action-logout:hover {
  background: #ffe4e6;
}
.top-action:hover {
  background: #ecf4fb;
}
.top-action-badge {
  display: inline-block;
  min-width: 1.5rem;
  text-align: center;
  position: absolute;
  top: -6px;
  right: -6px;
  border-radius: 999px;
  background: var(--primary, #1f7a8c);
  color: #ffffff;
  font-size: 0.77rem;
  padding: 0.08rem 0.32rem;
  border: 2px solid #ffffff;
}
.topbar-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.44rem;
  padding-top: 0.08rem;
}
.topbar-links-inline {
  max-width: 100%;
  padding-top: 0;
  justify-content: center;
  justify-self: center;
}
.topbar-links .top-link {
  border: 1px solid transparent;
  background: transparent;
  color: #1f4d72;
}
.topbar-links .top-link:hover {
  background: #eef5fb;
  border-color: #d5e2ee;
}
.topbar-mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.38rem;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid #d2e0ed;
  background: #f6fafe;
  color: #1f4a6a;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 0.34rem 0.72rem;
}
.topbar-mobile-menu-icon {
  width: 16px;
  height: 12px;
  position: relative;
  display: inline-block;
}
.topbar-mobile-menu-icon::before,
.topbar-mobile-menu-icon::after,
.topbar-mobile-menu-icon {
  border-top: 2px solid currentColor;
}
.topbar-mobile-menu-icon::before,
.topbar-mobile-menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}
.topbar-mobile-menu-icon::before {
  top: 4px;
}
.topbar-mobile-menu-icon::after {
  top: 8px;
}
.topbar-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 175;
  background: rgba(15, 23, 42, 0.46);
}
.topbar-mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 190;
  width: min(86vw, 360px);
  background: linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
  border-right: 1px solid #d8e3ee;
  box-shadow: 10px 0 28px rgba(15, 23, 42, 0.22);
  padding: 0.86rem;
  grid-template-rows: auto auto 1fr;
  gap: 0.72rem;
  transform: translateX(-104%);
  transition: transform 0.22s ease;
  overflow-y: auto;
}
.topbar-mobile-drawer.is-open {
  transform: translateX(0);
}

.topbar-mobile-overlay[hidden],
.mobile-filter-overlay[hidden] {
  display: none !important;
}

.topbar-mobile-overlay:not([hidden]),
.mobile-filter-overlay:not([hidden]) {
  display: block;
}
.topbar-mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.topbar-mobile-head strong {
  color: #153552;
  font-size: 1.02rem;
}
.topbar-mobile-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid #d3e0ec;
  background: #ffffff;
  color: #224766;
  font-size: 1.3rem;
  line-height: 1;
}
.topbar-mobile-links,
.topbar-mobile-account {
  display: grid;
  gap: 0.42rem;
}
.topbar-mobile-links a,
.topbar-mobile-account a {
  min-height: 42px;
  border-radius: 12px;
  border: 1px solid #d8e3ee;
  background: #ffffff;
  color: #1f455f;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.4rem 0.62rem;
}
.topbar-mobile-account a:last-child {
  background: #edf5fc;
}
body.mobile-menu-open {
  overflow: hidden;
}
.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;
}

.shop-trust-strip {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  display: grid;
  gap: 0.62rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.trust-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid #dbe6f0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-radius: 14px;
  padding: 0.72rem 0.78rem;
}
.trust-card strong {
  display: block;
  color: #15334f;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}
.trust-card p {
  margin: 0.3rem 0 0;
  color: #49627a;
  font-size: 0.84rem;
  overflow-wrap: anywhere;
}

.catalog-overview-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.95fr);
  align-items: center;
  border: 1px solid #dbe5ef;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(31, 122, 140, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f5faff 55%, #eef6fb 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  padding: 1rem 1.05rem;
}
.catalog-overview-copy h2 {
  margin: 0.2rem 0 0.35rem;
  color: #12314d;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
}
.catalog-overview-copy p {
  margin: 0;
  color: #4f6a82;
  line-height: 1.65;
}
.catalog-overview-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #d6e3ef;
  color: #234b6a;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.12rem 0.72rem;
}
.catalog-overview-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.8rem;
}
.catalog-overview-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d8e4ef;
  color: #274967;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.18rem 0.68rem;
}
.catalog-overview-stats {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.catalog-overview-stats article {
  border: 1px solid #d8e3ee;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem 0.85rem;
  display: grid;
  gap: 0.18rem;
}
.catalog-overview-stats span {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.catalog-overview-stats strong {
  color: #12314d;
  font-size: 1.1rem;
}
.catalog-overview-stats small {
  color: #5a7288;
  font-size: 0.8rem;
  line-height: 1.45;
}
.catalog-overview-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.mega-menu-shell {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0.9rem auto 0.4rem;
  padding: 0 1.25rem;
}
.mega-menu-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.55rem;
}
.mega-menu-head h2 {
  margin: 0;
  font-size: 1.05rem;
  color: #13314d;
}
.mega-menu-head p {
  margin: 0;
  color: #4f6a82;
  font-size: 0.86rem;
}
.mega-menu-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.mega-menu-col {
  border: 1px solid #d8e3ee;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  padding: 0.66rem;
}
.mega-root-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #173654;
  font-weight: 800;
  font-size: 0.92rem;
  border-radius: 10px;
  padding: 0.35rem 0.48rem;
  background: #eef5fb;
}
.mega-root-link.active {
  background: var(--primary, #1f7a8c);
  color: #ffffff;
}
.mega-root-link small {
  font-size: 0.75rem;
  font-weight: 700;
}
.mega-sub-list {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.26rem;
}
.mega-sub-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #26445f;
  border-radius: 8px;
  padding: 0.28rem 0.44rem;
  font-size: 0.84rem;
}
.mega-sub-list a:hover {
  background: #edf5fc;
}
.mega-sub-list a.active {
  background: #e1eef9;
  font-weight: 700;
}
.mega-sub-list a small {
  color: #5a7289;
  font-size: 0.74rem;
}

.premium-banner-shell {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0.6rem auto 0.45rem;
  padding: 0 1.25rem;
}
.scroll-carousel {
  position: relative;
}
.scroll-carousel-viewport {
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.scroll-carousel-viewport::-webkit-scrollbar {
  display: none;
}
.scroll-carousel-track {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  min-width: 100%;
}
.scroll-carousel-track > * {
  scroll-snap-align: start;
}
.scroll-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #d2deeb;
  background: #ffffff;
  color: #224764;
  font-weight: 800;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
  cursor: pointer;
}
.scroll-carousel-arrow[hidden] {
  display: none;
}
.scroll-carousel-arrow.prev {
  left: -0.55rem;
}
.scroll-carousel-arrow.next {
  right: -0.55rem;
}
.scroll-carousel-arrow:hover {
  background: #edf5fc;
}
.scroll-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.52rem;
}
.scroll-carousel-dots[hidden] {
  display: none;
}
.scroll-carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #c6d6e7;
  cursor: pointer;
}
.scroll-carousel-dot.is-active {
  width: 20px;
  background: var(--primary, #1f7a8c);
}
.premium-banner-carousel {
  border: 1px solid #d8e3ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  padding: 0.64rem;
}
.premium-banner-track {
  gap: 0.75rem;
}
.premium-banner-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 250px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d7e2ee;
  background: linear-gradient(135deg, #dceaf7 0%, #f4f8fd 100%);
}
.premium-banner-slide > .premium-banner-media,
.premium-banner-link {
  position: absolute;
  inset: 0;
}
.premium-banner-link {
  display: block;
  color: inherit;
  text-decoration: none;
  z-index: 3;
}
.premium-banner-link .premium-banner-media {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary, #1f7a8c) 18%, #ffffff) 0%, #f4f8fd 100%);
}
.premium-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 0.55rem;
}
.premium-banner-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.56) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, color-mix(in srgb, var(--primary, #1f7a8c) 24%, #ffffff) 0%, #f4f8fd 100%);
}
.premium-banner-overlay {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.28rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(15, 23, 42, 0.4);
}
.premium-banner-overlay strong {
  font-size: clamp(1.05rem, 2.2vw, 1.55rem);
  line-height: 1.25;
}
.premium-banner-overlay small {
  font-size: 0.88rem;
  max-width: 70ch;
}
.premium-banner-overlay em {
  margin-top: 0.28rem;
  font-style: normal;
  display: inline-flex;
  width: fit-content;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(15, 23, 42, 0.32);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.2rem 0.74rem;
}
.premium-banner-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 20%, rgba(15, 23, 42, 0.58) 100%);
  pointer-events: none;
}

.favorite-carousel-shell {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0.65rem auto 0.2rem;
  padding: 0 1.25rem;
}
.favorite-carousel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.favorite-carousel-head h2 {
  margin: 0;
  font-size: 1.1rem;
  color: #14314f;
}
.favorite-carousel-head p {
  margin: 0;
  color: #527089;
  font-size: 0.85rem;
}
.favorite-carousel {
  border: 1px solid #d9e4ef;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  padding: 0.58rem;
  overflow: hidden;
}
.favorite-carousel.is-marquee {
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 5%, #000 95%, rgba(0, 0, 0, 0) 100%);
}
.favorite-carousel-track {
  display: flex;
  gap: 0.65rem;
  padding-bottom: 0.12rem;
  width: max-content;
  min-width: 100%;
}
.favorite-carousel-track.is-marquee {
  animation: favorite-marquee 34s linear infinite;
}
.favorite-banner-card {
  flex: 0 0 clamp(210px, 22vw, 275px);
  border: 1px solid #d7e2ed;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  display: grid;
  text-decoration: none;
  color: inherit;
}
.favorite-banner-image {
  display: grid;
  place-items: center;
  border-bottom: 1px solid #e1e9f1;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.favorite-banner-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center center;
  padding: 0.45rem;
}
.favorite-banner-content {
  display: grid;
  gap: 0.2rem;
  padding: 0.54rem 0.6rem 0.6rem;
}
.favorite-banner-content strong {
  color: #173450;
  font-size: 0.88rem;
  line-height: 1.35;
}
.favorite-banner-content small {
  color: var(--accent, #f4a261);
  font-size: 0.86rem;
  font-weight: 800;
}
@keyframes favorite-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .favorite-carousel-track.is-marquee {
    animation: none;
  }
}

.mobile-filter-toggle,
.mobile-filter-overlay,
.mobile-filter-close {
  display: none;
}

.product-card {
  padding: 0.8rem;
  gap: 0.65rem;
  content-visibility: auto;
  contain-intrinsic-size: 390px;
}
.product-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}
.product-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}
.product-badge {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border-radius: 999px;
  padding: 0.08rem 0.48rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.product-badge-sale {
  background: #ffe3e3;
  color: #a42323;
}
.product-badge-new {
  background: #e0f2fe;
  color: #075985;
}
.product-stock {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.product-stock.in-stock {
  color: #166534;
}
.product-stock.out-of-stock {
  color: #991b1b;
}
.product-image-frame {
  border: 1px solid #d6e1ec;
  border-radius: calc(var(--shop-card-radius, 18px) - 4px);
  overflow: hidden;
  background: #ffffff;
}
.product-image-placeholder {
  width: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  color: #6b7f93;
  background: repeating-linear-gradient(
    -45deg,
    #f5f8fb 0,
    #f5f8fb 10px,
    #ecf2f7 10px,
    #ecf2f7 20px
  );
  font-size: 0.86rem;
  font-weight: 700;
}
.product-card-body {
  display: grid;
  gap: 0.45rem;
}
.product-card-meta {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem 0.54rem;
  color: #526a81;
  font-size: 0.78rem;
  font-weight: 700;
}
.product-card-meta span {
  color: #35526c;
}
.product-card-desc {
  margin: 0;
  color: #3d556e;
  font-size: 0.88rem;
  line-height: 1.45;
}
.premium-card-footer {
  align-items: flex-end;
}
.product-buy-footer {
  margin-top: auto;
  display: grid;
  gap: 0.42rem;
}
.product-card-actions {
  display: flex;
  justify-content: flex-end;
}
.inline-form {
  margin: 0;
}
.wishlist-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid #cfddea;
  background: #f5f9fd;
  color: #2a4e6b;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.16rem 0.62rem;
}
.wishlist-toggle-btn:hover {
  background: #ebf3fa;
}
.wishlist-toggle-btn.is-active {
  border-color: #f5c97d;
  background: #fff6e4;
  color: #9a5c00;
}
.price-stack {
  display: grid;
  gap: 0.14rem;
}
.details-link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid #d3e0eb;
  background: #f7fbff;
  color: #25506f;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  padding: 0.18rem 0.62rem;
}
.details-link:hover {
  background: #eef6fd;
}
.add-cart-form.compact .buy-btn {
  width: 100%;
  justify-content: center;
  min-height: 42px;
  font-size: 0.9rem;
  font-weight: 800;
}

.premium-product-detail {
  margin-top: 0.65rem;
}
.product-breadcrumb {
  margin-bottom: 0.78rem;
}
.product-detail-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.product-detail-intro__copy {
  border: 1px solid #dce7f1;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(148, 197, 255, 0.16) 0%, rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  padding: 1.1rem 1.15rem;
}
.product-detail-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: #eaf3ff;
  color: #24486a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-detail-intro__headline {
  margin: 0.7rem 0 0.28rem;
  color: #0f172a;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 800;
}
.product-detail-intro__text {
  margin: 0;
  max-width: 62ch;
  color: #4a647c;
  line-height: 1.7;
}
.product-detail-intro__meta {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.product-detail-intro__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.78rem;
  border: 1px solid #d7e3ef;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #284864;
  font-size: 0.82rem;
  font-weight: 700;
}
.product-detail-intro__pill.is-in-stock {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}
.product-detail-intro__pill.is-low-stock {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}
.product-detail-intro__pill.is-out-of-stock {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}
.product-detail-intro__pill--flag {
  position: relative;
  border-style: dashed;
  cursor: help;
}
.product-detail-intro__pill--flag.is-highlight {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #3730a3;
}
.product-detail-intro__pill--flag.is-pricing {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}
.product-detail-intro__pill--flag.is-logistics {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}
.product-detail-intro__pill--flag.is-catalog {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}
.product-detail-intro__aside {
  display: grid;
}
.product-highlight-card {
  border: 1px solid #dce7f1;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  padding: 1.05rem 1.1rem;
  display: grid;
  align-content: start;
  gap: 0.55rem;
}
.product-highlight-card__label {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-highlight-card strong {
  color: #0f172a;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.product-highlight-card p {
  margin: 0;
  color: #51687e;
  line-height: 1.55;
}
.product-highlight-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.product-highlight-card__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.72rem;
  border-radius: 999px;
  background: #eef5fb;
  color: #35556f;
  font-size: 0.8rem;
  font-weight: 700;
}
.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 1.15rem;
  align-items: start;
}
.product-gallery-panel {
  border: 1px solid #d9e4ef;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
  padding: 0.95rem;
}
.product-gallery-panel .product-main-image {
  aspect-ratio: 4 / 3;
  max-height: clamp(320px, 52vh, 520px);
  padding: 1rem;
  box-shadow: inset 0 0 0 1px rgba(217, 225, 234, 0.35);
}
.product-gallery-panel .thumb-btn {
  min-height: 62px;
}
.product-gallery-panel .thumb-btn img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f8fbff;
  padding: 0.2rem;
}
.product-buy-panel {
  border: 1px solid #d8e3ee;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.07);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
  position: sticky;
  top: 0.8rem;
}
.product-buy-panel h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.product-buy-panel__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
.product-buy-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.product-buy-panel__chip,
.product-stock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.72rem;
  border-radius: 999px;
  border: 1px solid #d7e3ef;
  background: #ffffff;
  color: #284864;
  font-size: 0.79rem;
  font-weight: 800;
}
.product-buy-panel__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.product-flag-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.68rem;
  border-radius: 999px;
  border: 1px dashed #d7e3ef;
  background: #fff;
  color: #284864;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: help;
}
.product-flag-badge.is-highlight {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #3730a3;
}
.product-flag-badge.is-pricing {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}
.product-flag-badge.is-logistics {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}
.product-flag-badge.is-catalog {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}
.product-detail-intro__pill--flag[data-tooltip]::after,
.product-flag-badge[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  min-width: 180px;
  max-width: 260px;
  padding: 0.6rem 0.72rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.96);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.45;
  text-align: left;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 20;
}
.product-detail-intro__pill--flag[data-tooltip]:hover::after,
.product-detail-intro__pill--flag[data-tooltip]:focus-visible::after,
.product-flag-badge[data-tooltip]:hover::after,
.product-flag-badge[data-tooltip]:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.product-stock-badge.is-in-stock {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #166534;
}
.product-stock-badge.is-low-stock {
  border-color: #fde68a;
  background: #fffbeb;
  color: #92400e;
}
.product-stock-badge.is-out-of-stock {
  border-color: #fecaca;
  background: #fef2f2;
  color: #991b1b;
}
.product-subline {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem 0.72rem;
  color: #4f6881;
  font-size: 0.83rem;
  font-weight: 700;
}
.product-rating-line {
  margin: -0.18rem 0 0;
  color: #1e4e74;
  font-size: 0.84rem;
  font-weight: 700;
}
.product-price-panel {
  border: 1px solid #d9e4ef;
  border-radius: 14px;
  background: #ffffff;
  padding: 0.66rem 0.8rem;
}
.product-trust-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-trust-card {
  border: 1px solid #dbe5ef;
  border-radius: 16px;
  background: #ffffff;
  padding: 0.8rem 0.82rem;
}
.product-trust-card strong {
  display: block;
  color: #0f172a;
  font-size: 0.88rem;
}
.product-trust-card p {
  margin: 0.28rem 0 0;
  color: #5b7085;
  font-size: 0.82rem;
  line-height: 1.5;
}
.product-buy-form {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
  align-items: end;
  gap: 0.62rem;
}
.product-buy-form label {
  display: grid;
  gap: 0.26rem;
  color: #314b64;
  font-size: 0.86rem;
  font-weight: 700;
}
.product-buy-form .buy-btn {
  min-height: 42px;
}
.product-trust-list {
  margin: 0;
  padding-left: 1rem;
  color: #3f5973;
  font-size: 0.87rem;
  display: grid;
  gap: 0.28rem;
}
.product-conversion-teaser {
  margin: 0;
  border: 1px solid #d7e3ef;
  border-radius: 12px;
  background: #f6fbff;
  color: #1f4464;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.58rem 0.68rem;
}
.product-benefit-list {
  margin: 0;
  padding-left: 1rem;
  color: #34516b;
  font-size: 0.85rem;
  display: grid;
  gap: 0.24rem;
}
.product-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
}
.product-facts-grid article {
  border: 1px solid #dbe5ef;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.55rem 0.62rem;
  display: grid;
  gap: 0.14rem;
}
.product-facts-grid span {
  color: #5d7387;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.product-facts-grid strong {
  color: #243b53;
  font-size: 0.88rem;
}
.product-content-grid {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.product-content-card {
  border: 1px solid #d8e3ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
  padding: 0.9rem;
}
.product-content-card h2 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}
.product-detail-note {
  margin: 0 0 0.75rem;
  color: #51677c;
  line-height: 1.65;
}
.product-detail-grid {
  margin: 0;
  display: grid;
  gap: 0.6rem;
}
.product-detail-grid__item {
  border: 1px solid #dbe5ef;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 0.7rem 0.78rem;
}
.product-detail-grid dt {
  margin: 0 0 0.2rem;
  color: #607489;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.product-detail-grid dd {
  margin: 0;
  color: #1f3448;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}
.product-category-links-card {
  margin-top: 0.9rem;
  border: 1px solid #d8e3ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  padding: 0.84rem 0.92rem;
}
.product-category-links-card h2 {
  margin: 0 0 0.6rem;
  color: #123753;
  font-size: 1.02rem;
}
.product-category-link-group + .product-category-link-group {
  margin-top: 0.6rem;
}
.product-category-link-group > p {
  margin: 0 0 0.34rem;
  font-size: 0.82rem;
  color: #4e677d;
  font-weight: 700;
}
.product-category-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.product-category-link-chip {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #d3dfeb;
  border-radius: 999px;
  background: #f6fbff;
  color: #224766;
  font-size: 0.83rem;
  font-weight: 700;
  padding: 0.24rem 0.58rem;
}
.product-category-link-chip small {
  min-width: 1.5rem;
  text-align: center;
  border-radius: 999px;
  background: #e3edf8;
  color: #39546c;
  font-size: 0.73rem;
  padding: 0.08rem 0.33rem;
}
.product-category-link-chip:hover {
  background: #eef6ff;
}
.product-service-strip {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-service-card {
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  padding: 0.9rem 0.95rem;
}
.product-service-card span {
  display: block;
  margin-bottom: 0.22rem;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-service-card strong {
  color: #1d3348;
  font-size: 0.92rem;
  line-height: 1.5;
}
.product-description-text {
  color: #334e68;
  line-height: 1.65;
}
.related-section--products {
  border: 1px solid #dce7f1;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  padding: 1rem;
}
.related-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}
.related-section__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.66rem;
  border-radius: 999px;
  background: #edf5fb;
  color: #35556f;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.related-section__head h2 {
  margin: 0.45rem 0 0.18rem;
  color: #0f172a;
  font-size: 1.2rem;
}
.related-section__head p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
}
.related-section__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid #d7e3ef;
  background: #ffffff;
  color: #24486a;
  text-decoration: none;
  font-weight: 800;
}
.related-section__link:hover {
  background: #eef6ff;
}
.product-card--related .product-image-frame img.is-noimage {
  object-fit: contain;
  background: #f8fafc;
  padding: 1rem;
}
.premium-related-card {
  display: grid;
  gap: 0.45rem;
}
.related-card-image {
  display: block;
  border: 1px solid #d6e1ec;
  border-radius: 10px;
  overflow: hidden;
}
.related-card-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}
.related-card-title {
  text-decoration: none;
  color: #142d46;
  font-weight: 800;
}
.related-card-price {
  margin: 0;
  color: var(--accent, #f4a261);
  font-weight: 800;
}
.related-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid #d6e1ec;
  color: #234d6e;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  background: #f6fafe;
}
.related-card-cta:hover {
  background: #edf5fc;
}

.site-footer {
  border-top: 1px solid #d6e1ec;
  background:
    radial-gradient(circle at 5% 10%, rgba(31, 122, 140, 0.08) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #f8fbff 0%, #edf4fa 100%);
}
.site-footer-meta {
  width: var(--shop-shell-width, 90%);
  max-width: var(--shop-shell-max-width, none);
  margin: 0 auto;
  padding: 0 1.25rem 0.95rem;
  display: grid;
  gap: 0.78rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.site-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.trust-pill {
  border-radius: 999px;
  border: 1px solid #d5e1ec;
  background: #f7fbff;
  color: #34536f;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.24rem 0.62rem;
}
.site-footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.34rem 0.45rem;
  color: #48647c;
  font-size: 0.8rem;
}
.site-footer-payments strong {
  border-radius: 8px;
  border: 1px solid #d5e1ec;
  background: #ffffff;
  color: #294763;
  padding: 0.18rem 0.38rem;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.premium-checkout-shell {
  margin-top: 0.8rem;
}
.checkout-headline {
  margin-bottom: 0.9rem;
}
.checkout-headline h1 {
  margin: 0;
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  color: #122f4b;
}
.checkout-headline p {
  margin: 0.35rem 0 0;
  color: #4f6b83;
}
.checkout-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
}
.checkout-main-card {
  border: 1px solid #d8e3ee;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.06);
  padding: 0.9rem;
}
.premium-checkout-form {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}
.checkout-choice-grid {
  display: grid;
  gap: 0.55rem;
}
.checkout-choice {
  display: block;
  position: relative;
}
.checkout-choice input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.checkout-choice-card {
  border: 1px solid #d6e2ee;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.62rem 0.7rem;
  display: grid;
  gap: 0.18rem;
  cursor: pointer;
}
.checkout-choice-card strong {
  color: #1d3d59;
  font-size: 0.9rem;
}
.checkout-choice-card small {
  color: #5a7288;
  font-size: 0.8rem;
}
.checkout-choice-card em {
  font-style: normal;
  color: #2c4c66;
  font-size: 0.78rem;
  font-weight: 700;
}
.checkout-choice input[type="radio"]:checked + .checkout-choice-card {
  border-color: var(--primary, #1f7a8c);
  box-shadow: inset 0 0 0 1px var(--primary, #1f7a8c);
  background: color-mix(in srgb, var(--primary, #1f7a8c) 8%, #ffffff);
}
.checkout-summary-card {
  border: 1px solid #d8e3ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
  padding: 0.9rem;
  position: sticky;
  top: calc(var(--shop-sticky-header-height, 0px) + 0.8rem);
}
.checkout-summary-card h2 {
  margin: 0 0 0.72rem;
  font-size: 1.08rem;
  color: #12314f;
}
.checkout-summary-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}
.checkout-summary-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  border: 1px solid #e1e9f1;
  border-radius: 10px;
  background: #f9fbfe;
  padding: 0.52rem 0.58rem;
}
.checkout-summary-list strong {
  display: block;
  color: #1b3a56;
  font-size: 0.87rem;
}
.checkout-summary-list small {
  color: #5a7389;
  font-size: 0.77rem;
}
.checkout-summary-list li > span {
  color: #274a66;
  font-weight: 700;
  font-size: 0.84rem;
}
.checkout-summary-total {
  margin-top: 0.74rem;
  border-top: 1px solid #e2e9f1;
  padding-top: 0.66rem;
  display: grid;
  gap: 0.38rem;
}
.checkout-summary-total p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  color: #3e5972;
  font-size: 0.84rem;
}
.checkout-summary-total p.checkout-summary-method {
  color: #45627a;
}
.checkout-summary-total strong {
  color: #173a57;
}
.checkout-summary-total strong.checkout-live-flash {
  animation: checkoutValueFlash 420ms ease;
}
.checkout-summary-total p.grand {
  border-top: 1px dashed #d7e2ed;
  padding-top: 0.4rem;
  font-size: 0.93rem;
}
.checkout-summary-total p.grand strong {
  color: var(--accent, #f4a261);
  font-size: 1.02rem;
}
.checkout-summary-trust {
  margin: 0.74rem 0 0;
  padding-left: 1rem;
  color: #415f79;
  font-size: 0.83rem;
  display: grid;
  gap: 0.28rem;
}
@keyframes checkoutValueFlash {
  0% {
    background: color-mix(in srgb, var(--accent, #f4a261) 40%, #ffffff);
    color: #102a43;
    box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.45);
    border-radius: 6px;
    padding: 0.02rem 0.24rem;
  }
  100% {
    background: transparent;
    color: inherit;
    box-shadow: 0 0 0 12px rgba(244, 162, 97, 0);
    border-radius: 0;
    padding: 0;
  }
}

@media (max-width: 980px) {
  :root {
    --shop-shell-width: 96%;
  }
  .shop-header-premium {
    padding: 0.56rem 0.64rem 0.64rem;
    border-radius: 14px;
  }
  .shop-header-premium.is-sticky-enabled {
    position: sticky;
    top: 0;
    z-index: 140;
    margin-top: 0;
  }
  .topbar-service {
    padding-bottom: 0.45rem;
  }
  .topbar-main {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.6rem;
    align-items: center;
  }
  .topbar-links-inline {
    display: none;
  }
  .topbar-mobile-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .topbar-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    gap: 0.34rem;
    width: 100%;
  }
  .top-action.top-action-with-text {
    min-height: 40px;
    padding: 0.38rem 0.58rem;
  }
  .top-action-label {
    font-size: 0.78rem;
  }
  .topbar-mobile-drawer {
    display: grid;
  }
  .topbar-mobile-links a,
  .topbar-mobile-account a {
    min-height: 40px;
    padding: 0.36rem 0.58rem;
    font-size: 0.84rem;
    line-height: 1.25;
  }
  .shop-trust-strip {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
  }
  .product-detail-shell {
    grid-template-columns: 1fr;
  }
  .product-buy-panel {
    position: static;
  }
  .site-footer-meta {
    grid-template-columns: 1fr;
  }
  .site-footer-payments {
    justify-content: flex-start;
  }
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary-card {
    position: static;
  }
  .checkout-shell,
  .product-detail,
  .page-shell,
  .premium-banner-shell,
  .favorite-carousel-shell,
  .mega-menu-shell {
    padding-left: 0.78rem;
    padding-right: 0.78rem;
  }
}

/* Auf echten Handys wird Sticky per JS-Klasse deaktiviert. */
@media (max-width: 980px) {
  .shop-header-premium.is-sticky-enabled.is-sticky-mobile-disabled {
    position: static !important;
    top: auto !important;
    z-index: 1 !important;
    margin: 0.6rem auto 0 !important;
  }
}

@media (max-width: 640px) {
  .shop-header-premium {
    padding: 0.48rem 0.55rem 0.58rem;
  }
  .topbar-service {
    gap: 0.35rem;
  }
  .service-chip {
    font-size: 0.7rem;
    min-height: 24px;
    padding: 0.16rem 0.48rem;
  }
  .service-link {
    font-size: 0.76rem;
  }
  .topbar-brand {
    gap: 0.45rem;
  }
  .topbar-logo-wrap {
    max-width: min(var(--shop-topbar-logo-wrap-max-width, 240px), 56vw);
  }
  .topbar-mobile-menu-toggle {
    min-height: 36px;
    padding: 0.26rem 0.54rem;
  }
  .topbar-mobile-menu-toggle span:last-child {
    display: none;
  }
  .topbar-actions {
    justify-content: space-between;
  }
  .top-action.top-action-with-text {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
  }
  .top-action-label {
    display: none;
  }
  .hero-inner {
    padding: 1.25rem 0.78rem 1.05rem;
  }
  .hero h1 {
    font-size: clamp(1.42rem, 7vw, 1.9rem);
    line-height: 1.2;
  }
  .hero p {
    font-size: 0.94rem;
  }
  .hero-search {
    grid-template-columns: 1fr;
  }
  .hero-search .btn {
    width: 100%;
  }
  .premium-banner-slide {
    min-height: 190px;
  }
  .premium-banner-overlay {
    left: 0.68rem;
    right: 0.68rem;
    bottom: 0.68rem;
  }
  .premium-banner-overlay small {
    font-size: 0.78rem;
  }
  .favorite-carousel-shell {
    padding-left: 0.7rem;
    padding-right: 0.7rem;
  }
  .product-buy-form {
    grid-template-columns: 1fr;
  }
  .product-facts-grid {
    grid-template-columns: 1fr;
  }
  .product-content-grid {
    grid-template-columns: 1fr;
  }
  .variant-table {
    font-size: 0.8rem;
  }
  .table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-scroll .cart-table {
    min-width: 620px;
  }
}

@media (max-width: 860px) {
  .shop-layout {
    width: 100%;
    max-width: 100%;
    padding-left: 0.72rem;
    padding-right: 0.72rem;
  }
  .shop-products {
    width: 100%;
    max-width: 100%;
  }
  .shop-trust-strip {
    margin: 0;
  }
  .mega-menu-shell {
    display: none;
  }
  .mobile-filter-toggle {
    position: sticky;
    top: calc(var(--shop-sticky-header-height, 0px) + 0.45rem);
    z-index: 80;
    width: var(--shop-shell-width, 90%);
    max-width: var(--shop-shell-max-width, none);
    margin: 0.45rem auto 0;
    border: 1px solid #d0ddeb;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff 0%, #eef5fc 100%);
    color: #1c4466;
    min-height: 42px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
  }
  .mobile-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.42);
    z-index: 105;
  }
  .shop-sidebar.js-mobile-filter-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(86vw, 360px);
    transform: translateX(-102%);
    transition: transform 0.24s ease;
    z-index: 115;
    overflow-y: auto;
    padding: 0.66rem;
    background: #f6fbff;
    border-right: 1px solid #d8e3ee;
  }
  .shop-sidebar.js-mobile-filter-drawer.is-open {
    transform: translateX(0);
  }
  .mobile-filter-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.34rem 0.72rem;
    border: 1px solid #d0deec;
    border-radius: 999px;
    background: #ffffff;
    color: #1d4567;
    font-weight: 700;
    margin-bottom: 0.62rem;
    margin-left: auto;
  }
  body.mobile-filter-open {
    overflow: hidden;
  }
  .favorite-banner-card {
    flex-basis: min(220px, 72vw);
  }
  .favorite-carousel-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.42rem;
  }
  .scroll-carousel-arrow.prev {
    left: 0.18rem;
  }
  .scroll-carousel-arrow.next {
    right: 0.18rem;
  }
  .logo-dynamic {
    max-width: min(210px, 72vw);
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: left center;
    display: block;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
    padding: 0.78rem 0.78rem 1.4rem;
  }
  .shop-products {
    border-radius: 16px;
  }
  .product-card {
    border-radius: 14px;
    padding: 0.68rem;
    gap: 0.55rem;
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.05);
    transition: none;
  }
  .product-card h2 {
    font-size: 1rem;
    line-height: 1.3;
  }
  .product-title-link {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-card-meta {
    font-size: 0.73rem;
    gap: 0.22rem 0.45rem;
  }
  .product-card-meta span {
    display: none;
  }
  .product-card-desc {
    display: none;
  }
  .premium-card-footer {
    margin-top: 0.05rem;
  }
  .product-buy-footer {
    border-top: 1px solid #dbe6f1;
    background: linear-gradient(180deg, rgba(248, 251, 255, 0) 0%, #f8fbff 58%, #f4f9ff 100%);
    border-radius: 10px;
    padding-top: 0.48rem;
    padding-bottom: 0.12rem;
  }
  .product-buy-footer .premium-card-footer {
    align-items: center;
    margin: 0;
  }
  .product-buy-footer .details-link {
    display: none;
  }
  .product-buy-footer .add-cart-form.compact {
    margin: 0;
  }
  .product-card-actions {
    justify-content: stretch;
  }
  .wishlist-toggle-btn {
    width: 100%;
    justify-content: center;
  }
  .price-stack strong {
    font-size: 1.02rem;
  }
  .add-cart-form.compact .buy-btn {
    min-height: 48px;
    font-size: 0.94rem;
    border-radius: 12px;
  }
  .favorite-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
  }
  .favorite-carousel-track {
    width: max-content;
    min-width: max-content;
  }
  .favorite-carousel-track.is-marquee {
    animation: none;
  }
  .site-footer-inner {
    padding: 0.95rem 0.78rem 0.75rem;
  }
  .site-footer-meta,
  .site-footer-bottom {
    padding-left: 0.78rem;
    padding-right: 0.78rem;
  }
}

@media (max-width: 760px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .catalog-overview-card,
  .catalog-overview-stats {
    grid-template-columns: 1fr;
  }
  .product-card {
    contain-intrinsic-size: 340px;
  }
  .product-buy-footer {
    padding-top: 0.44rem;
  }
  .price-stack {
    gap: 0.08rem;
  }
  .price-stack strong {
    font-size: 1.06rem;
  }
  .add-cart-form.compact .buy-btn {
    min-height: 50px;
    font-size: 0.98rem;
  }
  .shop-quick-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    -webkit-overflow-scrolling: touch;
  }
  .shop-quick-chip {
    white-space: nowrap;
  }
}

/* v0.2.14: premium cart, checkout and account refinements */
.cart-shell {
  display: grid;
  gap: 1rem;
}
.cart-hero {
  border: 1px solid #d9e3ee;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.11), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 58%, #eef5fb 100%);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.95fr);
}
.cart-hero-copy h1 {
  margin: 0;
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  line-height: 1.08;
}
.cart-hero-copy p:not(.account-eyebrow) {
  margin: 0.4rem 0 0;
  color: #49627a;
  max-width: 60ch;
}
.cart-hero-actions {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.cart-hero-side {
  display: grid;
  gap: 0.75rem;
}
.cart-hero-stat {
  border: 1px solid #d9e4ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.cart-hero-stat span {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-hero-stat strong {
  display: block;
  margin-top: 0.25rem;
  color: #0f172a;
  font-size: 1.15rem;
}
.cart-hero-stat small {
  display: block;
  margin-top: 0.3rem;
  color: #64748b;
  line-height: 1.45;
}
.cart-hero-stat.is-ok {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, rgba(240, 253, 244, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
}
.cart-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.8fr) minmax(290px, 0.95fr);
  align-items: start;
}
.cart-main {
  display: grid;
  gap: 0.85rem;
}
.cart-card {
  border: 1px solid #dbe5ef;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  padding: 1rem;
}
.cart-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}
.cart-card-head h2 {
  margin: 0;
}
.cart-card-head p {
  margin: 0.3rem 0 0;
  color: #577086;
}
.cart-card-head__meta {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #eef4fb;
  color: #234862;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}
.cart-line-list {
  display: grid;
  gap: 0.85rem;
}
.cart-line-card {
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
}
.cart-line-media {
  background: #f6fafe;
  border-right: 1px solid #e1e9f2;
}
.cart-line-media a,
.cart-line-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.cart-line-media img {
  min-height: 148px;
  object-fit: contain;
  padding: 0.8rem;
}
.cart-line-body {
  padding: 0.9rem;
  display: grid;
  gap: 0.85rem;
}
.cart-line-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.cart-line-top h3 {
  margin: 0;
  font-size: 1.02rem;
}
.cart-line-top h3 a {
  color: #123b5c;
  text-decoration: none;
}
.cart-line-top h3 a:hover {
  text-decoration: underline;
}
.cart-line-meta {
  margin: 0.25rem 0 0;
  color: #587084;
  font-size: 0.86rem;
}
.cart-line-stock {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  font-weight: 700;
}
.cart-line-stock.is-in-stock {
  color: #166534;
}
.cart-line-stock.is-out-of-stock {
  color: #991b1b;
}
.cart-line-price {
  text-align: right;
  display: grid;
  gap: 0.18rem;
}
.cart-line-price strong {
  color: #0f2f4a;
  font-size: 1.02rem;
}
.cart-line-price span,
.cart-line-price small {
  color: #5c7387;
  font-size: 0.84rem;
}
.cart-line-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.cart-qty-field {
  display: grid;
  gap: 0.3rem;
  color: #334155;
  font-size: 0.83rem;
  font-weight: 700;
}
.cart-qty-field input {
  width: 120px;
  border: 1px solid #cdd8e3;
  border-radius: 10px;
  padding: 0.58rem 0.64rem;
  background: #fff;
  font: inherit;
}
.cart-remove-link {
  color: #b91c1c;
  text-decoration: none;
  font-weight: 700;
}
.cart-remove-link:hover {
  text-decoration: underline;
}
.cart-form-actions {
  display: flex;
  justify-content: flex-start;
}
.cart-summary-card {
  position: sticky;
  top: calc(var(--shop-sticky-header-height, 0px) + 0.8rem);
  border: 1px solid #dbe5ef;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  padding: 1rem;
  display: grid;
  gap: 0.85rem;
}
.cart-summary-card h2 {
  margin: 0;
}
.cart-summary-list {
  margin: 0;
  display: grid;
  gap: 0.55rem;
}
.cart-summary-list div {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 0.8rem;
}
.cart-summary-list dt {
  color: #587084;
  font-size: 0.86rem;
}
.cart-summary-list dd {
  margin: 0;
  color: #132b40;
  font-weight: 700;
}
.cart-summary-total {
  border: 1px solid #d9e5f0;
  border-radius: 16px;
  background: #ffffff;
  padding: 0.95rem;
}
.cart-summary-total span {
  display: block;
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-summary-total strong {
  display: block;
  margin-top: 0.3rem;
  color: #0f172a;
  font-size: 1.35rem;
}
.cart-summary-total small {
  display: block;
  margin-top: 0.35rem;
  color: #64748b;
  line-height: 1.45;
}
.cart-summary-trust {
  margin: 0;
  padding-left: 1rem;
  color: #466076;
  display: grid;
  gap: 0.36rem;
}
.cart-summary-actions {
  display: grid;
  gap: 0.5rem;
}
.cart-summary-actions .btn {
  width: 100%;
  text-align: center;
}
.cart-empty-state {
  border: 1px solid #dbe5ef;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  padding: 1.4rem;
}
.cart-empty-state__body {
  max-width: 620px;
}
.cart-empty-state h2 {
  margin: 0;
}
.cart-empty-state p:not(.account-eyebrow) {
  margin: 0.5rem 0 0;
  color: #506a82;
}
.cart-empty-state__actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.checkout-login-banner {
  border-radius: 14px;
  background: linear-gradient(180deg, #f2f8ff 0%, #ffffff 100%);
}
.account-flash-grid {
  display: grid;
  gap: 0.75rem;
}
.account-spotlight-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.account-spotlight-card {
  border: 1px solid #d9e3ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
  padding: 0.9rem 1rem;
}
.account-spotlight-card span {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.account-spotlight-card strong {
  display: block;
  margin-top: 0.28rem;
  color: #0f172a;
  font-size: 1.05rem;
}
.account-spotlight-card p {
  margin: 0.35rem 0 0;
  color: #577086;
  line-height: 1.5;
}
.account-2fa-grid {
  display: grid;
  gap: 0.8rem;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr));
}
.account-2fa-panel {
  border: 1px solid #dbe5ef;
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
  padding: 0.9rem;
  display: grid;
  gap: 0.65rem;
  min-width: 0;
}
.account-2fa-panel h3 {
  margin: 0;
  color: #133b5d;
}
.account-2fa-panel p {
  margin: 0;
  color: #577086;
  line-height: 1.5;
}
.account-2fa-panel label,
.account-2fa-panel input {
  min-width: 0;
}
.account-2fa-panel .checkbox {
  flex-wrap: wrap;
  align-items: flex-start;
}
.account-2fa-panel .code-field {
  width: 100%;
  max-width: 100%;
}
.account-qr-panel {
  margin-top: 0.9rem;
  border: 1px dashed #d3dfeb;
  border-radius: 16px;
  background: #f8fbff;
  padding: 0.9rem;
}
.account-order-card-list {
  display: grid;
  gap: 0.75rem;
}
.account-order-card {
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  padding: 0.95rem;
  display: grid;
  gap: 0.8rem;
}
.account-order-card__main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.account-order-card__main h3 {
  margin: 0;
  font-size: 1.02rem;
}
.account-order-card__price {
  text-align: right;
  display: grid;
  gap: 0.2rem;
}
.account-order-card__price span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.account-order-card__price strong {
  color: #0f172a;
  font-size: 1.04rem;
}
.account-order-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.account-order-hero {
  border: 1px solid #d9e3ee;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(34, 197, 94, 0.12), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 55%, #eef8f1 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  padding: 1.15rem;
  display: grid;
  gap: 0.95rem;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
}
.account-order-hero__copy h1 {
  margin: 0;
}
.account-order-hero__copy p:not(.account-eyebrow) {
  margin: 0.4rem 0 0;
  color: #506a82;
}
.account-order-hero__status {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.account-order-hero__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.account-order-kpi-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.account-order-item-grid {
  display: grid;
  gap: 0.75rem;
}
.account-order-item-card {
  border: 1px solid #dbe5ef;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  overflow: hidden;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
}
.account-order-item-media {
  background: #f7fbff;
  border-right: 1px solid #e2eaf2;
}
.account-order-item-media a,
.account-order-item-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.account-order-item-media img {
  min-height: 132px;
  object-fit: contain;
  padding: 0.75rem;
}
.account-order-item-body {
  padding: 0.85rem;
  display: grid;
  gap: 0.65rem;
}
.account-order-item-body h3 {
  margin: 0;
  font-size: 1rem;
}
.account-order-item-body h3 a {
  color: #123b5c;
  text-decoration: none;
}
.account-order-item-body h3 a:hover {
  text-decoration: underline;
}
.account-side-list--compact div {
  grid-template-columns: minmax(110px, 1fr) auto;
}
.checkout-hero {
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.9fr);
  align-items: start;
}
.checkout-progress {
  margin-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.checkout-progress-step {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d9e3ee;
  background: rgba(255, 255, 255, 0.82);
  color: #45627a;
  padding: 0.34rem 0.68rem;
  font-size: 0.8rem;
  font-weight: 700;
}
.checkout-progress-step.is-active {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}
.checkout-hero-side {
  display: grid;
  gap: 0.75rem;
}
.checkout-hero-note {
  border: 1px solid #d9e4ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.9rem 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.checkout-hero-note span {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.checkout-hero-note strong {
  display: block;
  margin-top: 0.28rem;
  color: #0f172a;
}
.checkout-hero-note small {
  display: block;
  margin-top: 0.3rem;
  color: #64748b;
  line-height: 1.45;
}
.checkout-summary-product {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
}
.checkout-summary-product-media {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  overflow: hidden;
}
.checkout-summary-product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.checkout-summary-product-body {
  min-width: 0;
}

@media (max-width: 1180px) {
  .account-spotlight-grid,
  .account-order-kpi-grid,
  .cart-layout,
  .cart-hero,
  .checkout-hero,
  .account-order-hero {
    grid-template-columns: 1fr;
  }
  .cart-summary-card {
    position: static;
  }
}

@media (max-width: 860px) {
  .cart-line-card,
  .account-order-item-card {
    grid-template-columns: 1fr;
  }
  .cart-line-media,
  .account-order-item-media {
    border-right: 0;
    border-bottom: 1px solid #e2eaf2;
  }
  .cart-line-top,
  .account-order-card__main,
  .account-order-card__footer,
  .account-order-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .account-order-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cart-hero-actions,
  .cart-empty-state__actions {
    flex-direction: column;
  }
  .cart-hero-actions .btn,
  .cart-empty-state__actions .btn,
  .account-order-actions .btn,
  .account-order-hero__actions .btn {
    width: 100%;
    text-align: center;
  }
  .account-order-kpi-grid,
  .account-spotlight-grid {
    grid-template-columns: 1fr;
  }
}

/* v0.2.15: premium auth pages */
.auth-shell {
  display: grid;
  gap: 1rem;
}
.auth-hero {
  border: 1px solid #d9e3ee;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(14, 165, 233, 0.14), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f6fbff 58%, #eef6ff 100%);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.95fr);
}
.auth-hero__copy h1 {
  margin: 0;
}
.auth-hero__copy p:not(.account-eyebrow) {
  margin: 0.45rem 0 0;
  color: #48627b;
  max-width: 62ch;
}
.auth-hero__meta {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}
.auth-hero__meta-card {
  border: 1px solid #d7e4ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}
.auth-hero__meta-card span {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.auth-hero__meta-card strong {
  display: block;
  margin-top: 0.28rem;
  color: #102437;
}
.auth-hero__meta-card small {
  display: block;
  margin-top: 0.28rem;
  color: #5f7488;
  line-height: 1.5;
}
.auth-trust-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.6rem;
}
.auth-trust-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: #244057;
}
.auth-trust-item::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 999px;
  margin-top: 0.12rem;
  background: linear-gradient(180deg, #dbeafe 0%, #bfdbfe 100%);
  box-shadow: inset 0 0 0 4px #ffffff;
  border: 1px solid #93c5fd;
}
.auth-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  align-items: start;
}
.auth-panel {
  border: 1px solid #d9e3ee;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
  padding: 1rem;
}
.auth-panel--side {
  display: grid;
  gap: 0.8rem;
}
.auth-panel__head {
  display: grid;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
}
.auth-panel__head h2 {
  margin: 0;
}
.auth-panel__head p {
  margin: 0;
  color: #536b83;
}
.auth-panel__section {
  border: 1px solid #dbe7f1;
  border-radius: 18px;
  background: #f8fbff;
  padding: 0.9rem;
  display: grid;
  gap: 0.58rem;
}
.auth-panel__section h3 {
  margin: 0;
  color: #173b58;
  font-size: 1rem;
}
.auth-panel__section p {
  margin: 0;
  color: #536b83;
  line-height: 1.55;
}
.auth-alert-stack {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}
.auth-alert-stack > * {
  margin: 0;
}
.auth-panel .checkout-form {
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
  gap: 1rem;
}
.auth-panel .form-section-store {
  border-radius: 18px;
  padding: 0.95rem;
  gap: 0.82rem;
}
.auth-panel .form-section-store h3 {
  font-size: 0.9rem;
}
.auth-inline-note {
  grid-column: 1 / -1;
  border: 1px solid #d9e5ef;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  color: #415a72;
  padding: 0.78rem 0.82rem;
  line-height: 1.5;
}
.auth-code-input input {
  text-align: center;
  font-size: 1.08rem;
  letter-spacing: 0.28em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.auth-method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}
.auth-method-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #d8e2ec;
  background: #f8fbff;
  color: #446079;
  padding: 0.4rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 700;
}
.auth-method-chip.is-active {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1d4ed8;
}
.auth-action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}
.auth-action-grid .account-inline-form {
  margin: 0;
}
.auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.95rem;
}
.auth-links a {
  color: #0f4c7f;
  text-decoration: none;
  font-weight: 700;
}
.auth-links a:hover {
  text-decoration: underline;
}
.auth-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.auth-info-list li {
  display: grid;
  gap: 0.14rem;
  padding-left: 1rem;
  position: relative;
  color: #2f495f;
}
.auth-info-list li::before {
  content: '';
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #38bdf8;
}
.auth-info-list strong {
  color: #173b58;
  font-size: 0.94rem;
}
.auth-info-list span {
  color: #5a7187;
  line-height: 1.45;
}
.auth-side-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.auth-side-cta .btn {
  text-decoration: none;
}
.auth-status-grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.auth-status-card {
  border: 1px solid #dbe6ef;
  border-radius: 16px;
  background: #ffffff;
  padding: 0.85rem;
}
.auth-status-card span {
  display: block;
  color: #64748b;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.auth-status-card strong {
  display: block;
  margin-top: 0.25rem;
  color: #102437;
}
.auth-status-card small {
  display: block;
  margin-top: 0.2rem;
  color: #60758a;
  line-height: 1.45;
}
.auth-invalid-card {
  border: 1px solid #fecaca;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff7f7 0%, #ffffff 100%);
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}
.auth-invalid-card h2 {
  margin: 0;
  color: #991b1b;
}
.auth-invalid-card p {
  margin: 0;
  color: #7f1d1d;
}
@media (max-width: 1180px) {
  .auth-hero,
  .auth-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .auth-status-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .auth-action-grid,
  .auth-links,
  .auth-side-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .auth-action-grid .account-inline-form,
  .auth-action-grid .btn,
  .auth-side-cta .btn {
    width: 100%;
  }
  .auth-action-grid .btn,
  .auth-side-cta .btn {
    text-align: center;
  }
}

/* v0.2.16: content pages and payment result pages */
.content-page-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  align-items: start;
}
.content-page-actions,
.payment-cta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}
.content-page-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.content-page-links a {
  text-decoration: none;
  color: #0f4c7f;
  font-weight: 700;
}
.content-page-links a:hover {
  text-decoration: underline;
}
.content-page-meta-text {
  margin: 0;
  color: #536b83;
  line-height: 1.55;
}
.page-card--content {
  padding: 1.15rem;
}
.page-card--content .page-content {
  color: #22384c;
}
.page-card--content .page-content > :first-child {
  margin-top: 0;
}
.page-card--content .page-content > :last-child {
  margin-bottom: 0;
}
.page-card--content .contact-form-wrap {
  margin-top: 1.4rem;
}
.payment-status-note {
  margin: 0;
  border: 1px solid #d9e5ef;
  border-radius: 14px;
  background: #f8fbff;
  color: #3f5b74;
  padding: 0.82rem 0.9rem;
  line-height: 1.55;
}
.payment-help-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.58rem;
}
.payment-help-list li {
  display: grid;
  gap: 0.14rem;
  padding-left: 1rem;
  position: relative;
}
.payment-help-list li::before {
  content: '';
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #38bdf8;
}
.payment-help-list strong {
  color: #173b58;
  font-size: 0.94rem;
}
.payment-help-list span {
  color: #5a7187;
  line-height: 1.45;
}
@media (max-width: 1180px) {
  .content-page-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .content-page-actions,
  .payment-cta-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .content-page-actions .btn,
  .payment-cta-grid .btn {
    width: 100%;
    text-align: center;
  }
}

/* v0.2.18: theme presets and theme editor output */
body.storefront {
  font-family: var(--shop-body-font, "Segoe UI", Arial, sans-serif);
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, color-mix(in srgb, var(--primary, #1f7a8c) 18%, var(--shop-page-bg, #f5f8fc)) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(180deg, var(--shop-page-bg, #f5f8fc) 0%, var(--shop-page-bg-secondary, #ffffff) 35%);
}
body.storefront h1,
body.storefront h2,
body.storefront h3,
body.storefront h4,
body.storefront h5,
body.storefront h6,
body.storefront .topbar-brand-text strong,
body.storefront .favorite-carousel-head h2,
body.storefront .catalog-overview-copy h2,
body.storefront .category-products-hero h2 {
  font-family: var(--shop-heading-font, "Trebuchet MS", "Segoe UI", sans-serif);
  letter-spacing: -0.01em;
}
body.storefront .hero {
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--primary, #1f7a8c) 18%, white) 0%, rgba(255,255,255,0) 42%),
    linear-gradient(135deg, var(--shop-hero-gradient-start, #eef6ff) 0%, var(--shop-hero-gradient-end, #ffffff) 100%);
  border-top-color: color-mix(in srgb, var(--primary, #1f7a8c) 12%, white);
  border-bottom-color: color-mix(in srgb, var(--primary, #1f7a8c) 12%, white);
}
body.storefront .hero-info-card,
body.storefront .catalog-overview-card,
body.storefront .trust-card,
body.storefront .shop-cat-menu,
body.storefront .premium-banner-carousel,
body.storefront .favorite-carousel,
body.storefront .product-card,
body.storefront .shop-products,
body.storefront .category-products-hero {
  background: var(--shop-card-bg, #ffffff);
  box-shadow: var(--shop-card-shadow, 0 12px 26px rgba(15, 23, 42, 0.07));
}
body.storefront .shop-products,
body.storefront .shop-cat-menu,
body.storefront .product-card,
body.storefront .shop-breadcrumb,
body.storefront .catalog-overview-card,
body.storefront .trust-card,
body.storefront .category-products-hero,
body.storefront .premium-banner-carousel,
body.storefront .favorite-carousel {
  border-color: var(--line);
}
body.storefront .product-card-body h2,
body.storefront .product-title-link,
body.storefront .shop-cat-link,
body.storefront .shop-cat-head h2,
body.storefront .category-products-hero h2,
body.storefront .catalog-overview-copy h2 {
  color: var(--text);
}
body.storefront .product-card-meta,
body.storefront .product-card-desc,
body.storefront .catalog-overview-copy p,
body.storefront .trust-card p,
body.storefront .shop-search-result-info,
body.storefront .category-products-hero p,
body.storefront .favorite-carousel-head p,
body.storefront .service-link {
  color: var(--muted);
}
.shop-header-premium.theme-header-layout-centered .topbar-main,
.shop-header-premium.theme-header-layout-stacked .topbar-main {
  grid-template-columns: 1fr;
  justify-items: center;
}
.shop-header-premium.theme-header-layout-centered .topbar-brand,
.shop-header-premium.theme-header-layout-centered .topbar-links,
.shop-header-premium.theme-header-layout-centered .topbar-actions,
.shop-header-premium.theme-header-layout-stacked .topbar-brand,
.shop-header-premium.theme-header-layout-stacked .topbar-links,
.shop-header-premium.theme-header-layout-stacked .topbar-actions {
  justify-self: center;
  justify-content: center;
}
.shop-header-premium.theme-header-layout-centered .topbar-links,
.shop-header-premium.theme-header-layout-stacked .topbar-links {
  flex-wrap: wrap;
}
.shop-header-premium.theme-header-layout-compact {
  padding-top: 0.48rem;
}
.shop-header-premium.theme-header-layout-compact .topbar-service {
  justify-content: flex-end;
  padding-bottom: 0.35rem;
}
.shop-header-premium.theme-header-layout-compact .topbar-main {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
.shop-header-premium.theme-header-layout-stacked .topbar-service {
  justify-content: flex-start;
}
body.theme-hero-editorial .hero {
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}
body.theme-hero-editorial .hero h1,
body.theme-hero-editorial .hero p,
body.theme-hero-editorial .hero .shop-name {
  color: #ffffff;
}
body.theme-hero-editorial .hero-info-card {
  background: rgba(15, 23, 42, 0.22);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
body.theme-hero-editorial .hero-info-card ul,
body.theme-hero-editorial .hero-info-card h3 {
  color: #ffffff;
}
body.theme-hero-editorial .hero-search input[type="search"] {
  background: rgba(255, 255, 255, 0.94);
}
body.theme-hero-showcase .hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 28px 28px;
  border: 0;
}
body.theme-hero-showcase .hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -52px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent, #f4a261) 55%, transparent);
  filter: blur(28px);
  opacity: 0.3;
  pointer-events: none;
}
body.theme-hero-minimal .hero {
  background: transparent;
  border: 0;
}
body.theme-hero-minimal .hero-inner {
  padding-top: 1.45rem;
  padding-bottom: 1.15rem;
}
body.theme-hero-minimal .hero-grid {
  grid-template-columns: 1fr;
}
body.theme-sidebar-outline .shop-cat-menu,
body.theme-sidebar-outline .shop-filter-form,
body.theme-sidebar-outline .shop-cat-row {
  box-shadow: none;
  background: var(--shop-page-bg-secondary, #ffffff);
}
body.theme-sidebar-dark .shop-cat-menu,
body.theme-sidebar-dark .shop-filter-form,
body.theme-sidebar-dark .shop-cat-row,
body.theme-sidebar-dark .shop-cat-all,
body.theme-sidebar-dark .shop-cat-all-count {
  background: #0f1720;
  border-color: rgba(255, 255, 255, 0.08);
  color: #e2ecf4;
}
body.theme-sidebar-dark .shop-cat-head h2,
body.theme-sidebar-dark .shop-cat-link,
body.theme-sidebar-dark .shop-filter-form h3,
body.theme-sidebar-dark .shop-filter-form label,
body.theme-sidebar-dark .shop-cat-all,
body.theme-sidebar-dark .shop-cat-count {
  color: #e2ecf4;
}
body.theme-sidebar-dark .shop-filter-form input[type="number"] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
body.theme-product-card-catalog .product-card {
  border-radius: 14px;
}
body.theme-product-card-catalog .product-card-top {
  border-bottom: 1px solid color-mix(in srgb, var(--primary, #1f7a8c) 8%, white);
  padding-bottom: 0.55rem;
}
body.theme-product-card-minimal .product-card {
  box-shadow: none;
  background: var(--shop-page-bg-secondary, #ffffff);
}
body.theme-product-card-minimal .product-card:hover {
  transform: translateY(-2px);
}
body.theme-product-card-magazine .product-card {
  overflow: visible;
  border-radius: 24px;
}
body.theme-product-card-magazine .product-image-frame {
  border-radius: 18px;
  overflow: hidden;
}
body.theme-banner-wide .premium-banner-slide {
  min-height: 340px;
}
body.theme-banner-cards .premium-banner-track > .premium-banner-slide {
  flex: 0 0 calc(50% - 0.38rem);
  min-width: calc(50% - 0.38rem);
}
body.theme-favorites-cards .favorite-carousel,
body.theme-favorites-ribbon .favorite-carousel {
  mask-image: none;
}
body.theme-favorites-cards .favorite-carousel-track,
body.theme-favorites-ribbon .favorite-carousel-track {
  flex-wrap: wrap;
}
body.theme-favorites-ribbon .favorite-carousel {
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary, #1f7a8c) 16%, white) 0%, color-mix(in srgb, var(--accent, #f4a261) 10%, white) 100%);
}
.site-footer {
  background: linear-gradient(180deg, color-mix(in srgb, var(--shop-footer-bg, #0f2232) 92%, white) 0%, var(--shop-footer-bg, #0f2232) 100%);
  color: var(--shop-footer-text, #e8f0f6);
  border-top-color: color-mix(in srgb, var(--shop-footer-bg, #0f2232) 82%, white);
}
.site-footer .site-footer-col h3,
.site-footer .site-footer-col h4,
.site-footer .site-footer-col p,
.site-footer .site-footer-col a,
.site-footer .site-footer-bottom,
.site-footer .footer-muted,
.site-footer .site-footer-payments {
  color: var(--shop-footer-text, #e8f0f6);
}
.site-footer .site-footer-payments strong {
  color: #173046;
  background: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.16);
}
.site-footer .site-footer-bottom {
  border-top-color: color-mix(in srgb, var(--shop-footer-text, #e8f0f6) 16%, transparent);
}
.site-footer.theme-footer-style-columns {
  background: linear-gradient(180deg, color-mix(in srgb, var(--shop-footer-bg, #0f2232) 90%, white) 0%, var(--shop-footer-bg, #0f2232) 100%);
}
.site-footer.theme-footer-style-editorial .site-footer-inner {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
}
.site-footer.theme-footer-style-editorial .site-footer-brand h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}
.site-footer.theme-footer-style-dark .trust-pill {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--shop-footer-text, #e8f0f6);
}
body.theme-preset-industrial_dark .shop-products,
body.theme-preset-industrial_dark .product-card,
body.theme-preset-industrial_dark .catalog-overview-card,
body.theme-preset-industrial_dark .trust-card,
body.theme-preset-industrial_dark .category-products-hero,
body.theme-preset-industrial_dark .shop-breadcrumb,
body.theme-preset-industrial_dark .favorite-carousel,
body.theme-preset-industrial_dark .premium-banner-carousel {
  background: #111a23;
  border-color: rgba(255, 255, 255, 0.08);
  color: #e8eef5;
}
body.theme-preset-industrial_dark .product-card-meta,
body.theme-preset-industrial_dark .product-card-desc,
body.theme-preset-industrial_dark .catalog-overview-copy p,
body.theme-preset-industrial_dark .trust-card p,
body.theme-preset-industrial_dark .shop-breadcrumb,
body.theme-preset-industrial_dark .category-products-hero p {
  color: #9db0c1;
}
body.theme-preset-industrial_dark .product-title-link,
body.theme-preset-industrial_dark .catalog-overview-copy h2,
body.theme-preset-industrial_dark .trust-card strong,
body.theme-preset-industrial_dark .category-products-hero h2 {
  color: #f5f8fb;
}
body.theme-preset-industrial_dark .shop-breadcrumb a {
  color: #8ad8c7;
}
body.theme-preset-gravur_studio .catalog-overview-card,
body.theme-preset-editorial_showcase .catalog-overview-card,
body.theme-preset-boutique_soft .catalog-overview-card {
  border-radius: 28px;
}
body.theme-preset-gravur_studio .product-card,
body.theme-preset-editorial_showcase .product-card {
  border-radius: 22px;
}
@media (max-width: 980px) {
  .shop-header-premium.theme-header-layout-centered .topbar-main,
  .shop-header-premium.theme-header-layout-stacked .topbar-main,
  .shop-header-premium.theme-header-layout-compact .topbar-main {
    grid-template-columns: 1fr;
  }
  body.theme-banner-cards .premium-banner-track > .premium-banner-slide {
    flex-basis: 100%;
    min-width: 100%;
  }
}

/* v0.2.19: additional themes and gravur showcase layout */
body.theme-preset-gravur_gallery .hero-gravur-showcase {
  background: transparent;
  border: 0;
  margin-top: 0.75rem;
}
body.theme-preset-gravur_gallery .hero-inner--gravur {
  display: grid;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1.2rem;
}
.gravur-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, minmax(180px, 1fr));
  gap: 0.85rem;
}
.gravur-showcase-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #20150f;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}
.gravur-showcase-card.is-primary {
  grid-row: 1 / span 2;
}
.gravur-showcase-card__link,
.gravur-showcase-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.gravur-showcase-card img {
  object-fit: cover;
}
.gravur-showcase-card__overlay {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  z-index: 2;
  display: grid;
  gap: 0.22rem;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(15, 23, 42, 0.45);
}
.gravur-showcase-card__overlay small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gravur-showcase-card__overlay strong {
  font-size: clamp(1rem, 2vw, 1.45rem);
}
.gravur-showcase-card__overlay span {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.92);
}
.gravur-showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08) 22%, rgba(15, 23, 42, 0.66) 100%);
  pointer-events: none;
}
.gravur-story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 0.9rem;
}
.gravur-story-level {
  border: 1px solid color-mix(in srgb, var(--primary, #7c4a2d) 14%, white);
  border-radius: 24px;
  padding: 1.2rem 1.25rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(255,248,240,0.96) 100%);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}
.gravur-story-level--primary h1 {
  margin: 0.24rem 0 0.45rem;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}
.gravur-story-level--primary p {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
}
.gravur-story-level--secondary {
  display: grid;
  gap: 0.8rem;
  align-content: space-between;
}
.gravur-story-level--secondary h3 {
  margin: 0 0 0.45rem;
}
.gravur-story-level--secondary ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
}
.gravur-story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.gravur-story-metrics span {
  display: grid;
  gap: 0.12rem;
  border-radius: 16px;
  padding: 0.75rem 0.8rem;
  background: color-mix(in srgb, var(--primary, #7c4a2d) 8%, white);
  color: #43372f;
  font-size: 0.82rem;
}
.gravur-story-metrics strong {
  font-size: 1.05rem;
  color: #1f1713;
}
body.theme-preset-gravur_gallery .favorite-carousel-shell {
  margin-top: 0.85rem;
}
body.theme-preset-gravur_gallery .favorite-carousel-head h2 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}
body.theme-preset-gravur_gallery .favorite-carousel {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(251,243,235,0.96) 100%);
}
body.theme-preset-gravur_gallery .favorite-carousel-track {
  flex-wrap: wrap;
  gap: 0.85rem;
}
body.theme-preset-gravur_gallery .favorite-banner-card {
  flex: 1 1 calc(25% - 0.85rem);
  min-width: min(100%, 220px);
  border-radius: 20px;
  background: #fffaf6;
  border: 1px solid rgba(124, 74, 45, 0.16);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.07);
}
body.theme-preset-mono_luxe {
  background:
    radial-gradient(circle at 50% 0%, rgba(17, 17, 17, 0.08) 0%, rgba(255,255,255,0) 40%),
    linear-gradient(180deg, #f5f5f5 0%, #ffffff 36%);
}
body.theme-preset-mono_luxe .hero,
body.theme-preset-mono_luxe .catalog-overview-card {
  background: linear-gradient(180deg, #1b1b1b 0%, #4a4a4a 100%);
  color: #ffffff;
}
body.theme-preset-mono_luxe .hero h1,
body.theme-preset-mono_luxe .hero p,
body.theme-preset-mono_luxe .catalog-overview-copy h2,
body.theme-preset-mono_luxe .catalog-overview-copy p {
  color: #ffffff;
}
body.theme-preset-mono_luxe .product-card,
body.theme-preset-mono_luxe .shop-products {
  box-shadow: none;
}
body.theme-preset-neo_noir_glass {
  background:
    radial-gradient(circle at 15% 0%, rgba(69, 214, 255, 0.16) 0%, rgba(0,0,0,0) 32%),
    radial-gradient(circle at 80% 8%, rgba(255, 78, 205, 0.14) 0%, rgba(0,0,0,0) 28%),
    linear-gradient(180deg, #070b14 0%, #0c1324 100%);
}
body.theme-preset-neo_noir_glass .hero,
body.theme-preset-neo_noir_glass .catalog-overview-card,
body.theme-preset-neo_noir_glass .trust-card,
body.theme-preset-neo_noir_glass .favorite-carousel,
body.theme-preset-neo_noir_glass .premium-banner-carousel,
body.theme-preset-neo_noir_glass .product-card,
body.theme-preset-neo_noir_glass .shop-products {
  background: linear-gradient(180deg, rgba(16, 23, 41, 0.88) 0%, rgba(11, 16, 31, 0.92) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
body.theme-preset-neo_noir_glass .product-title-link,
body.theme-preset-neo_noir_glass .catalog-overview-copy h2,
body.theme-preset-neo_noir_glass .trust-card strong,
body.theme-preset-neo_noir_glass .hero h1,
body.theme-preset-neo_noir_glass .hero p {
  color: #edf2ff;
}
body.theme-preset-neo_noir_glass .product-card-meta,
body.theme-preset-neo_noir_glass .product-card-desc,
body.theme-preset-neo_noir_glass .catalog-overview-copy p,
body.theme-preset-neo_noir_glass .trust-card p {
  color: #9cadcc;
}
body.theme-preset-sunset_market .hero {
  background:
    radial-gradient(circle at 14% 10%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 30%),
    linear-gradient(135deg, #f97316 0%, #f59e0b 48%, #facc15 100%);
}
body.theme-preset-sunset_market .hero h1,
body.theme-preset-sunset_market .hero p,
body.theme-preset-sunset_market .hero .shop-name,
body.theme-preset-sunset_market .hero-info-card h3,
body.theme-preset-sunset_market .hero-info-card ul {
  color: #2c1609;
}
body.theme-preset-sunset_market .hero-info-card {
  background: rgba(255, 247, 236, 0.84);
}
body.theme-preset-sunset_market .favorite-carousel {
  background: linear-gradient(135deg, rgba(255,244,230,0.98) 0%, rgba(255,234,202,0.98) 100%);
}
@media (max-width: 980px) {
  .gravur-showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(160px, 1fr));
  }
  .gravur-showcase-card.is-primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .gravur-story-shell {
    grid-template-columns: 1fr;
  }
  .gravur-story-metrics {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .gravur-showcase-grid {
    grid-template-columns: 1fr;
  }
  body.theme-preset-gravur_gallery .favorite-banner-card {
    flex-basis: 100%;
  }
}

.product-configurator-error {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.18);
  color: #8b1e1e;
  white-space: pre-line;
}

.product-configurator-panel {
  display: grid;
  gap: 1.15rem;
  margin-bottom: 1rem;
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.product-configurator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.product-configurator-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.product-configurator-head p {
  margin: 0;
  color: rgba(16, 24, 40, 0.72);
}

.product-configurator-preview {
  min-width: 220px;
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94), rgba(31, 41, 55, 0.9));
  color: #fff;
}

.product-configurator-preview span,
.product-configurator-preview small {
  display: block;
  opacity: 0.78;
}

.product-configurator-preview strong {
  display: block;
  margin: 0.2rem 0;
  font-size: 1.1rem;
}

.product-configurator-group {
  display: grid;
  gap: 0.75rem;
}

.product-configurator-group__head h3 {
  margin: 0;
  font-size: 1rem;
}

.product-configurator-group__head h3 span {
  color: #c62828;
}

.product-configurator-group__head p {
  margin: 0.35rem 0 0;
  color: rgba(16, 24, 40, 0.66);
}

.product-configurator-field {
  display: grid;
  gap: 0.4rem;
}

.product-configurator-field input,
.product-configurator-field select,
.product-configurator-field textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  background: #fff;
}

.product-configurator-choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.product-configurator-choice {
  display: block;
}

.product-configurator-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.product-configurator-choice-card {
  display: grid;
  gap: 0.2rem;
  min-height: 100%;
  padding: 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(16, 24, 40, 0.1);
  background: rgba(248, 250, 252, 0.92);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.product-configurator-choice-card strong {
  font-size: 0.97rem;
}

.product-configurator-choice-card small,
.product-configurator-choice-card em {
  color: rgba(16, 24, 40, 0.68);
}

.product-configurator-choice input:checked + .product-configurator-choice-card {
  border-color: rgba(17, 94, 89, 0.55);
  box-shadow: 0 10px 24px rgba(15, 118, 110, 0.14);
  transform: translateY(-1px);
  background: rgba(240, 253, 250, 0.96);
}

.product-configurator-choice-card.is-color {
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 0.8rem;
}

.product-configurator-swatch {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(16, 24, 40, 0.14);
}

.product-configurator-upload small,
.product-configurator-note {
  color: rgba(16, 24, 40, 0.66);
}

.product-configurator-designer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-configurator-designer-grid .wide {
  grid-column: 1 / -1;
}

.product-configurator-designer-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1.2fr);
  gap: 1rem;
  align-items: start;
}

.product-configurator-designer-stage {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 245, 249, 0.94));
}

.product-configurator-designer-stage__head,
.product-configurator-designer-stage__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-configurator-designer-stage__head span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.78);
}

.product-configurator-designer-stage__head small {
  color: rgba(15, 23, 42, 0.64);
}

.product-configurator-designer-stage__meta span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.74);
  font-size: 0.82rem;
}

.product-configurator-designer-canvas {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: var(--designer-canvas-ratio, 1.18);
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(51, 65, 85, 0.92));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.product-configurator-designer-canvas > img[data-designer-background] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-configurator-designer-canvas__guides {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 10% 10%, 10% 10%, 50% 50%, 50% 50%;
  background-position: center center;
  pointer-events: none;
}

.product-configurator-designer-watermark {
  position: absolute;
  right: 0.8rem;
  bottom: 0.7rem;
  z-index: 4;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.6);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-configurator-designer-text,
.product-configurator-designer-media {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.product-configurator-designer-text {
  width: 82%;
  font-weight: 700;
  line-height: 1.08;
  color: #1f2937;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.38);
  word-break: break-word;
}

.product-configurator-designer-text.is-empty {
  opacity: 0.82;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 20px rgba(15, 23, 42, 0.26);
}

.product-configurator-designer-media {
  max-width: 46%;
  max-height: 38%;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15, 23, 42, 0.25));
}

.product-configurator-designer-media.is-hidden {
  display: none;
}

.product-configurator-designer-fields {
  display: grid;
  gap: 0.85rem;
}

.product-configurator-range-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.product-configurator-range-control output {
  min-width: 56px;
  padding: 0.42rem 0.55rem;
  border-radius: 12px;
  background: rgba(241, 245, 249, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: rgba(15, 23, 42, 0.72);
  font-size: 0.82rem;
  text-align: center;
}

.product-configurator-range-control input[type="range"] {
  padding: 0;
}

.cart-line-config,
.checkout-summary-config,
.account-order-item-config {
  margin-top: 0.45rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(16, 24, 40, 0.72);
  white-space: pre-line;
}

.checkout-summary-config {
  display: block;
}

.account-order-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.7rem;
}

.account-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.account-status-pill.is-success {
  color: #166534;
  background: rgba(220, 252, 231, 0.95);
  border-color: rgba(34, 197, 94, 0.28);
}

.account-status-pill.is-warning {
  color: #92400e;
  background: rgba(254, 243, 199, 0.96);
  border-color: rgba(245, 158, 11, 0.28);
}

.account-status-pill.is-danger {
  color: #991b1b;
  background: rgba(254, 226, 226, 0.96);
  border-color: rgba(239, 68, 68, 0.22);
}

.account-approval-grid,
.account-return-history-grid {
  display: grid;
  gap: 1rem;
}

.account-approval-card,
.account-return-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.account-approval-card__head,
.account-return-card__head {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: flex-start;
}

.account-approval-card__head h3,
.account-return-card__head h3 {
  margin: 0;
  font-size: 1rem;
}

.account-approval-card__head p,
.account-return-card__head p {
  margin: 0.28rem 0 0;
  color: rgba(15, 23, 42, 0.68);
}

.account-approval-card__note {
  padding: 0.85rem 1rem;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.92);
  color: rgba(15, 23, 42, 0.76);
  white-space: pre-line;
}

.account-approval-card__actions,
.account-return-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.account-approval-card__forms {
  display: grid;
  gap: 0.9rem;
}

.account-approval-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: flex-end;
}

.account-approval-form--wide {
  display: grid;
}

.account-approval-form label,
.account-return-form label {
  display: grid;
  gap: 0.42rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.78);
}

.account-approval-form textarea,
.account-return-form input[type="text"],
.account-return-form input[type="number"],
.account-return-form textarea {
  width: 100%;
}

.account-item-meta-block {
  display: grid;
  gap: 0.32rem;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.72);
}

.account-item-meta-block p {
  margin: 0;
}

.account-return-form {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1rem;
  border-radius: 24px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.account-item-review-block,
.product-reviews-section {
  display: grid;
  gap: 1rem;
}

.account-item-review-block {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.account-item-review-block__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.account-item-review-block__head h4,
.product-review-card h3 {
  margin: 0;
}

.account-review-form {
  display: grid;
  gap: 0.9rem;
}

.account-review-form__grid,
.product-review-summary-grid,
.product-review-grid {
  display: grid;
  gap: 0.9rem;
}

.account-review-form__grid,
.product-review-summary-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.account-review-form__grid .wide {
  grid-column: 1 / -1;
}

.account-review-admin-reply {
  margin: 0;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.product-reviews-section {
  margin-top: 2rem;
}

.product-review-summary-card,
.product-review-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.05rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.product-review-summary-card strong,
.product-review-card__stars {
  color: #d97706;
}

.product-review-summary-card p,
.product-review-card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.72);
}

.product-review-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-review-card.is-featured {
  border-color: rgba(217, 119, 6, 0.28);
  box-shadow: 0 20px 42px rgba(217, 119, 6, 0.12);
}

.product-review-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.product-review-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(217, 119, 6, 0.14);
  color: #b45309;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-review-card__reply {
  display: grid;
  gap: 0.3rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.product-review-empty {
  padding: 1.25rem;
}

.site-footer-col-newsletter {
  display: grid;
  gap: 0.8rem;
}

.footer-newsletter-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.footer-newsletter-form input {
  width: 100%;
}

.footer-newsletter-message {
  margin: 0;
  padding: 0.72rem 0.9rem;
  border-radius: 14px;
  font-size: 0.9rem;
}

.footer-newsletter-message.is-ok {
  background: rgba(220, 252, 231, 0.92);
  color: #166534;
}

.footer-newsletter-message.is-error {
  background: rgba(254, 226, 226, 0.92);
  color: #991b1b;
}

@media (max-width: 900px) {
  .account-item-review-block__head,
  .product-review-card__head {
    flex-direction: column;
  }
}

.account-return-form__head h3 {
  margin: 0;
  font-size: 1rem;
}

.account-return-form__head p {
  margin: 0.3rem 0 0;
  color: rgba(15, 23, 42, 0.68);
}

.account-return-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

.account-return-item {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.account-return-item span {
  font-size: 0.95rem;
}

.account-return-item small {
  color: rgba(15, 23, 42, 0.62);
}

.account-return-grid--meta .wide,
.account-approval-form--wide {
  grid-column: 1 / -1;
}

.account-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}

.account-checkbox input {
  width: auto;
}

.account-return-card__items {
  display: grid;
  gap: 0.55rem;
}

.account-return-card__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.72rem 0.85rem;
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.account-return-card__history {
  display: grid;
  gap: 0.6rem;
}

.account-return-card__history ul {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
}

.account-return-card__history li {
  color: rgba(15, 23, 42, 0.74);
}

.account-return-card__history li strong {
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.account-return-card__history li small {
  display: block;
  margin-top: 0.2rem;
  color: rgba(15, 23, 42, 0.6);
}

@media (max-width: 900px) {
  .product-configurator-head {
    grid-template-columns: 1fr;
    display: grid;
  }

  .product-configurator-preview {
    min-width: 0;
  }

  .product-configurator-designer-shell,
  .product-configurator-designer-grid {
    grid-template-columns: 1fr;
  }

  .product-configurator-designer-stage__head,
  .product-configurator-designer-stage__meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .account-approval-card__head,
  .account-return-card__head,
  .account-return-card__item,
  .account-approval-form {
    flex-direction: column;
  }

  .account-return-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .product-configurator-panel {
    padding: 1rem;
  }

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

  .product-configurator-designer-canvas {
    min-height: 260px;
  }

  .product-configurator-designer-text {
    width: 88%;
  }
}

.privacy-consent-banner {
  position: fixed;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 260;
  display: none;
  pointer-events: none;
}

.privacy-consent-banner.is-visible {
  display: block;
}

.privacy-consent-banner__card {
  width: min(1120px, calc(100% - 0.5rem));
  margin: 0 auto;
  padding: 1.2rem 1.25rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.24);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.22);
  backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  pointer-events: auto;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.privacy-consent-banner.is-hidden .privacy-consent-banner__card {
  opacity: 0;
  transform: translateY(12px);
}

.privacy-consent-banner__copy {
  min-width: 0;
}

.privacy-consent-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--shop-primary, #1f7a8c);
}

.privacy-consent-banner__copy h3 {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--shop-text, #102437);
}

.privacy-consent-banner__copy p {
  margin: 0.5rem 0 0;
  color: rgba(16, 36, 55, 0.78);
  line-height: 1.7;
}

.privacy-consent-banner__form {
  display: grid;
  gap: 0.95rem;
}

.privacy-consent-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.privacy-consent-banner__actions .btn {
  white-space: nowrap;
}

.privacy-consent-banner__link {
  text-decoration: none;
}

.privacy-consent-banner__preferences {
  display: none;
  gap: 0.75rem;
}

.privacy-consent-banner.is-preferences-open .privacy-consent-banner__preferences {
  display: grid;
}

.privacy-consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(248, 250, 252, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.privacy-consent-option--locked {
  background: rgba(240, 249, 255, 0.92);
}

.privacy-consent-option__copy strong {
  display: block;
  color: var(--shop-text, #102437);
}

.privacy-consent-option__copy p {
  margin: 0.35rem 0 0;
  color: rgba(16, 36, 55, 0.74);
  line-height: 1.65;
}

.privacy-consent-option__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  color: var(--shop-text, #102437);
}

.privacy-consent-option__toggle input {
  width: auto;
}

.privacy-consent-banner__preferences-actions {
  display: flex;
  justify-content: flex-end;
}

.site-footer-cookie-settings {
  display: flex;
  align-items: center;
}

.site-footer-cookie-settings__button {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.site-footer-cookie-settings__button:hover {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 900px) {
  .privacy-consent-banner {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .privacy-consent-banner__card {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .privacy-consent-banner__actions {
    justify-content: stretch;
  }

  .privacy-consent-banner__actions .btn,
  .privacy-consent-banner__link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .privacy-consent-option {
    grid-template-columns: 1fr;
  }

  .privacy-consent-banner__preferences-actions .btn,
  .site-footer-cookie-settings__button {
    width: 100%;
    justify-content: center;
  }
}

.page-content .service-story-grid {
  display: grid;
  gap: 1.5rem;
}

.page-content .service-story-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,253,0.96));
  border: 1px solid rgba(22, 34, 51, 0.08);
  border-radius: 28px;
  padding: clamp(1.2rem, 2vw, 1.8rem);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.page-content .service-story-card--hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.9fr);
  gap: 1.4rem;
  align-items: center;
}

.page-content .service-story-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(31, 122, 140, 0.1);
  color: var(--primary, #1f7a8c);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-content .service-story-copy h2,
.page-content .service-story-card h3,
.page-content .service-story-step h4 {
  margin-top: 0;
  color: #0f172a;
}

.page-content .service-story-copy h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.page-content .service-story-copy p,
.page-content .service-story-card p,
.page-content .service-story-step p {
  color: #475569;
}

.page-content .service-story-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.page-content .service-story-list li + li {
  margin-top: 0.55rem;
}

.page-content .service-story-media-grid {
  display: grid;
  gap: 1rem;
}

.page-content .service-story-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(22, 34, 51, 0.08);
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.page-content .service-story-media img {
  width: 100%;
  height: auto;
  display: block;
}

.page-content .service-story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.page-content .service-story-card--steps h3,
.page-content .service-story-card--note h3 {
  margin-bottom: 1rem;
}

.page-content .service-story-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-content .service-story-step {
  padding: 1rem;
  border-radius: 22px;
  background: rgba(244, 247, 251, 0.94);
  border: 1px solid rgba(22, 34, 51, 0.08);
}

.page-content .service-story-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: var(--primary, #1f7a8c);
  color: #fff;
  font-weight: 800;
}

.page-content .service-story-card--note {
  background: linear-gradient(135deg, rgba(31,122,140,0.1), rgba(244,162,97,0.12));
}

@media (max-width: 900px) {
  .page-content .service-story-card--hero,
  .page-content .service-story-columns,
  .page-content .service-story-steps {
    grid-template-columns: 1fr;
  }
}
