:root {
  font-family: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
  color-scheme: light;
  --site-content-max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
}

body {
  margin: 0;
  background: #f5f7fb;
  color: #1f2937;
  --site-page-bg: #f5f7fb;
}

a {
  color: #1d4ed8;
}

a:hover {
  color: #1e40af;
}

.site-header {
  background: #000;
  color: #f8fafc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.site-header-inner,
.site-footer-inner {
  max-width: var(--site-content-max-width);
  margin: 0 auto;
  padding: 16px 24px;
}

.header-top {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
}

.brand {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px; /* 2× original 12px */
  flex: 1 1 auto;
  min-width: 0;
}

.nav-toggle {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
  color: #e2e8f0;
  cursor: pointer;
}

.nav-toggle:hover {
  background: rgba(30, 41, 59, 0.65);
  border-color: rgba(147, 197, 253, 0.45);
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.nav-flyout-backdrop {
  display: none;
}

.brand-logo {
  width: 68px;
  height: 68px; /* 2× original 34px */
  border-radius: 14px; /* 2× original 7px */
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
  object-fit: cover;
}

.brand-name {
  font-size: 2.2rem; /* 2× original 1.1rem */
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-search-wrap {
  position: relative;
  display: flex;
  flex: 1 1 220px;
  min-width: 180px;
  max-width: 360px;
}

.site-search-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.site-search-input {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.55);
  color: #f8fafc;
  font: inherit;
  font-size: 1rem;
}

.site-search-input::placeholder {
  color: rgba(226, 232, 240, 0.5);
}

.site-search-input:focus {
  outline: 2px solid rgba(96, 165, 250, 0.65);
  outline-offset: 2px;
  border-color: rgba(147, 197, 253, 0.55);
}

.site-search-submit {
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(147, 197, 253, 0.45);
  background: rgba(30, 58, 138, 0.85);
  color: #e2e8f0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.site-search-submit:hover {
  background: rgba(37, 99, 235, 0.95);
  color: #fff;
}

.site-search-results {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 120;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.site-search-empty {
  margin: 0;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: #6b7280;
}

.site-search-result-list {
  list-style: none;
  margin: 0;
  padding: 6px;
}

.site-search-result-item {
  margin: 0;
}

.site-search-result-item.is-active .site-search-result-link {
  background: rgba(59, 130, 246, 0.1);
}

.site-search-result-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 8px;
  text-decoration: none;
  color: #111827;
}

.site-search-result-link:hover,
.site-search-result-link:focus-visible {
  background: rgba(59, 130, 246, 0.08);
  outline: none;
}

.site-search-result-image {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}

.site-search-result-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.site-search-result-title {
  font-size: 0.9rem;
  line-height: 1.35;
  color: #111827;
}

.site-search-result-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}

.site-search-result-price:empty {
  display: none;
}

.header-cart-link {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 10px;
  color: #e2e8f0;
  text-decoration: none;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-display-currency {
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.35);
  color: #e2e8f0;
  font: inherit;
  font-size: 0.875rem;
  cursor: pointer;
}

.header-display-currency:hover {
  background: rgba(30, 41, 59, 0.65);
  border-color: rgba(147, 197, 253, 0.45);
}

.header-display-currency:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

.nav-flyout-currency {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.nav-flyout-currency-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.header-display-currency--flyout {
  width: 100%;
}

.header-cart-link:hover {
  color: #bfdbfe;
  background: rgba(30, 41, 59, 0.65);
  border-color: rgba(147, 197, 253, 0.45);
}

.header-cart-icon {
  display: block;
}

.header-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.125rem;
  height: 1.125rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.125rem;
  text-align: center;
  color: #fff;
  background: #f97316;
  border: 2px solid #0f172a;
  pointer-events: none;
}

.header-cart-count[hidden] {
  display: none;
}

.header-cart-count.is-bump {
  animation: cart-badge-bump 0.35s ease;
}

@keyframes cart-badge-bump {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item > a,
.nav-item > span {
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: none;
}

.nav-item > a:hover {
  color: #bfdbfe;
}

.nav-item-has-children {
  position: relative;
}

.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  min-width: 200px;
  background: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.45);
}

/* Invisible bridge over the gap so :hover is not lost moving to child links */
.submenu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 6px;
}

.nav-item-has-children:hover > .submenu,
.nav-item-has-children:focus-within > .submenu {
  display: block;
}

.submenu li {
  margin: 0;
}

.submenu a {
  display: block;
  padding: 8px 16px;
  color: #cbd5e1;
  text-decoration: none;
}

.submenu a:hover {
  color: #dbeafe;
  background: rgba(30, 41, 59, 0.65);
}

body.nav-scroll-lock {
  overflow: hidden;
}

@media (max-width: 767px) {
  .site-header-inner {
    padding: 12px 16px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .brand-name {
    font-size: 1.15rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-display-currency-wrap--desktop {
    display: none;
  }

  .nav-flyout-currency {
    display: flex;
  }

  .nav-flyout {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    visibility: hidden;
  }

  .site-header.is-nav-open .nav-flyout {
    pointer-events: auto;
    visibility: visible;
  }

  .nav-flyout-backdrop {
    display: block;
    position: absolute;
    inset: 0;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
  }

  .site-header.is-nav-open .nav-flyout-backdrop {
    opacity: 1;
  }

  .nav-flyout-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(320px, 86vw);
    padding: 20px 16px;
    background: #0f172a;
    border-right: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 8px 0 28px rgba(0, 0, 0, 0.45);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.24s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .site-header.is-nav-open .nav-flyout-panel {
    transform: translateX(0);
  }

  .site-search-wrap {
    flex: 0 0 auto;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .site-search-form {
    width: 100%;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-item > a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  }

  .nav-item-has-children > a {
    border-bottom: none;
  }

  .nav-item-has-children .submenu {
    display: block;
    position: static;
    margin: 0 0 8px;
    padding: 0 0 0 12px;
    min-width: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .submenu a {
    padding: 8px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  }
}

@media (min-width: 768px) {
  .site-header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-template-rows: auto auto;
    gap: 10px 16px;
    align-items: center;
  }

  .header-top {
    display: contents;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav-flyout-currency {
    display: none;
  }

  .header-cart-link {
    grid-column: auto;
    grid-row: auto;
  }

  .nav-flyout {
    display: contents;
  }

  .nav-flyout-panel {
    display: contents;
  }

  .site-search-wrap {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

.site-main {
  max-width: var(--site-content-max-width);
  margin: 26px auto;
  --site-inline-padding: 10px;
  padding: 0 var(--site-inline-padding);
}

.page-content {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  margin: 0 0 18px;
}

.page-content h1 {
  margin: 0 0 10px;
}

.page-content p {
  margin: 0;
  line-height: 1.6;
}

.not-found-page .content-title {
  margin-bottom: 8px;
}

.not-found-message {
  margin: 0 0 12px;
  line-height: 1.6;
  color: #374151;
}

.not-found-message code {
  font-size: 0.92em;
}

.not-found-page-link {
  margin: 0 0 8px;
  font-size: 1rem;
}

.not-found-page-link a {
  font-weight: 600;
}

.not-found-suggestions {
  margin-top: 0;
}

.not-found-suggestions-heading {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.not-found-suggestions-path,
.not-found-generic {
  margin: 0 0 14px;
  line-height: 1.6;
  color: #374151;
}

.not-found-suggestions-path code,
.not-found-generic code {
  font-size: 0.92em;
}

.not-found-product-thumb-row {
  margin-top: 10px;
}

.not-found-page-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.not-found-page-card {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
}

.not-found-page-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.not-found-page-title a {
  color: inherit;
  text-decoration: none;
}

.not-found-page-title a:hover {
  text-decoration: underline;
}

.not-found-page-description {
  margin: 6px 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4b5563;
}

.shop-page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.shop-intro {
  margin-bottom: 4px;
}

.shop-about {
  margin: 0 0 14px;
  max-width: 52rem;
}

.shop-about p {
  margin: 0 0 0.85em;
  line-height: 1.65;
  color: #374151;
}

.shop-about p:last-child {
  margin-bottom: 0;
}

.shop-about-tagline {
  font-size: 1.06rem;
  color: #111827;
}

.shop-about-tagline strong {
  font-weight: 800;
}

.shop-browse-heading {
  margin: 16px 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
  color: #111827;
}

.shop-browse-lead {
  margin: 0 0 12px;
  line-height: 1.6;
  color: #374151;
  max-width: 52rem;
}

.category-preview {
  margin: 0 0 16px;
}

.category-preview-band {
  background: #000000;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  margin-bottom: 8px;
}

.category-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #ffffff;
}

.category-preview-header h2 {
  margin: 0;
  min-width: 0;
}

.category-view-all-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  height: 34px;
  margin-left: auto;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.category-view-all-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
}

.category-view-all-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  text-decoration: none;
}

.category-heading-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  margin: 0;
  padding: 14px 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.breadcrumbs {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #4b5563;
}

.breadcrumbs a {
  color: #1d4ed8;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs-sep {
  margin: 0 6px;
  color: #6b7280;
}

.category-heading-link:hover {
  color: #ffffff;
  text-decoration: none;
}

.category-heading-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
  text-decoration: none;
}

.category-heading-chevron {
  font-size: 1em;
  font-weight: 700;
  transform: none;
}

.shop-category-scroll {
  position: relative;
  min-width: 0;
  margin: 6px 0 0;
  container-type: inline-size;
}

.shop-category-scroll-viewport {
  position: relative;
  min-width: 0;
  width: 100%;
  overflow-x: clip;
}

.shop-category-scroll-fade {
  position: absolute;
  top: 0;
  bottom: 2px;
  width: 32px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.shop-category-scroll-fade--start {
  left: 0;
  background: linear-gradient(to right, var(--site-page-bg, #f5f7fb) 0%, transparent 100%);
}

.shop-category-scroll-fade--end {
  right: 0;
  background: linear-gradient(to left, var(--site-page-bg, #f5f7fb) 0%, transparent 100%);
}

.shop-category-scroll[data-fade-start="true"] .shop-category-scroll-fade--start {
  opacity: 1;
}

.shop-category-scroll[data-fade-end="true"] .shop-category-scroll-fade--end {
  opacity: 1;
}

.shop-category-scroll-track.product-thumb-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 7px;
  margin: 0;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.shop-category-scroll-track.product-thumb-row::-webkit-scrollbar {
  display: none;
}

.shop-category-scroll-track .product-thumb-card {
  flex: 0 0 min(320px, calc((100% - 21px) / 3.5));
  min-width: 160px;
  max-width: 320px;
  scroll-snap-align: start;
}

.shop-category-scroll-btn {
  position: absolute;
  z-index: 2;
  top: max(0px, calc(min(320px, calc((100cqw - 21px) / 3.5)) / 2 - 1.5rem));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid #000000;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.shop-category-scroll-btn--prev {
  left: calc(-0.5 * var(--site-inline-padding) - 1.5rem);
}

.shop-category-scroll-btn--next {
  right: calc(-0.5 * var(--site-inline-padding) - 1.5rem);
}

.shop-category-scroll-btn:hover:not(:disabled) {
  background: #1f2937;
  border-color: #1f2937;
}

.shop-category-scroll-btn:focus-visible {
  outline: 2px solid #1d4ed8;
  outline-offset: 2px;
}

.shop-category-scroll-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.shop-category-scroll-btn-icon {
  display: block;
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.shop-category-scroll-btn--prev .shop-category-scroll-btn-icon {
  border-right: none;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .shop-category-scroll-btn {
    display: none;
  }

  .shop-category-scroll-fade {
    width: 40px;
  }

  .shop-category-scroll-track .product-thumb-card {
    flex-basis: min(320px, calc((100% - 14px) / 2.5));
    min-width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shop-category-scroll-fade {
    transition: none;
  }
}

.product-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 6px 0 0;
  justify-items: center;
}

.category-page .product-thumb-row {
  margin-top: 14px;
  justify-items: stretch;
}

.category-page .product-thumb-card {
  max-width: none;
}

.content-page .product-thumb-row {
  margin-top: 1rem;
}

.product-thumb-empty {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.product-thumb-card {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  width: 100%;
  max-width: 320px;
}

.product-thumb-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-thumb-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.product-thumb-title {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  color: #111827;
}

.product-thumb-title-link {
  color: inherit;
  text-decoration: none;
}

.product-thumb-title-link:hover {
  text-decoration: underline;
}

.product-thumb-price {
  margin: 4px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #111827;
}

.product-thumb-price:not([data-price-aud]),
.product-thumb-price[data-price-aud=""] {
  display: none;
}

.product-body-price {
  margin: 8px 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.product-body-price:empty {
  display: none;
}

.product-variations {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 28rem;
}

.product-variation-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-variation-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
}

.product-variation-select {
  font: inherit;
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #fff;
  color: #111827;
}

.product-variation-select:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.product-page .product-body-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 6px 0 0;
}

.product-add-to-cart-btn {
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 18px;
  color: #fff;
  background: #1d4ed8;
  border: none;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.product-add-to-cart-btn:hover:not(:disabled) {
  background: #1e40af;
}

.product-add-to-cart-btn:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.product-add-to-cart-btn:disabled {
  cursor: wait;
  opacity: 0.85;
}

.product-add-to-cart-btn.is-added {
  background: #047857;
}

.product-add-to-cart-feedback {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #047857;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  pointer-events: none;
}

.product-add-to-cart-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-page .product-body-description {
  margin-top: 18px;
  line-height: 1.65;
  color: #374151;
  white-space: pre-wrap;
}

.product-instruction-videos {
  margin-top: 28px;
  max-width: 640px;
}

.product-instruction-videos-heading {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2937;
}

.product-instruction-videos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-instruction-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.product-instruction-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-instruction-video-link {
  margin: 0;
  font-size: 0.95rem;
}

.product-instruction-video-link a {
  color: #1d4ed8;
  text-decoration: underline;
}

.product-instruction-video-link a:hover {
  color: #1e40af;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cart-page h1 {
  margin: 0 0 16px;
}

.cart-page-empty {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
}

.cart-lines-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 920px;
}

.cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  grid-template-areas: "thumb main qty total remove";
  gap: 10px 16px;
  align-items: center;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.cart-line-thumb-link {
  grid-area: thumb;
  display: block;
  text-decoration: none;
  color: inherit;
  align-self: start;
}

.cart-line-thumb-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 8px;
}

.cart-line-thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  background: #f3f4f6;
}

.cart-line-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-line-thumb--empty {
  border: 1px dashed #d1d5db;
}

.cart-line-main {
  grid-area: main;
  min-width: 0;
}

.cart-line-meta {
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.cart-line-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
}

.cart-line-title-link {
  color: inherit;
  text-decoration: none;
}

.cart-line-title-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.cart-line-title-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}

.cart-line-variation {
  margin: 6px 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #4b5563;
}

.cart-line-unit {
  margin: 6px 0 0;
  font-size: 0.875rem;
  color: #4b5563;
}

.cart-line-qty {
  grid-area: qty;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-line-dec,
.cart-line-inc {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  color: #1f2937;
}

.cart-line-dec:hover,
.cart-line-inc:hover {
  background: #e5e7eb;
}

.cart-line-dec:focus-visible,
.cart-line-inc:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.cart-line-qty-label {
  margin: 0;
}

.cart-line-qty-input {
  width: 3.25rem;
  padding: 8px 6px;
  font: inherit;
  font-size: 0.95rem;
  text-align: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
}

.cart-line-total {
  grid-area: total;
  margin: 0;
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  min-width: 5.5rem;
  text-align: right;
}

.cart-line-remove {
  grid-area: remove;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  color: #b91c1c;
  background: transparent;
  border: 1px solid #fecaca;
  border-radius: 8px;
}

.cart-line-remove:hover {
  background: #fef2f2;
}

.cart-line-remove:focus-visible {
  outline: 2px solid #dc2626;
  outline-offset: 2px;
}

.cart-page-summary {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  max-width: 920px;
}

.cart-display-currency-note {
  margin: 0 0 12px;
  padding: 10px 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #4b5563;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.cart-display-currency-note strong {
  color: #111827;
}

.cart-subtotal-row {
  margin: 0;
  font-size: 1.05rem;
  color: #374151;
}

.cart-subtotal-row strong {
  color: #111827;
}

.cart-promo-row {
  margin: 14px 0 0;
  max-width: 420px;
}

.cart-promo-label {
  display: block;
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}

.cart-promo-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-promo-input {
  flex: 1 1 160px;
  min-width: 0;
  padding: 8px 10px;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #111827;
}

.cart-promo-input:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.cart-promo-apply {
  padding: 8px 14px;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background: #2563eb;
  border: 1px solid #2563eb;
  border-radius: 6px;
  cursor: pointer;
}

.cart-promo-apply:hover {
  background: #1d4ed8;
}

.cart-promo-apply:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.cart-promo-message {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cart-promo-message--error {
  color: #b91c1c;
}

.cart-promo-message--success {
  color: #047857;
}

.cart-discount-row {
  margin: 10px 0 0;
  font-size: 1.05rem;
  color: #047857;
}

.cart-discount-row strong {
  color: #047857;
}

.cart-discount-remove {
  margin-left: 10px;
  padding: 0;
  font-size: 0.95rem;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

.cart-discount-remove:hover {
  color: #1d4ed8;
}

.cart-discount-remove:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.cart-total-weight-row {
  margin: 10px 0 0;
  font-size: 1.05rem;
  color: #374151;
}

.cart-total-weight-row strong {
  color: #111827;
}

.cart-ship-to-row {
  margin: 14px 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  font-size: 1.05rem;
  color: #374151;
}

.cart-ship-to-label {
  margin: 0;
  font-weight: 500;
  color: #111827;
}

.cart-ship-to-required {
  display: block;
  margin-top: 2px;
  font-size: 0.85rem;
  font-weight: 400;
  color: #6b7280;
}

.cart-ship-country-message {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cart-ship-country-message--error {
  color: #b91c1c;
}

.cart-ship-to-country--error {
  border-color: #b91c1c;
  outline-color: #b91c1c;
}

.cart-checkout-blocked {
  margin: 16px 0 0;
  padding: 12px 14px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: #374151;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.cart-ship-to-country {
  min-width: 200px;
  padding: 6px 10px;
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #fff;
  color: #111827;
}

.cart-ship-to-country:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.cart-shipping-estimate-row,
.cart-estimated-total-row {
  margin: 8px 0 0;
  font-size: 1.05rem;
  color: #374151;
}

.cart-estimated-total-row {
  margin-top: 10px;
  font-weight: 500;
}

.cart-shipping-estimate-row strong,
.cart-estimated-total-row strong {
  color: #111827;
}

.cart-paypal-section {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.cart-paypal-heading {
  margin: 0 0 6px;
  font-size: 1.1rem;
  color: #111827;
}

.cart-paypal-hint {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: #6b7280;
}

.paypal-button-container {
  max-width: 400px;
}

@media (max-width: 640px) {
  .cart-line {
    grid-template-columns: 64px 1fr;
    grid-template-areas:
      "thumb main"
      "qty qty"
      "total remove";
    justify-items: stretch;
  }

  .cart-line-qty {
    justify-content: flex-start;
  }

  .cart-line-total {
    text-align: left;
  }

  .cart-line-remove {
    justify-self: start;
  }
}

.image-carousel {
  margin: 14px 0 0;
  max-width: 640px;
}

.image-carousel-stage {
  position: relative;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  min-height: 200px;
}

/* Product carousels with video: fixed square stage so images and video share one size */
.image-carousel:has(.image-carousel-slide--video) .image-carousel-stage {
  aspect-ratio: 1 / 1;
  width: min(100%, min(72vh, 560px));
  max-height: min(72vh, 560px);
  margin-inline: auto;
}

.image-carousel-slide {
  display: none;
  margin: 0;
}

.image-carousel:has(.image-carousel-slide--video) .image-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.image-carousel-slide.is-active {
  display: block;
}

.image-carousel-slide-img {
  width: 100%;
  height: auto;
  max-height: min(72vh, 560px);
  object-fit: contain;
  display: block;
  background: #f9fafb;
}

.image-carousel:has(.image-carousel-slide--video) .image-carousel-slide-img {
  height: 100%;
  max-height: none;
}

.image-carousel-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
}

.image-carousel-thumb {
  display: block;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  line-height: 0;
}

.image-carousel-thumb:hover {
  border-color: #93c5fd;
}

.image-carousel-thumb:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.image-carousel-thumb.is-active {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 1px #1d4ed8;
}

.image-carousel-thumb-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
  background: #f3f4f6;
}

.image-carousel-thumb--video {
  position: relative;
}

.image-carousel-thumb--video .image-carousel-thumb-img {
  opacity: 0.92;
}

.image-carousel-thumb--video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.image-carousel-slide--video .image-carousel-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.image-carousel-slide--video .image-carousel-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .site-main {
    --site-inline-padding: 20px;
  }
}

@media (min-width: 1024px) {
  .site-main {
    --site-inline-padding: 24px;
  }
}

.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  margin-top: 32px;
}

.footer-content {
  box-sizing: border-box;
  max-width: var(--site-content-max-width);
  margin: 0 auto;
  padding: 24px 24px 28px;
}

.site-footer a {
  color: #93c5fd;
}

.site-footer a:hover {
  color: #bfdbfe;
}

.footer-heading {
  margin: 0 0 8px;
  font-weight: 700;
  color: #f8fafc;
}

.footer-links {
  margin: 0 0 12px;
  padding: 0;
}

.footer-social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social-item {
  margin: 0;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  color: #93c5fd;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(148, 163, 184, 0.25);
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.footer-social-link:hover {
  color: #bfdbfe;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(147, 197, 253, 0.45);
}

.footer-social-svg {
  display: block;
  flex-shrink: 0;
}

.footer-social-item-text {
  font-weight: 600;
}

.footer-subscribe-form {
  margin: 16px 0 0;
  max-width: 420px;
  scroll-margin-bottom: 24px;
}

.footer-form-heading {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.45;
  color: #f8fafc;
}

.footer-form-field {
  margin: 0 0 12px;
}

.footer-form-label {
  display: block;
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
}

.footer-form-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fafc;
  font: inherit;
  font-size: 1rem;
}

.footer-form-input::placeholder {
  color: rgba(226, 232, 240, 0.45);
}

.footer-form-input:focus {
  outline: 2px solid rgba(96, 165, 250, 0.55);
  outline-offset: 2px;
  border-color: rgba(147, 197, 253, 0.5);
}

.footer-subscribe-button {
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(147, 197, 253, 0.45);
  background: rgba(30, 58, 138, 0.9);
  color: #e2e8f0;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.footer-subscribe-button:hover {
  background: rgba(37, 99, 235, 0.95);
  color: #fff;
}

.footer-contact {
  margin: 16px 0 0;
}

.content-page {
  max-width: 52rem;
}

.content-title {
  margin: 0 0 8px;
  font-size: 1.75rem;
  line-height: 1.2;
  color: #111827;
}

.content-subtitle {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1f2937;
}

.content-meta {
  margin: 0 0 12px;
  font-size: 0.92rem;
  color: #6b7280;
}

.content-meta-sep {
  margin: 0 0.35em;
}

.content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.content-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #374151;
  font-size: 0.82rem;
}

.content-text {
  margin: 0 0 18px;
  line-height: 1.65;
  color: #374151;
}

.content-text p {
  margin: 0 0 0.85em;
}

.content-text p:last-child {
  margin-bottom: 0;
}

.content-figure {
  margin: 0 0 18px;
}

.content-figure-img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.content-figure-caption {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.content-figure--w10,
.content-figure--w25,
.content-figure--w50,
.content-figure--w75,
.content-figure--w100,
.content-figure--align-left,
.content-figure--align-right,
.content-figure--align-center {
  float: none;
  max-width: 100%;
  margin: 0 0 18px;
}

.content-text--below-float {
  clear: both;
}

.content-title,
.content-subtitle,
.content-divider,
.content-callout,
.content-buttons,
.content-video,
.content-page .image-carousel,
.content-page .product-thumb-row {
  clear: both;
}

@media (min-width: 768px) {
  .content-figure--w10 {
    max-width: max(10%, 4.5rem);
  }

  .content-figure--w25 {
    max-width: 25%;
  }

  .content-figure--w50 {
    max-width: 50%;
  }

  .content-figure--w75 {
    max-width: 75%;
  }

  .content-figure--w100 {
    max-width: 100%;
  }

  .content-figure--align-left {
    float: left;
    margin-right: 1.25rem;
    margin-left: 0;
  }

  .content-figure--align-right {
    float: right;
    margin-left: 1.25rem;
    margin-right: 0;
  }

  .content-figure--align-center {
    float: none;
    margin-left: auto;
    margin-right: auto;
  }
}

.content-video {
  margin: 0 0 18px;
}

.content-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #111827;
}

.content-video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-video-caption {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.content-divider {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.content-callout {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 8px;
  border-left: 4px solid #6b7280;
  background: #f9fafb;
}

.content-callout--tip {
  border-left-color: #059669;
  background: #ecfdf5;
}

.content-callout--note {
  border-left-color: #2563eb;
  background: #eff6ff;
}

.content-callout-title {
  margin: 0 0 6px;
  font-weight: 700;
  color: #111827;
}

.content-callout-text {
  margin: 0;
  line-height: 1.55;
  color: #374151;
}

.content-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 18px;
}

.content-button {
  display: inline-block;
  padding: 10px 18px;
  font: inherit;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: #1d4ed8;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.content-button:hover {
  background: #1e40af;
  color: #fff;
}

.content-button:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.content-page .image-carousel {
  margin: 0 0 18px;
}

.blog-index-lead {
  max-width: 42rem;
}

.blog-index-list {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.blog-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.blog-card-link {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  color: inherit;
  text-decoration: none;
}

.blog-card-link:hover .blog-card-title {
  color: #1d4ed8;
}

.blog-card-cover {
  display: block;
  width: 140px;
  height: 100%;
  min-height: 110px;
  object-fit: cover;
}

.blog-card-cover--placeholder {
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
}

.blog-card-body {
  padding: 14px 16px;
}

.blog-card-date {
  display: block;
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: #6b7280;
}

.blog-card-title {
  margin: 0 0 6px;
  font-size: 1.12rem;
  line-height: 1.3;
  color: #111827;
}

.blog-card-excerpt {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #4b5563;
}

.blog-index-empty {
  margin: 0;
  color: #6b7280;
}

@media (max-width: 560px) {
  .blog-card-link {
    grid-template-columns: 1fr;
  }

  .blog-card-cover {
    width: 100%;
    min-height: 160px;
  }
}
