/*
Theme Name: Steady Pushin 2026
Theme URI: https://steadypushin.com
Author: Steady Pushin
Author URI: https://steadypushin.com
Description: Custom WooCommerce storefront theme for Steady Pushin.
Version: 1.0.0
Text Domain: steady-pushin-2026
Requires at least: 6.0
Requires PHP: 7.4
*/

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Epilogue:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Epilogue', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --color-primary: #ffffff;
  --color-secondary: #333333;
  --color-cta: #f97316;
  --color-background: #050505;
  --color-text: #f0f0f0;
  --color-border: #222222;
  --color-ink: #0a0a0a;
  --color-smoke: #111111;
  --color-mist: #888888;
  --color-iron: #444444;
  --container-width: 1440px;
  --gutter-x: 1.5rem;
}

@media (min-width: 768px) {
  :root {
    --gutter-x: 3rem;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container-shell {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
}

.type-h0 {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 16rem);
  line-height: 0.75;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 900;
}

.type-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.type-h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.type-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.type-caption {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}

.type-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.6;
}


.border-editorial {
  border: 1px solid var(--color-border);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cta);
  color: #000000;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-border);
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #000000;
}

.sp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  height: 80px;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .sp-header {
    height: 96px;
  }
}

.sp-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   Mobile Menu (Universal Best Practices)
   ========================================= */

#mobile-menu {
  z-index: 10000;
  /* Display handled by Tailwind classes (flex) */
}

/* Staggered Nav Item Entrance */
/* Staggered Nav Item Entrance */
#mobile-menu nav li,
#mobile-menu nav a {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobile-menu[aria-hidden="false"] nav li,
#mobile-menu[aria-hidden="false"] nav a {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger Delays - Supporting both Li and A */
#mobile-menu[aria-hidden="false"] nav>*:nth-child(1) {
  transition-delay: 0.1s;
}

#mobile-menu[aria-hidden="false"] nav>*:nth-child(2) {
  transition-delay: 0.15s;
}

#mobile-menu[aria-hidden="false"] nav>*:nth-child(3) {
  transition-delay: 0.2s;
}

#mobile-menu[aria-hidden="false"] nav>*:nth-child(4) {
  transition-delay: 0.25s;
}

#mobile-menu[aria-hidden="false"] nav>*:nth-child(5) {
  transition-delay: 0.3s;
}

#mobile-menu[aria-hidden="false"] nav ul>li:nth-child(1) {
  transition-delay: 0.1s;
}

#mobile-menu[aria-hidden="false"] nav ul>li:nth-child(2) {
  transition-delay: 0.15s;
}

#mobile-menu[aria-hidden="false"] nav ul>li:nth-child(3) {
  transition-delay: 0.2s;
}

#mobile-menu[aria-hidden="false"] nav ul>li:nth-child(4) {
  transition-delay: 0.25s;
}

#mobile-menu[aria-hidden="false"] nav ul>li:nth-child(5) {
  transition-delay: 0.3s;
}

/* Desktop Navigation Hover Fixes */
#primary-menu a {
  position: relative;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 11px;
}



.sp-hero {
  position: relative;
  height: 120vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  border-bottom: 1px solid var(--color-border);
}

.sp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sp-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 128px;
}

.sp-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 18vw, 20rem);
  line-height: 0.7;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  position: relative;
  font-weight: 900;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.sp-hero-word {
  display: inline-block;
  letter-spacing: inherit;
}

.sp-hero-pushin {
  position: relative;
  display: inline-block;
  letter-spacing: inherit;
}

.sp-hero-i {
  display: inline-block;
  margin: 0 0.05em;
}

.sp-hero-cta-inline {
  position: absolute;
  right: 6vw;
  top: -1.2vw;
  z-index: 5;
}

.sp-hero-cta-inline a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  transition: transform 0.5s ease;
}

.sp-hero-cta-inline a:hover {
  transform: scale(1.06);
}

.sp-hero-pushin {
  letter-spacing: -0.05em;
}

.sp-hero-title-block {
  margin-top: 8vh;
  margin-bottom: 0;
}

.sp-hero-cta {
  position: absolute;
  bottom: 30vh;
  right: 15vw;
  z-index: 4;
}

.sp-hero-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  transition: transform 0.5s ease;
}

.sp-hero-cta a:hover {
  transform: scale(1.08);
}

.sp-marquee {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: #000000;
  overflow: hidden;
  position: relative;
  z-index: 6;
}

.sp-marquee-inner {
  display: flex;
  width: max-content;
}

.sp-marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 18s linear infinite;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.sp-grid {
  display: grid;
  gap: 24px;
}

.sp-card {
  border: 1px solid var(--color-border);
  background: var(--color-ink);
  padding: 12px;
}

.sp-card h3 {
  margin: 8px 0 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sp-card .price {
  color: var(--color-cta);
  font-size: 14px;
}

.product-card {
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.product-card:hover {
  border-color: #333333;
  transform: translateY(-4px);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-smoke);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.7s ease, filter 0.7s ease, opacity 0.7s ease;
  opacity: 0.9;
}

.product-card:hover .product-card-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

.product-card-ref {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 5;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-top: 12px;
}

.sp-section {
  padding: 96px 0;
  border-bottom: 1px solid var(--color-border);
}

.sp-page {
  padding: 96px 0 120px;
}

.sp-page-header {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.sp-page-kicker {
  color: var(--color-iron);
}

.sp-page-body {
  display: grid;
  gap: 32px;
}

.sp-contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.sp-contact-block {
  border: 1px solid var(--color-border);
  padding: 16px;
  background: var(--color-ink);
  margin-top: 16px;
}

.sp-legal {
  max-width: 880px;
}

.sp-muted {
  color: var(--color-mist);
}

.sp-footer {
  border-top: 1px solid var(--color-border);
  padding: 32px 0;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-mist);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .sp-hero-cta {
    position: static;
    margin: 32px auto 0;
  }

  .sp-hero-cta a {
    width: 120px;
    height: 120px;
  }

  .sp-hero-headline {
    flex-direction: column;
    gap: 0.2em;
    line-height: 0.85;
  }

  .sp-hero-cta-inline {
    position: static;
    margin-top: 16px;
  }
}

@media (max-width: 1024px) {
  .sp-hero-headline {
    font-size: clamp(4.5rem, 16vw, 14rem);
    gap: 1.2vw;
  }
}

@media (min-width: 768px) {
  .sp-hero-headline {
    font-size: clamp(6rem, 20vw, 20rem);
  }
}

.mt-auto {
  margin-top: auto;
}

.relative {
  position: relative;
}

.z-50 {
  z-index: 50;
}

.z-20 {
  z-index: 20;
}

.w-full {
  width: 100%;
}

.bg-black {
  background: #000000;
}

.border-t {
  border-top: 1px solid;
}

.border-y {
  border-top: 1px solid;
  border-bottom: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/10 {
  border-color: rgba(255, 255, 255, 0.1);
}

.overflow-hidden {
  overflow: hidden;
}

.absolute {
  position: absolute;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1 1 0%;
}

.items-center {
  align-items: center;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.px-4 {
  padding-left: 16px;
  padding-right: 16px;
}

.py-2 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.mx-6 {
  margin-left: 24px;
  margin-right: 24px;
}

.mx-4 {
  margin-left: 16px;
  margin-right: 16px;
}

.shrink-0 {
  flex-shrink: 0;
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

.tracking-\[0\.2em\] {
  letter-spacing: 0.2em;
}

.text-\[\#444\] {
  color: #444444;
}

.bg-\[\#222\] {
  background: #222222;
}

.h-\[1px\] {
  height: 1px;
}

.opacity-30 {
  opacity: 0.3;
}

.invert {
  filter: invert(1);
}

.animate-marquee {
  animation: marquee 20s linear infinite;
}

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

.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.edit-account {
  display: grid;
  gap: 24px;
}

.woocommerce .woocommerce-MyAccount-navigation {
  border: 1px solid var(--color-border);
  background: var(--color-ink);
  padding: 16px;
}

.woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.woocommerce .woocommerce-MyAccount-navigation a {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: var(--color-text);
}

.woocommerce .woocommerce-MyAccount-content {
  border: 1px solid var(--color-border);
  background: var(--color-ink);
  padding: 24px;
}

.woocommerce table.shop_table {
  border: 1px solid var(--color-border);
  border-collapse: collapse;
  width: 100%;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-bottom: 1px solid var(--color-border);
  padding: 16px;
}

.woocommerce .cart_totals {
  border: 1px solid var(--color-border);
  background: var(--color-ink);
  padding: 24px;
}

.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 10px 12px;
  width: 100%;
  font-family: var(--font-body);
}

.woocommerce .woocommerce-checkout-review-order,
.woocommerce .woocommerce-checkout-payment {
  border: 1px solid var(--color-border);
  background: var(--color-ink);
  padding: 24px;
}

.woocommerce .single_add_to_cart_button,
.woocommerce a.button,
.woocommerce button.button {
  background: var(--color-cta);
  color: #000000;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  cursor: pointer;
}

.woocommerce .quantity .qty {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 8px 10px;
  width: 70px;
}

/* =========================================
   WordPress Block Overrides / Resets
   ========================================= */

/* Force Groups and Columns to not add unwanted spacing/constraints */
.wp-block-group,
.wp-block-column,
.wp-block-columns {
  margin-top: 0;
  margin-bottom: 0;
  max-width: 100%;
}

/* Specifically target our layout containers to ensure full control */
.wp-block-group.sp-hero,
.wp-block-group.sp-section,
.wp-block-group.container-shell {
  max-width: none !important;
  margin: 0 !important;
}

/* Ensure flex columns behave as expected */
.wp-block-columns {
  display: flex;
  box-sizing: border-box;
}

/* Fix for "Constrained" layout creating narrow containers if theme.json is missing */
.wp-block-group.is-layout-constrained>* {
  margin-block-start: 0;
  margin-block-end: 0;
}

/* Ensure images don't have bottom margin */
.wp-block-image {
  margin-bottom: 0;
}

/* Reset generic block margins that might interfere */
p {
  margin-top: 0;
}

/* Fix for button alignment if WP interferes */
/* =========================================
   PREMIUM 'HIGH-END FASHION' WOOCOMMERCE
   ========================================= */

:root {
  --sp-input-height: 56px;
  --sp-border-color: #333;
  --sp-focus-color: #fff;
  --sp-error-color: #ff4444;
  --sp-card-bg: #0a0a0a;
  --sp-accent: var(--color-cta);
  /* Orange */
}

/* --- GLOBAL RESETS & TYPOGRAPHY --- */
.woocommerce,
.woocommerce-page {
  color: #F0F0F0;
  max-width: 1600px;
  /* Wider container */
  margin: 0 auto;
  padding: 0 40px 80px 40px;
  /* Prevent edge bleeding */
}

@media (max-width: 768px) {

  .woocommerce,
  .woocommerce-page {
    padding: 0 20px 60px 20px;
  }
}

.woocommerce a {
  color: var(--sp-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.woocommerce a:hover {
  color: #fff;
}

/* Headings */
.woocommerce h1,
.woocommerce h2,
.woocommerce h3,
.woocommerce h4,
.woocommerce h5,
.woocommerce h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
}

/* Notices / Alerts */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background-color: #111;
  color: #fff;
  border-top: 2px solid var(--sp-accent);
  padding: 16px 24px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px !important;
}

.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before {
  display: none;
}

.woocommerce-error {
  border-top-color: var(--sp-error-color);
}

/* --- BUTTONS (KILL THE PURPLE) --- */
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button,
.woocommerce .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  background: #fff !important;
  color: #000 !important;
  font-family: var(--font-mono) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-radius: 0 !important;
  padding: 16px 32px !important;
  font-size: 0.75rem !important;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none !important;
  line-height: 1;
}

.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
  background: var(--sp-accent) !important;
  color: #000 !important;
  /* Keep black text on orange */
  transform: translateY(-2px);
}

.woocommerce button.button:disabled,
.woocommerce button.button:disabled[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  background: #444 !important;
}

.woocommerce button.button.alt {
  background: var(--sp-accent) !important;
  color: #000 !important;
}

.woocommerce button.button.alt:hover {
  background: #fff !important;
}

/* --- INPUTS & FORMS --- */
.woocommerce form .form-row {
  padding: 0;
  margin-bottom: 24px;
  position: relative;
}

.woocommerce form .form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container .select2-selection--single {
  width: 100%;
  height: var(--sp-input-height);
  background: transparent;
  border: 1px solid var(--sp-border-color);
  color: #fff;
  padding: 0 16px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.2s ease;
  border-radius: 0;
  box-shadow: none;
  line-height: var(--sp-input-height);
}

.woocommerce form .form-row textarea {
  height: 120px;
  padding: 16px;
  line-height: 1.5;
}

/* Focus */
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.select2-container--open .select2-selection--single {
  border-color: #fff;
  background: #050505;
  outline: none;
}

/* Select2 Override */
.woocommerce .select2-container .select2-selection--single {
  height: var(--sp-input-height);
  display: flex;
  align-items: center;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  padding-left: 0;
}

.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: var(--sp-input-height);
  top: 0;
}

.select2-dropdown {
  background-color: #111;
  border: 1px solid #333;
  color: #fff;
}

/* --- CART PAGE (Modern Cards) --- */
.woocommerce-cart .woocommerce {
  display: grid;
  gap: 80px;
  /* Increase gap between items and summary */
}

@media (min-width: 1024px) {
  .woocommerce-cart .woocommerce {
    grid-template-columns: 2fr 1fr;
    /* Wider product area */
    align-items: start;
  }
}

/* Hide Table Header */
.woocommerce-cart table.shop_table {
  border: none;
}

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

/* Row properties -> Nike/App Style List */
.woocommerce-cart table.shop_table tbody tr.cart_item {
  display: grid;
  grid-template-areas:
    "thumb title remove"
    "thumb meta remove"
    "thumb quantity price";
  grid-template-columns: 140px 1fr auto;
  /* Larger Thumb for Impact */
  gap: 24px;
  background: transparent;
  border-bottom: 1px solid #222;
  padding: 40px 0;
  /* More spacing */
  margin-bottom: 0;
  position: relative;
  align-items: start;
}

.woocommerce-cart table.shop_table tbody tr.cart_item:first-child {
  border-top: 1px solid #222;
}

/* Grid Area Assignments */
.woocommerce-cart td.product-thumbnail {
  grid-area: thumb;
  display: block;
  width: 100%;
  padding: 0 !important;
  border: none !important;
}

.woocommerce-cart td.product-name {
  grid-area: title;
  display: block;
  padding: 0 !important;
  border: none !important;
}

.woocommerce-cart td.product-remove {
  grid-area: remove;
  display: block;
  padding: 0 !important;
  border: none !important;
  text-align: right;
}

.woocommerce-cart td.product-quantity {
  grid-area: quantity;
  display: block;
  padding: 0 !important;
  border: none !important;
}

.woocommerce-cart td.product-price {
  display: none;
}

.woocommerce-cart td.product-subtotal {
  grid-area: price;
  display: block;
  padding: 0 !important;
  border: none !important;
  text-align: right;
  align-self: flex-end;
}

/* Thumb (App Style) */
.woocommerce-cart td.product-thumbnail img {
  width: 100%;
  height: 180px;
  /* Taller editorial look */
  object-fit: cover;
  border-radius: 4px;
  /* Slight rounding like PS5 UI */
  background: #111;
}

/* Title */
.woocommerce-cart td.product-name a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
  display: block;
  margin-bottom: 8px;
}

/* Meta Data */
.woocommerce-cart td.product-name dl.variation {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.woocommerce-cart td.product-name dl.variation dt {
  font-family: var(--font-mono);
  color: #888;
  font-weight: normal;
  float: left;
  margin-right: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.woocommerce-cart td.product-name dl.variation dd {
  font-family: var(--font-mono);
  color: #ccc;
  margin: 0;
  font-size: 0.75rem;
}

/* Quantity Input (Pill Style) */
.woocommerce .quantity .qty {
  width: 60px;
  height: 40px;
  background: #111;
  /* Dark fill */
  color: #fff;
  border: 1px solid #333;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  border-radius: 4px;
  /* Subtle rounding */
  transition: all 0.2s;
}

.woocommerce .quantity .qty:focus {
  border-color: #fff;
  background: #222;
}

/* Subtotal */
.woocommerce-cart td.product-subtotal {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
}

/* Remove Icon (Circle Button) */
.woocommerce a.remove {
  color: #888 !important;
  font-size: 0.9rem;
  background: #111 !important;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 50%;
  /* Circle */
  border: 1px solid #333;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.woocommerce a.remove:hover {
  color: #fff !important;
  background: #333 !important;
  border-color: #fff;
}

/* Actions (Coupon) */
.woocommerce-cart td.actions {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  padding: 32px 0 !important;
  border: none !important;
  background: transparent !important;
  grid-column: 1 / -1;
}

.woocommerce-cart table.shop_table tr:last-child {
  display: block;
  background: transparent;
  border: none;
  padding: 0;
}

.coupon {
  display: flex;
  gap: 12px;
  flex: 1;
}

.coupon input.input-text {
  width: 100% !important;
  max-width: 300px;
  border: 1px solid #333 !important;
  background: #0a0a0a !important;
  /* Fill input */
  font-family: var(--font-mono);
  border-radius: 4px;
}

/* Cart Collaterals / Sticky Summary (Card Style) */
.cart-collaterals {
  width: 100%;
}

.cart_totals {
  background: #111;
  /* Card BG */
  border: 1px solid #222;
  padding: 32px;
  position: sticky;
  top: 140px;
  border-radius: 8px;
  /* Soft rounding */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.cart_totals h2 {
  font-size: 1.25rem;
  border-bottom: 2px solid #333;
  padding-bottom: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  color: #fff;
}

.cart_totals table.shop_table {
  display: table;
  border: none;
  width: 100%;
}

.cart_totals table.shop_table th {
  text-align: left;
  padding: 16px 0;
  color: #888;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: normal;
  border-bottom: 1px solid #222;
}

.cart_totals table.shop_table td {
  text-align: right;
  padding: 16px 0;
  color: #fff;
  border-bottom: 1px solid #222;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
  border-bottom: none;
  padding-top: 24px;
  font-size: 1.5rem;
  color: #fff;
}

.wc-proceed-to-checkout {
  margin-top: 32px;
}

.wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  text-align: center;
  padding: 24px !important;
  font-size: 1.1rem !important;
  display: block;
  background: #fff !important;
  color: #000 !important;
  border-radius: 4px;
  /* Subtle rounding */
  font-weight: 800 !important;
}

.wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--sp-accent) !important;
}


/* --- CHECKOUT PAGE (App-like Grid) --- */

.sp-checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}

@media (min-width: 1024px) {
  .sp-checkout-grid {
    grid-template-columns: 1.8fr 1fr;
    align-items: start;
  }
}

/* Progress Indicator */
.sp-checkout-progress {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #666;
  border-bottom: 1px solid #222;
  padding-bottom: 24px;
}

.sp-checkout-progress .step.active {
  color: #fff;
  border-bottom: 2px solid var(--sp-accent);
  /* Active indicator */
  margin-bottom: -25px;
  /* Pull down to overlap border */
  padding-bottom: 22px;
}

.sp-checkout-progress .separator {
  color: #222;
}

/* Forms (Left Col) */
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3 {
  font-size: 1.5rem !important;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  color: #fff;
}

/* Receipt Module (Floating Card) */
.sp-sticky-summary {
  position: sticky;
  top: 140px;
}

#order_review {
  background: #111;
  /* Card BG */
  border: 1px solid #222;
  padding: 32px;
  border-radius: 8px;
  /* Soft rounding */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

#order_review_heading {
  display: none;
}

/* Receipt Header */
#order_review:before {
  content: 'SUMMARY';
  display: block;
  padding: 0 0 24px 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #fff;
  border-bottom: 1px solid #333;
  text-align: left;
  letter-spacing: 0.05em;
}

/* Product Table */
#order_review table.shop_table {
  margin: 24px 0;
  border: none;
}

#order_review table.shop_table thead {
  display: none;
}

#order_review table.shop_table td {
  padding: 16px 0;
  border-bottom: 1px solid #222;
  vertical-align: middle;
}

#order_review .product-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #ddd;
}

#order_review .product-total {
  font-family: var(--font-heading);
  text-align: right;
  color: #fff;
}

/* Totals */
#order_review tfoot th {
  padding: 12px 0;
  color: #888;
  text-align: left;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 0.75rem;
  border-bottom: none;
}

#order_review tfoot td {
  padding: 12px 0;
  text-align: right;
  color: #fff;
  font-family: var(--font-heading);
  border-bottom: none;
}

#order_review tfoot tr.order-total {
  border-top: 1px solid #333;
}

#order_review tfoot tr.order-total th,
#order_review tfoot tr.order-total td {
  padding-top: 24px;
  padding-bottom: 0;
  font-size: 1.25rem;
  color: #fff;
}

/* Coupon Drawer (Integrated) */
.checkout_coupon {
  border-bottom: 1px solid #333;
  padding: 0 0 24px 0;
  margin-bottom: 24px;
}

/* Payment Methods (Modern Selectors) */
#payment {
  background: transparent !important;
  padding: 0;
  margin-top: 32px;
}

#payment ul.payment_methods {
  border-bottom: none;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#payment li.wc_payment_method {
  background: #0a0a0a !important;
  border: 1px solid #333;
  padding: 16px;
  border-radius: 4px;
  transition: all 0.2s;
}

#payment li.wc_payment_method:hover {
  border-color: #666;
}

#payment li.wc_payment_method input[type="radio"]:checked+label {
  color: #fff;
  font-weight: bold;
}

/* Active Payment Method */
#payment li.wc_payment_method.input-radio:checked {
  border-color: var(--sp-accent);
  background: #151515;
}

#payment div.payment_box {
  background: transparent !important;
  color: #999;
  padding: 12px 0 0 0;
  font-size: 0.8rem;
  margin: 0;
}

#payment div.payment_box:before {
  display: none;
}

#place_order {
  width: 100%;
  margin-top: 32px;
  background: #fff !important;
  color: #000 !important;
  padding: 24px !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  border-radius: 4px;
}

#place_order:hover {
  background: var(--sp-accent) !important;
}

/* Trust Badge */
.sp-trust-badge {
  text-align: center;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #444;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}