/*
Theme Name: Sticker My Ass
Theme URI: https://sticker-myass.higgsfield.app
Author: Sticker My Ass
Author URI: https://sticker-myass.higgsfield.app
Description: Underground edgy cartoon sticker shop theme. Comic grunge pop-art styling (used, worn, mis-registered, halftone, ink splatter) with full WooCommerce support. The shop is self-contained: cart, checkout and product pages are built in. No external marketplaces.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: stickermyass
Tags: e-commerce, custom-colors, custom-menu, featured-images, wide-blocks, block-styles
WC requires at least: 6.0
WC tested up to: 9.4
*/

/* ============ base ============ */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Archivo", system-ui, sans-serif;
  background-color: #f4efe0;
  color: #16130f;
  overflow-x: hidden;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
}
h1, h2, h3, h4 {
  margin: 0;
}
p {
  margin: 0 0 1em;
}

/* ============ comic lettering ============ */
.comic {
  font-family: "Bangers", "Archivo Black", system-ui, sans-serif;
  letter-spacing: 0.01em;
}
.marker {
  font-family: "Permanent Marker", cursive, system-ui;
}
.pop {
  color: #fff;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.045em #16130f;
  text-shadow: 0.045em 0.06em 0 #16130f;
}
.pop-red {
  color: #e0342b;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.045em #16130f;
  text-shadow: 0.045em 0.06em 0 #16130f;
}
.pop-sun {
  color: #ffb400;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.045em #16130f;
  text-shadow: 0.045em 0.06em 0 #16130f;
}
.pop-pink {
  color: #ff3ea5;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.045em #16130f;
  text-shadow: 0.045em 0.06em 0 #16130f;
}
.pop-cobalt {
  color: #2b3fea;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.045em #16130f;
  text-shadow: 0.045em 0.06em 0 #16130f;
}
.slip {
  text-shadow:
    0.055em 0 0 rgba(255, 62, 165, 0.55),
    -0.055em 0.02em 0 rgba(70, 230, 59, 0.45),
    0.03em -0.02em 0 rgba(43, 63, 234, 0.5);
}

/* ============ halftone & grunge ============ */
.halftone {
  background-image: radial-gradient(circle, rgba(22, 19, 15, 0.28) 1.1px, transparent 1.5px);
  background-size: 7px 7px;
}
.halftone-pink {
  background-image: radial-gradient(circle, rgba(255, 62, 165, 0.5) 1.1px, transparent 1.5px);
  background-size: 7px 7px;
}
.halftone-cobalt {
  background-image: radial-gradient(circle, rgba(43, 63, 234, 0.55) 1.1px, transparent 1.5px);
  background-size: 7px 7px;
}
.halftone-white {
  background-image: radial-gradient(circle, rgba(244, 239, 224, 0.85) 1.2px, transparent 1.6px);
  background-size: 6px 6px;
}

/* ============ comic chrome ============ */
.cabl {
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
}
.tape {
  background: repeating-linear-gradient(90deg, rgba(255, 62, 165, 0.65) 0 14px, rgba(43, 63, 234, 0.55) 14px 28px, rgba(255, 180, 0, 0.6) 28px 42px);
  box-shadow: 0 2px 4px rgba(22, 19, 15, 0.25);
}
.burst {
  clip-path: polygon(50% 2%, 56% 16%, 68% 6%, 70% 20%, 84% 12%, 79% 26%, 95% 23%, 84% 35%, 99% 40%, 87% 46%, 98% 55%, 84% 58%, 94% 70%, 80% 68%, 86% 82%, 72% 77%, 73% 91%, 62% 81%, 58% 94%, 51% 84%, 44% 97%, 40% 84%, 32% 94%, 28% 80%, 18% 88%, 20% 72%, 9% 78%, 14% 66%, 3% 64%, 12% 55%, 2% 48%, 14% 43%, 4% 37%, 16% 33%, 7% 24%, 20% 23%, 12% 13%, 27% 16%, 28% 4%, 42% 13%);
}
.dotted {
  border: 4px solid #16130f;
  border-radius: 999px;
}

/* ============ marquee ============ */
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 24px;
  font-family: "Bangers", sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============ flash-live banner (CSS animation) ============ */
@keyframes komikshake {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(0, -1.4px) rotate(-0.18deg); }
  40% { transform: translate(0.6px, 0.9px) rotate(0.14deg); }
  60% { transform: translate(-0.6px, -0.6px) rotate(-0.1deg); }
  80% { transform: translate(0.4px, 1.1px) rotate(0.2deg); }
}
.flash-banner {
  animation: komikshake 0.9s steps(4, end) infinite;
  transform-origin: 50% 40%;
}
@keyframes halftonepulse {
  0%, 100% { opacity: 0.14; }
  50% { opacity: 0.45; }
}
.halftone-sheen {
  animation: halftonepulse 1.5s ease-in-out infinite;
}
@keyframes popword {
  0%, 100% { transform: translateY(0) rotate(-5deg) scale(1); }
  50% { transform: translateY(-8px) rotate(5deg) scale(1.06); }
}
.pop-sfx {
  display: inline-block;
  animation: popword 0.85s ease-in-out infinite;
  will-change: transform;
}
@keyframes flashword {
  0%, 12%, 100% { transform: scale(0.4); opacity: 0; }
  26%, 72% { transform: scale(1.1); opacity: 1; }
  88% { transform: scale(0.92); opacity: 0.8; }
}
.flash-sfx {
  animation: flashword 1.5s ease-in-out infinite;
}

/* ============ entrance ============ */
@keyframes rise {
  from { transform: translateY(18px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.rise { animation: rise 0.6s ease-out both; }
.rise-1 { animation-delay: 0.08s; }
.rise-2 { animation-delay: 0.16s; }
.rise-3 { animation-delay: 0.24s; }

/* ============ header / nav ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #f4efe0;
  border-bottom: 4px solid #16130f;
}
.sma-ticker {
  overflow: hidden;
  background: #e0342b;
  border-bottom: 4px solid #16130f;
  color: #f4efe0;
}
.sma-nav-wrap {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
}
.sma-logo {
  font-family: "Bangers", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.sma-logo .pop-red { display: inline; }
.sma-nav {
  display: none;
  gap: 1.75rem;
}
@media (min-width: 768px) {
  .sma-nav { display: flex; }
}
.sma-nav a {
	font-family: "Bangers", sans-serif;
	font-size: 1.25rem;
	letter-spacing: 0.03em;
	text-decoration: none;
	color: #16130f;
}
.sma-nav ul {
	display: flex;
	gap: 1.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.sma-nav li {
	margin: 0;
	padding: 0;
}
.grime-link {
  position: relative;
  color: #16130f;
}
.grime-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.15em;
  height: 0.28em;
  width: 100%;
  background: rgba(255, 62, 165, 0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.grime-link:hover::after,
.grime-link:focus-visible::after { transform: scaleX(1); }
.grime-link:hover {
  text-shadow: 0.045em 0 0 rgba(255, 62, 165, 0.85), -0.045em 0 0 rgba(43, 63, 234, 0.85);
}
.sma-cart-btn {
  display: inline-block;
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
  background: #ffb400;
  padding: 0.5rem 1rem;
  font-family: "Bangers", sans-serif;
  font-size: 1.3rem;
  text-decoration: none;
  color: #16130f;
  transition: transform 0.16s ease;
}
.sma-cart-btn:hover { transform: rotate(-2deg); }
.sma-cart-btn .count {
  display: inline-block;
  min-width: 1.6em;
  margin-left: 0.4em;
  border-radius: 999px;
  background: #e0342b;
  color: #fff;
  text-align: center;
  font-size: 0.9em;
}
.sma-mobile-rail {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  border-top: 4px solid #16130f;
  padding: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .sma-mobile-rail { display: none; }
}
.sma-mobile-rail a {
  flex-shrink: 0;
  background: #ff3ea5;
  padding: 0.3rem 0.8rem;
  font-family: "Bangers", sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  color: #16130f;
  clip-path: polygon(50% 2%, 56% 14%, 68% 6%, 70% 20%, 84% 12%, 79% 26%, 95% 23%, 84% 35%, 99% 40%, 87% 46%, 98% 55%, 84% 62%, 94% 70%, 80% 68%, 86% 82%, 72% 77%, 73% 91%, 62% 81%, 58% 94%, 51% 84%, 44% 97%, 40% 84%, 32% 94%, 28% 80%, 18% 88%, 20% 72%, 9% 78%, 14% 66%, 3% 64%, 12% 55%, 2% 48%, 14% 43%, 4% 37%, 16% 33%, 7% 24%, 20% 23%, 12% 13%, 27% 16%, 28% 4%, 42% 13%);
}
.sma-mobile-rail .rail-all { background: #ffb400; }

/* ============ hero ============ */
.sma-hero {
  position: relative;
  border-bottom: 8px solid #16130f;
}
.sma-hero-media {
  position: relative;
  overflow: hidden;
}
.sma-hero-media img {
  display: block;
  width: 100%;
  height: 62vh;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 640px) {
  .sma-hero-media img { height: 70vh; }
}
.sma-hero-overlay {
  position: absolute;
  inset-x: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  background: linear-gradient(to top, rgba(22, 19, 15, 0.8), rgba(22, 19, 15, 0.3), transparent);
  padding: 1.5rem 1rem 2.5rem;
}
@media (min-width: 640px) {
  .sma-hero-overlay { padding: 2.5rem 1rem 3rem; }
}
.sma-hero-title {
  font-family: "Bangers", sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #fff;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.045em #16130f;
  text-shadow: 0.045em 0.06em 0 #16130f;
}
.sma-hero-tag {
  font-family: "Permanent Marker", cursive;
  font-size: 1.15rem;
  color: #f4efe0;
}
.peel-one {
  position: relative;
  display: inline-block;
  color: #fff;
  overflow: hidden;
  transition: color 0.25s ease, transform 0.15s ease;
}
.peel-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #16130f;
  transform: translateY(102%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.peel-one:hover::before { transform: translateY(0); }
.peel-one:hover { color: #ffb400; transform: translateY(-2px) rotate(-1deg); }
.peel-one:active { transform: scale(0.98); }

/* ============ sections ============ */
.sma-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.sma-section {
  padding: 3.5rem 1rem;
}
@media (min-width: 640px) {
  .sma-section { padding: 4rem 1.5rem; }
}
.sma-section-cobalt { background: #2b3fea; }
.sma-section-paper-deep { background: #e4d8ba; }
.sma-section-ink { background: #16130f; color: #f4efe0; }
.sma-section-blood { background: #e0342b; color: #f4efe0; }
.sma-h2 {
  font-family: "Bangers", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
}
.sma-blurb {
  font-family: "Permanent Marker", cursive;
  font-size: 1.125rem;
  color: #3a342b;
}
.sma-subcopy { color: #3a342b; line-height: 1.7; }
.sma-section-blood .sma-blurb,
.sma-section-ink .sma-blurb { color: rgba(244, 239, 224, 0.85); }

/* category chips */
.sma-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .sma-cat-grid { grid-template-columns: repeat(4, 1fr); }
}
.sma-cat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 150px;
  padding: 1.2rem;
  text-align: center;
  background: #f4efe0;
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
  text-decoration: none;
  clip-path: polygon(50% 2%, 56% 16%, 68% 6%, 70% 20%, 84% 12%, 79% 26%, 95% 23%, 84% 35%, 99% 40%, 87% 46%, 98% 55%, 84% 58%, 94% 70%, 80% 68%, 86% 82%, 72% 77%, 73% 91%, 62% 81%, 58% 94%, 51% 84%, 44% 97%, 40% 84%, 32% 94%, 28% 80%, 18% 88%, 20% 72%, 9% 78%, 14% 66%, 3% 64%, 12% 55%, 2% 48%, 14% 43%, 4% 37%, 16% 33%, 7% 24%, 20% 23%, 12% 13%, 27% 16%, 28% 4%, 42% 13%);
  transition: transform 0.15s ease;
}
.sma-cat-chip:hover { transform: rotate(-3deg) scale(1.06); }
.sma-cat-chip img { width: 70px; height: 70px; object-fit: contain; }
.sma-cat-chip .name {
  font-family: "Bangers", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.05;
}

/* product cards + grid */
.sma-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .sma-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .sma-grid { grid-template-columns: repeat(4, 1fr); }
}
.sma-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.sma-card .art {
  position: relative;
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
  background: #f4efe0;
  padding: 0.9rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sma-card:hover .art {
  transform: rotate(-2.5deg) translateY(-4px);
  box-shadow: 0.32em 0.36em 0 #16130f, 0 0 0 6px rgba(255, 62, 165, 0.25);
}
.sma-card .art img {
  display: block;
  width: 100%;
  object-fit: contain;
}
.sma-card .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.sma-card .name {
  font-family: "Bangers", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  text-transform: uppercase;
}
.sma-card .tagline {
  font-family: "Permanent Marker", cursive;
  font-size: 0.875rem;
  color: #3a342b;
  margin: 0;
}
.sma-card .price {
  flex-shrink: 0;
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
  background: #f4efe0;
  padding: 0.25rem 0.5rem;
  font-family: "Bangers", sans-serif;
  font-size: 1.1rem;
}

/* how it peels */
.sma-steps {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .sma-steps { grid-template-columns: repeat(3, 1fr); }
}
.sma-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.28em 0.3em 0 #16130f;
  background: #ffb400;
  font-family: "Bangers", sans-serif;
  font-size: 1.5rem;
  color: #fff;
}

/* ============ bespoke CTAs ============ */
.ticket {
  position: relative;
  display: inline-block;
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
  background: #ffb400;
  padding: 0.9rem 2rem;
  font-family: "Bangers", sans-serif;
  font-size: 1.5rem;
  text-decoration: none;
  color: #16130f;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.ticket:hover { transform: skewX(-4deg) translateY(-2px); box-shadow: 0.3em 0.34em 0 #e0342b; }
.ticket:active { transform: skewX(-4deg) scale(0.97); }
.ticket-white { background: #f4efe0; }
.ticket-pink { background: #ff3ea5; }
.ticket-slime { background: #46e63b; }
.stamp {
  display: inline-block;
  border: 4px solid #e0342b;
  background: #f4efe0;
  padding: 0.35rem 1rem;
  font-family: "Bangers", sans-serif;
  font-size: 1.15rem;
  color: #16130f;
  text-decoration: none;
  transition: transform 0.15s ease;
}
.stamp:hover { transform: rotate(-3deg) scale(1.05); }

/* ============ footer ============ */
.sma-footer {
  background: #16130f;
  color: #f4efe0;
}
.sma-footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0;
}
@media (min-width: 900px) {
  .sma-footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.sma-footer h4 {
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  color: #ff3ea5;
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
}
.sma-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sma-footer li { margin-bottom: 0.5rem; }
.sma-footer a {
  color: rgba(244, 239, 224, 0.85);
  text-decoration: none;
  transition: color 0.15s ease;
}
.sma-footer a:hover { color: #ffb400; }
.sma-footer .footnote {
  border-top: 4px solid rgba(244, 239, 224, 0.2);
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

/* ============ WooCommerce ============ */
.woocommerce .sma-single {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem 0;
}
@media (min-width: 900px) {
  .woocommerce .sma-single { grid-template-columns: 1fr 1fr; }
}
.sma-single .art {
  position: relative;
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
  background: #f4efe0;
  padding: 1.5rem;
}
.sma-single .art img { width: 100%; object-fit: contain; }

.woocommerce .sma-title {
  font-family: "Bangers", sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: #2b3fea;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.04em #16130f;
  text-shadow: 0.045em 0.06em 0 #16130f;
}
.woocommerce .sma-tagline {
  font-family: "Permanent Marker", cursive;
  font-size: 1.35rem;
  color: #3a342b;
}
.woocommerce .price {
  font-family: "Bangers", sans-serif;
  font-size: 2.2rem;
  color: #e0342b;
}
.woocommerce .sma-specs {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}
.woocommerce .sma-specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.woocommerce .sma-specs li::before {
  content: "✔";
  color: #46e63b;
  font-weight: 700;
}
.woocommerce .sma-description { line-height: 1.75; }
.woocommerce .sma-description p { margin-bottom: 1em; }

/* buttons everywhere = comic chrome */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button,
.woocommerce #place_order {
  font-family: "Bangers", sans-serif !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 3px solid #16130f !important;
  box-shadow: 0.24em 0.26em 0 #16130f;
  border-radius: 0 !important;
  background: #ffb400 !important;
  color: #16130f !important;
  padding: 0.85em 1.75em !important;
  font-size: 1.2rem !important;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.woocommerce .single_add_to_cart_button { background: #ffb400 !important; }
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button:hover {
  transform: skewX(-4deg) translateY(-2px);
  box-shadow: 0.24em 0.28em 0 #e0342b;
  background: #ffb400 !important;
  color: #16130f !important;
}
.woocommerce .product_type_variable { background: #46e63b !important; }

/* quantity + cart form */
.woocommerce .quantity .qty {
  border: 3px solid #16130f;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  padding: 0.5rem;
}
.woocommerce form.cart { margin-top: 1.5rem; }

/* messages & notices */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top: 4px solid #46e63b !important;
  background: #f4efe0 !important;
  color: #16130f !important;
}
.woocommerce-error { border-top-color: #e0342b !important; }

/* gallery */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  border: clamp(2px, 0.4vw, 4px) solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
  background: #f4efe0;
}

/* shop toolbar */
.woocommerce-ordering select {
  border: 3px solid #16130f;
  background: #f4efe0;
  padding: 0.4rem;
  font-family: "Archivo", sans-serif;
  font-weight: 600;
}

/* archive header band */
.sma-shop-head {
  border-top: 4px solid #16130f;
  border-bottom: 4px solid #16130f;
}
.sma-shop-head .kicker {
  font-family: "Permanent Marker", cursive;
  font-size: 1.1rem;
  color: #3a342b;
}

/* breadcrumb */
.woocommerce-breadcrumb {
  font-family: "Permanent Marker", cursive;
  color: #3a342b;
  padding: 1.25rem 0 0;
  font-size: 0.95rem;
}

/* cart & checkout pages */
.woocommerce table.shop_table {
  border: 4px solid #16130f;
  background: #f4efe0;
  border-radius: 0;
}
.woocommerce table.shop_table th {
  font-family: "Bangers", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #16130f;
  color: #f4efe0;
}
.woocommerce table.shop_table td { border-top: 2px solid rgba(22, 19, 15, 0.2); }
.woocommerce table.shop_table img { max-width: 90px; border: 2px solid #16130f; }
.woocommerce .cart_totals {
  border: 4px solid #16130f;
  box-shadow: 0.3em 0.32em 0 #16130f;
  padding: 1.25rem;
  background: #f4efe0;
}
.woocommerce #payment,
.woocommerce #order_review {
  border: 4px solid #16130f;
  background: #f4efe0;
  border-radius: 0;
}
.woocommerce #payment div.payment_box { background: #e4d8ba; border-radius: 0; }
.woocommerce ul.woocommerce-order-overview {
  border: 4px solid #16130f;
  background: #f4efe0;
  padding: 1rem;
}
.woocommerce .woocommerce-order-details {
  border: 4px solid #16130f;
  background: #f4efe0;
  padding: 1.25rem;
}
.woocommerce .woocommerce-customer-details address {
  border: 4px solid #16130f;
  border-radius: 0;
  background: #f4efe0;
}

/* ============ responsive helpers ============ */
@media (max-width: 767px) {
  .sma-hide-mobile { display: none !important; }
}

/* ============ reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .flash-banner, .pop-sfx, .flash-sfx, .halftone-sheen { animation: none; }
  .rise { animation: none; opacity: 1; }
  .sma-card:hover .art { transform: none; box-shadow: 0.3em 0.32em 0 #16130f; }
  a, button, .ticket, .stamp { transition: none; }
}