/*
Theme Name: Suction Stickers
Theme URI: https://example.com/
Author: Suction Stickers
Description: A colorful one-page custom theme for Suction Stickers.
Version: 2.30.1
Text Domain: suction-stickers
*/

:root {
  --ss-purple-950: #0d1028;
  --ss-purple-900: #17153b;
  --ss-purple-800: #2a1c58;
  --ss-purple-500: #8757d6;
  --ss-teal-500: #159c96;
  --ss-teal-300: #70e3cf;
  --ss-gold-400: #f0b95a;
  --ss-ink: #090d18;
  --ss-white: #f7f7fb;
  --ss-muted: #d2d5e4;
  --ss-border: rgba(112, 227, 207, 0.3);
  --ss-glass: rgba(12, 15, 35, 0.94);
  --ss-glass-light: rgba(27, 23, 61, 0.84);
  --ss-shadow: 0 22px 70px rgba(3, 6, 18, 0.5);
  --ss-radius: 24px;
  --ss-container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  isolation: isolate;
  margin: 0;
  overflow-x: hidden;
  background: var(--ss-purple-950);
  color: var(--ss-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body.cart-drawer-open {
  overflow: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
}

/* The exact logo artwork stays in place while the page content scrolls above it. */
body::before {
  z-index: -2;
  background: url("assets/images/suction-stickers-background.jpg") center center / cover no-repeat;
  filter: saturate(0.78) brightness(0.72);
  opacity: 0.74;
  transform: translateZ(0);
}

body::after {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 10, 25, 0.42) 0%, rgba(10, 13, 31, 0.62) 48%, rgba(6, 8, 20, 0.86) 100%),
    radial-gradient(circle at 50% 12%, rgba(135, 87, 214, 0.1), transparent 36%);
}

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

a {
  color: var(--ss-teal-300);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
  color: var(--ss-white);
}

button,
input,
textarea {
  font: inherit;
}

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

.screen-reader-text:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: var(--ss-ink);
  background: var(--ss-white);
  border-radius: 8px;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.container {
  width: min(calc(100% - 40px), var(--ss-container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 900px);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(112, 227, 207, 0.38);
  background:
    linear-gradient(100deg, rgba(10, 13, 30, 0.98), rgba(34, 25, 73, 0.96) 56%, rgba(22, 70, 73, 0.94)),
    rgba(10, 13, 30, 0.96);
  box-shadow: 0 8px 34px rgba(3, 6, 18, 0.38);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 94px;
}

.site-branding {
  flex: 0 0 auto;
  width: 190px;
}

.site-branding a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-branding img,
.site-branding .custom-logo {
  width: auto;
  max-width: 190px;
  max-height: 78px;
  object-fit: contain;
}

.site-title-fallback {
  color: var(--ss-white);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 9px;
  color: var(--ss-white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--ss-ink);
  background: var(--ss-teal-300);
}

.menu-toggle__lines,
.menu-toggle__lines::before,
.menu-toggle__lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle__lines {
  position: relative;
}

.menu-toggle__lines::before,
.menu-toggle__lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle__lines::before {
  top: -7px;
}

.menu-toggle__lines::after {
  top: 7px;
}

.site-nav {
  flex: 1 1 auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.6vw, 34px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: var(--ss-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ss-teal-300);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav .current-menu-item > a::after {
  transform: scaleX(1);
}

.site-nav .site-nav__cart {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  color: var(--ss-white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.site-nav .site-nav__cart::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--ss-teal-300);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav .site-nav__cart:hover,
.site-nav .site-nav__cart:focus-visible {
  color: var(--ss-white);
}

.site-nav .site-nav__cart:hover::after,
.site-nav .site-nav__cart:focus-visible::after {
  transform: scaleX(1);
}

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

.site-nav .menu-item-has-children > .sub-menu {
	position: absolute;
	z-index: 120;
	top: 100%;
  left: 50%;
  display: block;
  width: max-content;
  min-width: 230px;
  max-width: min(320px, 80vw);
  max-height: min(70vh, 520px);
  padding: 10px;
  margin: 0;
  overflow-y: auto;
  visibility: hidden;
  background: rgba(19, 0, 82, 0.98);
  border: 1px solid var(--ss-border);
  border-radius: 14px;
  box-shadow: var(--ss-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.site-nav .shop-menu-item:hover > .sub-menu,
.site-nav .shop-menu-item:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-nav .sub-menu li {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav .sub-menu a {
  display: block;
  padding: 9px 12px;
  color: var(--ss-white);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  line-height: 1.25;
  white-space: normal;
}

.site-nav .sub-menu a:hover,
.site-nav .sub-menu a:focus-visible {
  color: var(--ss-ink);
  background: var(--ss-teal-300);
  border-radius: 8px;
}

.site-nav .sub-menu .sub-menu {
  position: static;
  display: block;
  min-width: 0;
  max-width: none;
  max-height: none;
  padding: 0 0 4px 12px;
  margin: 0;
  overflow: visible;
  visibility: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.header-social {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.header-cart {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ss-ink);
  background: var(--ss-teal-300);
  border: 1px solid var(--ss-teal-300);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(0, 211, 197, 0.22);
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cart:hover,
.header-cart:focus-visible {
  color: var(--ss-ink);
  background: var(--ss-white);
  border-color: var(--ss-white);
  transform: translateY(-2px);
}

.header-cart svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.header-cart__count {
  position: absolute;
  top: -7px;
  right: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  color: var(--ss-white);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  background: var(--ss-purple-500);
  border: 2px solid var(--ss-white);
  border-radius: 999px;
}

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

.cart-drawer {
  position: fixed;
  z-index: 250;
  inset: 0;
  visibility: hidden;
  pointer-events: none;
}

.cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(7, 0, 35, 0.7);
  border: 0;
  opacity: 0;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.cart-drawer.is-open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(440px, 100%);
  height: 100%;
  padding: 30px;
  color: var(--ss-white);
  background:
    linear-gradient(155deg, rgba(50, 5, 125, 0.98), rgba(16, 1, 62, 0.98)),
    var(--ss-purple-950);
  border-left: 1px solid var(--ss-border);
  box-shadow: -22px 0 70px rgba(8, 0, 45, 0.5);
  transform: translateX(100%);
  transition: transform 260ms ease;
}

.cart-drawer.is-open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(99, 255, 228, 0.26);
}

.cart-drawer__header .eyebrow {
  margin-bottom: 8px;
}

.cart-drawer__header h2 {
  margin: 0;
  color: var(--ss-teal-300);
  font-size: clamp(2rem, 7vw, 3.1rem);
}

.cart-drawer__close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--ss-white);
  font-size: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
}

.cart-drawer__close::before {
  display: grid;
  width: 100%;
  height: 100%;
  content: "×";
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.cart-drawer__close:hover,
.cart-drawer__close:focus-visible {
  color: var(--ss-ink);
  background: var(--ss-teal-300);
  border-color: var(--ss-teal-300);
}

.cart-drawer__body {
  min-height: 0;
  padding: 8px 2px 20px;
  overflow-y: auto;
}

.cart-drawer .woocommerce-mini-cart {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cart-drawer .woocommerce-mini-cart-item {
  padding: 17px 0;
  margin: 0;
  border-bottom: 1px solid rgba(99, 255, 228, 0.22);
}

.cart-drawer .woocommerce-mini-cart-item > a {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--ss-white);
  font-weight: 800;
  text-decoration: none;
}

.cart-drawer .woocommerce-mini-cart-item > a:hover {
  color: var(--ss-teal-300);
}

.cart-drawer .woocommerce-mini-cart-item img {
  float: none;
  flex: 0 0 62px;
  width: 62px !important;
  height: 62px;
  padding: 3px;
  margin: 0 !important;
  object-fit: cover;
  background: rgba(8, 0, 42, 0.45);
  border: 1px solid rgba(99, 255, 228, 0.3);
  border-radius: 12px;
}

.cart-drawer .woocommerce-mini-cart-item .quantity {
  display: block;
  margin: 8px 0 0 75px;
  color: var(--ss-muted);
  font-size: 0.9rem;
}

.cart-drawer .woocommerce-mini-cart-item .amount,
.cart-drawer .woocommerce-mini-cart__total .amount {
  color: var(--ss-teal-300);
  font-weight: 900;
}

.cart-drawer .woocommerce-mini-cart__total {
  padding: 20px 0 0;
  margin: 0;
  color: var(--ss-white);
  font-size: 1.1rem;
  border: 0;
}

.cart-drawer .woocommerce-mini-cart__buttons {
  display: none;
}

.cart-drawer__empty {
  padding: 28px 0;
  color: var(--ss-muted);
}

.cart-drawer__footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(99, 255, 228, 0.26);
}

.cart-drawer__footer .button {
  width: 100%;
  padding-inline: 12px;
  font-size: 0.72rem;
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ss-white);
  background: rgba(17, 0, 70, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--ss-ink);
  background: var(--ss-teal-300);
  border-color: var(--ss-teal-300);
  transform: translateY(-2px);
}

.social-link.is-placeholder {
  border-style: dashed;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-link--instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero {
  display: grid;
  align-items: center;
  min-height: min(720px, calc(100svh - 94px));
  padding: clamp(70px, 10vw, 140px) 0;
}

.hero-inner {
  width: min(calc(100% - 40px), 1360px);
  max-width: 1360px;
  display: flex;
  justify-content: flex-start;
}

.hero-copy {
  width: 100%;
  padding: clamp(26px, 4vw, 50px);
  text-align: center;
  background: linear-gradient(135deg, rgba(22, 0, 76, 0.84), rgba(56, 6, 125, 0.58));
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius);
  box-shadow: var(--ss-shadow);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
}

.hero--clean {
  background:
    linear-gradient(135deg, rgba(19, 0, 82, 0.3), rgba(0, 211, 197, 0.06)),
    radial-gradient(circle at 68% 40%, rgba(163, 28, 255, 0.18), transparent 38%);
}

.hero .eyebrow {
  white-space: nowrap;
  font-size: clamp(0.56rem, 1.2vw, 0.78rem);
  letter-spacing: 0.12em;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ss-teal-300);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  color: var(--ss-white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  text-shadow: 4px 4px 0 rgba(0, 210, 197, 0.28);
}

.hero h1 {
  max-width: none;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.hero-copy p:not(.eyebrow),
.about-panel p,
.custom-art p,
.contact-card p {
  color: var(--ss-muted);
  font-size: 1.06rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 820px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  margin-top: 28px;
}

.button,
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  color: var(--ss-ink);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  background: var(--ss-teal-300);
  border: 1px solid var(--ss-teal-300);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(0, 211, 197, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible,
button[type="submit"]:hover,
button[type="submit"]:focus-visible {
  color: var(--ss-ink);
  background: var(--ss-white);
  box-shadow: 0 14px 32px rgba(0, 211, 197, 0.32);
  transform: translateY(-2px);
}

.button--ghost {
  color: var(--ss-white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--ss-ink);
  background: var(--ss-white);
}

.content-section {
  padding: clamp(70px, 10vw, 130px) 0;
}

.glass-panel {
  background: linear-gradient(135deg, var(--ss-glass), var(--ss-glass-light));
  border: 1px solid var(--ss-border);
  border-radius: var(--ss-radius);
  box-shadow: var(--ss-shadow);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.about-panel {
  padding: clamp(28px, 5vw, 68px);
  text-align: center;
}

.about-panel h2 {
  color: var(--ss-teal-300);
}

.about-panel p {
  max-width: 680px;
  margin-inline: auto;
}

.social-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-block > span {
  color: var(--ss-gold-400);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-block .social-link {
  width: 40px;
  height: 40px;
}

.social-block .social-link svg {
  width: 19px;
  height: 19px;
}

.customs-section {
  padding-top: 20px;
}

.customs-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
}

.custom-art,
.contact-card {
  padding: clamp(26px, 4vw, 48px);
}

.custom-art {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.custom-art figure {
  display: grid;
  min-height: 300px;
  margin: 0 0 28px;
  place-items: center;
  background: rgba(8, 0, 42, 0.34);
  border: 1px solid rgba(99, 255, 228, 0.2);
  border-radius: 18px;
  overflow: hidden;
}

.custom-art img {
  width: min(100%, 560px);
  max-height: 520px;
  object-fit: contain;
}

.custom-art h2 {
  margin-bottom: 10px;
  color: var(--ss-teal-300);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.contact-card h2 {
  color: var(--ss-teal-300);
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field label {
  color: var(--ss-white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ss-white);
  background: rgba(8, 0, 42, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 12px;
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--ss-teal-300);
  box-shadow: 0 0 0 3px rgba(99, 255, 228, 0.18);
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input[type="file"] {
  padding: 10px;
}

.form-help {
  margin: -2px 0 0;
  color: var(--ss-muted);
  font-size: 0.82rem;
}

.form-status {
  padding: 12px 14px;
  margin: 0 0 16px;
  color: var(--ss-ink);
  font-weight: 700;
  background: var(--ss-teal-300);
  border-radius: 12px;
}

.form-status--error {
  color: var(--ss-white);
  background: #a32972;
}

.site-footer {
  padding: 38px 0;
  margin-top: 40px;
  background: rgba(10, 0, 45, 0.78);
  border-top: 1px solid rgba(99, 255, 228, 0.35);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
  color: var(--ss-muted);
  font-size: 0.86rem;
}

/* WooCommerce pages use the same artwork, glass panels, and brand colors. */
.commerce-main {
  min-height: calc(100vh - 94px);
}

.commerce-container {
  width: min(calc(100% - 40px), 1220px);
}

.commerce-panel {
  padding: clamp(24px, 4vw, 52px);
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
  margin: 0 0 24px;
  color: var(--ss-muted);
  font-size: 0.9rem;
  text-align: center;
}

.woocommerce .woocommerce-breadcrumb a,
.woocommerce-page .woocommerce-breadcrumb a {
  color: var(--ss-teal-300);
}

.woocommerce .woocommerce-products-header,
.woocommerce-page .woocommerce-products-header {
  display: flex;
  min-height: clamp(170px, 24vw, 260px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 42px) clamp(12px, 4vw, 48px) clamp(24px, 4vw, 40px);
  text-align: center;
}

.woocommerce .page-title,
.woocommerce-page .page-title {
  color: var(--ss-teal-300);
  max-width: 100%;
  margin: 0 auto;
  font-size: clamp(1.9rem, 5vw, 4.5rem);
  line-height: 0.98;
  text-align: center;
  -webkit-text-stroke: 2px rgba(3, 0, 18, 0.96);
  paint-order: stroke fill;
  text-shadow: 3px 3px 0 rgba(3, 0, 18, 0.96), 0 0 14px rgba(0, 211, 197, 0.22);
  text-wrap: balance;
}

/* Force WooCommerce archive headings to stay centered in both category and
 * subcategory pages, even when WooCommerce's own archive rules are loaded. */
.woocommerce-products-header h1,
.woocommerce-products-header h1.page-title,
.woocommerce-products-header__title,
.woocommerce .woocommerce-products-header h1,
.woocommerce-page .woocommerce-products-header h1 {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto !important;
  align-self: center !important;
  text-align: center !important;
}

.ss-archive-title-line {
  display: block;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  float: none;
  margin-top: 0;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  display: block;
  width: 100%;
  margin: 0 auto 12px;
  color: var(--ss-muted);
  text-align: center;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 0 auto 24px;
}

.woocommerce .woocommerce-ordering select,
.woocommerce-page .woocommerce-ordering select {
  max-width: 100%;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  justify-content: center;
  width: min(100%, 900px);
  max-width: 100%;
  gap: clamp(16px, 2.5vw, 26px);
  padding: 12px clamp(8px, 2vw, 18px) 28px;
  margin: 28px auto 0;
  list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  float: none;
  width: auto !important;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  padding: clamp(16px, 2vw, 22px);
  margin: 0 !important;
  color: var(--ss-white);
  background: linear-gradient(145deg, rgba(47, 6, 117, 0.88), rgba(17, 2, 66, 0.82));
  border: 1px solid var(--ss-border);
  border-radius: 20px;
  box-shadow: 0 15px 38px rgba(8, 0, 45, 0.28);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

/* Category and subcategory tiles share the same balanced card treatment. */
.woocommerce ul.products li.product-category,
.woocommerce-page ul.products li.product-category {
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.woocommerce ul.products li.product-category > a,
.woocommerce-page ul.products li.product-category > a {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  color: var(--ss-white);
  text-align: center;
  text-decoration: none;
}

.woocommerce ul.products li.product-category > a img,
.woocommerce-page ul.products li.product-category > a img {
  width: min(100%, 280px) !important;
  margin-right: auto;
  margin-left: auto;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title,
.woocommerce-page ul.products li.product-category .woocommerce-loop-category__title {
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.16rem, 2.4vw, 1.48rem);
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 1.18;
  text-align: center;
  text-shadow: 0 2px 2px rgba(3, 0, 18, 0.98), 0 0 12px rgba(0, 0, 0, 0.8);
  text-transform: uppercase;
}

.woocommerce ul.products li.product-category .woocommerce-loop-category__title,
.woocommerce-page ul.products li.product-category .woocommerce-loop-category__title {
  width: 100%;
  -webkit-text-stroke: 1.25px rgba(3, 0, 18, 0.96);
  paint-order: stroke fill;
  text-align: center !important;
}

.woocommerce ul.products li.product-category .count,
.woocommerce-page ul.products li.product-category .count {
  display: none !important;
  align-items: center;
  justify-content: center;
  min-width: 2em;
  min-height: 1.65em;
  padding: 0.22em 0.52em;
  margin-left: 0.35em;
  color: var(--ss-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.66rem, 1.2vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  -webkit-text-stroke: 0;
  text-shadow: none;
  vertical-align: middle;
  background: var(--ss-gold-400);
  border-radius: 999px;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: var(--ss-teal-300);
  box-shadow: 0 20px 46px rgba(0, 211, 197, 0.18);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 0 18px;
  object-fit: cover;
  background: rgba(8, 0, 42, 0.42);
  border: 1px solid rgba(99, 255, 228, 0.18);
  border-radius: 14px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  color: var(--ss-white);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-shadow: 2px 2px 0 rgba(7, 0, 35, 0.82), 0 0 10px rgba(0, 0, 0, 0.35);
  text-transform: uppercase;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  margin: 8px 0 16px;
  color: var(--ss-teal-300);
  font-size: 1.05rem;
  font-weight: 900;
}

.woocommerce span.onsale,
.woocommerce-page span.onsale {
  top: 12px;
  right: 12px;
  min-width: 54px;
  min-height: 54px;
  padding: 0;
  color: var(--ss-ink);
  line-height: 54px;
  background: var(--ss-gold-400);
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce-page #respond input#submit {
  padding: 12px 18px;
  color: var(--ss-ink);
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--ss-teal-300);
  border: 1px solid var(--ss-teal-300);
  border-radius: 999px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce-page #respond input#submit:hover {
  color: var(--ss-ink);
  background: var(--ss-white);
  border-color: var(--ss-white);
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-cart-form,
.woocommerce .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #payment {
  padding: clamp(20px, 3vw, 34px);
  background: rgba(24, 4, 79, 0.7);
  border: 1px solid var(--ss-border);
  border-radius: 20px;
  box-shadow: 0 15px 38px rgba(8, 0, 45, 0.2);
}

.woocommerce div.product div.images img {
  border-radius: 14px;
}

.woocommerce div.product .product_title,
.woocommerce div.product .summary .price {
  color: var(--ss-teal-300);
  text-shadow: 2px 3px 0 rgba(7, 0, 35, 0.78), 0 0 12px rgba(0, 211, 197, 0.2);
}

.woocommerce div.product .summary .price {
  font-size: 1.5rem;
  font-weight: 900;
}

.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .product_meta {
  color: var(--ss-muted);
}

.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
  color: var(--ss-white);
  border-color: rgba(99, 255, 228, 0.25);
  border-radius: 14px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td,
.woocommerce-page table.shop_table th,
.woocommerce-page table.shop_table td {
  padding: 14px;
  border-color: rgba(99, 255, 228, 0.2);
}

.woocommerce table.shop_table th,
.woocommerce-page table.shop_table th {
  color: var(--ss-teal-300);
  background: rgba(8, 0, 42, 0.38);
}

.woocommerce table.shop_table td a,
.woocommerce-page table.shop_table td a {
  color: var(--ss-white);
}

.woocommerce .cart-collaterals .cart_totals h2,
.woocommerce-checkout h3 {
  color: var(--ss-teal-300);
  font-size: 1.7rem;
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form select,
.woocommerce div.product form.cart select,
.woocommerce div.product form.cart .variations select,
.woocommerce-page .quantity .qty,
.woocommerce-page form .form-row input.input-text,
.woocommerce-page form .form-row textarea,
.woocommerce-page form .form-row select,
.woocommerce-page form select,
.woocommerce-page div.product form.cart select,
.woocommerce-page div.product form.cart .variations select {
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ss-white);
  background: rgba(8, 0, 42, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 10px;
}

.woocommerce form .form-row select option,
.woocommerce form select option,
.woocommerce div.product form.cart select option,
.woocommerce div.product form.cart .variations select option,
.woocommerce-page form .form-row select option,
.woocommerce-page form select option,
.woocommerce-page div.product form.cart select option,
.woocommerce-page div.product form.cart .variations select option {
  color: var(--ss-white);
  background: var(--ss-purple-900);
}

.woocommerce form .form-row select:focus,
.woocommerce form select:focus,
.woocommerce div.product form.cart select:focus,
.woocommerce-page form .form-row select:focus,
.woocommerce-page form select:focus,
.woocommerce-page div.product form.cart select:focus {
  border-color: var(--ss-teal-300);
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 255, 228, 0.18);
}

.woocommerce form .form-row textarea,
.woocommerce-page form .form-row textarea {
  min-height: 120px;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  color: var(--ss-white);
  text-shadow: 1px 2px 0 rgba(7, 0, 35, 0.7);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  color: var(--ss-ink);
  background: var(--ss-teal-300);
  border-top: 0;
  border-radius: 12px;
}

.woocommerce-error {
  color: var(--ss-white);
  background: #a32972;
}

.woocommerce-info::before,
.woocommerce-message::before,
.woocommerce-error::before {
  color: currentColor;
}

.woocommerce a.remove {
  display: inline-grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--ss-teal-300) !important;
}

.woocommerce a.remove::before {
  display: grid;
  width: 100%;
  height: 100%;
  content: "×";
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.cart-drawer .woocommerce-mini-cart-item a.remove {
  display: inline-grid;
  place-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  border-radius: 50%;
}

.cart-drawer .woocommerce-mini-cart-item a.remove::before {
  display: grid;
  width: 100%;
  height: 100%;
  content: "×";
  place-items: center;
  font-family: Arial, sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
}

.woocommerce a.remove:hover {
  color: var(--ss-white) !important;
  background: #a32972;
}

@media (max-width: 980px) {
  .header-inner {
    gap: 16px;
  }

  .site-branding {
    width: 165px;
  }

  .site-branding img,
  .site-branding .custom-logo {
    max-width: 165px;
  }

  .header-social {
    gap: 5px;
  }

  .header-cart {
    width: 38px;
    height: 38px;
  }

  .social-link {
    width: 29px;
    height: 29px;
  }

  .social-link svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 78px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--ss-container));
  }

  .header-inner {
    min-height: 76px;
  }

  .site-branding {
    width: 145px;
  }

  .site-branding img,
  .site-branding .custom-logo {
    max-width: 145px;
    max-height: 62px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
  }

  .menu-toggle__lines,
  .menu-toggle__lines::before,
  .menu-toggle__lines::after {
    width: 26px;
    height: 3px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines {
    background: transparent;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before,
  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
    top: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::before {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__lines::after {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 14px;
    left: 14px;
    display: none;
    padding: 16px;
    background: rgba(19, 0, 82, 0.97);
    border: 1px solid var(--ss-border);
    border-radius: 0 0 18px 18px;
    box-shadow: var(--ss-shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
  }

  .site-nav .menu-item-has-children > .sub-menu,
  .site-nav .sub-menu .sub-menu {
    position: static;
    display: block;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: none;
    padding: 4px 0 4px 14px;
    margin: 0;
    overflow: visible;
    visibility: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    display: block;
    padding: 12px 10px;
  }

  .site-nav .site-nav__cart {
    display: block;
    width: 100%;
    padding: 12px 10px;
    text-align: left;
  }

  .header-social {
    display: none;
  }

  .header-cart {
    width: 38px;
    height: 38px;
  }

  .cart-drawer__panel {
    width: min(420px, 100%);
    padding: 24px 20px;
  }

  .cart-drawer__close {
    width: 62px;
    height: 62px;
    border-width: 2px;
  }

  .cart-drawer__close::before {
    font-size: 3rem;
  }

  .woocommerce a.remove,
  .woocommerce-page a.remove,
  .cart-drawer .woocommerce-mini-cart-item a.remove {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0 !important;
    color: var(--ss-white) !important;
    font-size: 0 !important;
    font-weight: 400;
    line-height: 1 !important;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
  }

  .woocommerce a.remove::before,
  .woocommerce-page a.remove::before,
  .cart-drawer .woocommerce-mini-cart-item a.remove::before {
    display: grid;
    width: 100%;
    height: 100%;
    content: "×";
    place-items: center;
    font-family: Arial, sans-serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1;
    transform: translateY(-1px);
  }

  .woocommerce a.remove:hover,
  .woocommerce a.remove:focus-visible,
  .woocommerce-page a.remove:hover,
  .woocommerce-page a.remove:focus-visible,
  .cart-drawer .woocommerce-mini-cart-item a.remove:hover,
  .cart-drawer .woocommerce-mini-cart-item a.remove:focus-visible {
    color: var(--ss-ink) !important;
    background: var(--ss-teal-300);
    border-color: var(--ss-teal-300);
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 56px 0;
  }

  .hero-copy {
    padding: 26px 21px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .customs-grid {
    grid-template-columns: 1fr;
  }

  .commerce-container {
    width: min(calc(100% - 28px), 1220px);
  }

  .commerce-panel {
    padding: 18px 14px;
  }

  .woocommerce ul.products,
  .woocommerce-page ul.products,
  .woocommerce .commerce-panel ul.products,
  .woocommerce-page .commerce-panel ul.products {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: center;
    justify-items: center;
    gap: 12px;
    width: 100% !important;
    max-width: 100%;
    padding: 10px 0 28px;
    margin-top: 24px;
  }

  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product,
  .woocommerce .commerce-panel ul.products li.product,
  .woocommerce-page .commerce-panel ul.products li.product {
    width: 100% !important;
    max-width: none;
    margin-right: auto !important;
    margin-left: auto !important;
    float: none !important;
    padding: 10px;
    border-radius: 18px;
  }

  .woocommerce ul.products li.product-category .woocommerce-loop-category__title,
  .woocommerce-page ul.products li.product-category .woocommerce-loop-category__title {
    font-size: clamp(0.82rem, 3.2vw, 1.05rem);
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.1rem;
  }

  .woocommerce table.shop_table,
  .woocommerce table.shop_table tbody,
  .woocommerce table.shop_table tr,
  .woocommerce table.shop_table td,
  .woocommerce table.shop_table th {
    display: block;
    width: 100%;
  }

  .woocommerce table.shop_table thead {
    display: none;
  }

  .woocommerce table.shop_table tr {
    padding: 10px 0;
    border-bottom: 1px solid rgba(99, 255, 228, 0.2);
  }

  .woocommerce table.shop_table td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: right;
  }

  .woocommerce table.shop_table td::before {
    color: var(--ss-teal-300);
    font-weight: 800;
    text-align: left;
  }

  .woocommerce table.shop_table td.product-name::before {
    content: "Product";
  }

  .woocommerce table.shop_table td.product-price::before {
    content: "Price";
  }

  .woocommerce table.shop_table td.product-quantity::before {
    content: "Quantity";
  }

  .woocommerce table.shop_table td.product-subtotal::before {
    content: "Subtotal";
  }

  .woocommerce table.shop_table td.product-remove::before {
    content: "Remove";
  }

  .woocommerce-cart-form,
  .woocommerce .cart_totals,
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review,
  .woocommerce-checkout #payment {
    padding: 16px;
    border-radius: 15px;
  }

  .custom-art figure {
    min-height: 220px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 760px) {
  /* Fixed backgrounds can be unreliable on mobile browsers. */
  body::before {
    position: absolute;
    min-height: 100%;
    background-attachment: scroll;
  }
}

/* The old homepage CTA is intentionally disabled. The exact background image
 * remains on the body; this prevents a legacy hero/banner layer from being
 * rendered above it if an older page or cached template is still present. */
body.home .hero,
body.front-page .hero,
body.home .hero--clean,
body.front-page .hero--clean,
body.home #top.hero,
body.front-page #top.hero,
body.home #top.hero--clean,
body.front-page #top.hero--clean,
body.home [class*="ready-to-customize"],
body.front-page [class*="ready-to-customize"],
body.home [class*="customize-banner"],
body.front-page [class*="customize-banner"],
body.home [class*="customize-cta"],
body.front-page [class*="customize-cta"] {
  display: none !important;
}

/* Production product layout and dependent variation controls. */
.woocommerce div.product,
.woocommerce-page div.product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(18px, 3vw, 34px);
  min-width: 0;
}

.woocommerce div.product::before,
.woocommerce div.product::after,
.woocommerce-page div.product::before,
.woocommerce-page div.product::after {
  display: none;
  content: none;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.images,
.woocommerce-page div.product div.summary {
  float: none !important;
  width: 100% !important;
  max-width: 100%;
  min-width: 0;
  margin: 0 !important;
}

.woocommerce div.product div.summary,
.woocommerce-page div.product div.summary {
  overflow: hidden;
}

.woocommerce div.product .product_title,
.woocommerce-page div.product .product_title {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  font-size: clamp(2.2rem, 4.4vw, 4.25rem);
  line-height: 0.94;
  overflow-wrap: anywhere;
  word-break: normal;
  text-wrap: balance;
}

.woocommerce div.product form.cart,
.woocommerce-page div.product form.cart,
.woocommerce div.product form.cart .variations,
.woocommerce-page div.product form.cart .variations,
.woocommerce div.product .single_variation_wrap,
.woocommerce-page div.product .single_variation_wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.woocommerce div.product form.cart .variations,
.woocommerce-page div.product form.cart .variations {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0 10px;
}

.woocommerce div.product form.cart .variations td,
.woocommerce-page div.product form.cart .variations td {
  min-width: 0;
  padding: 0;
  vertical-align: middle;
}

.woocommerce div.product form.cart .variations td.label,
.woocommerce-page div.product form.cart .variations td.label {
  width: 32%;
  padding-right: 12px;
}

.woocommerce div.product form.cart .variations td.value,
.woocommerce-page div.product form.cart .variations td.value {
  width: 68%;
}

.woocommerce div.product form.cart .variations select,
.woocommerce-page div.product form.cart .variations select {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.ss-pricing-hint,
.ss-pricing-selection {
  margin: 10px 0 14px;
  color: var(--ss-muted);
  font-size: 0.9rem;
}

.ss-pricing-selection {
  color: var(--ss-teal-300);
  font-weight: 800;
}

.woocommerce div.product .summary .price,
.woocommerce-page div.product .summary .price,
.woocommerce div.product .single_variation .price,
.woocommerce-page div.product .single_variation .price {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.ss-quote-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 12px !important;
  text-decoration: none !important;
}

.ss-quote-note {
  max-width: 44rem;
  margin: 12px 0 0;
  color: var(--ss-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.quote-context {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  margin: 0 0 18px;
  color: var(--ss-white);
  background: rgba(21, 156, 150, 0.12);
  border: 1px solid var(--ss-teal-500);
  border-left-width: 4px;
  border-radius: 10px;
}

.quote-context span {
  color: var(--ss-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .woocommerce div.product,
  .woocommerce-page div.product {
    grid-template-columns: minmax(0, 1fr);
  }

  .woocommerce div.product .product_title,
  .woocommerce-page div.product .product_title {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }

  .woocommerce div.product form.cart .variations td.label,
  .woocommerce-page div.product form.cart .variations td.label {
    width: 38%;
  }

  .woocommerce div.product form.cart .variations td.value,
  .woocommerce-page div.product form.cart .variations td.value {
    width: 62%;
  }
}

/* 2.1.0 product-page polish: quieter surfaces, clearer hierarchy, and a
 * full-width layout for the tabs and livery studio. WooCommerce puts more
 * than two direct children inside .product, so the first grid pass must
 * explicitly place those children instead of letting them overlap. */
.commerce-main .commerce-panel {
  background: rgba(12, 15, 35, 0.9);
  border-color: rgba(112, 227, 207, 0.24);
  box-shadow: 0 24px 70px rgba(3, 6, 18, 0.42);
}

.woocommerce div.product > div.images,
.woocommerce-page div.product > div.images {
  grid-column: 1;
  grid-row: 1;
}

.woocommerce div.product > div.summary,
.woocommerce-page div.product > div.summary {
  grid-column: 2;
  grid-row: 1;
}

.woocommerce div.product > .woocommerce-tabs,
.woocommerce-page div.product > .woocommerce-tabs,
.woocommerce div.product > .ss-livery-configurator,
.woocommerce-page div.product > .ss-livery-configurator,
.woocommerce div.product > .related,
.woocommerce-page div.product > .related,
.woocommerce div.product > .upsells,
.woocommerce-page div.product > .upsells {
  grid-column: 1 / -1;
  width: 100%;
  min-width: 0;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary,
.woocommerce-page div.product div.images,
.woocommerce-page div.product div.summary {
  background: rgba(14, 17, 39, 0.94);
  border-color: rgba(112, 227, 207, 0.24);
  box-shadow: 0 18px 46px rgba(3, 6, 18, 0.34);
}

.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img {
  background: #090d18;
  border-color: rgba(112, 227, 207, 0.18);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: linear-gradient(145deg, rgba(18, 21, 46, 0.96), rgba(24, 22, 54, 0.94));
  border-color: rgba(112, 227, 207, 0.22);
  box-shadow: 0 16px 38px rgba(3, 6, 18, 0.3);
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: var(--ss-teal-300);
  box-shadow: 0 20px 46px rgba(112, 227, 207, 0.13);
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs {
  margin-top: 8px;
  padding: clamp(20px, 3vw, 34px);
  background: rgba(14, 17, 39, 0.88);
  border: 1px solid rgba(112, 227, 207, 0.22);
  border-radius: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce-page div.product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 1px solid rgba(112, 227, 207, 0.22);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
  box-shadow: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
  padding: 10px 14px;
  margin: 0;
  color: var(--ss-muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(112, 227, 207, 0.2);
  border-radius: 10px 10px 0 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
  color: inherit;
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active {
  color: var(--ss-ink);
  background: var(--ss-teal-300);
  border-color: var(--ss-teal-300);
}

.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce-page div.product .woocommerce-tabs .panel h2 {
  max-width: none;
  color: var(--ss-teal-300);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-shadow: none;
}

@media (max-width: 760px) {
  .woocommerce div.product > div.images,
  .woocommerce-page div.product > div.images,
  .woocommerce div.product > div.summary,
  .woocommerce-page div.product > div.summary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .woocommerce div.product .woocommerce-tabs,
  .woocommerce-page div.product .woocommerce-tabs {
    padding: 18px;
  }
}


/* Header product search: placed directly after Gallery and before the cart. */
.header-product-search {
  flex: 0 1 250px;
  width: min(250px, 24vw);
}

.header-product-search__form {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 170px;
  overflow: hidden;
  background: rgba(8, 5, 31, 0.72);
  border: 1px solid rgba(99, 255, 228, 0.58);
  border-radius: 999px;
}

.header-product-search__form:focus-within {
  border-color: var(--ss-teal-300);
  box-shadow: 0 0 0 3px rgba(99, 255, 228, 0.14);
}

.header-product-search__form input[type="search"] {
  width: 100%;
  min-width: 0;
  padding: 9px 5px 9px 13px;
  color: var(--ss-white);
  font: inherit;
  font-size: 0.78rem;
  background: transparent;
  border: 0;
  outline: 0;
}

.header-product-search__form input[type="search"]::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.header-product-search__form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 36px;
  padding: 0;
  color: var(--ss-teal-300);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.header-product-search__form button:hover,
.header-product-search__form button:focus-visible {
  color: var(--ss-white);
}

.header-product-search__form svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

@media (max-width: 980px) and (min-width: 761px) {
  .header-product-search {
    width: min(205px, 22vw);
  }
}

@media (max-width: 760px) {
  .header-product-search {
    width: 100%;
    padding: 8px 10px;
  }

  .header-product-search__form {
    min-width: 0;
  }
}


/* Custom Apparel landing page */
.ss-custom-apparel-page {
	padding-bottom: clamp(3rem, 7vw, 6rem);
}
.ss-custom-apparel-hero {
	padding: clamp(3rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3.5rem);
	text-align: center;
}
.ss-custom-apparel-hero .container {
	max-width: 850px;
}
.ss-custom-apparel-hero h1 {
	margin: .35rem 0 1rem;
	font-size: clamp(2.5rem, 7vw, 5.5rem);
	line-height: .95;
	color: var(--aqua, #53f2d3);
	text-shadow: 0 4px 0 rgba(0,0,0,.35);
}
.ss-custom-apparel-hero p:last-child {
	max-width: 720px;
	margin: 0 auto;
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.7;
}
.ss-custom-apparel-studio-wrap {
	max-width: 1500px;
}
.ss-custom-apparel-page .ss-apparel-mockup {
	margin-top: 0;
}

/* Restore the full apparel studio on the Other Custom Items archive. */
.ss-other-custom-items-studio { width: 100%; margin: 1.5rem 0 2.5rem; }
.ss-other-custom-items-studio > .container { width: min(100% - 1.5rem, 1320px); margin-inline: auto; }
@media (max-width: 620px) {
  .ss-other-custom-items-studio { margin-top: .8rem; }
  .ss-other-custom-items-studio > .container { width: min(100% - .75rem, 1320px); }
}


/* v2.16 Other Custom Items archive */
.ss-other-custom-items-page .ss-other-custom-items-heading{margin-bottom:1rem;padding:clamp(1rem,3vw,2rem)}
.ss-other-custom-items-page .ss-other-custom-items-heading h1{margin:.25rem 0;color:var(--ss-teal-300);font-size:clamp(2.3rem,7vw,5rem)}
.ss-other-custom-items-page .ss-other-custom-items-studio>.container{width:100%;max-width:none;padding:0}
.ss-other-custom-items-page .ss-other-custom-items-products{margin-top:1rem;padding:clamp(1rem,2vw,1.5rem)}

/* v2.23.4 — dedicated clickable Name/Logo and Apparel choices on Shop. */
.ss-shop-customizers{
  width:min(1180px,calc(100% - 2rem));
  margin:1.25rem auto 2rem;
  padding:clamp(1rem,2.5vw,1.5rem);
  border:1px solid rgba(86,239,219,.28);
  border-radius:20px;
  background:linear-gradient(145deg,rgba(10,12,34,.96),rgba(28,18,62,.94));
  box-shadow:0 18px 50px rgba(0,0,0,.28);
}
.ss-shop-customizers__head{margin-bottom:1rem;text-align:center}
.ss-shop-customizers__head p{margin:0 0 .25rem;color:#65f1dc;font-size:.72rem;font-weight:900;letter-spacing:.15em;text-transform:uppercase}
.ss-shop-customizers__head h2{margin:0;color:#fff;font-size:clamp(1.5rem,3vw,2.35rem)}
.ss-shop-customizers__grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem}
.ss-shop-customizer-card{
  display:grid;
  grid-template-columns:minmax(130px,.7fr) minmax(0,1.3fr);
  gap:1rem;
  align-items:center;
  min-width:0;
  padding:1rem;
  color:#fff!important;
  text-decoration:none!important;
  border:1px solid rgba(101,241,220,.22);
  border-radius:16px;
  background:rgba(255,255,255,.045);
  transition:transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.ss-shop-customizer-card:hover,.ss-shop-customizer-card:focus-visible{transform:translateY(-2px);border-color:#65f1dc;background:rgba(101,241,220,.08);box-shadow:0 14px 32px rgba(0,0,0,.24);outline:none}
.ss-shop-customizer-card__visual{display:grid;place-items:center;min-height:150px;overflow:hidden;border-radius:13px;background:linear-gradient(145deg,#e7e7eb,#cfcfd6);color:#65f1dc}
.ss-shop-customizer-card__visual img{display:block;width:92%;height:135px;object-fit:contain}
.ss-shop-customizer-card__visual--apparel{background:radial-gradient(circle at 50% 35%,rgba(101,241,220,.13),transparent 45%),#090b20}
.ss-shop-customizer-card__visual--apparel svg{width:min(82%,180px);height:auto;filter:drop-shadow(0 10px 14px rgba(0,0,0,.42))}
.ss-shop-customizer-card__copy{display:grid;gap:.55rem;min-width:0}
.ss-shop-customizer-card__copy strong{color:#fff;font-size:clamp(1.05rem,2vw,1.35rem);line-height:1.15}
.ss-shop-customizer-card__copy small{color:#c9ccdc;font-size:.87rem;line-height:1.48}
.ss-shop-customizer-card__copy>span{color:#65f1dc;font-size:.82rem;font-weight:900;text-transform:uppercase;letter-spacing:.04em}
@media(max-width:820px){
  .ss-shop-customizers{width:min(100% - 1rem,1180px);margin-top:.75rem}
  .ss-shop-customizers__grid{grid-template-columns:1fr}
}
@media(max-width:500px){
  .ss-shop-customizer-card{grid-template-columns:1fr;padding:.75rem}
  .ss-shop-customizer-card__visual{min-height:130px}
  .ss-shop-customizer-card__visual img{height:118px}
}

/* v2.23.4 — mobile in-page color wheel. Prevents Android/iOS native HSV/HSB pickers. */
body.ss-mobile-color-wheel-open{overflow:hidden}
.ss-mobile-color-dialog[hidden]{display:none!important}
.ss-mobile-color-dialog{position:fixed;inset:0;z-index:999999;display:grid;place-items:center;padding:clamp(.6rem,3vw,1.25rem);background:rgba(3,5,20,.84);backdrop-filter:blur(7px);-webkit-backdrop-filter:blur(7px)}
.ss-mobile-color-dialog__panel{position:relative;width:min(100%,620px);max-height:calc(100dvh - 1.2rem);overflow:auto;padding:clamp(1rem,4vw,1.55rem);color:#fff;background:linear-gradient(145deg,#111431,#151239);border:1px solid rgba(101,241,220,.45);border-radius:22px;box-shadow:0 24px 80px rgba(0,0,0,.5)}
.ss-mobile-color-dialog__close{position:absolute;top:1rem;right:1rem;display:grid;place-items:center;width:48px;height:48px;padding:0!important;color:#fff!important;background:rgba(255,255,255,.08)!important;border:1px solid rgba(255,255,255,.18)!important;border-radius:50%!important;font-size:2rem!important;line-height:1!important;cursor:pointer}
.ss-mobile-color-dialog__eyebrow{margin:0 4rem .2rem 0;color:#65f1dc;font-size:.72rem;font-weight:950;letter-spacing:.13em;text-transform:uppercase}
.ss-mobile-color-dialog h2{margin:0 4rem .25rem 0;color:#65f1dc;font-size:clamp(1.8rem,8vw,3rem);line-height:1}
.ss-mobile-color-dialog__label{margin:.2rem 0 1rem;color:#d8daea;font-size:1rem;font-weight:800}
.ss-mobile-color-dialog__canvas{display:block;width:min(100%,330px);height:auto;aspect-ratio:1;margin:.4rem auto 1rem;touch-action:none;border-radius:50%;box-shadow:0 10px 35px rgba(0,0,0,.35)}
.ss-mobile-color-dialog__brightness{display:grid;gap:.45rem;margin:.3rem 0 1rem;color:#fff;font-size:.75rem;font-weight:900;letter-spacing:.05em;text-transform:uppercase}
.ss-mobile-color-dialog__brightness input{width:100%;accent-color:#65f1dc}
.ss-mobile-color-dialog__rgb{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.65rem}
.ss-mobile-color-dialog__rgb label{display:grid;grid-template-columns:auto 1fr;align-items:center;gap:.4rem;font-weight:900}
.ss-mobile-color-dialog__rgb input{width:100%;min-width:0;min-height:48px;padding:.5rem;color:#fff;background:#0b0e28;border:1px solid rgba(101,241,220,.3);border-radius:12px;text-align:center;font-weight:800}
.ss-mobile-color-dialog__cmyk{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:.45rem;margin-top:.75rem;padding:.7rem;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(255,255,255,.04)}
.ss-mobile-color-dialog__cmyk>span{grid-column:1/-1;color:#aeb4ca;font-size:.68rem;font-weight:900;letter-spacing:.06em;text-transform:uppercase}
.ss-mobile-color-dialog__cmyk output{padding:.35rem .25rem;color:#fff;background:#080a1e;border-radius:8px;text-align:center;font-size:.72rem;font-weight:800}
.ss-mobile-color-dialog__current{display:flex;align-items:center;justify-content:center;gap:.7rem;margin:1rem 0}
.ss-mobile-color-dialog__current span{width:54px;height:54px;border:3px solid #fff;border-radius:50%;box-shadow:0 4px 14px rgba(0,0,0,.35)}
.ss-mobile-color-dialog__current output{padding:.55rem .75rem;color:#fff;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);border-radius:999px;font:800 .9rem/1 ui-monospace,SFMono-Regular,Menlo,Consolas,monospace}
.ss-mobile-color-dialog__actions{display:grid;grid-template-columns:1fr 1fr;gap:.7rem}
.ss-mobile-color-dialog__actions button{min-height:54px;padding:.65rem 1rem!important;border:0!important;border-radius:999px!important;font-weight:950!important;text-transform:uppercase;cursor:pointer}
.ss-mobile-color-dialog__actions button:first-child{color:#071018!important;background:#56efdb!important}.ss-mobile-color-dialog__actions button:last-child{color:#071018!important;background:#70dfcf!important}
@media(max-width:430px){.ss-mobile-color-dialog__panel{padding:.9rem}.ss-mobile-color-dialog__rgb{gap:.35rem}.ss-mobile-color-dialog__rgb label{grid-template-columns:1fr;text-align:center}.ss-mobile-color-dialog__cmyk{gap:.3rem}.ss-mobile-color-dialog__actions{grid-template-columns:1fr}.ss-mobile-color-dialog__canvas{width:min(100%,270px)}}
@media(max-width:900px),(pointer:coarse){input.ss-mobile-color-input,input[data-ss-original-type="color"]{cursor:pointer!important;-webkit-user-select:none;user-select:none}}


/* v2.24 — CMYK mobile picker fields. */
.ss-mobile-color-dialog__rgb{display:none!important}
.ss-mobile-color-dialog__cmyk label{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:.35rem;color:#fff;font-weight:900}
.ss-mobile-color-dialog__cmyk input{width:100%;min-width:0;min-height:48px;padding:.5rem;color:#fff;background:#0b0e28;border:1px solid rgba(101,241,220,.3);border-radius:12px;text-align:center;font-weight:800}
.ss-mobile-color-dialog__cmyk output{display:none!important}
@media(max-width:430px){.ss-mobile-color-dialog__cmyk label{grid-template-columns:1fr;text-align:center;font-size:.74rem}}

/* v2.24 keep branded logo artwork at full 100% brightness. */
.site-branding img,.site-branding .custom-logo{opacity:1!important;filter:brightness(1)!important}
