/*
Theme Name: Samurai Sword
Theme URI: https://samuraiswordtokyo.com/
Author: Samurai Sword Tokyo
Description: WooCommerce rebuild theme for Samurai Sword Tokyo.
Version: 0.1.0
Text Domain: samurai-sword
Requires PHP: 8.1
*/

:root {
  /* Tokens mirror the live Shopify theme color scheme "background-1". */
  --sst-ink: #121212;
  --sst-muted: #5f5f5f;
  --sst-line: #ececec;
  --sst-paper: #ffffff;
  --sst-surface: #ffffff;
  --sst-accent: #9e2c5f;
  --sst-accent-dark: #7a2149;
  --sst-soft: #faf3f7;
  --sst-gray: #f7f7f7;
  --sst-focus: #1f6feb;
  --sst-sale: #ef4444;
  --sst-compare: #94a3b8;
  --sst-stars: #fbbf24;
  --sst-btn-label: #ffffff;
  --sst-radius: 6px;
  --sst-card-radius: 12px;
  --sst-font: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --sst-max: 1600px;
}

/* Live Shopify color schemes (background-1 / background-2 / inverse). */
.color-background-1 {
  --sst-ink: #121212;
  --sst-paper: #ffffff;
  --sst-surface: #ffffff;
  --sst-accent: #9e2c5f;
  --sst-btn-label: #ffffff;
}

.color-background-2 {
  --sst-ink: #0a0a0a;
  --sst-paper: #ffffff;
  --sst-surface: #ffffff;
}

.color-inverse {
  --sst-ink: #ffffff;
  --sst-paper: #000000;
  --sst-surface: #3d3c3c;
  --sst-accent: #ffffff;
  --sst-btn-label: #ac004d;
  color: var(--sst-ink);
  background: linear-gradient(90deg, rgba(158, 44, 95, 1), rgba(10, 10, 10, 1) 100%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--sst-ink);
  background: var(--sst-paper);
  font-family: var(--sst-font);
  font-size: 16px;
  line-height: 1.55;
}

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

a:hover {
  color: var(--sst-accent);
}

img {
  height: auto;
  max-width: 100%;
}

.sst-container {
  width: min(100% - 32px, var(--sst-max));
  margin: 0 auto;
}

.sst-topbar {
  color: var(--sst-ink);
  background: #f7f7f7;
  border-bottom: 1px solid #ececec;
  font-size: 11px;
}

.sst-topbar a {
  color: var(--sst-ink);
}

.sst-topbar a:hover {
  opacity: 0.85;
}

.sst-topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 26px;
  padding: 2px 0;
}

.sst-topbar__message,
.sst-topbar__utilities {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.sst-topbar__message svg {
  flex: 0 0 auto;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sst-topbar__language {
  flex: 0 0 auto;
}

.sst-language-switcher {
  position: relative;
  color: var(--sst-ink);
}

.sst-language-switcher__summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  list-style: none;
  color: inherit;
  font-weight: 600;
  cursor: pointer;
}

.sst-language-switcher__summary::-webkit-details-marker {
  display: none;
}

.sst-language-switcher__summary::after {
  content: "";
  width: 0;
  height: 0;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.78;
}

.sst-language-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 90;
  display: grid;
  min-width: 190px;
  padding: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.sst-language-switcher__item {
  display: flex;
  align-items: center;
  min-height: 34px;
  border-radius: 4px;
  padding: 8px 10px;
  color: var(--sst-text) !important;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.sst-language-switcher__item:hover,
.sst-language-switcher__item.is-active {
  color: var(--sst-accent) !important;
  background: #faf3f7;
  opacity: 1;
}

.sst-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--sst-line);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.sst-header__main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 58px;
  padding: 6px 0;
}

.sst-brand {
  display: inline-flex;
  align-items: center;
}

.sst-brand img {
  display: block;
  width: auto;
  height: 38px;
}

.sst-nav-wrap {
  display: none;
  border-top: 1px solid #f3f3f3;
}

.sst-menu-toggle {
  display: none;
  position: relative;
  z-index: 80;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sst-ink);
  cursor: pointer;
}

.sst-menu-toggle:hover,
.sst-menu-toggle:focus {
  color: var(--sst-ink);
  background: transparent;
}

.sst-menu-toggle:focus-visible {
  outline: 2px solid var(--sst-focus);
  outline-offset: 2px;
}

.sst-menu-toggle__icons,
.sst-menu-toggle svg,
.sst-icon-link svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sst-menu-toggle .sst-icon-close,
body.sst-nav-open .sst-menu-toggle .sst-icon-hamburger {
  display: none;
}

body.sst-nav-open .sst-menu-toggle .sst-icon-close {
  display: block;
}

.sst-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.sst-nav-open .sst-nav-overlay {
  opacity: 1;
  visibility: visible;
}

body.sst-nav-open {
  overflow: hidden;
}

.sst-nav__close {
  display: none;
}

.sst-nav__utility {
  display: none;
}

.sst-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.sst-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: end;
}

.sst-header__language {
  position: relative;
  flex: 0 0 auto;
  font-size: 13px;
}

.sst-header__language .sst-language-switcher__summary {
  min-height: 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 8px;
}

.sst-header__language .sst-language-switcher__summary:hover,
.sst-header__language .sst-language-switcher[open] .sst-language-switcher__summary {
  border-color: var(--sst-line);
  background: #f7f7f7;
}

.sst-header__language .sst-language-switcher__menu {
  top: calc(100% + 10px);
}

.sst-header-links {
  min-width: 0;
  overflow: hidden;
}

.sst-header-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.3px;
}

.sst-header-links a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--sst-ink);
  text-decoration: none;
  white-space: nowrap;
}

.sst-header-links a:hover,
.sst-header-links a:focus,
.sst-header-links .current-menu-item > a {
  color: var(--sst-accent);
}

.sst-icon-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 4px;
  color: var(--sst-ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.sst-icon-link:hover {
  color: var(--sst-accent);
}

.sst-icon-link svg {
  width: 24px;
  height: 24px;
}

.sst-cart-toggle {
  position: relative;
}

.sst-cart-count {
  position: absolute;
  top: 1px;
  right: auto;
  left: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  padding: 0 4px;
  color: #fff;
  background: var(--sst-accent);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.sst-cart-count:empty {
  display: none;
}

.sst-button,
.button,
button,
input[type="submit"] {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sst-accent);
  border-radius: var(--sst-radius);
  padding: 9px 14px;
  color: #fff;
  background: var(--sst-accent);
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.sst-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover {
  color: #fff;
  background: var(--sst-accent-dark);
}

.sst-button--ghost {
  color: var(--sst-ink);
  background: transparent;
  border-color: var(--sst-line);
}

.sst-button--ghost:hover {
  color: var(--sst-accent);
  background: #fff;
}

.sst-hero {
  border-bottom: 1px solid var(--sst-line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(90deg, #f2f2f2 0, #f2f2f2 1px, transparent 1px, transparent 48px);
}

.sst-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: center;
  min-height: 430px;
  padding: 64px 0;
}

.sst-hero h1 {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

.sst-hero p {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--sst-muted);
  font-size: 18px;
}

.sst-hero__panel {
  border: 1px solid var(--sst-line);
  border-radius: var(--sst-radius);
  background: var(--sst-surface);
  padding: 24px;
}

.sst-hero__panel strong {
  display: block;
  margin-bottom: 10px;
}

.sst-slim-hero {
  position: relative;
  overflow: hidden;
  background: #0f0f0f;
  color: #fff;
}

.sst-slim-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/sst-hero-boxes-filled-mobile.webp');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.sst-slim-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(95deg, rgba(8, 4, 8, 0.93) 0%, rgba(20, 6, 14, 0.86) 36%, rgba(40, 12, 28, 0.56) 66%, rgba(158, 44, 95, 0.18) 100%);
}

.sst-slim-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 24px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 30px 24px 26px;
  text-align: left;
}

.sst-slim-hero__copy {
  min-width: 0;
}

.sst-slim-hero__logo {
  display: block;
  width: auto;
  height: auto;
  max-height: 40px;
  max-width: 158px;
  margin: 0 0 12px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.sst-slim-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.sst-slim-hero__eyebrow:hover {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.sst-slim-hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d13b7b;
  box-shadow: 0 0 0 2px rgba(209, 59, 123, 0.18);
}

.sst-slim-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.55vw, 29px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0;
}

.sst-slim-hero h1 .b {
  font-weight: 700;
}

.sst-slim-hero__account {
  justify-self: end;
  display: grid;
  gap: 8px;
  width: min(100%, 360px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-left: 4px solid #ffffff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.sst-slim-hero__account strong,
.sst-slim-hero__account b,
.sst-slim-hero__account span,
.sst-slim-hero__account em {
  display: block;
}

.sst-slim-hero__account-title {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.14;
}

.sst-slim-hero__account-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.45;
}

.sst-slim-hero__account-badge {
  justify-self: start;
  border-radius: 6px;
  padding: 6px 9px;
  color: var(--sst-accent);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.sst-slim-hero__account-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-style: normal;
  line-height: 1.45;
}

.sst-qo {
  color: #1a1a1a;
  background: #fff;
  padding: 28px 16px 64px;
}

.sst-qo * {
  box-sizing: border-box;
}

.sst-qo__inner {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.sst-qo__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.sst-qo__h {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
}

.sst-qo__h .b {
  font-weight: 600;
}

.sst-qo__count-top {
  color: #6b6b6b;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.sst-qo__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.sst-qo__main {
  min-width: 0;
}

.sst-qo__side {
  position: sticky;
  top: 118px;
}

.sst-qo__tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
  border-bottom: 1px solid #ececec;
  overflow-x: auto;
}

.sst-qo__tab {
  appearance: none;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: 10px 18px;
  color: #6b6b6b;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.sst-qo__tab:hover,
.sst-qo__tab[aria-pressed="true"] {
  color: #1a1a1a;
  background: transparent;
  border-bottom-color: var(--sst-accent);
}

.sst-qo__group {
  margin-bottom: 36px;
}

.sst-qo__group--hidden {
  display: none;
}

.sst-qo__label {
  margin: 0 0 12px;
  color: #6b6b6b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sst-qo__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.sst-qo__count {
  color: #555;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.sst-qo__filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.sst-qo__stock-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  color: #555;
  font-size: 12px;
  white-space: nowrap;
}

.sst-qo__search,
.sst-qo__sort {
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 0;
  padding: 0 11px;
  color: #1a1a1a;
  background: #fff;
  font-size: 12px;
}

.sst-qo__search {
  width: 220px;
  max-width: 100%;
}

.sst-qo__view-seg {
  display: inline-flex;
  height: 34px;
  border: 1px solid #dcdcdc;
  border-radius: 0;
  overflow: hidden;
}

.sst-qo__view-seg button {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0 10px;
  color: #555;
  background: #fff;
  font-size: 12px;
}

.sst-qo__view-seg button + button {
  border-left: 1px solid #e4e4e4;
}

.sst-qo__view-seg button[aria-pressed="true"] {
  color: #fff;
  background: var(--sst-accent);
}

.sst-qo__table-wrap {
  overflow-x: auto;
  border: 1px solid #d8dde6;
}

.sst-qo__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.sst-qo__table th {
  height: 32px;
  padding: 6px 10px;
  color: #3f4652;
  background: #f4f6f8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid #a8b0bd;
  border-right: 1px solid #e1e5ea;
}

.sst-qo__table th:first-child {
  width: 46%;
}

.sst-qo__table th:nth-child(2),
.sst-qo__table th:nth-child(3) {
  width: 27%;
}

.sst-qo__table td {
  padding: 5px 10px;
  vertical-align: middle;
  font-size: 11px;
  line-height: 1.25;
  border-bottom: 1px solid #e9edf2;
  border-right: 1px solid #eef2f6;
}

.sst-qo__table tbody tr:hover {
  background: #fafbfc;
}

.sst-qo__row--hidden {
  display: none !important;
}

.sst-qo__prod {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  color: inherit;
  text-decoration: none;
}

.sst-qo__prod img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  object-fit: contain;
}

.sst-qo__pname {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.sst-qo__sku,
.sst-qo__jan {
  display: block;
  margin-top: 5px;
  color: #999;
  font-size: 11px;
}

.sst-product-jan {
  margin: 10px 0 14px;
  color: #444;
  font-size: 13px;
}

.sst-product-jan span {
  color: #777;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.sst-qo__offer-cell {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
  justify-content: center;
  min-height: 54px;
}

.sst-qo__offer-info {
  display: grid;
  gap: 2px;
}

.sst-qo__offer-label {
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sst-qo__offer--noshrink .sst-qo__offer-label {
  color: var(--sst-accent);
}

.sst-qo__offer-price {
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.sst-qo__offer-price--ask {
  color: var(--sst-accent);
  text-decoration: underline;
}

.sst-qo__offer-stock {
  color: #666;
  font-size: 11px;
}

.sst-qo__stock--in {
  color: #147a3d;
}

.sst-qo__stock--out {
  color: var(--sst-accent);
}

.sst-qo__offer-empty {
  color: #aaa;
}

.sst-qo__qty {
  display: inline-flex;
  align-items: center;
  height: 34px;
  border: 1px solid #ddd;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.sst-qo__qty button {
  width: 32px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #555;
  background: #fff;
  font-size: 16px;
}

.sst-qo__qty button:hover {
  color: #1a1a1a;
  background: #f5f5f5;
}

.sst-qo__qty input {
  width: 38px;
  border: 0;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 0;
  text-align: center;
  font-size: 13px;
}

.sst-qo__qty input::-webkit-outer-spin-button,
.sst-qo__qty input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.sst-qo__empty {
  display: none;
  border: 1px solid #ececec;
  padding: 18px;
  color: #777;
  text-align: center;
}

.sst-qo__group--empty .sst-qo__empty {
  display: block;
}

.sst-qo__lazy {
  border: 1px solid #ececec;
  padding: 18px;
  color: #777;
  text-align: center;
  background: #fff;
}

.sst-qo__group[data-lazy-loaded="1"] .sst-qo__lazy {
  display: none;
}

.sst-qo__cart {
  border: 1px solid #ececec;
  border-radius: var(--sst-radius);
  padding: 20px;
  background: #fff;
  font-size: 13px;
}

.sst-qo__cart h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 500;
}

.sst-qo__cc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  padding: 3px 9px;
  color: #fff;
  background: #1a1a1a;
  font-size: 11px;
  font-weight: 600;
}

.sst-qo__selected {
  margin-left: auto;
  color: #bbb;
  font-size: 11px;
  font-weight: 400;
}

.sst-qo__cart-sub {
  margin: 0 0 14px;
  color: #999;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.sst-qo__cart-list {
  max-height: 340px;
  margin: 0 -6px 14px;
  padding: 0 6px;
  overflow-y: auto;
}

.sst-qo__cart-list:empty::after {
  content: "Select quantities from the price list.";
  display: block;
  padding: 24px 8px;
  color: #999;
  font-size: 12px;
  text-align: center;
}

.sst-qo__cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  border-bottom: 1px solid #f1f1f1;
  padding: 8px 0;
}

.sst-qo__cart-item strong,
.sst-qo__cart-item small {
  display: block;
}

.sst-qo__cart-item strong {
  font-size: 12px;
  line-height: 1.25;
}

.sst-qo__cart-item small {
  color: #999;
  font-size: 10px;
}

.sst-qo__cart-totals {
  margin-top: 6px;
  border-top: 1px solid #ececec;
  padding-top: 14px;
}

.sst-qo__cart-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  color: #6b6b6b;
  font-size: 12px;
}

.sst-qo__cart-row.sst-qo__total {
  margin-top: 8px;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
}

.sst-qo__checkout-extra {
  margin-top: 12px;
  border: 1px solid #ececec;
  border-radius: var(--sst-radius);
  background: #fafafa;
}

.sst-qo__checkout-extra-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 10px;
  cursor: pointer;
}

.sst-qo__checkout-extra-title {
  font-size: 12px;
  font-weight: 700;
}

.sst-qo__checkout-extra-tag,
.sst-qo__checkout-extra-state {
  color: #777;
  font-size: 10px;
}

.sst-qo__checkout-extra-body {
  display: grid;
  gap: 8px;
  padding: 0 10px 10px;
}

.sst-qo__checkout-extra-body label {
  display: grid;
  gap: 4px;
  color: #555;
  font-size: 11px;
}

.sst-qo__checkout-extra-body input,
.sst-qo__checkout-extra-body textarea {
  width: 100%;
  border: 1px solid #e1e1e1;
  border-radius: var(--sst-radius);
  padding: 8px;
  font: inherit;
  font-size: 12px;
}

.sst-qo__checkout-extra-body textarea {
  min-height: 64px;
  resize: vertical;
}

.sst-qo__cart-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.sst-qo__btn-checkout,
.sst-qo__btn-paypal-wa,
.sst-qo__btn-cart {
  width: 100%;
  border-radius: var(--sst-radius);
  padding: 13px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sst-qo__btn-checkout {
  border-color: var(--sst-accent);
  background: var(--sst-accent);
}

.sst-qo__btn-paypal-wa {
  border-color: #1f1f1f;
  background: #1f1f1f;
}

.sst-qo__btn-cart {
  color: #1a1a1a;
  border-color: #ddd;
  background: #fff;
}

.sst-qo__btn-cart:hover {
  color: #1a1a1a;
  background: #fafafa;
}

.sst-qo__cart-actions button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sst-qo__cart-clear {
  min-height: 0;
  border: 0;
  padding: 2px;
  color: #999;
  background: transparent;
  font-size: 11px;
  text-decoration: underline;
}

.sst-qo__cart-clear:hover {
  color: #1a1a1a;
  background: transparent;
}

.sst-qo__pay {
  display: grid;
  gap: 4px;
  border-top: 1px solid #eee;
  padding-top: 10px;
  color: #777;
  font-size: 11px;
}

.sst-qo__wise-pill {
  display: inline-block;
  margin-right: 5px;
  border-radius: 3px;
  padding: 2px 6px;
  color: #163300;
  background: #d7ff64;
  font-weight: 800;
}

.sst-qo--list .sst-qo__prod {
  grid-template-columns: 64px minmax(0, 1fr);
}

.sst-qo--list .sst-qo__prod img {
  width: 64px;
  height: 64px;
}

/* Mobile only: the table collapses into product cards. On desktop the real
   theme forces the spreadsheet table (see base .sst-qo__table above). */
@media (max-width: 900px) {
  .sst-qo:not(.sst-qo--list) .sst-qo__table,
  .sst-qo:not(.sst-qo--list) .sst-qo__table tbody,
  .sst-qo:not(.sst-qo--list) .sst-qo__table tr,
  .sst-qo:not(.sst-qo--list) .sst-qo__table td {
    display: block;
  }

  .sst-qo:not(.sst-qo--list) .sst-qo__table thead {
    display: none;
  }

  .sst-qo:not(.sst-qo--list) .sst-qo__table tbody {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .sst-qo:not(.sst-qo--list) .sst-qo__table tbody tr {
    display: grid;
    grid-template-rows: 214px auto auto;
    border: 1px solid #ececec;
    border-radius: var(--sst-radius);
    overflow: hidden;
    background: #fff;
  }

  .sst-qo:not(.sst-qo--list) .sst-qo__table td {
    border: 0;
    border-top: 1px solid #f1f1f1;
  }

  .sst-qo:not(.sst-qo--list) .sst-qo__table td:first-child {
    border-top: 0;
  }

  .sst-qo:not(.sst-qo--list) .sst-qo__prod {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 128px 70px;
    gap: 8px;
    text-align: center;
  }

  .sst-qo:not(.sst-qo--list) .sst-qo__prod img {
    width: 100%;
    height: 128px;
  }
}

.sst-section {
  padding: 44px 0;
}

.sst-section__head {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 22px;
}

.sst-section h2,
.woocommerce-products-header__title,
.product_title {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
}

.sst-grid,
.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.products::before,
.products::after {
  content: none !important;
}

.products .product,
.sst-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--sst-line);
  border-radius: var(--sst-card-radius);
  background: var(--sst-surface);
  overflow: hidden;
  transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.products .product:hover,
.sst-card:hover {
  border-color: #e0d3da;
  box-shadow: 0 8px 24px rgba(21, 21, 21, 0.08);
  transform: translateY(-2px);
}

.woocommerce ul.products li.product {
  width: auto;
  margin: 0;
  float: none;
}

.woocommerce-loop-product__link {
  display: grid;
  gap: 10px;
  padding: 14px 14px 6px;
}

.woocommerce-loop-product__link img,
.sst-card img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: contain;
  background: var(--sst-gray);
  border-radius: 8px;
}

.woocommerce-loop-product__title {
  min-height: 42px;
  margin: 0;
  color: var(--sst-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.price {
  color: var(--sst-accent);
  font-weight: 700;
  font-size: 16px;
}

.price del {
  color: var(--sst-compare);
  font-weight: 400;
  margin-right: 6px;
}

.price ins {
  text-decoration: none;
}

span.onsale {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  margin: 0;
  background: var(--sst-sale);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 999px;
}

.woocommerce ul.products li.product.outofstock::before {
  content: "Sold out";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background: rgba(21, 21, 21, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
  margin: 6px 14px 14px;
  width: calc(100% - 28px);
  text-align: center;
}

/* Quick-add: reveal the AJAX add-to-cart on hover (desktop); always shown on touch.
   The button fires WooCommerce ajax_add_to_cart -> added_to_cart -> opens cart drawer. */
@media (hover: hover) and (min-width: 901px) {
  .woocommerce ul.products li.product .button.add_to_cart_button {
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .woocommerce ul.products li.product:hover .button.add_to_cart_button,
  .woocommerce ul.products li.product:focus-within .button.add_to_cart_button {
    opacity: 1;
    transform: none;
  }
}

/* Numbered pagination */
.woocommerce-pagination {
  margin-top: 28px;
}

.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
}

.woocommerce-pagination ul li {
  margin: 0;
  border: 0;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--sst-line);
  border-radius: var(--sst-radius);
  color: var(--sst-ink);
  text-decoration: none;
  font-size: 14px;
}

.woocommerce-pagination ul li span.current {
  background: var(--sst-accent);
  color: #fff;
  border-color: var(--sst-accent);
}

.woocommerce-pagination ul li a:hover {
  border-color: var(--sst-accent);
  color: var(--sst-accent);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
button.single_add_to_cart_button {
  background: var(--sst-accent);
  color: var(--sst-btn-label);
  border: 0;
  border-radius: var(--sst-radius);
  padding: 11px 18px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.15s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.alt:hover,
button.single_add_to_cart_button:hover {
  background: var(--sst-accent-dark);
  color: var(--sst-btn-label);
}

/* Woo Blocks cart page checkout CTA */
body.woocommerce-cart .wc-block-cart__submit-container {
  margin-top: 16px;
}

body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button,
body.woocommerce-cart .wc-block-cart__submit-button {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--sst-accent);
  border-radius: var(--sst-radius);
  background: var(--sst-accent);
  color: var(--sst-btn-label);
  box-shadow: none;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button:hover,
body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button:focus-visible,
body.woocommerce-cart .wc-block-cart__submit-button:hover,
body.woocommerce-cart .wc-block-cart__submit-button:focus-visible {
  border-color: var(--sst-accent-dark);
  background: var(--sst-accent-dark);
  color: var(--sst-btn-label);
  text-decoration: none;
}

body.woocommerce-cart .wc-block-components-button.wc-block-cart__submit-button:focus-visible,
body.woocommerce-cart .wc-block-cart__submit-button:focus-visible {
  outline: 2px solid rgba(158, 44, 95, 0.28);
  outline-offset: 3px;
}

body.woocommerce-cart .wc-block-cart__submit-button .wc-block-components-button__text {
  color: inherit;
  text-decoration: none;
}

body.woocommerce-cart .woocommerce-message,
body.woocommerce-cart .woocommerce-info {
  margin: 0 0 18px;
  border: 1px solid var(--sst-line);
  border-left: 4px solid var(--sst-accent);
  padding: 13px 16px;
  background: #fff;
  color: var(--sst-ink);
  font-size: 14px;
  line-height: 1.5;
}

body.woocommerce-cart .woocommerce-message .button.wc-forward {
  display: none;
}

body.woocommerce-cart table.shop_table {
  width: 100%;
  border: 1px solid var(--sst-line);
  border-collapse: collapse;
  background: #fff;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
  border: 1px solid var(--sst-line);
  padding: 14px 12px;
  vertical-align: middle;
}

body.woocommerce-cart table.shop_table th {
  color: var(--sst-ink);
  background: #fafafa;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

body.woocommerce-cart table.shop_table .product-thumbnail {
  width: 92px;
}

body.woocommerce-cart table.shop_table .product-remove {
  width: 44px;
  text-align: center;
}

body.woocommerce-cart table.shop_table .product-name a {
  color: var(--sst-accent);
  font-weight: 700;
}

body.woocommerce-cart table.shop_table .quantity input {
  width: 68px;
  min-height: 42px;
  border: 1px solid var(--sst-line);
  border-radius: var(--sst-radius);
  padding: 7px 10px;
}

body.woocommerce-cart table.shop_table .actions {
  background: #fff;
}

body.woocommerce-cart table.shop_table .coupon {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

body.woocommerce-cart table.shop_table .coupon input {
  min-height: 40px;
  border: 1px solid var(--sst-line);
  border-radius: var(--sst-radius);
  padding: 8px 10px;
}

body.woocommerce-cart .cart-collaterals {
  margin-top: 24px;
}

body.woocommerce-cart .cart_totals {
  width: min(100%, 460px);
  margin-left: auto;
}

body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td {
  padding: 13px 14px;
}

body.woocommerce-cart .wc-proceed-to-checkout {
  margin-top: 14px;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sst-accent);
  border-radius: var(--sst-radius);
  padding: 13px 18px;
  background: var(--sst-accent);
  color: var(--sst-btn-label);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus-visible {
  border-color: var(--sst-accent-dark);
  background: var(--sst-accent-dark);
  color: var(--sst-btn-label);
  text-decoration: none;
}

@media (max-width: 760px) {
  body.woocommerce-cart table.shop_table,
  body.woocommerce-cart table.shop_table tbody,
  body.woocommerce-cart table.shop_table tr,
  body.woocommerce-cart table.shop_table td {
    display: block;
    width: 100%;
  }

  body.woocommerce-cart table.shop_table thead {
    display: none;
  }

  body.woocommerce-cart table.shop_table tr {
    border-bottom: 1px solid var(--sst-line);
  }

  body.woocommerce-cart table.shop_table td {
    border-width: 0 0 1px;
  }

  body.woocommerce-cart table.shop_table .product-remove {
    width: 100%;
    text-align: left;
  }

  body.woocommerce-cart table.shop_table .actions {
    border-bottom: 0;
  }

  body.woocommerce-cart table.shop_table .coupon input,
  body.woocommerce-cart table.shop_table .coupon button,
  body.woocommerce-cart table.shop_table .actions > button {
    width: 100%;
  }

  body.woocommerce-cart .cart_totals {
    width: 100%;
    margin-left: 0;
  }
}

.sst-main {
  min-height: 60vh;
  padding: 34px 0 58px;
}

.sst-static-main {
  background: #fff;
}

.sst-page {
  max-width: 1080px;
  margin: 0 auto;
  background: transparent;
}

.sst-page-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--sst-muted);
  font-size: 13px;
}

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

.sst-page-breadcrumb a:hover {
  color: var(--sst-accent);
}

.sst-page-header {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--sst-line);
}

.sst-page h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.sst-page-content {
  max-width: 900px;
}

.sst-page-content > :first-child {
  margin-top: 0;
}

.sst-page-content a {
  color: var(--sst-accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.sst-page-content table {
  width: 100%;
  border-collapse: collapse;
}

.sst-page-content th,
.sst-page-content td {
  border: 1px solid var(--sst-line);
  padding: 10px 12px;
  text-align: left;
}

.sst-collection-main {
  background: #fff;
}

.sst-collection-hero {
  margin-bottom: 26px;
  padding: 12px 0 24px;
  border-bottom: 1px solid var(--sst-line);
}

.sst-collection-hero .woocommerce-products-header__title {
  max-width: 980px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.04;
}

.sst-collection-description {
  max-width: 860px;
  margin-top: 16px;
  color: var(--sst-muted);
}

.sst-collection-description > :last-child {
  margin-bottom: 0;
}

.sst-collection-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.sst-collection-count .woocommerce-result-count,
.woocommerce-result-count {
  margin: 0;
  color: var(--sst-muted);
  font-size: 13px;
}

.sst-collection-sort .woocommerce-ordering {
  margin: 0;
}

.woocommerce-ordering select,
.sst-collection-sort select {
  min-height: 38px;
  min-width: 190px;
  border: 1px solid var(--sst-line);
  border-radius: var(--sst-radius);
  padding: 8px 34px 8px 12px;
  color: var(--sst-ink);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23121212' stroke-width='1.7' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  font: inherit;
  font-size: 13px;
}

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

.sst-product-card__link {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.sst-product-card__media {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  margin: 12px 12px 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sst-gray);
}

.sst-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.22s ease;
}

.sst-product-card:hover .sst-product-card__media img {
  transform: scale(1.03);
}

.sst-product-card__body {
  display: grid;
  gap: 8px;
  padding: 13px 14px 8px;
}

.sst-product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  border-radius: 999px;
  padding: 4px 10px;
  color: #fff;
  background: rgba(18, 18, 18, 0.82);
  font-size: 11px;
  font-weight: 700;
}

.sst-product-card__actions {
  margin-top: auto;
}

.sst-news.sst-main {
  padding: 34px 0 0;
}

.sst-news .sst-container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1600px;
  padding-right: 15px;
  padding-left: 15px;
}

.sst-news-title {
  background: #fff;
  padding: 47px 0;
}

.sst-news-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--sst-muted);
  font-size: 14px;
  opacity: 0.7;
}

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

.sst-news-breadcrumb a:hover {
  color: var(--sst-accent);
}

.sst-news-title h1 {
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
}

.sst-main-blog {
  padding-top: 30px;
  padding-bottom: 30px;
}

.sst-blog-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.sst-tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sst-tag-btn {
  display: inline-block;
  min-height: 0;
  border: 2px solid #ac004d;
  border-radius: 20px;
  padding: 7px 18px;
  color: #ac004d;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.sst-tag-btn.active,
.sst-tag-btn:hover {
  color: #fff;
  background: #ac004d;
}

.sst-sort-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sst-sort-label {
  color: var(--sst-ink);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.sst-sort-select {
  min-width: 0;
  border: 2px solid #ac004d;
  border-radius: 6px;
  padding: 7px 30px 7px 12px;
  color: #ac004d;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23AC004D' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  appearance: none;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.15;
  cursor: pointer;
}

.sst-grid-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sst-article {
  display: block;
}

.sst-article.sst-hidden {
  display: none;
}

.sst-grid-card {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 40 / 21;
  border-radius: 8px;
  color: inherit;
  background: #111;
  text-decoration: none;
}

.sst-grid-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sst-grid-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.sst-grid-card:hover .sst-grid-card__image img {
  transform: scale(1.04);
}

.sst-grid-card__no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.sst-grid-card__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 16px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 55%, transparent 100%);
}

.sst-grid-card__title {
  display: -webkit-box;
  margin: 0 0 6px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sst-grid-card__date {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
}

.sst-no-results {
  display: none;
  grid-column: 1 / -1;
  padding: 48px 24px;
  color: var(--sst-muted);
  text-align: center;
}

.sst-no-results.sst-visible {
  display: block;
}

.sst-article-main {
  padding-top: 28px;
  background: #fff;
}

.sst-article-container {
  width: min(100% - 100px, 1340px);
}

.sst-article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 48px;
  color: var(--sst-muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.sst-article-breadcrumb a:hover {
  color: var(--sst-accent);
}

.sst-article-breadcrumb span:last-child {
  color: var(--sst-ink);
  font-weight: 600;
}

.sst-article-hero {
  margin: 0;
}

.sst-article-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 40 / 21;
  border-radius: 8px;
  object-fit: cover;
}

.sst-article-header {
  max-width: 1120px;
  margin: 38px auto 32px;
  text-align: center;
}

.sst-article-header h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
}

.sst-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  color: var(--sst-muted);
  font-size: 14px;
}

.sst-article-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sst-article-meta svg,
.sst-article-share svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sst-article-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 26px;
  border: 0;
  border-radius: var(--sst-radius);
  padding: 12px 22px;
  color: #fff;
  background: var(--sst-accent);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}

.sst-article-share:hover {
  background: var(--sst-accent-dark);
}

.sst-article-share.is-copied span {
  font-size: 0;
}

.sst-article-share.is-copied span::after {
  content: "Link copied";
  font-size: 14px;
}

.sst-article-content {
  max-width: 1080px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.72;
}

.sst-article-content > :first-child {
  margin-top: 0;
}

.sst-article-content a {
  color: var(--sst-accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.sst-article-content img {
  max-width: 100%;
  height: auto;
}

.sst-article-content figure {
  margin: 32px 0;
}

.sst-article-content figure img,
.sst-article-content .blog-image img,
.sst-article-content .op16-featured-img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.sst-article-content figcaption,
.sst-article-content .op16-caption {
  margin-top: 8px;
  color: var(--sst-muted);
  font-size: 13px;
  line-height: 1.45;
}

.sst-article-content h2 {
  margin: 42px 0 16px;
  font-size: 32px;
  line-height: 1.18;
}

.sst-article-content h3 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.sst-article-content p,
.sst-article-content ul,
.sst-article-content ol {
  margin: 0 0 18px;
}

.sst-article-content li + li {
  margin-top: 7px;
}

.sst-article-content .toc,
.sst-article-content .callout-box {
  margin: 28px 0;
  border: 1px solid var(--sst-line);
  border-left: 4px solid var(--sst-accent);
  border-radius: 8px;
  padding: 20px 22px;
  background: #fff;
}

.sst-article-content .toc-title,
.sst-article-content .callout-title {
  margin-bottom: 10px;
  font-weight: 800;
}

.sst-article-content .stats-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.sst-article-content .stat-item {
  border: 1px solid var(--sst-line);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  background: #fff;
}

.sst-article-content .stat-value {
  color: var(--sst-accent);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
}

.sst-article-content .stat-label {
  margin-top: 6px;
  color: var(--sst-muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.sst-article-content .table-responsive {
  margin: 24px 0;
  overflow-x: auto;
}

.sst-article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.sst-article-content th,
.sst-article-content td {
  border: 1px solid var(--sst-line);
  padding: 11px 12px;
  text-align: left;
  vertical-align: top;
}

.sst-article-content th {
  background: var(--sst-gray);
  font-weight: 800;
}

.sst-article-content .faq-section details {
  border-top: 1px solid var(--sst-line);
  padding: 14px 0;
}

.sst-article-content .faq-section summary {
  cursor: pointer;
  font-weight: 800;
}

@media (min-width: 750px) {
  .sst-news .sst-container {
    padding-right: 50px;
    padding-left: 50px;
  }

  .sst-news-title h1 {
    font-size: 48px;
    line-height: 1;
  }

  .sst-main-blog {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .sst-grid-articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .sst-news.sst-main {
    padding-top: 24px;
  }

  .sst-article-main {
    padding-top: 22px;
  }

  .sst-article-container {
    width: min(100% - 30px, 1340px);
  }

  .sst-article-breadcrumb {
    gap: 10px;
    margin-bottom: 48px;
    font-size: 14px;
  }

  .sst-article-breadcrumb span:last-child {
    flex: 1 1 170px;
    line-height: 1.45;
  }

  .sst-article-header {
    margin: 30px auto 32px;
  }

  .sst-article-header h1 {
    font-size: 38px;
    line-height: 1.05;
  }

  .sst-article-meta {
    gap: 14px;
    margin-top: 24px;
  }

  .sst-article-share {
    margin-top: 24px;
  }

  .sst-article-content {
    font-size: 16px;
    line-height: 1.64;
  }

  .sst-article-content h2 {
    font-size: 28px;
  }

  .sst-article-content h3 {
    font-size: 20px;
  }

  .sst-article-content .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .sst-news-title {
    padding: 50px 0;
  }

  .sst-news-title h1 {
    line-height: 1.05;
  }

  .sst-blog-controls {
    align-items: center;
  }
}

.woocommerce div.product {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: 42px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
  width: auto;
  float: none;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 12px;
  align-items: center;
}

.woocommerce div.product .product_title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  margin: 0 0 16px;
  color: var(--sst-accent);
  font-size: 24px;
  font-weight: 700;
}

.woocommerce div.product .stock {
  font-weight: 600;
}

.woocommerce div.product .stock.in-stock {
  color: #166534;
}

.woocommerce div.product .stock.out-of-stock {
  color: var(--sst-sale);
}

.woocommerce div.product .single_add_to_cart_button {
  min-height: 48px;
}

.woocommerce div.product .product_meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--sst-muted);
}

.woocommerce div.product .woocommerce-tabs {
  grid-column: 1 / -1;
  margin-top: 14px;
}

.woocommerce-breadcrumb {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--sst-muted);
}

.woocommerce-breadcrumb a {
  color: var(--sst-muted);
}

.woocommerce-breadcrumb a:hover {
  color: var(--sst-accent);
}

/* Mobile sticky add-to-cart bar */
.sst-sticky-cart {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid var(--sst-line);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
}

.sst-sticky-cart.is-visible {
  display: flex;
}

.sst-sticky-cart__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sst-sticky-cart__name {
  font-size: 12px;
  color: var(--sst-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sst-sticky-cart__price,
.sst-sticky-cart__price .price {
  font-size: 16px;
  font-weight: 700;
  color: var(--sst-accent);
}

.sst-sticky-cart__btn {
  flex: 0 0 auto;
  min-height: 44px;
}

@media (min-width: 901px) {
  .sst-sticky-cart {
    display: none !important;
  }
}

/* Full-width rows inside the PDP grid */
.woocommerce div.product > .clear {
  display: none;
}

.woocommerce div.product .related.products,
.woocommerce div.product .upsells.products {
  display: block;
  grid-column: 1 / -1;
  margin-top: 28px;
  border-top: 1px solid var(--sst-line);
  padding-top: 22px;
}

.woocommerce div.product .related.products > h2,
.woocommerce div.product .upsells.products > h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.woocommerce div.product .related.products ul.products,
.woocommerce div.product .upsells.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.woocommerce div.product .related.products ul.products li.product,
.woocommerce div.product .upsells.products ul.products li.product {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
}

.woocommerce div.product .related.products .sst-product-card__link,
.woocommerce div.product .upsells.products .sst-product-card__link {
  flex: 1 1 auto;
}

.woocommerce div.product .related.products .woocommerce-loop-product__title,
.woocommerce div.product .upsells.products .woocommerce-loop-product__title {
  display: -webkit-box;
  min-height: 2.7em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.woocommerce div.product .related.products .sst-product-card__actions,
.woocommerce div.product .upsells.products .sst-product-card__actions {
  margin-top: auto;
}

/* PDP gallery (products use external/local image, no attachment gallery) */
.woocommerce div.product .woocommerce-product-gallery {
  width: 100%;
  margin: 0;
  float: none;
}

.woocommerce div.product .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--sst-gray);
  border-radius: var(--sst-card-radius);
}

/* PDP tabs (WC general CSS is dequeued, so style the tab nav) */
.woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 0 18px;
  padding: 0 0 6px;
  list-style: none;
  border-bottom: 1px solid var(--sst-line);
}

.woocommerce-tabs ul.tabs li {
  padding-bottom: 6px;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--sst-accent);
  border-bottom: 2px solid var(--sst-accent);
  padding-bottom: 8px;
}

.woocommerce-tabs ul.tabs a {
  font-weight: 600;
  font-size: 14px;
}

.woocommerce-tabs .panel h2 {
  margin-top: 0;
}

.quantity input {
  min-height: 40px;
  border: 1px solid var(--sst-line);
  border-radius: var(--sst-radius);
  padding: 8px;
}

.woocommerce ul.products li.sst-product-card.outofstock::before {
  content: none;
}

.sst-product-main .sst-container {
  width: min(100% - 32px, 1360px);
}

.sst-product-breadcrumb {
  margin-bottom: 18px;
}

.woocommerce div.product {
  align-items: start;
}

.woocommerce div.product div.summary {
  max-width: 560px;
  padding-top: 6px;
}

.woocommerce div.product .woocommerce-product-gallery__trigger {
  display: none !important;
}

.woocommerce div.product .woocommerce-product-gallery__image {
  overflow: hidden;
  border: 1px solid var(--sst-line);
  border-radius: 8px;
  background: var(--sst-gray);
}

.woocommerce div.product .woocommerce-product-gallery__image img {
  display: block;
  padding: 18px;
  border-radius: 0;
}

.woocommerce div.product .summary > .price,
.woocommerce div.product .summary > p.price {
  margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  margin: 18px 0;
  color: var(--sst-muted);
}

.sst-local-product-note {
  margin: 0 0 16px;
  border: 1px solid var(--sst-line);
  border-left: 3px solid var(--sst-accent);
  border-radius: 6px;
  padding: 11px 13px;
  background: #fff8fb;
  color: var(--sst-ink);
  font-size: 14px;
  line-height: 1.5;
}

.sst-local-product-note p {
  margin: 0;
}

.woocommerce div.product form.cart {
  flex-wrap: wrap;
  align-items: stretch;
  margin: 22px 0 0;
}

.woocommerce div.product form.cart .quantity {
  display: flex;
}

.woocommerce div.product form.cart .quantity input {
  width: 74px;
  min-height: 48px;
  text-align: center;
}

.woocommerce div.product .single_add_to_cart_button {
  flex: 1 1 240px;
  min-height: 48px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.woocommerce div.product .product_meta {
  border-top: 1px solid var(--sst-line);
  padding-top: 16px;
}

.woocommerce div.product .product_meta > span {
  display: block;
  margin-top: 5px;
}

.woocommerce div.product .ppc-button-wrapper,
.woocommerce div.product .paypal-buttons,
.woocommerce div.product #ppc-button,
.woocommerce div.product .wc-block-components-express-payment,
.woocommerce div.product .wcpay-payment-request-wrapper {
  max-width: 420px;
  margin-top: 10px;
}

.woocommerce div.product .woocommerce-tabs {
  border-top: 1px solid var(--sst-line);
  padding-top: 28px;
}

.woocommerce-tabs .panel {
  max-width: 980px;
  color: var(--sst-ink);
}

.woocommerce-tabs .panel > :first-child {
  margin-top: 0;
}

.sst-footer {
  color: #fff;
  background: linear-gradient(90deg, rgba(158, 44, 95, 1), rgba(10, 10, 10, 1) 100%);
}

.sst-footer a {
  color: #fff;
}

.sst-footer a:hover {
  opacity: 0.85;
}

.sst-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0;
}

.sst-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.sst-footer__locale {
  flex: 0 0 auto;
}

.sst-footer__locale-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font: inherit;
  font-size: 12px;
  cursor: default;
}

.sst-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sst-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .sst-topbar__content {
    justify-content: space-between;
    text-align: left;
    font-size: 11px;
    line-height: 1.25;
  }

  .sst-topbar__content > span:first-child {
    min-width: 0;
  }

  .sst-language-switcher__menu {
    right: 0;
  }

  .sst-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .sst-header__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px 0;
  }

  .sst-menu-toggle {
    display: inline-flex;
  }

  .sst-header__main {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "toggle brand actions"
      "links links links";
    gap: 8px;
    min-height: 66px;
    padding: 8px 0;
  }

  .sst-menu-toggle {
    grid-area: toggle;
  }

  .sst-brand {
    grid-area: brand;
    justify-content: flex-start;
    min-width: 0;
    padding-left: 4px;
  }

  .sst-brand img {
    height: 35px;
  }

  .sst-actions {
    grid-area: actions;
    justify-content: end;
  }

  .sst-header-links {
    grid-area: links;
    margin: 0 -4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sst-header-links::-webkit-scrollbar {
    display: none;
  }

  .sst-header-links__list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px;
    width: max-content;
    min-width: 100%;
    padding: 0 4px 2px;
    font-size: 12px;
    font-weight: 650;
  }

  .sst-header-links a {
    min-height: 30px;
  }

  .sst-nav-wrap {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: auto;
    z-index: 70;
    width: min(82vw, 320px);
    height: 100vh;
    height: 100dvh;
    background: var(--sst-paper);
    border-top: 0;
    box-shadow: 2px 0 24px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.sst-nav-open .sst-nav-wrap {
    transform: translateX(0);
  }

  body.sst-nav-open .sst-header {
    z-index: 90;
  }

  body.sst-nav-open .sst-qo__side,
  body.sst-nav-open .sst-qo__fab {
    display: none !important;
  }

  .sst-nav ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 4px;
    padding: 92px 22px 24px;
    font-size: 16px;
  }

  .sst-nav__utility {
    display: flex;
    gap: 12px;
    padding: 16px 22px 24px;
    border-top: 1px solid var(--sst-line);
    font-size: 13px;
    font-weight: 600;
  }

  .sst-actions {
    gap: 4px;
  }

  .sst-header__language .sst-language-switcher__summary {
    min-height: 40px;
    max-width: 84px;
    padding: 0 8px;
    overflow: hidden;
  }

  .sst-header__language .sst-language-switcher__summary span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sst-icon-link {
    width: 36px;
    min-height: 40px;
    padding: 0;
  }

  .sst-icon-link span:not(.sst-cart-count) {
    display: none;
  }

  .sst-hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 42px 0;
  }

  .sst-slim-hero__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 20px 22px;
  }

  .sst-slim-hero__account {
    justify-self: start;
    width: min(100%, 520px);
    max-width: 520px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 4px solid #ffffff;
  }

  .sst-qo {
    padding: 24px 12px 112px;
  }

  .sst-qo__layout {
    grid-template-columns: 1fr;
  }

  .sst-qo__filters {
    grid-template-columns: 1fr 1fr;
  }

  .sst-qo__stock-toggle,
  .sst-qo__search,
  .sst-qo__sort,
  .sst-qo__view-seg {
    min-width: 0;
  }

  .sst-qo__toolbar {
    grid-template-columns: 1fr;
  }

  .sst-qo__table th:first-child,
  .sst-qo__table th:nth-child(2),
  .sst-qo__table th:nth-child(3) {
    width: auto;
  }

  .sst-qo__table,
  .sst-qo__table tbody,
  .sst-qo__table tr,
  .sst-qo__table td {
    display: block;
  }

  .sst-qo__table thead {
    display: none;
  }

  .sst-qo__table tr {
    border: 1px solid #ececec;
    border-radius: var(--sst-radius);
    margin-bottom: 12px;
    overflow: hidden;
  }

  .sst-qo__table td {
    border: 0;
    border-top: 1px solid #f1f1f1;
  }

  .sst-qo__table td:first-child {
    border-top: 0;
  }

  .sst-qo__side {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 90;
    background: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  }

  .sst-qo__cart {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-top: 1px solid #ececec;
    border-radius: 0;
    padding: 8px 12px;
  }

  .sst-qo__cart h3 {
    margin: 0;
    font-size: 13px;
    white-space: nowrap;
  }

  .sst-qo__selected,
  .sst-qo__cart-sub,
  .sst-qo__cart-list,
  .sst-qo__checkout-extra,
  .sst-qo__cart-row:not(.sst-qo__total),
  .sst-qo__pay {
    display: none;
  }

  .sst-qo__cart-totals {
    flex: 1;
    margin: 0;
    border: 0;
    padding: 0;
  }

  .sst-qo__cart-row.sst-qo__total {
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
    font-size: 13px;
  }

  .sst-qo__cart-row.sst-qo__total span:first-child {
    display: none;
  }

  .sst-qo__cart-actions {
    flex-direction: row;
    flex-shrink: 0;
    gap: 6px;
    margin: 0;
  }

  .sst-qo__btn-checkout,
  .sst-qo__btn-paypal-wa,
  .sst-qo__btn-cart {
    width: auto;
    padding: 9px 10px;
    font-size: 9px;
    letter-spacing: 0.05em;
  }

  .sst-qo__btn-paypal-wa,
  .sst-qo__cart-clear {
    display: none;
  }

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

  .woocommerce div.product .related.products ul.products,
  .woocommerce div.product .upsells.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .woocommerce div.product {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .woocommerce div.product div.summary {
    max-width: none;
  }

  .sst-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0;
  }

  .sst-footer__bottom-inner {
    justify-content: flex-start;
  }
}

/* Slide-out cart drawer */
.sst-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(92vw, 380px);
  display: flex;
  flex-direction: column;
  background: var(--sst-paper);
  color: var(--sst-ink);
  box-shadow: -2px 0 24px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

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

.sst-cart-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--sst-line);
}

.sst-cart-drawer__head strong {
  font-size: 16px;
}

.sst-cart-drawer__close {
  border: 0;
  background: transparent;
  color: var(--sst-ink);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.sst-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px;
}

.sst-cart-drawer__empty {
  padding: 28px 0;
  text-align: center;
  color: var(--sst-muted);
}

.sst-cart-drawer__items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sst-cart-drawer__item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sst-line);
}

.sst-cart-drawer__thumb img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: var(--sst-gray);
  border-radius: 6px;
}

.sst-cart-drawer__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.sst-cart-drawer__qty {
  color: var(--sst-muted);
  font-size: 13px;
}

.sst-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 4px;
  font-weight: 700;
}

.sst-cart-drawer__foot {
  display: grid;
  gap: 10px;
  padding: 16px 20px;
  border-top: 1px solid var(--sst-line);
}

.sst-cart-drawer__foot .button {
  width: 100%;
  text-align: center;
}

.sst-cart-drawer__foot a.button:not(.alt) {
  background: #fff;
  color: var(--sst-accent);
  border: 1px solid var(--sst-accent);
}

.sst-cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 79;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.sst-cart-open .sst-cart-drawer-overlay {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 520px) {
  .sst-container {
    width: min(100% - 24px, var(--sst-max));
  }

  .sst-topbar__content {
    justify-content: flex-start;
  }

  .sst-topbar__message {
    gap: 6px;
    max-width: 100%;
  }

  .sst-topbar__utilities {
    display: none;
  }

  .sst-grid,
  .products {
    grid-template-columns: 1fr;
  }

  .woocommerce div.product .related.products ul.products,
  .woocommerce div.product .upsells.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sst-page-header,
  .sst-collection-hero {
    margin-bottom: 22px;
    padding-bottom: 18px;
  }

  .sst-page h1,
  .sst-collection-hero .woocommerce-products-header__title {
    font-size: 34px;
  }

  .sst-collection-toolbar {
    display: grid;
    gap: 12px;
  }

  .woocommerce-ordering select,
  .sst-collection-sort select {
    width: 100%;
  }

  .sst-product-card__media {
    margin: 10px 10px 0;
  }

  .woocommerce div.product form.cart {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .sst-section__head {
    display: grid;
  }

  .sst-slim-hero__inner {
    padding: 22px 18px 20px;
  }

  .sst-qo__filters {
    grid-template-columns: 1fr;
  }

  .sst-qo__prod {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .sst-qo__prod img {
    width: 72px;
    height: 72px;
  }

  .sst-qo__offer-cell {
    grid-template-columns: minmax(0, 1fr) 94px;
  }

  .sst-qo__qty {
    height: 32px;
  }

  .sst-qo__qty button {
    width: 28px;
  }

  .sst-qo__qty input {
    width: 34px;
  }
}

/* Card List detail pages */
.sst-card-detail-page {
  background: #fff;
}

.sst-card-detail-page__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 34px 18px 58px;
}

.sst-card-detail-page__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  margin-bottom: 26px;
  color: #777;
  font-size: 12px;
  line-height: 1.4;
}

.sst-card-detail-page__crumb a {
  color: var(--sst-ink);
  text-decoration: none;
}

.sst-card-detail-page__crumb a:hover {
  color: var(--sst-accent);
}

.sst-card-detail-page__crumb span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sst-card-detail-page__layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  align-items: start;
  gap: 44px;
}

.sst-card-detail-page__media {
  border: 1px solid var(--sst-line);
  background: #fafafa;
  border-radius: 8px;
  padding: 18px;
}

.sst-card-detail-page__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
}

.sst-card-detail-page__body {
  min-width: 0;
}

.sst-card-detail-page__kicker {
  margin: 0 0 8px;
  color: var(--sst-accent);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.sst-card-detail-page__body h1 {
  margin: 0 0 22px;
  color: var(--sst-ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.sst-card-detail-page__content {
  color: #242424;
  font-size: 15px;
  line-height: 1.75;
}

.sst-card-detail-page__content > *:first-child {
  margin-top: 0;
}

.sst-card-detail-page__content .sst-card-detail {
  margin-top: 0;
}

.sst-card-detail-page__content table {
  width: 100%;
  border-collapse: collapse;
}

.sst-card-detail-page__content th,
.sst-card-detail-page__content td {
  border-bottom: 1px solid var(--sst-line);
  padding: 10px 0;
  text-align: left;
  vertical-align: top;
}

.sst-card-detail-page__content th {
  width: 34%;
  padding-right: 18px;
  color: #555;
  font-weight: 700;
}

@media (max-width: 780px) {
  .sst-card-detail-page__inner {
    padding: 24px 14px 42px;
  }

  .sst-card-detail-page__layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sst-card-detail-page__media {
    width: min(100%, 430px);
    margin: 0 auto;
    padding: 14px;
  }

  .sst-card-detail-page__body h1 {
    font-size: 30px;
  }
}

.sst-policy-language-notice {
  margin: 0 0 22px;
  border: 1px solid #d9c37a;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff8df;
  color: #3d3320;
  font-size: 14px;
  line-height: 1.6;
}

.sst-policy-language-notice p {
  margin: 0;
}
