:root {
  --sbs-bg: #f5f5f6;
  --sbs-surface: #ffffff;
  --sbs-border: #e4e7ee;
  --sbs-text: #121a2b;
  --sbs-muted: #626c80;
  --sbs-accent: #dc6408;
  --sbs-dark: #131a33;
  --sbs-shadow: 0 20px 48px rgba(18, 26, 43, 0.07);
  --sbs-radius: 24px;
}

* {
  box-sizing: border-box;
}

body.sbs-theme {
  margin: 0;
  color: var(--sbs-text);
  background: var(--sbs-bg);
  font-family: Arial, sans-serif;
}

.sbs-theme-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.sbs-theme-trustbar {
  background: var(--sbs-dark);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.sbs-theme-trustbar-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sbs-theme-utilitybar {
  background: #fff;
  border-bottom: 1px solid var(--sbs-border);
}

.sbs-theme-utilitybar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #3a4355;
}

.sbs-theme-utility-links,
.sbs-theme-utility-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sbs-theme-header,
.sbs-theme-footer {
  background: #fff;
  border-bottom: 1px solid var(--sbs-border);
}

.sbs-theme-footer {
  border-top: 1px solid var(--sbs-border);
  border-bottom: 0;
  margin-top: 48px;
  padding: 18px 0;
}

.sbs-theme-header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sbs-theme-mobile-nav {
  display: none;
}

.sbs-theme-mobile-nav summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--sbs-border);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.sbs-theme-mobile-nav summary::-webkit-details-marker {
  display: none;
}

.sbs-theme-mobile-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--sbs-border);
  box-shadow: var(--sbs-shadow);
}

.sbs-theme-mobile-panel a {
  color: var(--sbs-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.sbs-theme-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--sbs-text);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
}

.sbs-theme-logo small {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--sbs-muted);
}

.sbs-theme-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 700;
}

.sbs-theme-nav a,
.sbs-theme-utilitybar a {
  color: inherit;
  text-decoration: none;
}

.sbs-theme-search {
  margin-left: auto;
  flex: 1 1 300px;
  max-width: 360px;
}

.sbs-theme-search input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--sbs-border);
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  color: var(--sbs-text);
}

.sbs-theme-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sbs-theme-header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--sbs-border);
  background: #fff;
  color: var(--sbs-text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.sbs-theme-header-link.is-strong {
  background: #fff6ef;
  border-color: #f1c9a6;
  color: #a84e07;
}

.sbs-theme-main {
  padding: 32px 0 0;
}

.sbs-theme-hero,
.sbs-theme-section {
  padding: 24px 0;
}

.sbs-theme-section-tight {
  padding-top: 8px;
}

.sbs-theme-home-announcement {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sbs-theme-home-announcement span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--sbs-border);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.sbs-theme-home-announcement span:nth-child(1) {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.28);
}

.sbs-theme-home-announcement span:nth-child(2) {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.28);
}

.sbs-theme-home-announcement span:nth-child(3) {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.28);
}

.sbs-theme-home-announcement span:nth-child(4) {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.28);
}

.sbs-theme-category-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.sbs-theme-category-pill {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--sbs-border);
  text-decoration: none;
  color: var(--sbs-text);
  white-space: nowrap;
}

.sbs-theme-category-pill strong {
  color: var(--sbs-accent);
}

.sbs-theme-service-band {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.sbs-theme-service-band-item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid;
  font-size: 13px;
  font-weight: 700;
}

.sbs-theme-service-band-item.is-shipping {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.28);
}

.sbs-theme-service-band-item.is-speed {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.28);
}

.sbs-theme-service-band-item.is-secure {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.28);
}

.sbs-theme-service-band-item.is-accent {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.28);
}

.sbs-theme-service-band-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.3);
}

.sbs-theme-brand,
.sbs-theme-react-shell,
.sbs-theme-article {
  background: var(--sbs-surface);
  border: 1px solid var(--sbs-border);
  border-radius: var(--sbs-radius);
  box-shadow: var(--sbs-shadow);
  padding: 28px;
}

.sbs-theme-pill,
.sbs-theme-shell-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f6e8d5;
  color: #8a4d17;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.sbs-theme-chip {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f6e8d5;
  color: #8a4d17;
  font-size: 13px;
  font-weight: 700;
}

.sbs-theme-chip.is-dark {
  background: #2c1f10;
  color: #ffdeac;
}

.sbs-theme-brand h1,
.sbs-theme-section-head h1,
.sbs-theme-shell-header h2,
.sbs-theme-hero-copy h2,
.sbs-theme-article h1 {
  margin: 14px 0 8px;
  line-height: 1.1;
}

.sbs-theme-brand p,
.sbs-theme-react-shell p,
.sbs-theme-hero-copy p {
  margin: 0;
  color: var(--sbs-muted);
}

.sbs-theme-grid {
  display: grid;
  gap: 14px;
}

.sbs-theme-grid-categories {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.sbs-theme-grid-products {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.sbs-theme-grid-posts {
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.sbs-theme-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--sbs-border);
  border-radius: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sbs-theme-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sbs-shadow);
}

.sbs-theme-card-category {
  position: relative;
  min-height: 188px;
}

.sbs-theme-card-category .sbs-theme-card-body {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  gap: 4px;
  padding: 0;
}

.sbs-theme-card-category h3 {
  color: #fff;
  font-size: 19px;
  line-height: 24px;
  font-weight: 900;
}

.sbs-theme-card-category .sbs-theme-meta {
  margin-top: 0;
  color: rgba(255,255,255,0.88);
}

.sbs-theme-card-category-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70%;
  background: rgba(15, 25, 49, 0.52);
  z-index: 1;
}

.sbs-theme-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: #edf0f5;
}

.sbs-theme-card-body {
  padding: 12px;
}

.sbs-theme-card-body h3 {
  margin: 0 0 8px;
  line-height: 1.2;
}

.sbs-theme-card-body p {
  margin: 0;
  color: var(--sbs-muted);
}

.sbs-theme-card-product .sbs-theme-card-body {
  display: grid;
  gap: 8px;
}

.sbs-theme-card-product strong {
  font-size: 20px;
}

.sbs-theme-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 7px;
}

.sbs-theme-card-chip {
  color: #7c4a18;
  background: #f7ebd9;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.sbs-theme-stock-pill {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.sbs-theme-stock-pill.is-ok {
  background: #e8f7ee;
  color: #127444;
}

.sbs-theme-stock-pill.is-out {
  background: #fdecec;
  color: #ad3434;
}

.sbs-theme-meta {
  display: inline-block;
  margin-top: 14px;
  color: var(--sbs-accent);
  font-size: 13px;
  font-weight: 700;
}

.sbs-theme-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
  color: var(--sbs-accent);
}

.sbs-theme-price-large {
  margin-top: 20px;
  font-size: 1.15rem;
}

.sbs-theme-price-old {
  color: var(--sbs-muted);
  text-decoration: line-through;
}

.sbs-theme-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
  color: var(--sbs-muted);
}

.sbs-theme-breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sbs-theme-breadcrumb-item:not(:last-child)::after {
  content: "/";
  color: #9aa3b3;
}

.sbs-theme-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.sbs-theme-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  background: var(--sbs-accent);
  color: #fff;
  text-decoration: none;
  border: 1px solid var(--sbs-accent);
  font-weight: 700;
}

.sbs-theme-button.is-secondary {
  background: #fff;
  color: var(--sbs-text);
  border-color: #d3d9e4;
}

.sbs-theme-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.sbs-theme-shell-header {
  margin-bottom: 12px;
}

.sbs-theme-section-head {
  margin-bottom: 12px;
}

.sbs-theme-section-head p {
  margin: 8px 0 0;
  color: var(--sbs-muted);
}

.sbs-theme-hero-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  background: linear-gradient(120deg, #fff, #faf5eb);
  border: 1px solid #ece5d8;
  border-radius: 24px;
  padding: 28px;
  margin-top: 20px;
}

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

.sbs-theme-feature-card {
  background: #fff;
  border: 1px solid var(--sbs-border);
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--sbs-shadow);
}

.sbs-theme-feature-card h3 {
  margin: 12px 0 8px;
  line-height: 1.15;
}

.sbs-theme-feature-card p {
  margin: 0;
  color: var(--sbs-muted);
  line-height: 1.65;
}

.sbs-theme-home-promo {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.sbs-theme-home-promo-copy,
.sbs-theme-home-promo-aside {
  background: #fff;
  border: 1px solid var(--sbs-border);
  border-radius: 24px;
  box-shadow: var(--sbs-shadow);
}

.sbs-theme-home-promo-copy {
  padding: 24px;
}

.sbs-theme-home-promo-copy h2 {
  margin: 14px 0 10px;
  line-height: 1.08;
}

.sbs-theme-home-promo-copy p {
  margin: 0;
  color: var(--sbs-muted);
  line-height: 1.7;
}

.sbs-theme-home-promo-aside {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.sbs-theme-home-promo-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: #f9fafc;
  text-decoration: none;
  color: var(--sbs-text);
}

.sbs-theme-home-promo-card img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 14px;
  background: #edf0f5;
}

.sbs-theme-home-promo-card strong {
  display: block;
  line-height: 1.2;
}

.sbs-theme-home-promo-card span {
  display: block;
  margin-top: 6px;
  color: var(--sbs-muted);
  font-size: 14px;
}

.sbs-theme-home-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.sbs-theme-home-editorial-copy,
.sbs-theme-home-editorial-grid {
  background: #fff;
  border: 1px solid var(--sbs-border);
  border-radius: 24px;
  box-shadow: var(--sbs-shadow);
}

.sbs-theme-home-editorial-copy {
  padding: 24px;
}

.sbs-theme-home-editorial-copy h2 {
  margin: 14px 0 10px;
  line-height: 1.08;
}

.sbs-theme-home-editorial-copy p {
  margin: 0;
  color: var(--sbs-muted);
  line-height: 1.7;
}

.sbs-theme-home-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.sbs-theme-home-editorial-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: #f9fafc;
  text-decoration: none;
  color: var(--sbs-text);
}

.sbs-theme-home-editorial-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: #edf0f5;
}

.sbs-theme-home-editorial-card strong {
  display: block;
  line-height: 1.25;
}

.sbs-theme-home-editorial-card span {
  display: block;
  margin-top: 6px;
  color: var(--sbs-accent);
  font-weight: 700;
}

.sbs-theme-home-editorial {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.sbs-theme-home-editorial-copy,
.sbs-theme-home-editorial-grid {
  background: #fff;
  border: 1px solid var(--sbs-border);
  border-radius: 24px;
  box-shadow: var(--sbs-shadow);
}

.sbs-theme-home-editorial-copy {
  padding: 24px;
}

.sbs-theme-home-editorial-copy h2 {
  margin: 14px 0 10px;
  line-height: 1.08;
}

.sbs-theme-home-editorial-copy p {
  margin: 0;
  color: var(--sbs-muted);
  line-height: 1.7;
}

.sbs-theme-home-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.sbs-theme-home-editorial-card {
  display: grid;
  gap: 10px;
  padding: 10px;
  border-radius: 18px;
  background: #f9fafc;
  text-decoration: none;
  color: var(--sbs-text);
}

.sbs-theme-home-editorial-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  background: #edf0f5;
}

.sbs-theme-home-editorial-card strong {
  display: block;
  line-height: 1.25;
}

.sbs-theme-home-editorial-card span {
  display: block;
  margin-top: 6px;
  color: var(--sbs-accent);
  font-weight: 700;
}

.sbs-theme-hero-copy h1 {
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 10px 0;
  max-width: 11ch;
}

.sbs-theme-hero-copy p {
  line-height: 1.65;
}

.sbs-theme-hero-badges {
  display: flex;
  gap: 8px;
}

.sbs-theme-hero-price {
  color: var(--sbs-accent);
  font-size: 64px;
  font-weight: 900;
  margin-top: 14px;
}

.sbs-theme-hero-notes {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #4d5669;
}

.sbs-theme-hero-media-wrap {
  background: #fff;
  border: 1px solid #eee5d8;
  border-radius: 20px;
  padding: 14px;
}

.sbs-theme-hero-image {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 14px;
  background: #eef0f5;
}

.sbs-theme-hero-image--placeholder {
  display: block;
}

.sbs-theme-hero-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.sbs-theme-hero-support-card {
  display: grid;
  gap: 6px;
  padding: 12px;
  border-radius: 14px;
  background: #fff8f0;
  border: 1px solid #f1d3b3;
  text-decoration: none;
  color: var(--sbs-text);
}

.sbs-theme-hero-support-card strong {
  line-height: 1.2;
}

.sbs-theme-hero-support-card span {
  color: var(--sbs-accent);
  font-weight: 700;
}

.sbs-theme-hero-slider-controls {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.sbs-theme-hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e6ebf3;
  color: #243149;
  font-weight: 800;
}

.sbs-theme-hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sbs-theme-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d3dae6;
}

.sbs-theme-hero-dot.is-active {
  width: 24px;
  background: var(--sbs-accent);
}

.sbs-theme-spotlight-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.sbs-theme-spotlight-list li a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid #ece6da;
  border-radius: 10px;
  padding: 9px 10px;
  background: #fcfaf6;
  font-size: 14px;
}

.sbs-theme-curated-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.sbs-theme-curated-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--sbs-border);
  text-decoration: none;
  color: var(--sbs-text);
}

.sbs-theme-curated-card strong {
  color: var(--sbs-accent);
  font-size: 20px;
}

.sbs-theme-page-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 24px 26px;
  border-radius: 24px;
  background: linear-gradient(120deg, #fff, #f6efe5);
  border: 1px solid #ece5d8;
  margin-bottom: 18px;
}

.sbs-theme-page-hero--compact {
  padding-top: 20px;
  padding-bottom: 20px;
}

.sbs-theme-page-hero-copy h1 {
  margin: 12px 0 10px;
  line-height: 1.08;
}

.sbs-theme-page-hero-copy p {
  margin: 0;
  color: var(--sbs-muted);
  line-height: 1.7;
}

.sbs-theme-page-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.sbs-theme-page-hero-stats > div {
  display: grid;
  gap: 4px;
  padding: 18px;
  background: #fff;
  border: 1px solid #ece5d8;
  border-radius: 18px;
}

.sbs-theme-page-hero-stats strong {
  font-size: 30px;
  line-height: 1;
}

.sbs-theme-page-hero-stats span {
  font-size: 14px;
  color: var(--sbs-muted);
}

.sbs-theme-product-layout {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 26px;
  align-items: start;
}

.sbs-theme-product-gallery,
.sbs-theme-product-summary {
  background: #fff;
  border: 1px solid var(--sbs-border);
  border-radius: 24px;
  box-shadow: var(--sbs-shadow);
  padding: 22px;
}

.sbs-theme-product-gallery-head {
  margin-bottom: 14px;
}

.sbs-theme-product-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  background: #edf0f5;
}

.sbs-theme-product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.sbs-theme-product-thumbs img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--sbs-border);
  background: #edf0f5;
}

.sbs-theme-product-summary h1 {
  margin: 16px 0 10px;
  line-height: 1.08;
}

.sbs-theme-product-short {
  color: var(--sbs-muted);
  line-height: 1.7;
}

.sbs-theme-product-meta-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sbs-theme-product-meta-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f8f9fb;
  border: 1px solid var(--sbs-border);
  color: #33415f;
  font-size: 13px;
  font-weight: 700;
}

.sbs-theme-product-notes {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #4d5669;
}

.sbs-theme-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.sbs-theme-product-variation-note {
  margin-top: 16px;
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  background: #fff7ef;
  border: 1px solid #f1c9a6;
}

.sbs-theme-product-variation-note strong {
  font-size: 14px;
}

.sbs-theme-product-variation-note span {
  color: var(--sbs-muted);
  font-size: 14px;
  line-height: 1.6;
}

.sbs-theme-product-support {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sbs-theme-product-support > div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background: #f8f9fb;
  border: 1px solid var(--sbs-border);
}

.sbs-theme-product-support strong {
  font-size: 14px;
}

.sbs-theme-product-support span {
  font-size: 14px;
  color: var(--sbs-muted);
}

.sbs-theme-product-benefits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sbs-theme-product-benefit {
  display: grid;
  gap: 4px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--sbs-border);
}

.sbs-theme-product-benefit strong {
  font-size: 14px;
}

.sbs-theme-product-benefit span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--sbs-muted);
}

.sbs-theme-product-content {
  margin-top: 24px;
}

.sbs-theme-product-related {
  margin-top: 28px;
}

.sbs-theme-woocommerce-shell {
  display: grid;
  gap: 18px;
}

.sbs-theme-woocommerce-shell .woocommerce-notices-wrapper:empty {
  display: none;
}

.sbs-theme-woocommerce-shell .woocommerce-message,
.sbs-theme-woocommerce-shell .woocommerce-info,
.sbs-theme-woocommerce-shell .woocommerce-error {
  margin: 0 0 16px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--sbs-border);
  background: #fff;
  list-style: none;
}

.sbs-theme-woocommerce-shell .woocommerce-message {
  border-color: #d8e7d0;
  background: #f6fbf3;
}

.sbs-theme-woocommerce-shell .woocommerce-error {
  border-color: #efc7c7;
  background: #fff5f5;
}

.sbs-theme-woocommerce-shell .shop_table,
.sbs-theme-woocommerce-shell .woocommerce-checkout-review-order-table,
.sbs-theme-woocommerce-shell .woocommerce-orders-table,
.sbs-theme-woocommerce-shell .woocommerce-MyAccount-content,
.sbs-theme-woocommerce-shell .woocommerce-MyAccount-navigation,
.sbs-theme-woocommerce-shell .cart_totals,
.sbs-theme-woocommerce-shell .woocommerce-checkout #customer_details,
.sbs-theme-woocommerce-shell form.checkout,
.sbs-theme-woocommerce-shell form.woocommerce-cart-form,
.sbs-theme-woocommerce-shell form.login,
.sbs-theme-woocommerce-shell form.register,
.sbs-theme-woocommerce-shell .woocommerce-form-coupon,
.sbs-theme-woocommerce-shell .woocommerce-address-fields,
.sbs-theme-woocommerce-shell .woocommerce-EditAccountForm {
  background: #fff;
  border: 1px solid var(--sbs-border);
  border-radius: 24px;
  box-shadow: var(--sbs-shadow);
}

.sbs-theme-woocommerce-shell form.checkout,
.sbs-theme-woocommerce-shell form.woocommerce-cart-form,
.sbs-theme-woocommerce-shell form.login,
.sbs-theme-woocommerce-shell form.register,
.sbs-theme-woocommerce-shell .woocommerce-form-coupon,
.sbs-theme-woocommerce-shell .woocommerce-address-fields,
.sbs-theme-woocommerce-shell .woocommerce-EditAccountForm,
.sbs-theme-woocommerce-shell .woocommerce-MyAccount-content,
.sbs-theme-woocommerce-shell .woocommerce-MyAccount-navigation {
  padding: 20px;
}

.sbs-theme-woocommerce-shell .shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.sbs-theme-woocommerce-shell .shop_table th,
.sbs-theme-woocommerce-shell .shop_table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--sbs-border);
}

.sbs-theme-woocommerce-shell .shop_table tr:last-child td {
  border-bottom: 0;
}

.sbs-theme-woocommerce-shell .button,
.sbs-theme-woocommerce-shell button.button,
.sbs-theme-woocommerce-shell input.button,
.sbs-theme-woocommerce-shell .checkout-button,
.sbs-theme-woocommerce-shell #place_order {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 14px;
  background: var(--sbs-accent);
  color: #fff;
  border: 1px solid var(--sbs-accent);
  font-weight: 700;
}

.sbs-theme-woocommerce-shell .button.alt,
.sbs-theme-woocommerce-shell button.button.alt,
.sbs-theme-woocommerce-shell #place_order {
  background: var(--sbs-accent);
}

.sbs-theme-woocommerce-shell input[type="text"],
.sbs-theme-woocommerce-shell input[type="email"],
.sbs-theme-woocommerce-shell input[type="tel"],
.sbs-theme-woocommerce-shell input[type="password"],
.sbs-theme-woocommerce-shell textarea,
.sbs-theme-woocommerce-shell select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--sbs-border);
  border-radius: 14px;
  padding: 10px 14px;
  background: #fff;
  color: var(--sbs-text);
}

.sbs-theme-woocommerce-shell textarea {
  min-height: 120px;
}

.sbs-theme-woocommerce-shell .quantity .qty {
  min-height: 42px;
}

.sbs-theme-woocommerce-shell .woocommerce-cart-form,
.sbs-theme-woocommerce-shell form.checkout {
  display: grid;
  gap: 18px;
}

.sbs-theme-woocommerce-shell .woocommerce-checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
  align-items: start;
}

.sbs-theme-woocommerce-shell .woocommerce-checkout > h3,
.sbs-theme-woocommerce-shell .woocommerce-checkout > #order_review_heading {
  margin: 0 0 10px;
}

.sbs-theme-woocommerce-shell .woocommerce-checkout #customer_details {
  padding: 20px;
}

.sbs-theme-woocommerce-shell .woocommerce-checkout #order_review,
.sbs-theme-woocommerce-shell .woocommerce-checkout-review-order {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--sbs-border);
  border-radius: 24px;
  box-shadow: var(--sbs-shadow);
}

.sbs-theme-woocommerce-shell .woocommerce-checkout-payment {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--sbs-border);
}

.sbs-theme-woocommerce-shell .cart_totals {
  padding: 20px;
}

.sbs-theme-woocommerce-shell .cart-collaterals {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.sbs-theme-woocommerce-shell .woocommerce-checkout .col2-set,
.sbs-theme-woocommerce-shell .woocommerce-checkout #order_review_heading,
.sbs-theme-woocommerce-shell .woocommerce-checkout #order_review {
  width: 100%;
}

.sbs-theme-woocommerce-shell .wc-proceed-to-checkout {
  margin: 0;
}

.sbs-theme-woocommerce-shell .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.sbs-theme-woocommerce-shell .woocommerce-MyAccount-navigation a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8f9fb;
  text-decoration: none;
  color: var(--sbs-text);
}

.sbs-theme-footer {
  padding: 26px 0 18px;
}

.sbs-theme-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
}

.sbs-theme-footer-brand h3,
.sbs-theme-footer-column h4 {
  margin: 12px 0 8px;
}

.sbs-theme-footer-brand p,
.sbs-theme-footer-column span,
.sbs-theme-footer-column a {
  color: var(--sbs-muted);
  line-height: 1.7;
  text-decoration: none;
}

.sbs-theme-footer-column {
  display: grid;
  align-content: start;
  gap: 6px;
}

.sbs-theme-footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--sbs-border);
}

@media (max-width: 720px) {
  .sbs-theme-container {
    width: min(100% - 20px, 1120px);
  }

  .sbs-theme-header-inner {
    position: relative;
    flex-wrap: wrap;
    padding: 10px 0;
    min-height: auto;
  }

  .sbs-theme-mobile-nav {
    display: block;
    margin-left: auto;
    order: 2;
    position: relative;
  }

  .sbs-theme-search {
    margin-left: 0;
    max-width: none;
    flex-basis: 100%;
    order: 5;
  }

  .sbs-theme-nav {
    display: none;
  }

  .sbs-theme-nav .menu {
    flex-wrap: wrap;
    gap: 12px;
  }

  .sbs-theme-header-actions {
    width: 100%;
    order: 3;
  }

  .sbs-theme-brand,
  .sbs-theme-react-shell,
  .sbs-theme-article {
    padding: 20px;
    border-radius: 18px;
  }

  .sbs-theme-hero-box,
  .sbs-theme-home-announcement,
  .sbs-theme-feature-strip,
  .sbs-theme-home-promo,
  .sbs-theme-home-editorial,
  .sbs-theme-curated-row,
  .sbs-theme-page-hero,
  .sbs-theme-product-layout,
  .sbs-theme-grid-categories,
  .sbs-theme-grid-products,
  .sbs-theme-grid-posts {
    grid-template-columns: 1fr;
  }

  .sbs-theme-hero-copy h1 {
    font-size: 38px;
  }

  .sbs-theme-hero-price {
    font-size: 44px;
  }

  .sbs-theme-hero-image {
    height: 300px;
  }

  .sbs-theme-product-image {
    height: 320px;
  }

  .sbs-theme-product-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sbs-theme-product-support {
    grid-template-columns: 1fr;
  }

  .sbs-theme-product-benefits {
    grid-template-columns: 1fr;
  }

  .sbs-theme-page-hero-stats,
  .sbs-theme-footer-grid {
    grid-template-columns: 1fr;
  }

  .sbs-theme-home-promo-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .sbs-theme-hero-support-grid,
  .sbs-theme-home-editorial-grid {
    grid-template-columns: 1fr;
  }

  .sbs-theme-woocommerce-shell .woocommerce-checkout {
    grid-template-columns: 1fr;
  }

  .sbs-theme-woocommerce-shell .shop_table,
  .sbs-theme-woocommerce-shell .woocommerce-checkout-review-order-table {
    display: block;
    overflow-x: auto;
  }
}
