/* ==========================================================================
   Sscomic — SSCOMINC storefront chrome
   Faithful CSS port of the SSCOMINC SvelteKit reference (src/app.css + layout
   components: Header, MegaMenu, AnnouncementBar, Footer, Logo, ProductCard,
   home page, TrustTicker). Ported to plain CSS for a Blocksy child theme.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');

/* --------------------------------------------------------------------------
   1. Design tokens (exact port of the reference @theme block)
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --ss-header: #080b0d;
  --ss-deep-green: #06100d;
  --ss-brand: #164936;
  --ss-brand-hover: #216044;
  --ss-cream: #ffffff;
  --ss-ivory: #ffffff;
  --ss-border: #ded5c8;
  --ss-border-neutral: #e5e2dc;
  --ss-muted: #5f6962;
  --ss-gold: #d89a2b;
  --ss-sale: #d83a28;

  /* Type */
  --ss-font-display: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ss-font-body: 'Manrope', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ss-font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;
  --ss-font-collection: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Layout */
  --ss-container-max: 1660px;
  --ss-container-gutter: 32px;
  --ss-header-h: 76px;
  --ss-header-h-lg: 80px;
  --ss-nav-h: 52px;
  --ss-ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --ss-radius-lg: 1rem;
  --ss-radius-xl: 1.25rem;
  --ss-radius-2xl: 1rem;
  --ss-shadow-md: 0 14px 34px rgba(8, 11, 13, 0.12);
  --ss-shadow-lg: 0 24px 60px rgba(8, 11, 13, 0.16);

  /* Shared "product art" dotted placeholder recipe */
  --ss-art-bg: #f2efe8;
  --ss-art-dot: rgba(22, 73, 54, 0.16);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body.sscomic-theme {
  background-color: var(--ss-cream);
  color: var(--ss-header);
  font-family: var(--ss-font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body.sscomic-theme button,
body.sscomic-theme input,
body.sscomic-theme select,
body.sscomic-theme textarea {
  font-family: inherit;
}

body.sscomic-theme h1,
body.sscomic-theme h2,
body.sscomic-theme h3,
body.sscomic-theme h4 {
  font-family: var(--ss-font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

body.sscomic-theme :focus-visible {
  outline: 2px solid var(--ss-gold);
  outline-offset: 2px;
}

body.sscomic-home {
  margin: 0;
}

body.sscomic-home #main,
body.sscomic-home main,
body.sscomic-home .ct-container-full,
body.sscomic-home .site-main {
  padding: 0 !important;
  max-width: none !important;
}

/* --------------------------------------------------------------------------
   3. Containers
   -------------------------------------------------------------------------- */
.ss-container {
  width: min(var(--ss-container-max), calc(100% - var(--ss-container-gutter)));
  margin-inline: auto;
}

.ss-container-header {
  width: 100%;
  padding-inline: 1rem;
}

@media (max-width: 768px) {
  .ss-container {
    width: calc(100% - 32px);
  }
}

@media (min-width: 640px) {
  .ss-container-header {
    padding-inline: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .ss-container-header {
    padding-inline: 2rem;
  }
}

/* --------------------------------------------------------------------------
   4. Icons + buttons
   -------------------------------------------------------------------------- */
.ss-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  flex: 0 0 auto;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.75rem;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-family: var(--ss-font-body);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.15s var(--ss-ease), color 0.15s var(--ss-ease),
    border-color 0.15s var(--ss-ease), transform 0.15s var(--ss-ease);
}

.ss-btn:active {
  transform: translateY(1px);
}

.ss-btn-primary,
.ss-btn:not([class*='ss-btn-']) {
  background: var(--ss-brand);
  color: var(--ss-cream);
}

.ss-btn-primary:hover,
.ss-btn:not([class*='ss-btn-']):hover {
  background: var(--ss-brand-hover);
  color: var(--ss-cream);
}

.ss-btn-outline {
  background: transparent;
  border-color: rgba(8, 11, 13, 0.2);
  color: var(--ss-header);
}

.ss-btn-outline:hover {
  background: rgba(8, 11, 13, 0.05);
  color: var(--ss-header);
}

.ss-btn-secondary {
  background: var(--ss-gold);
  color: var(--ss-header);
  border-color: var(--ss-gold);
}

.ss-btn-secondary:hover {
  background: #c88c22;
  color: var(--ss-header);
}

.ss-btn-ghost {
  background: transparent;
  color: var(--ss-header);
}

.ss-btn-ghost:hover {
  background: rgba(8, 11, 13, 0.05);
}

/* On dark surfaces (hero mosaic promo, mega promo, footer) outline buttons
   need to read against near-black backgrounds. */
.ss-on-dark .ss-btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.ss-on-dark .ss-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* --------------------------------------------------------------------------
   5. Announcement bar
   -------------------------------------------------------------------------- */
.ss-announce {
  position: relative;
  background: var(--ss-deep-green);
  color: var(--ss-cream);
}

.ss-announce .ss-container-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 0.5rem;
  text-align: center;
}

.ss-announce p {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
}

@media (min-width: 640px) {
  .ss-announce p {
    font-size: 0.8125rem;
  }
}

.ss-announce-close {
  position: absolute;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background-color 0.15s var(--ss-ease), color 0.15s var(--ss-ease);
}

.ss-announce-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.ss-announce-close svg {
  width: 0.875rem;
  height: 0.875rem;
}

@media (min-width: 640px) {
  .ss-announce-close {
    right: 1rem;
  }
}

.ss-announce[hidden],
.ss-announce.is-dismissed {
  display: none;
}

/* --------------------------------------------------------------------------
   6. Header — sticky chrome
   -------------------------------------------------------------------------- */
.ss-header {
  position: sticky;
  top: 0;
  z-index: 80;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

body.admin-bar .ss-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .ss-header {
    top: 46px;
  }
}

/* Blocksy off-canvas drawer must never eat clicks while closed */
body.sscomic-theme .ct-drawer-canvas,
body.sscomic-shop .ct-drawer-canvas {
  pointer-events: none !important;
}

body.sscomic-theme .ct-drawer-canvas .ct-panel.active,
body.sscomic-shop .ct-drawer-canvas .ct-panel.active {
  pointer-events: auto !important;
}

/* Hide Blocksy's own header/footer wherever the SS chrome renders */
body.sscomic-home header#header,
body.sscomic-home .ct-header,
body.sscomic-home footer#footer,
body.sscomic-home .ct-footer,
body.sscomic-home .hero-section,
body.sscomic-shop header#header,
body.sscomic-shop .ct-header,
body.sscomic-shop footer#footer,
body.sscomic-shop .ct-footer,
body.sscomic-shop .hero-section,
body.sscomic-shop .page-title {
  display: none !important;
  pointer-events: none !important;
}

/* --------------------------------------------------------------------------
   7. Mainbar — logo / search / account actions
   -------------------------------------------------------------------------- */
.ss-mainbar {
  background: var(--ss-header);
  color: var(--ss-cream);
}

.ss-mainbar-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .ss-mainbar-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-height: var(--ss-header-h);
  }
}

@media (min-width: 1280px) {
  .ss-mainbar-desktop {
    min-height: var(--ss-header-h-lg);
  }
}

.ss-mainbar-desktop .ss-logo {
  flex-shrink: 0;
  width: auto;
  max-width: 220px;
}

@media (min-width: 1024px) {
  .ss-mainbar-desktop .ss-logo {
    max-width: 200px;
  }
}

@media (min-width: 1280px) {
  .ss-mainbar-desktop .ss-logo {
    max-width: 230px;
  }
}

.ss-mainbar-desktop .ss-search {
  flex: 1 1 auto;
  min-width: 0;
}

.ss-mainbar-desktop .ss-actions {
  flex-shrink: 0;
}

.ss-mainbar-mobile {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
  align-items: center;
  column-gap: 0.5rem;
  padding-block: 0.625rem;
}

@media (min-width: 1024px) {
  .ss-mainbar-mobile {
    display: none;
  }
}

.ss-mainbar-mobile .ss-logo {
  justify-self: center;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
}

.ss-mainbar-mobile .ss-icon-btn {
  justify-self: center;
}

/* Mobile search sits fully inside the black bar with equal side gutters */
.ss-mainbar .ss-container-header {
  padding-bottom: 0;
}

@media (max-width: 1023.98px) {
  .ss-mainbar .ss-container-header {
    padding-bottom: 0.75rem;
  }
}

.ss-search.ss-search-mobile {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 2.75rem;
  margin: 0;
  padding: 0 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.ss-search.ss-search-mobile button {
  width: 2.25rem;
  height: 2.25rem;
  margin: 0.25rem;
}

@media (min-width: 1024px) {
  .ss-search-mobile,
  .ss-search.ss-search-mobile {
    display: none !important;
  }
}

/* Logo */
.ss-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.ss-logo-img {
  display: block;
  width: auto;
  height: 2.35rem;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.ss-mainbar-mobile .ss-logo-img {
  height: 2rem;
  margin-inline: auto;
}

.ss-footer-brand .ss-logo-img {
  height: 2.75rem;
}

.ss-logo-gold {
  color: var(--ss-gold);
}

/* Icon buttons (mobile hamburger / cart) */
.ss-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--ss-cream);
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s var(--ss-ease);
}

.ss-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ss-icon-btn .ss-icon {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.8;
}

/* Search */
.ss-search {
  position: relative;
  display: flex;
  align-items: center;
  height: 3rem;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.ss-search input,
.ss-search input[type="search"],
.ss-search input.input-text {
  box-sizing: border-box;
  flex: 1 1 auto;
  min-width: 0;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  padding: 0 0.35rem 0 1.25rem !important;
  font-size: 0.875rem !important;
  line-height: 1.25 !important;
  color: var(--ss-header) !important;
  -webkit-appearance: none;
  appearance: none;
}

.ss-search input[type="search"]::-webkit-search-decoration,
.ss-search input[type="search"]::-webkit-search-cancel-button,
.ss-search input[type="search"]::-webkit-search-results-button,
.ss-search input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.ss-search input::placeholder {
  color: rgba(95, 105, 98, 0.7);
  opacity: 1;
  line-height: inherit;
}

.ss-search input:focus,
.ss-search input:focus-visible,
.ss-search input:hover,
.ss-search input:active {
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  background: transparent !important;
}

/* Global gold :focus-visible outline gets clipped by overflow:hidden → gold underline artifact */
body.sscomic-theme .ss-search input:focus-visible,
body.sscomic-theme .ss-search button:focus-visible {
  outline: none !important;
}

.ss-search input:-webkit-autofill,
.ss-search input:-webkit-autofill:hover,
.ss-search input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 99999s ease-in-out 0s;
}

.ss-search button {
  box-sizing: border-box;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.25rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: var(--ss-brand);
  color: #fff;
  cursor: pointer;
  line-height: 0;
  align-self: center;
  transition: background-color 0.15s var(--ss-ease);
}

.ss-search button:hover {
  background: var(--ss-brand-hover);
}

.ss-search button svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ss-search-mobile .ss-search,
.ss-search.ss-search-mobile {
  width: 100%;
  max-width: 100%;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

/* Account / wishlist / cart actions */
.ss-actions {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1280px) {
  .ss-actions {
    gap: 0.5rem;
  }
}

.ss-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.5rem;
  border: 0;
  border-radius: 0.5rem;
  background: transparent;
  color: var(--ss-cream);
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
}

.ss-action:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ss-action .ss-icon,
.ss-action svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.ss-action-icon-wrap {
  position: relative;
  display: inline-flex;
}

.ss-action-text {
  display: none;
  text-align: left;
  line-height: 1.15;
}

@media (min-width: 1280px) {
  .ss-action-text {
    display: grid;
    gap: 1px;
  }
}

.ss-action-text span:first-child {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.6);
}

.ss-action-text span:last-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ss-cream);
}

.ss-badge-count {
  position: absolute;
  top: -0.375rem;
  right: -0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  border-radius: 9999px;
  background: var(--ss-gold);
  color: var(--ss-header);
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1;
}

.ss-badge-count[hidden] {
  display: none;
}

.ss-icon-btn .ss-badge-count {
  top: 0.125rem;
  right: 0.125rem;
}

/* --------------------------------------------------------------------------
   8. Secondary nav row — mega menu + primary links
   -------------------------------------------------------------------------- */
.ss-nav {
  display: none;
  background: #fff;
  border-bottom: 1px solid var(--ss-border-neutral);
  color: var(--ss-header);
}

@media (min-width: 1024px) {
  .ss-nav {
    display: block;
  }
}

.ss-nav-inner {
  display: flex;
  align-items: stretch;
}

/* Mega menu rail */
.ss-mega {
  position: relative;
  flex-shrink: 0;
  width: 220px;
  border-right: 1px solid var(--ss-border-neutral);
}

@media (min-width: 1280px) {
  .ss-mega {
    width: 240px;
  }
}

.ss-mega-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  height: 100%;
  padding: 0.75rem 1rem 0.75rem 0;
  border: 0;
  background: transparent;
  color: var(--ss-header);
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.ss-mega-btn:hover {
  color: var(--ss-brand);
}

.ss-mega-btn svg:first-child {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  stroke-width: 2;
}

.ss-mega-caret {
  margin-left: auto;
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  transition: transform 0.2s var(--ss-ease);
}

.ss-mega:hover .ss-mega-caret,
.ss-mega:focus-within .ss-mega-caret,
.ss-mega.is-open .ss-mega-caret {
  transform: rotate(180deg);
}

/* Mega panel */
.ss-mega-panel[hidden] {
  display: none;
}

.ss-mega:hover .ss-mega-panel[hidden],
.ss-mega:focus-within .ss-mega-panel[hidden],
.ss-mega.is-open .ss-mega-panel[hidden] {
  display: flex;
}

.ss-mega-panel {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5rem;
  width: min(64rem, 92vw);
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--ss-border);
  border-top: 0;
  border-radius: 0 0 var(--ss-radius-xl) var(--ss-radius-xl);
  box-shadow: var(--ss-shadow-lg);
  animation: ss-mega-fade 0.18s var(--ss-ease);
}

.ss-mega-cols {
  flex: 1 1 0;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.ss-mega-heading {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ss-muted);
}

.ss-mega-cols ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.ss-mega-cols a {
  display: block;
  margin: 0 -0.5rem;
  padding: 0.375rem 0.5rem;
  border-radius: 0.5rem;
  color: var(--ss-header);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background-color 0.15s var(--ss-ease), color 0.15s var(--ss-ease);
}

.ss-mega-cols a:hover {
  background: rgba(22, 73, 54, 0.08);
  color: var(--ss-brand);
}

.ss-mega-promo {
  display: none;
  flex: 0 0 12rem;
  width: 12rem;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid var(--ss-border);
  background: var(--ss-header);
  color: var(--ss-cream);
  padding: 1rem;
  text-decoration: none;
  transition: opacity 0.15s var(--ss-ease);
}

@media (min-width: 640px) {
  .ss-mega-promo {
    display: flex;
  }
}

.ss-mega-promo:hover {
  opacity: 0.9;
}

.ss-mega-promo-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ss-gold);
}

.ss-mega-promo-title {
  margin-top: 0.25rem;
  font-family: var(--ss-font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
}

.ss-mega-promo-cta {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.ss-mega-foot {
  flex-basis: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ss-border);
}

.ss-mega-foot p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ss-muted);
}

.ss-mega-foot a {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ss-brand);
  text-decoration: none;
}

.ss-mega-foot p a {
  font-weight: 600;
}

.ss-mega-foot a:hover {
  text-decoration: underline;
}

@keyframes ss-mega-fade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Primary links + utility links */
.ss-navlinks {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 1.5rem;
  padding-left: 1.5rem;
  margin: 0;
  list-style: none;
  overflow-x: auto;
}

@media (min-width: 1280px) {
  .ss-navlinks {
    gap: 2rem;
  }
}

.ss-navlinks li {
  display: flex;
}

.ss-navlinks a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding-block: 0.75rem;
  white-space: nowrap;
  color: var(--ss-header);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.ss-navlinks a:hover {
  color: var(--ss-brand);
}

.ss-nav-xl {
  display: none;
}

@media (min-width: 1280px) {
  .ss-nav-xl {
    display: flex;
  }
}

.ss-nav-utils {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
  padding-left: 1.25rem;
  border-left: 1px solid var(--ss-border-neutral);
}

.ss-nav-utils a {
  white-space: nowrap;
  color: var(--ss-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: color 0.15s var(--ss-ease);
}

.ss-nav-utils a:hover {
  color: var(--ss-brand);
}

/* --------------------------------------------------------------------------
   9. Mobile nav overlay (hamburger toggles .is-open via sscomic.js)
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .ss-nav {
    position: relative;
  }

  .ss-nav.is-open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 70;
    max-height: calc(100vh - var(--ss-header-h));
    overflow-y: auto;
    background: #fff;
    border-bottom: 1px solid var(--ss-border);
    box-shadow: var(--ss-shadow-lg);
    animation: ss-mega-fade 0.2s var(--ss-ease);
  }

  .ss-nav.is-open .ss-nav-inner {
    flex-direction: column;
    align-items: stretch;
    padding-block: 0.5rem 1rem;
  }

  .ss-nav.is-open .ss-mega {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--ss-border-neutral);
  }

  .ss-nav.is-open .ss-mega-btn {
    padding: 0.875rem 0;
  }

  .ss-nav.is-open .ss-mega-panel {
    position: static;
    width: 100%;
    border-radius: 0;
    border: 0;
    border-top: 1px solid var(--ss-border-neutral);
    box-shadow: none;
  }

  .ss-nav.is-open .ss-mega-cols {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .ss-nav.is-open .ss-mega-promo {
    display: none;
  }

  .ss-nav.is-open .ss-navlinks {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-left: 0;
    overflow-x: visible;
  }

  .ss-nav.is-open .ss-navlinks a {
    padding-block: 0.75rem;
    border-bottom: 1px solid var(--ss-border-neutral);
  }

  .ss-nav.is-open .ss-nav-xl {
    display: flex;
  }

  .ss-nav.is-open .ss-nav-utils {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-left: 0;
    padding: 1rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--ss-border-neutral);
  }
}

/* --------------------------------------------------------------------------
   10. Shared "product art" dotted placeholder recipe
   -------------------------------------------------------------------------- */
.ss-product-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--ss-art-bg);
  background-image: radial-gradient(var(--ss-art-dot) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
}

.ss-product-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(216, 154, 43, 0.14), transparent 45%);
}

.ss-product-art.ss-art-brand {
  background-color: rgba(22, 73, 54, 0.92);
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1.4px, transparent 1.6px);
}

.ss-product-art.ss-art-deep {
  background-color: var(--ss-deep-green);
  background-image: radial-gradient(rgba(216, 154, 43, 0.22) 1.4px, transparent 1.6px);
}

/* --------------------------------------------------------------------------
   11. Home — hero (white, not a dark gradient)
   -------------------------------------------------------------------------- */
.ss-home-hero,
.ss-hero,
.ss-hero--sscominc {
  position: relative;
  background: var(--ss-cream);
  color: var(--ss-header);
  overflow: hidden;
}

.ss-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
  padding-block: 2.5rem 4rem;
}

@media (min-width: 1024px) {
  .ss-hero-grid {
    padding-block: 4rem 6rem;
    gap: 2rem;
  }
}

.ss-hero-inner {
  grid-column: 1 / -1;
  max-width: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: ss-rise 0.7s var(--ss-ease) both;
}

@media (min-width: 1024px) {
  .ss-hero-inner {
    grid-column: span 6;
  }
}

.ss-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin: 0;
  padding: 0.375rem 0.9rem;
  border: 1px solid rgba(216, 154, 43, 0.4);
  border-radius: 9999px;
  background: rgba(216, 154, 43, 0.1);
  color: var(--ss-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ss-eyebrow::before {
  content: none;
}

.ss-hero-inner h1 {
  margin: 0;
  font-family: var(--ss-font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ss-header) !important;
}

.ss-hero-inner h1 span {
  color: inherit !important;
}

.ss-hero-inner > p {
  margin: 0;
  max-width: 32ch;
  color: var(--ss-muted) !important;
  font-size: 1.0625rem;
  line-height: 1.6;
}

.ss-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ss-hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
  margin-top: 0.5rem;
}

.ss-hero-stats > div {
  min-width: 6rem;
  padding-right: 1.5rem;
}

.ss-hero-stats > div + div {
  border-left: 1px solid var(--ss-border);
  padding-left: 1.5rem;
}

.ss-hero-stats strong {
  display: block;
  font-family: var(--ss-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ss-header);
}

.ss-hero-stats strong span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ss-muted);
}

.ss-hero-stats em {
  display: block;
  margin-top: 0.125rem;
  font-style: normal;
  font-size: 0.75rem;
  color: var(--ss-muted);
}

/* Mosaic — top row: two square tiles, bottom row: one wide tile */
.ss-hero-mosaic {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .ss-hero-mosaic {
    grid-column: span 6;
  }
}

.ss-mosaic-tile {
  position: relative;
  border-radius: var(--ss-radius-xl);
  border: 1px solid var(--ss-border);
  background-color: var(--ss-art-bg);
  background-image: radial-gradient(var(--ss-art-dot) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.4s var(--ss-ease), box-shadow 0.4s var(--ss-ease);
}

.ss-mosaic-tile.ss-has-banner {
  background-image: var(--ss-banner-image);
  background-size: cover;
}

.ss-mosaic-tile.ss-has-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 11, 13, 0.1) 0%, rgba(8, 11, 13, 0.38) 100%);
}

.ss-mosaic-tile:hover {
  transform: scale(1.03);
  box-shadow: var(--ss-shadow-md);
}

.ss-mosaic-tile:not(.ss-mosaic-a):not(.ss-mosaic-b):not(.ss-mosaic-c) {
  min-height: 160px;
  aspect-ratio: 1;
}

.ss-mosaic-wide {
  grid-column: 1 / -1 !important;
  aspect-ratio: 21 / 9 !important;
  min-height: 0 !important;
}

.ss-section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .ss-section {
    padding-block: 6rem;
  }
}

.ss-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: var(--ss-brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ss-testimonial figcaption .ss-avatar + span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ss-testimonial figcaption strong {
  font-size: 0.875rem;
  font-weight: 600;
}

.ss-testimonial figcaption em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--ss-muted);
}

.ss-mosaic-a {
  grid-column: 1;
  grid-row: 1;
  aspect-ratio: 1;
  background-color: rgba(22, 73, 54, 0.1);
}

.ss-mosaic-b {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 1;
  background-color: rgba(216, 154, 43, 0.12);
}

.ss-mosaic-c {
  grid-column: 1 / 3;
  grid-row: 2;
  aspect-ratio: 21 / 9;
  background-color: rgba(6, 16, 13, 0.08);
}

@media (max-width: 1023px) {
  .ss-hero-mosaic {
    min-height: 220px;
  }
}

/* --------------------------------------------------------------------------
   12. Trust ticker — brand-green marquee (TrustTicker.svelte)
   -------------------------------------------------------------------------- */
.ss-ticker {
  overflow: hidden;
  border-top: 1px solid var(--ss-border);
  border-bottom: 1px solid var(--ss-border);
  background: var(--ss-brand);
  color: var(--ss-cream);
  padding-block: 0.75rem;
}

.ss-ticker-track {
  display: flex;
  width: max-content;
  animation: ss-ticker-scroll 28s linear infinite;
}

.ss-ticker-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  padding-inline: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ss-ticker-item::after {
  content: '\2022';
  color: var(--ss-gold);
}

@keyframes ss-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-ticker-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Legacy static trust grid (still used by the current home template) */
.ss-trust {
  background: var(--ss-cream);
  border-top: 1px solid var(--ss-border-neutral);
  border-bottom: 1px solid var(--ss-border-neutral);
  padding-block: 1.5rem;
}

.ss-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.ss-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.ss-trust-item .ss-icon {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--ss-brand);
}

.ss-trust-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--ss-header);
}

.ss-trust-item span {
  color: var(--ss-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   13. Section scaffolding
   -------------------------------------------------------------------------- */
.ss-section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .ss-section {
    padding-block: 6rem;
  }
}

.ss-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ss-section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ss-header);
}

.ss-section-head p {
  margin: 0.5rem 0 0;
  max-width: 32ch;
  color: var(--ss-muted);
  font-size: 0.875rem;
}

.ss-link {
  white-space: nowrap;
  color: var(--ss-brand);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.ss-link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   14. Category bento grid
   -------------------------------------------------------------------------- */
.ss-bento,
.ss-cats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 1024px) {
  .ss-bento,
  .ss-cats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem;
  }

  .ss-bento > :first-child,
  .ss-cats > :first-child {
    grid-column: span 2;
    grid-row: span 2;
  }

  .ss-bento > :nth-child(6),
  .ss-cats > :nth-child(6) {
    grid-column: span 2;
  }
}

.ss-bento-tile,
.ss-cat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  min-height: 180px;
  padding: 1.25rem;
  border-radius: var(--ss-radius-xl);
  border: 1px solid var(--ss-border);
  background: var(--ss-art-bg);
  background-image: var(--ss-banner-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-decoration: none;
}

.ss-bento-tile::before,
.ss-cat::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6, 16, 13, 0.05) 0%, rgba(6, 16, 13, 0.82) 100%),
    radial-gradient(circle, rgba(22, 73, 54, 0.35) 1.6px, transparent 1.8px);
  background-size: auto, 16px 16px;
  transition: transform 0.5s var(--ss-ease);
}

.ss-bento-tile:hover::before,
.ss-cat:hover::before {
  transform: scale(1.08);
}

.ss-bento-tile.ss-has-banner::before,
.ss-cat.ss-has-banner::before {
  background-image: linear-gradient(180deg, rgba(8, 11, 13, 0.04) 0%, rgba(8, 11, 13, 0.78) 100%);
  background-size: auto;
}

.ss-bento-tile strong,
.ss-bento-tile h3,
.ss-cat strong {
  position: relative;
  z-index: 1;
  font-family: var(--ss-font-collection);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s var(--ss-ease);
}

.ss-bento-tile:hover strong,
.ss-bento-tile:hover h3,
.ss-cat:hover strong {
  text-decoration-color: currentColor;
}

.ss-bento-tile span,
.ss-bento-tile p,
.ss-cat span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 0.25rem;
  max-width: 22ch;
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   15. Products section (bestsellers / new arrivals grids)
   -------------------------------------------------------------------------- */
.ss-products-section {
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .ss-products-section {
    padding-block: 6rem;
  }
}

.ss-products-grid,
.ss-products-wrap ul.products,
.ss-products-wrap .woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .ss-products-grid,
  .ss-products-wrap ul.products,
  .ss-products-wrap .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .ss-products-grid,
  .ss-products-wrap ul.products,
  .ss-products-wrap .woocommerce ul.products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ss-products-wrap ul.products::before,
.ss-products-wrap ul.products::after,
.ss-products-wrap .woocommerce ul.products::before,
.ss-products-wrap .woocommerce ul.products::after {
  display: none !important;
}

.ss-products-wrap ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  float: none !important;
}

/* --------------------------------------------------------------------------
   16. Product card (.ss-card) — faithful port of ProductCard.svelte
   -------------------------------------------------------------------------- */
.ss-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-2xl);
  background: var(--ss-ivory);
  transition: box-shadow 0.25s var(--ss-ease), transform 0.25s var(--ss-ease);
}

.ss-card:hover {
  box-shadow: var(--ss-shadow-md);
}

.ss-card-media {
  position: relative;
  border-bottom: 1px solid var(--ss-border);
  background-color: var(--ss-art-bg);
  background-image: radial-gradient(var(--ss-art-dot) 1.4px, transparent 1.6px);
  background-size: 14px 14px;
}

.ss-card-image {
  display: block;
}

.ss-card-image img,
.ss-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin: 0 !important;
  background: transparent;
}

.ss-card-badges {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.ss-card .onsale,
.ss-badge-sale,
.ss-badge {
  position: static;
  left: auto;
  top: auto;
  z-index: 1;
  margin: 0 !important;
  padding: 0.3rem 0.65rem !important;
  border-radius: 9999px !important;
  background: var(--ss-sale) !important;
  color: #fff !important;
  font-size: 0.6875rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  width: fit-content;
}

.ss-card-wishlist {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ss-header);
  box-shadow: 0 2px 8px rgba(8, 11, 13, 0.14);
  cursor: pointer;
}

.ss-card-wishlist:hover {
  background: #fff;
}

.ss-card-wishlist svg {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 2;
}

.ss-card-wishlist.is-active svg {
  fill: var(--ss-sale);
  color: var(--ss-sale);
}

.ss-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem;
}

.ss-card-title {
  text-decoration: none;
}

.ss-card-title h2,
.ss-card-title h3,
.ss-card .woocommerce-loop-product__title {
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--ss-font-collection) !important;
  font-size: 1.0625rem !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  color: var(--ss-header) !important;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s var(--ss-ease);
}

.ss-card-title:hover h2,
.ss-card-title:hover h3,
.ss-card:hover .woocommerce-loop-product__title {
  text-decoration-color: var(--ss-header);
}

.ss-card-rating {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.ss-card-rating svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--ss-border);
}

.ss-card-rating svg.is-filled {
  color: var(--ss-gold);
}

.ss-card-rating span {
  font-size: 0.75rem;
  color: var(--ss-muted);
}

.ss-card .price,
.ss-card-price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.125rem;
  font-family: var(--ss-font-mono);
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--ss-header);
  line-height: 1.2;
}

.ss-card .price .sale-price,
.ss-card-price .sale-price {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: baseline;
  justify-content: flex-start !important;
  gap: 0.5rem;
  column-gap: 0.5rem;
}

.ss-card .price .sale-price del,
.ss-card-price .sale-price del {
  order: 0 !important;
}

.ss-card .price .sale-price ins,
.ss-card-price .sale-price ins {
  order: 1 !important;
}

.ss-card .price del,
.ss-card-price del,
.ss-card .price ins,
.ss-card-price ins {
  display: inline !important;
  margin: 0;
  padding: 0;
  background: transparent;
  float: none !important;
  opacity: 1 !important;
}

.ss-card .price del,
.ss-card-price del,
.ss-card .price del .amount,
.ss-card-price del .amount {
  font-family: var(--ss-font-mono);
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  color: var(--ss-muted) !important;
  text-decoration: line-through;
}

.ss-card .price ins,
.ss-card-price ins,
.ss-card .price ins .amount,
.ss-card-price ins .amount {
  text-decoration: none !important;
  font-family: var(--ss-font-mono);
  font-size: 1.375rem !important;
  font-weight: 700 !important;
  color: var(--ss-header) !important;
}

.ss-card .price .screen-reader-text,
.ss-card-price .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ss-card-stock {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.ss-card-stock.is-in {
  color: var(--ss-brand);
}

.ss-card-stock.is-out {
  color: var(--ss-sale);
}

.ss-card-ship {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ss-muted);
}

.ss-card .button,
.ss-card a.button,
.ss-card-add {
  margin-top: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1rem !important;
  border: 0 !important;
  border-radius: 9999px !important;
  background: var(--ss-brand) !important;
  color: #fff !important;
  font-family: var(--ss-font-body);
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s var(--ss-ease);
}

.ss-card .button:hover,
.ss-card a.button:hover,
.ss-card-add:hover {
  background: var(--ss-brand-hover) !important;
}

/* --------------------------------------------------------------------------
   17. Value band — deep-green, faithful to the reference value-prop section
   -------------------------------------------------------------------------- */
.ss-value-band,
.ss-story {
  background: var(--ss-deep-green);
  color: var(--ss-cream);
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .ss-value-band,
  .ss-story {
    padding-block: 6rem;
  }
}

.ss-value-grid,
.ss-story-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .ss-value-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
  }

  .ss-story-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }
}

.ss-value-intro h2,
.ss-story h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff !important;
}

.ss-value-intro p,
.ss-story p {
  margin: 0;
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.875rem;
  line-height: 1.65;
}

.ss-value-intro .ss-btn,
.ss-story .ss-btn {
  margin-top: 1.5rem;
}

.ss-value-features {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .ss-value-features {
    grid-column: span 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .ss-value-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ss-value-card {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--ss-radius-xl);
  padding: 1.25rem;
}

.ss-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(216, 154, 43, 0.15);
  color: var(--ss-gold);
}

.ss-value-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ss-value-card h3 {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

.ss-value-card p {
  margin-top: 0.375rem;
  max-width: none;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.ss-story-panel {
  min-height: 320px;
  border-radius: var(--ss-radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.03);
  background-image: radial-gradient(rgba(216, 154, 43, 0.22) 1.6px, transparent 1.8px);
  background-size: 16px 16px;
}

/* --------------------------------------------------------------------------
   18. Testimonials
   -------------------------------------------------------------------------- */
.ss-testimonials {
  background: var(--ss-ivory);
  border-top: 1px solid var(--ss-border-neutral);
  padding-block: 4rem;
}

@media (min-width: 1024px) {
  .ss-testimonials {
    padding-block: 6rem;
  }
}

.ss-testimonials h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ss-header);
}

.ss-testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .ss-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.ss-testimonial {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius-xl);
  background: var(--ss-cream);
  padding: 1.5rem;
}

.ss-testimonial-stars {
  display: flex;
  gap: 0.125rem;
  color: var(--ss-gold);
}

.ss-testimonial-stars svg {
  width: 1rem;
  height: 1rem;
}

.ss-testimonial-stars svg.is-empty {
  color: var(--ss-border);
}

.ss-testimonial blockquote {
  flex: 1 1 auto;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ss-header);
}

.ss-testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
}

.ss-testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 9999px;
  background: var(--ss-brand);
  color: var(--ss-cream);
  font-size: 0.75rem;
  font-weight: 700;
}

.ss-testimonial-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ss-header);
}

.ss-testimonial-suburb {
  display: block;
  font-size: 0.75rem;
  color: var(--ss-muted);
}

/* --------------------------------------------------------------------------
   19. Footer — dark header bg, 6-col grid, newsletter
   -------------------------------------------------------------------------- */
.ss-footer {
  width: 100%;
  background: var(--ss-header);
  color: var(--ss-cream);
  border-top: 1px solid var(--ss-border);
}

.ss-footer-main {
  padding-block: 3.5rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .ss-footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .ss-footer-main {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .ss-footer-brand {
    grid-column: span 3;
  }

  .ss-footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 639px) {
  .ss-footer-brand {
    grid-column: 1 / -1;
  }
}

.ss-footer-brand .ss-brand,
.ss-footer-brand .ss-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  text-decoration: none;
  color: inherit;
}

.ss-footer-brand .ss-brand-mark {
  display: none;
}

.ss-footer-brand p {
  margin: 0.875rem 0 0;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.65;
}

.ss-footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.ss-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.8);
  transition: border-color 0.15s var(--ss-ease), color 0.15s var(--ss-ease);
}

.ss-footer-social a:hover {
  border-color: var(--ss-gold);
  color: var(--ss-gold);
}

.ss-footer-social svg {
  width: 1rem;
  height: 1rem;
}

.ss-footer-col h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--ss-font-display);
  font-size: 0.8125rem;
  font-weight: 700;
}

.ss-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.625rem;
}

.ss-footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8125rem;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: color 0.2s var(--ss-ease), text-decoration-color 0.2s var(--ss-ease);
}

.ss-footer-col a:hover {
  color: var(--ss-gold);
  text-decoration-color: var(--ss-gold);
}

.ss-footer-newsletter h3 {
  margin: 0 0 1rem;
  color: #fff;
  font-family: var(--ss-font-display);
  font-size: 0.8125rem;
  font-weight: 700;
}

.ss-footer-newsletter p {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.ss-footer-newsletter-row {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}

.ss-footer-newsletter-row input,
.ss-newsletter input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  padding: 0.7rem 1rem !important;
  color: #fff !important;
  font-size: 0.875rem !important;
  box-shadow: none !important;
}

.ss-footer-newsletter-row input::placeholder,
.ss-newsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
  opacity: 1;
}

.ss-footer-newsletter-row button,
.ss-newsletter button[type="submit"] {
  flex-shrink: 0;
  border: 0 !important;
  border-radius: 9999px !important;
  background: var(--ss-gold) !important;
  color: var(--ss-header) !important;
  padding: 0.7rem 1.25rem !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  cursor: pointer;
  line-height: 1;
}

.ss-footer-newsletter-row button:hover,
.ss-newsletter button[type="submit"]:hover {
  background: #c88c22 !important;
}

.ss-newsletter-msg {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px) {
  .ss-footer-newsletter-row,
  .ss-newsletter.ss-footer-newsletter-row {
    flex-direction: column;
  }

  .ss-footer-newsletter-row button,
  .ss-newsletter button[type="submit"] {
    width: 100%;
  }
}

.ss-footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.ss-footer-trust > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.ss-footer-trust svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--ss-gold);
  flex-shrink: 0;
}

.ss-footer-payments {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ss-footer-payments span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.25rem;
  padding: 0.2rem 0.45rem;
  font-size: 0.625rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.ss-footer-bottom {
  min-height: 4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: 1.125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   20. Motion
   -------------------------------------------------------------------------- */
@keyframes ss-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ss-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ss-ease), transform 0.55s var(--ss-ease);
}

.ss-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .ss-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ss-hero-inner {
    animation: none;
  }

  .ss-mosaic-tile {
    transition: none;
  }

  .ss-mosaic-tile:hover {
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   21. Responsive catch-alls
   -------------------------------------------------------------------------- */
@media (max-width: 1023px) {
  .ss-hero-grid {
    grid-template-columns: 1fr;
  }

  .ss-hero-inner,
  .ss-hero-mosaic {
    grid-column: 1 / -1;
  }

  .ss-value-grid,
  .ss-story-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .ss-trust-grid,
  .ss-value-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 639px) {
  .ss-trust-grid,
  .ss-value-features,
  .ss-footer-main {
    grid-template-columns: 1fr;
  }

  .ss-hero-stats {
    gap: 0.5rem 0;
  }

  .ss-hero-stats > div {
    min-width: 45%;
  }
}

/* --------------------------------------------------------------------------
   Cart drawer
   -------------------------------------------------------------------------- */
.ss-cart-drawer[hidden] {
  display: none !important;
}

.ss-cart-drawer:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: block;
}

.ss-cart-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(8, 11, 13, 0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.ss-cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 28rem;
  height: 100%;
  background: #f7f4ef;
  box-shadow: -12px 0 40px rgba(8, 11, 13, 0.18);
  outline: none;
  animation: ss-drawer-in 0.22s ease-out;
}

@keyframes ss-drawer-in {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ss-cart-drawer-panel {
    animation: none;
  }
}

.ss-cart-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e6dfd4;
}

.ss-cart-drawer-title {
  margin: 0;
  font-family: var(--ss-font-display, "Manrope", sans-serif);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ss-header, #080b0d);
}

.ss-cart-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--ss-muted, #6b7280);
  cursor: pointer;
}

.ss-cart-drawer-close:hover {
  background: rgba(8, 11, 13, 0.06);
  color: var(--ss-header, #080b0d);
}

.ss-cart-drawer-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ss-cart-drawer-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.ss-cart-drawer-inner {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.ss-cart-drawer-empty {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.ss-cart-drawer-empty svg {
  width: 4rem;
  height: 4rem;
  color: #e6dfd4;
}

.ss-cart-drawer-empty p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ss-muted, #6b7280);
}

.ss-cart-drawer-shipping {
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid #e6dfd4;
  background: #faf7f2;
}

.ss-cart-drawer-shipping p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ss-muted, #6b7280);
}

.ss-cart-drawer-ship-amt {
  font-weight: 700;
  color: var(--ss-header, #080b0d);
}

.ss-cart-drawer-ship-unlocked {
  font-weight: 700 !important;
  color: var(--ss-brand, #164936) !important;
}

.ss-cart-drawer-ship-bar {
  margin-top: 0.5rem;
  height: 0.375rem;
  overflow: hidden;
  border-radius: 9999px;
  background: #e6dfd4;
}

.ss-cart-drawer-ship-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--ss-brand, #164936);
  transition: width 0.25s ease;
}

.ss-cart-drawer-items {
  flex: 1;
  margin: 0;
  padding: 1rem 1.25rem;
  list-style: none;
  overflow-y: auto;
}

.ss-cart-drawer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e6dfd4;
}

.ss-cart-drawer-item:first-child {
  padding-top: 0;
}

.ss-cart-drawer-item:last-child {
  border-bottom: 0;
}

.ss-cart-drawer-thumb {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
}

.ss-cart-drawer-thumb img,
.ss-cart-drawer-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ss-cart-drawer-item-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.5rem;
  min-width: 0;
  min-height: 5rem;
}

.ss-cart-drawer-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.ss-cart-drawer-item-name {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding-top: 0.1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ss-header, #080b0d);
  text-decoration: none;
  line-height: 1.3;
}

.ss-cart-drawer-item-name:hover {
  text-decoration: underline;
}

.ss-cart-drawer-remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  margin: -0.15rem -0.15rem 0 0;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--ss-muted, #6b7280);
  cursor: pointer;
  line-height: 0;
}

.ss-cart-drawer-remove:hover {
  background: rgba(8, 11, 13, 0.06);
  color: #b42318;
}

.ss-cart-drawer-remove svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

.ss-cart-drawer-item-body .variation,
.ss-cart-drawer-item-body dl {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ss-muted, #6b7280);
  line-height: 1.35;
}

.ss-cart-drawer-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0;
  padding-top: 0;
  min-height: 2rem;
}

.ss-cart-drawer-line-total {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  margin: 0;
  padding: 0;
  font-family: var(--ss-font-mono, "JetBrains Mono", monospace);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  color: var(--ss-header, #080b0d);
  white-space: nowrap;
}

.ss-cart-drawer-line-total .woocommerce-Price-amount,
.ss-cart-drawer-line-total .amount,
.ss-cart-drawer-line-total bdi {
  display: inline;
  line-height: 1;
  font: inherit;
}

.ss-qty {
  display: inline-grid;
  grid-template-columns: 2rem 2.5rem 2rem;
  align-items: stretch;
  box-sizing: border-box;
  height: 2rem;
  border: 1px solid #e6dfd4;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.ss-qty button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 2rem;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ss-header, #080b0d);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.ss-qty button[data-ss-qty-dec] {
  border-right: 1px solid #e6dfd4;
}

.ss-qty button[data-ss-qty-inc] {
  border-left: 1px solid #e6dfd4;
}

.ss-qty button:hover {
  background: rgba(8, 11, 13, 0.05);
}

.ss-qty button:active {
  background: rgba(8, 11, 13, 0.08);
}

.ss-qty-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: #fff;
  color: var(--ss-header, #080b0d);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--ss-font-mono, "JetBrains Mono", monospace);
  line-height: 1;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.ss-cart-drawer-foot {
  padding: 1rem 1.25rem;
  border-top: 1px solid #e6dfd4;
  background: #faf7f2;
}

.ss-cart-drawer-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--ss-muted, #6b7280);
}

.ss-cart-drawer-subtotal-amt {
  display: inline-flex;
  align-items: center;
  font-family: var(--ss-font-mono, "JetBrains Mono", monospace);
  font-weight: 600;
  line-height: 1;
  color: var(--ss-header, #080b0d);
}

.ss-cart-drawer-foot .ss-btn {
  width: 100%;
  justify-content: center;
}

.ss-cart-drawer-foot .ss-btn + .ss-btn {
  margin-top: 0.5rem;
}

/* Hide Woo “View cart” after classic add-to-cart when drawer is present */
.ss-cart-drawer ~ .woocommerce-message .button.wc-forward,
.woocommerce .ss-pdp-cart .added_to_cart,
.ss-pdp-cart a.added_to_cart {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Wishlist drawer
   -------------------------------------------------------------------------- */
.ss-wish-drawer[hidden] {
  display: none !important;
}

.ss-wish-drawer:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 100050;
  display: block;
}

.ss-wish-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(8, 11, 13, 0.55);
  backdrop-filter: blur(2px);
  cursor: pointer;
}

.ss-wish-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 28rem;
  height: 100%;
  background: #f7f4ef;
  box-shadow: -12px 0 40px rgba(8, 11, 13, 0.18);
  outline: none;
  animation: ss-drawer-in 0.22s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .ss-wish-drawer-panel {
    animation: none;
  }
}

.ss-wish-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e6dfd4;
}

.ss-wish-drawer-title {
  margin: 0;
  font-family: var(--ss-font-display, "Manrope", sans-serif);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--ss-header, #080b0d);
}

.ss-wish-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--ss-muted, #6b7280);
  cursor: pointer;
}

.ss-wish-drawer-close:hover {
  background: rgba(8, 11, 13, 0.06);
  color: var(--ss-header, #080b0d);
}

.ss-wish-drawer-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.ss-wish-drawer-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.ss-wish-drawer-empty {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.ss-wish-drawer-empty[hidden],
.ss-wish-drawer-items[hidden] {
  display: none !important;
}

.ss-wish-drawer-empty svg {
  width: 4rem;
  height: 4rem;
  color: #e6dfd4;
}

.ss-wish-drawer-empty p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ss-muted, #6b7280);
}

.ss-wish-drawer-items {
  flex: 1;
  margin: 0;
  padding: 1rem 1.25rem;
  list-style: none;
  overflow-y: auto;
}

.ss-wish-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid #e6dfd4;
}

.ss-wish-item:first-child {
  padding-top: 0;
}

.ss-wish-item:last-child {
  border-bottom: 0;
}

.ss-wish-thumb {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #fff;
}

.ss-wish-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ss-wish-item-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.ss-wish-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.ss-wish-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ss-header, #080b0d);
  text-decoration: none;
  line-height: 1.3;
}

.ss-wish-name:hover {
  text-decoration: underline;
}

.ss-wish-remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: var(--ss-muted, #6b7280);
  cursor: pointer;
}

.ss-wish-remove:hover {
  background: rgba(8, 11, 13, 0.06);
  color: #b42318;
}

.ss-wish-remove svg {
  width: 1rem;
  height: 1rem;
}

.ss-wish-price {
  font-family: var(--ss-font-mono, "JetBrains Mono", monospace);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ss-header, #080b0d);
  line-height: 1;
}
