/*
Theme Name: WhatsOnMK Shop
Theme URI: https://shop.whatsonmk.co.uk
Author: WhatsOnMK
Author URI: https://whatsonmk.co.uk
Description: Official WhatsOnMK merchandise store — bold MK-branded print-on-demand products. Powered by WooCommerce.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: whatsonmk-shop
Tags: woocommerce, ecommerce, custom-menu, featured-images, responsive-layout
WC requires at least: 8.0
WC tested up to: 9.0
*/

/* ============================================
   WHATSONMK SHOP — MASTER STYLESHEET
   Red · Black · White · MK Merch · Bold
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Barlow+Condensed:wght@400;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Brand Colours */
  --red:          #E8000D;
  --red-dark:     #B8000A;
  --red-light:    #FF1A24;
  --red-glow:     rgba(232, 0, 13, 0.18);
  --black:        #0A0A0A;
  --dark:         #1A1A1A;
  --mid:          #444444;
  --grey:         #888888;
  --light-grey:   #F2F2F0;
  --white:        #FFFFFF;
  --off-white:    #FAF9F7;

  /* Typography */
  --font-display:    'Bebas Neue', sans-serif;
  --font-condensed:  'Barlow Condensed', sans-serif;
  --font-body:       'Barlow', sans-serif;

  /* Layout */
  --max-width:    1280px;
  --section-pad:  5rem 2rem;
  --radius:       4px;
  --radius-lg:    8px;
  --radius-xl:    16px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.18);
  --shadow-red:   0 4px 24px rgba(232,0,13,0.28);
  --shadow-red-lg:0 8px 40px rgba(232,0,13,0.35);

  /* Motion */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --transition:   all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-h:     72px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; transition: var(--transition); }
ul,ol  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--black);
}

h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h4 { font-size: 1.4rem; }
h5 {
  font-size: 0.8rem;
  font-family: var(--font-condensed);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--mid);
}
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.2rem; font-weight: 400; color: var(--dark); line-height: 1.6; }

/* ============================================
   LAYOUT
   ============================================ */
.container        { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.container--narrow{ max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.container--wide  { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
section           { padding: var(--section-pad); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ============================================
   UTILITIES
   ============================================ */
.text-red    { color: var(--red); }
.text-white  { color: var(--white); }
.text-grey   { color: var(--grey); }
.text-center { text-align: center; }
.text-upper  { text-transform: uppercase; letter-spacing: 0.1em; }

.bg-white     { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-black     { background: var(--black); }
.bg-red       { background: var(--red); }
.bg-light     { background: var(--light-grey); }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1        { gap: 1rem; }
.gap-2        { gap: 2rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red-lg);
  color: var(--white);
}

.btn--black {
  background: var(--black);
  color: var(--white);
}
.btn--black:hover {
  background: var(--dark);
  transform: translateY(-2px);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn--outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn--outline-red:hover {
  background: var(--red);
  color: var(--white);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--lg { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.btn--sm { padding: 0.6rem 1.3rem; font-size: 0.8rem; }

/* ============================================
   TAGS & BADGES
   ============================================ */
.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.tag--red   { background: var(--red); color: var(--white); }
.tag--black { background: var(--black); color: var(--white); }
.tag--outline { border: 1.5px solid var(--red); color: var(--red); }

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 2px solid var(--red);
  height: var(--header-h);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.05em;
}
.logo-text-sub {
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}
.logo-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.main-nav a.active { color: var(--red); }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Cart Icon */
.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  background: rgba(255,255,255,0.08);
}
.cart-link:hover {
  background: var(--red);
  color: var(--white);
}
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--black);
}
.cart-count:empty { display: none; }

/* Back to main site link */
.back-to-site {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: var(--transition);
}
.back-to-site:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.back-to-site svg { flex-shrink: 0; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--black);
  border-bottom: 2px solid var(--red);
  z-index: 999;
  padding: 1rem 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition-slow);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 2rem;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--red); background: rgba(255,255,255,0.03); }

/* ============================================
   PROMO BAR
   ============================================ */
.promo-bar {
  background: var(--red);
  padding: 0.55rem 1rem;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.promo-bar a { color: var(--white); text-decoration: underline; }
.promo-bar a:hover { opacity: 0.8; }

/* ============================================
   HERO SECTION
   ============================================ */
.shop-hero {
  background: var(--black);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* MK geometric background pattern */
.shop-hero::before {
  content: 'MK';
  position: absolute;
  font-family: var(--font-display);
  font-size: 40vw;
  color: rgba(232,0,13,0.04);
  line-height: 1;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}

.shop-hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.shop-hero h1 {
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.shop-hero h1 .accent {
  color: var(--red);
  display: block;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Hero product mosaic */
.hero-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.hero-mosaic-item {
  background: var(--dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  transition: var(--transition-slow);
}
.hero-mosaic-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}
.hero-mosaic-item:hover { transform: scale(0.98); }
.hero-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.hero-mosaic-item:hover img { transform: scale(1.05); }
.hero-mosaic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.hero-mosaic-label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
.mosaic-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(232,0,13,0.3);
}

/* Hero stats strip */
.hero-stats {
  background: var(--red);
  padding: 1.2rem 2rem;
}
.hero-stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.25);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
}
.section-title { margin-bottom: 0; }
.section-header .view-all {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.section-header .view-all:hover { color: var(--red-dark); }

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-section {
  background: var(--white);
  padding: var(--section-pad);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--dark);
  cursor: pointer;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-md);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red-lg);
}

.cat-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
  filter: brightness(0.7);
}
.cat-card:hover .cat-card-image {
  transform: scale(1.06);
  filter: brightness(0.5);
}

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.4) 50%,
    transparent 100%
  );
  transition: var(--transition-slow);
}
.cat-card:hover .cat-card-overlay {
  background: linear-gradient(
    to top,
    rgba(232,0,13,0.85) 0%,
    rgba(0,0,0,0.5) 60%,
    transparent 100%
  );
}

.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}

.cat-card-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
  transition: var(--transition);
}
.cat-card:hover .cat-card-label { color: rgba(255,255,255,0.8); }

.cat-card-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cat-card-count {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

.cat-card-arrow {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.cat-card:hover .cat-card-arrow {
  opacity: 1;
  transform: translateX(0);
  background: var(--white);
  color: var(--black);
}

/* Placeholder category cards */
.cat-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 4rem;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-section {
  background: var(--off-white);
  padding: var(--section-pad);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  position: relative;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--light-grey);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}
.product-card:hover .product-card-image img { transform: scale(1.04); }

.product-card-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 2;
}

.product-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}
.product-card:hover .product-card-actions { transform: translateY(0); }
.product-card-actions .btn { flex: 1; justify-content: center; }

.product-card-body {
  padding: 1.25rem;
}

.product-card-cat {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.product-card-name {
  font-family: var(--font-condensed);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.product-card:hover .product-card-name { color: var(--red); }

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.price-current {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}
.price-old {
  font-size: 0.9rem;
  color: var(--grey);
  text-decoration: line-through;
}
.price-save {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
}

/* Swatch dots */
.product-swatches {
  display: flex;
  gap: 0.35rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}
.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.swatch:hover, .swatch.active {
  border-color: var(--black);
  transform: scale(1.2);
}
.swatch-more {
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--grey);
  display: flex;
  align-items: center;
}

/* ============================================
   BESTSELLER BANNER
   ============================================ */
.bestseller-banner {
  background: var(--black);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}
.bestseller-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(232,0,13,0.04) 0px,
    rgba(232,0,13,0.04) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
}
.bestseller-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.bestseller-text .section-eyebrow { color: var(--red); }
.bestseller-text h2 { color: var(--white); margin-bottom: 1.2rem; }
.bestseller-text p { color: rgba(255,255,255,0.65); margin-bottom: 2rem; }
.bestseller-image-wrap {
  position: relative;
}
.bestseller-product-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-red-lg);
}
.bestseller-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-red);
  animation: badge-spin 8s linear infinite;
}
.bestseller-badge .badge-top { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; }
.bestseller-badge .badge-main { font-size: 1.3rem; line-height: 1; }
@keyframes badge-spin {
  0%,100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  background: var(--white);
  border-top: 1px solid var(--light-grey);
  border-bottom: 1px solid var(--light-grey);
  padding: 2.5rem 2rem;
}
.features-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--red-glow);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.feature-text h4 {
  font-family: var(--font-condensed);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.feature-text p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   SCROLLING TICKER
   ============================================ */
.ticker-wrap {
  background: var(--red);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-block;
  animation: ticker 30s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  padding: 0 2.5rem;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   WHY MK MERCH SECTION
   ============================================ */
.why-section {
  background: var(--off-white);
  padding: var(--section-pad);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}
.why-visual {
  position: relative;
}
.why-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-accent-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--red);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-red);
  text-align: center;
}
.why-accent-box .big-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--white);
}
.why-accent-box .big-label {
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.why-content h2 { margin-bottom: 1.2rem; }
.why-content p { margin-bottom: 1.8rem; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.why-item-icon {
  width: 24px;
  height: 24px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  margin-top: 2px;
}
.why-item-text {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.02em;
}

/* ============================================
   POD PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--black);
  padding: var(--section-pad);
}
.process-section .section-eyebrow { color: var(--red); }
.process-section h2 { color: var(--white); margin-bottom: 0.5rem; }
.process-section .section-desc {
  color: rgba(255,255,255,0.55);
  max-width: 540px;
  margin: 0 auto 3rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 2px;
  background: rgba(255,255,255,0.1);
}
.process-step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px;
  height: 56px;
  background: var(--dark);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-num {
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.step-title {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background: var(--white);
  padding: var(--section-pad);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition-slow);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--red);
  line-height: 0.8;
  opacity: 0.3;
  position: absolute;
  top: 1.2rem;
  left: 1.5rem;
}
.testimonial-stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 1rem;
  color: var(--red);
}
.testimonial-text {
  font-size: 0.97rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
}
.testimonial-location {
  font-size: 0.78rem;
  color: var(--grey);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: var(--red);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.newsletter-section::before {
  content: 'MK';
  position: absolute;
  font-family: var(--font-display);
  font-size: 30vw;
  color: rgba(0,0,0,0.08);
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  line-height: 1;
}
.newsletter-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-inner h2 { color: var(--white); margin-bottom: 0.8rem; }
.newsletter-inner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.2);
}
.newsletter-btn {
  background: var(--white);
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.newsletter-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem 0;
  border-top: 2px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.footer-brand .footer-logo img { height: 40px; width: auto; }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--red);
  color: var(--white);
}
.footer-col h4 {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }
.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.payment-icon {
  height: 22px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 0.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 36px;
}

/* ============================================
   WOOCOMMERCE OVERRIDES
   ============================================ */

/* Shop page archive */
.woocommerce-page #primary { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }

.woocommerce-notices-wrapper { padding: 0 2rem; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
  border-top: 3px solid var(--red) !important;
  border-radius: var(--radius);
  background: var(--white) !important;
  color: var(--dark) !important;
  box-shadow: var(--shadow-sm) !important;
  font-family: var(--font-body) !important;
}
.woocommerce-message a.button,
.woocommerce-error a.button,
.woocommerce-info a.button {
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: var(--font-condensed) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius) !important;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey) !important;
  padding: 1.2rem 0 !important;
  background: none !important;
}
.woocommerce-breadcrumb a { color: var(--red) !important; }
.woocommerce-breadcrumb a:hover { color: var(--red-dark) !important; }

/* Shop toolbar */
.woocommerce-products-header { display: none; }
.shop-toolbar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
}
.woocommerce-result-count {
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 0.06em;
}
.woocommerce-ordering select {
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 0.5rem 0.9rem;
  color: var(--dark);
  background: var(--white);
  outline: none;
  cursor: pointer;
}
.woocommerce-ordering select:focus { border-color: var(--red); }

/* WC Product grid */
.woocommerce ul.products { display: grid !important; grid-template-columns: repeat(4,1fr) !important; gap: 1.5rem !important; }
.woocommerce ul.products li.product {
  background: var(--white) !important;
  border-radius: var(--radius-lg) !important;
  overflow: hidden !important;
  box-shadow: var(--shadow-sm) !important;
  transition: var(--transition-slow) !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product:hover { transform: translateY(-5px); box-shadow: var(--shadow-md) !important; }
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  margin: 0 !important;
  transition: var(--transition-slow);
}
.woocommerce ul.products li.product:hover a img { transform: scale(1.04); }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-condensed) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  padding: 1.2rem 1.2rem 0.5rem !important;
  transition: var(--transition) !important;
}
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title { color: var(--red) !important; }
.woocommerce ul.products li.product .price {
  font-family: var(--font-condensed) !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: var(--black) !important;
  padding: 0 1.2rem 0.5rem !important;
  display: block !important;
}
.woocommerce ul.products li.product .price del { color: var(--grey) !important; font-size: 0.9rem !important; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; color: var(--red) !important; }
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .add_to_cart_button {
  display: block !important;
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: var(--font-condensed) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  padding: 0.85rem !important;
  margin: 0.75rem 1.2rem 1.2rem !important;
  border-radius: var(--radius) !important;
  transition: var(--transition) !important;
  border: none !important;
}
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}
.woocommerce span.onsale {
  background: var(--red) !important;
  border-radius: 2px !important;
  font-family: var(--font-condensed) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  min-height: 0 !important;
  line-height: 1 !important;
  padding: 0.35rem 0.7rem !important;
  top: 0.75rem !important;
  left: 0.75rem !important;
}

/* Single Product */
.woocommerce div.product {
  padding: 3rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.woocommerce div.product div.images { border-radius: var(--radius-lg); overflow: hidden; }
.woocommerce div.product div.summary .product_title {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  color: var(--black) !important;
  margin-bottom: 0.5rem !important;
  line-height: 1.05 !important;
}
.woocommerce div.product div.summary .price {
  font-family: var(--font-condensed) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--black) !important;
}
.woocommerce div.product div.summary .price ins { text-decoration: none !important; color: var(--red) !important; }
.woocommerce div.product div.summary .price del { color: var(--grey) !important; font-size: 1.4rem !important; }

/* Add to cart button */
.woocommerce div.product form.cart .single_add_to_cart_button,
.woocommerce div.product .single_add_to_cart_button {
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: var(--font-condensed) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 1rem 2.5rem !important;
  border-radius: var(--radius) !important;
  border: none !important;
  box-shadow: var(--shadow-red) !important;
  transition: var(--transition) !important;
}
.woocommerce div.product form.cart .single_add_to_cart_button:hover {
  background: var(--red-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-red-lg) !important;
}
.woocommerce div.product form.cart div.quantity input.qty {
  border: 2px solid var(--light-grey) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-condensed) !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  text-align: center !important;
  color: var(--black) !important;
}
.woocommerce div.product form.cart div.quantity input.qty:focus { border-color: var(--red) !important; outline: none !important; }

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 2px solid var(--light-grey) !important;
  padding: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--font-condensed) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--grey) !important;
  padding: 0.8rem 1.5rem !important;
  display: block;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--red) !important;
  border-bottom-color: var(--red) !important;
}

/* Cart page */
.woocommerce .cart .button,
.woocommerce .cart-collaterals .button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: var(--red) !important;
  color: var(--white) !important;
  font-family: var(--font-condensed) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  border-radius: var(--radius) !important;
  border: none !important;
  padding: 0.85rem 2rem !important;
  transition: var(--transition) !important;
}
.woocommerce .cart .button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--red-dark) !important;
}
.woocommerce .coupon .button {
  background: var(--black) !important;
}

/* Checkout */
.woocommerce form .form-row label {
  font-family: var(--font-condensed) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--dark) !important;
}
.woocommerce form .form-row input,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  border: 1.5px solid var(--light-grey) !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-body) !important;
  font-size: 0.97rem !important;
  color: var(--dark) !important;
  background: var(--white) !important;
  transition: var(--transition) !important;
}
.woocommerce form .form-row input:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row textarea:focus {
  border-color: var(--red) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px var(--red-glow) !important;
}

/* ============================================
   SHOP PAGE LAYOUT
   ============================================ */
.shop-page-wrap {
  background: var(--off-white);
  padding: 3rem 2rem 5rem;
}
.shop-page-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Sidebar */
.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-widget-title {
  font-family: var(--font-condensed);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-widget-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light-grey);
}

/* WC widget overrides */
.widget_product_categories ul,
.widget_layered_nav ul { padding: 0 !important; }
.widget_product_categories ul li a,
.widget_layered_nav ul li a {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid);
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--light-grey);
  transition: var(--transition);
}
.widget_product_categories ul li a:hover,
.widget_layered_nav ul li a:hover { color: var(--red); }
.widget_product_categories ul li.current-cat > a { color: var(--red); font-weight: 700; }

/* Price filter */
.price_slider_wrapper .ui-slider {
  background: var(--light-grey) !important;
  height: 4px !important;
  border-radius: 2px !important;
  border: none !important;
}
.price_slider_wrapper .ui-slider-range {
  background: var(--red) !important;
}
.price_slider_wrapper .ui-slider-handle {
  background: var(--red) !important;
  border: 3px solid var(--white) !important;
  box-shadow: var(--shadow-red) !important;
  border-radius: 50% !important;
  width: 16px !important;
  height: 16px !important;
  top: -6px !important;
  cursor: pointer !important;
}
.woocommerce .price_slider_amount button {
  background: var(--black) !important;
  color: var(--white) !important;
  font-family: var(--font-condensed) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius) !important;
  border: none !important;
}

/* ============================================
   SHOP BANNER (top of archive page)
   ============================================ */
.shop-archive-banner {
  background: var(--black);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.shop-archive-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(232,0,13,0.03) 0px,
    rgba(232,0,13,0.03) 1px,
    transparent 1px,
    transparent 16px
  );
}
.shop-archive-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.shop-archive-banner h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.shop-archive-banner p { color: rgba(255,255,255,0.55); margin: 0; }

/* ============================================
   PAGINATION
   ============================================ */
.woocommerce-pagination ul {
  display: flex !important;
  gap: 0.5rem !important;
  justify-content: center !important;
  margin-top: 2rem !important;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: var(--radius) !important;
  font-family: var(--font-condensed) !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  background: var(--white) !important;
  color: var(--dark) !important;
  border: 1.5px solid var(--light-grey) !important;
  transition: var(--transition) !important;
}
.woocommerce-pagination ul li a:hover { background: var(--black) !important; color: var(--white) !important; border-color: var(--black) !important; }
.woocommerce-pagination ul li span.current { background: var(--red) !important; color: var(--white) !important; border-color: var(--red) !important; }

/* ============================================
   MINI CART / OFFCANVAS
   ============================================ */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-slow);
  backdrop-filter: blur(2px);
}
.mini-cart-overlay.open { opacity: 1; pointer-events: all; }

.mini-cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 90vw);
  background: var(--white);
  z-index: 1999;
  transform: translateX(100%);
  transition: var(--transition-slow);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}
.mini-cart-panel.open { transform: translateX(0); }

.mini-cart-header {
  background: var(--black);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-cart-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.mini-cart-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.mini-cart-close:hover { background: var(--red); }

.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}
.mini-cart-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--light-grey);
  background: var(--white);
}
.mini-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.mini-cart-total-label {
  font-family: var(--font-condensed);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}
.mini-cart-total-price {
  font-family: var(--font-condensed);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--black);
}
.mini-cart-buttons { display: flex; flex-direction: column; gap: 0.75rem; }
.mini-cart-buttons .btn { justify-content: center; }

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--light-grey) 25%, #e8e8e6 50%, var(--light-grey) 75%);
  background-size: 200% 100%;
  animation: skeleton-load 1.5s ease infinite;
  border-radius: var(--radius);
}
@keyframes skeleton-load {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(3,1fr) !important; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
  :root { --header-h: 64px; }
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: block; }
  .shop-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bestseller-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .shop-page-inner { grid-template-columns: 1fr; }
  .shop-sidebar { position: static; }
  .back-to-site span { display: none; }
  .hero-mosaic { max-width: 480px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.5rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
  .newsletter-form { flex-direction: column; }
  .shop-archive-banner-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats-inner { gap: 1.5rem; }
  .hero-stat-divider { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --section-pad: 3rem 1rem; }
  .container, .container--narrow, .container--wide { padding: 0 1rem; }
  .header-inner { padding: 0 1rem; }
  .shop-hero { padding: 4rem 1rem 3rem; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .products-grid { grid-template-columns: 1fr; }
  .woocommerce ul.products { grid-template-columns: repeat(1,1fr) !important; }
  .hero-mosaic { max-width: 100%; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.anim-fade-in   { animation: fadeIn 0.7s var(--ease-out) both; }
.anim-slide-in  { animation: slideInLeft 0.7s var(--ease-out) both; }
.anim-scale-in  { animation: scaleIn 0.5s var(--ease-out) both; }
