/*
Theme Name: NZ Kart Football
Theme URI: https://nzkart.co.nz
Author: NZ Kart
Author URI: https://nzkart.co.nz
Description: A dark, aggressive football-branded WooCommerce theme for NZ Kart. Black and acid-green with dynamic player carousels, paper-tear effects, and premium sports aesthetics.
Version: 2.0.2
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nzkart
Tags: e-commerce, woocommerce, dark, sports, football, custom-colors, custom-logo
*/

/* =============================================
   FONTS & ROOT TOKENS
   ============================================= */

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

:root {
  --lime:        #c8f600;
  --lime-dim:    #9bbc00;
  --lime-glow:   rgba(200,246,0,0.18);
  --black:       #080808;
  --black-2:     #0f0f0f;
  --black-card:  #131313;
  --black-border: rgba(200,246,0,0.12);
  --white:       #ffffff;
  --grey:        #888;
  --grey-light:  #b0b0b0;
  --font-display:'Barlow Condensed', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --font-stamp:  'Anton', sans-serif;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 50px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* =============================================
   SCROLL PROGRESS
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--lime);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px var(--lime);
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-border);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.site-branding { display: flex; align-items: center; flex-shrink: 0; }
.site-branding img { max-height: 48px; width: auto; }
.site-branding .custom-logo-link { display: flex; align-items: center; }

.site-title-fallback {
  font-family: var(--font-stamp);
  font-size: 28px;
  color: var(--lime);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-navigation ul {
  display: flex;
  gap: 36px;
}

.main-navigation a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-light);
  transition: color var(--transition);
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width var(--transition);
}

.main-navigation a:hover { color: var(--lime); }
.main-navigation a:hover::after { width: 100%; }

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

.nav-cart-link {
  position: relative;
  color: var(--grey-light);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
}

.nav-cart-link:hover { color: var(--lime); }

.cart-count {
  background: var(--lime);
  color: var(--black);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-lime {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}
.btn-lime:hover {
  background: transparent;
  color: var(--lime);
  box-shadow: 0 0 24px var(--lime-glow);
}

.btn-outline {
  background: transparent;
  color: var(--lime);
  border-color: var(--lime);
}
.btn-outline:hover {
  background: var(--lime);
  color: var(--black);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.btn-lg { padding: 18px 44px; font-size: 16px; }

/* =============================================
   MINI CART
   ============================================= */
.mini-cart-popup {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: var(--black-card);
  border-left: 1px solid var(--black-border);
  z-index: 9998;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mini-cart-popup.is-open { right: 0; }

.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--black-border);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mini-cart-close {
  background: none;
  border: none;
  color: var(--grey-light);
  font-size: 20px;
  cursor: pointer;
  transition: color var(--transition);
  padding: 4px;
}
.mini-cart-close:hover { color: var(--lime); }

.mini-cart-body { flex: 1; overflow-y: auto; padding: 20px 28px; display: flex; flex-direction: column; gap: 16px; }

.mini-cart-item { display: flex; gap: 16px; align-items: flex-start; padding: 16px; background: rgba(255,255,255,0.03); border: 1px solid var(--black-border); }
.mini-cart-item img { width: 72px; height: 72px; object-fit: cover; flex-shrink: 0; }
.mini-cart-item-name { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.mini-cart-item-qty, .mini-cart-item-price { font-size: 13px; color: var(--grey); }
.mini-cart-item-price { color: var(--lime); font-weight: 700; }

.mini-cart-total { display: flex; justify-content: space-between; padding: 20px 0; border-top: 1px solid var(--black-border); margin-top: 8px; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.mini-cart-btn { width: 100%; margin-top: 12px; }

.mini-cart-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 300px; text-align: center; gap: 12px; }
.mini-cart-empty p { color: var(--grey); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Large italic brand watermark */
.hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-watermark-text {
  font-family: var(--font-stamp);
  font-size: clamp(120px, 22vw, 320px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,246,0,0.06);
  text-transform: uppercase;
  letter-spacing: -10px;
  white-space: nowrap;
  user-select: none;
  animation: watermark-drift 20s ease-in-out infinite alternate;
}

@keyframes watermark-drift {
  from { transform: translateX(-3%) skewX(-2deg); }
  to   { transform: translateX(3%) skewX(2deg); }
}

/* Diagonal stripe accents */
.hero-stripe {
  position: absolute;
  width: 3px;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent, var(--lime), transparent);
  opacity: 0.3;
  animation: stripe-flicker 4s ease-in-out infinite;
}
.hero-stripe:nth-child(1) { left: 15%; animation-delay: 0s; }
.hero-stripe:nth-child(2) { left: 85%; animation-delay: 1.5s; }

@keyframes stripe-flicker {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.08; }
}

/* Corner glow */
.hero-glow-corner {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,246,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-corner--tl { top: -200px; left: -200px; }
.hero-glow-corner--br { bottom: -200px; right: -200px; animation-delay: 2s; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  min-height: 100vh;
}

/* Left — text content */
.hero-content { padding: 80px 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 0.7s ease forwards 0.2s;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--lime);
}

.hero-heading {
  font-family: var(--font-stamp);
  font-size: clamp(72px, 8vw, 120px);
  line-height: 0.9;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: reveal-up 0.8s ease forwards 0.4s;
}

.hero-heading em {
  font-style: normal;
  color: var(--lime);
  display: block;
  -webkit-text-stroke: 0;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--grey-light);
  max-width: 480px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 0.7s ease forwards 0.6s;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  animation: reveal-up 0.7s ease forwards 0.8s;
}

.hero-stats {
  display: flex;
  gap: 40px;
  opacity: 0;
  animation: reveal-up 0.7s ease forwards 1s;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-stamp);
  font-size: 36px;
  color: var(--lime);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* Right — visual side */
.hero-visual {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Brand name centered in header */
.hero-brand-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  pointer-events: none;
  z-index: 5;
}

.hero-visual-img {
  max-height: 75vh;
  width: auto;
  object-fit: contain;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 0 60px rgba(200,246,0,0.25));
  animation: float-product 6s ease-in-out infinite;
}

@keyframes float-product {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-18px); }
}

/* Orbit rings */
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,246,0,0.15);
  animation: spin-ring linear infinite;
}

.hero-ring--1 { width: 340px; height: 340px; animation-duration: 20s; }
.hero-ring--2 { width: 500px; height: 500px; animation-duration: 30s; animation-direction: reverse; border-style: dashed; }

@keyframes spin-ring { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-ring-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  margin-left: -4px;
  box-shadow: 0 0 12px var(--lime);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--grey), transparent);
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes reveal-up {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   PAPER TEAR DIVIDER
   ============================================= */
.paper-tear {
  position: relative;
  height: 80px;
  overflow: hidden;
  z-index: 10;
  margin: 0;
}

.paper-tear svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.paper-tear--dark { background: var(--black-2); }
.paper-tear--black { background: var(--black); }

/* =============================================
   SECTION GLOBALS
   ============================================= */
.section {
  padding: 100px 0;
  position: relative;
}

.section-dark { background: var(--black-2); }
.section-black { background: var(--black); }

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--lime);
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--lime);
}

.section-heading {
  font-family: var(--font-stamp);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -1px;
}

.section-heading em {
  font-style: normal;
  color: var(--lime);
}

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

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   BESTSELLERS (WooCommerce)
   ============================================= */
.bestsellers { padding: 100px 0; background: var(--black); }

.bestsellers-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Product card */
.product-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

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

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-card-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.product-card-body { padding: 24px; }

.product-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--white);
}

.product-card-excerpt { font-size: 13px; color: var(--grey); margin-bottom: 20px; line-height: 1.5; }

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card-price {
  font-family: var(--font-stamp);
  font-size: 28px;
  color: var(--lime);
}

.product-card-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--lime);
  padding: 10px 20px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: all var(--transition);
}

.product-card-cta:hover {
  background: var(--white);
}

/* =============================================
   FEATURES SECTION
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 60px;
}

.feature-card {
  background: var(--black-card);
  padding: 40px 32px;
  border: 1px solid var(--black-border);
  transition: border-color var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.feature-card:hover {
  background: rgba(200,246,0,0.03);
  border-color: rgba(200,246,0,0.3);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card.accent { background: var(--lime); }
.feature-card.accent .feat-title, 
.feature-card.accent .feat-text,
.feature-card.accent .feat-num { color: var(--black); }

.feat-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,246,0,0.1);
  border: 1px solid rgba(200,246,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--lime);
}

.feature-card.accent .feat-icon {
  background: rgba(0,0,0,0.15);
  border-color: rgba(0,0,0,0.2);
  color: var(--black);
}

.feat-num {
  font-family: var(--font-stamp);
  font-size: 48px;
  color: rgba(200,246,0,0.12);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.feat-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.feat-text { font-size: 14px; color: var(--grey-light); line-height: 1.65; }

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: var(--lime);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'SHOP';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-stamp);
  font-size: 220px;
  color: rgba(0,0,0,0.08);
  pointer-events: none;
  line-height: 1;
}

.cta-band-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-band-heading {
  font-family: var(--font-stamp);
  font-size: clamp(40px, 4vw, 64px);
  color: var(--black);
  line-height: 0.95;
  text-transform: uppercase;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  padding: 64px 0 32px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-logo img { max-height: 48px; margin-bottom: 20px; }

.footer-brand-text { font-size: 14px; color: var(--grey); line-height: 1.7; max-width: 280px; }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; color: var(--grey); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 13px; color: var(--grey); }

.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: all var(--transition);
  font-size: 14px;
}
.footer-social a:hover { border-color: var(--lime); color: var(--lime); }

/* =============================================
   WOOCOMMERCE — PRODUCT ARCHIVE
   ============================================= */
.wc-archive-hero {
  padding: 80px 0 60px;
  background: var(--black-2);
  border-bottom: 1px solid var(--black-border);
}

.wc-archive-hero .section-inner { text-align: center; }

.shop-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

/* WooCommerce product page */
.wc-single-wrap {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wc-single-gallery img {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--black-border);
}

.wc-single-title {
  font-family: var(--font-stamp);
  font-size: clamp(40px, 4vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.wc-single-price {
  font-family: var(--font-stamp);
  font-size: 48px;
  color: var(--lime);
  margin-bottom: 24px;
}

.wc-single-desc { font-size: 15px; color: var(--grey-light); line-height: 1.7; margin-bottom: 32px; }

/* Add-to-cart row */
.wc-atc-row { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.qty-wrap { display: flex; align-items: center; border: 1px solid var(--black-border); }
.qty-wrap button {
  width: 44px;
  height: 52px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
}
.qty-wrap button:hover { color: var(--lime); background: rgba(200,246,0,0.06); }
.qty-wrap input {
  width: 60px;
  height: 52px;
  background: none;
  border: none;
  border-left: 1px solid var(--black-border);
  border-right: 1px solid var(--black-border);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

/* Cart & checkout already inherit btn styles */
.btn-atc { flex: 1; }

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 32px; }
  .section-inner { padding: 0 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 0 32px; }
  .hero-visual { display: none; }
  .hero-content { padding: 120px 0 80px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .main-navigation { display: none; }
  .nav-inner { padding: 0 24px; gap: 16px; }
  .section { padding: 72px 0; }
  .section-inner { padding: 0 24px; }
  .hero-inner { padding: 0 24px; }
  .hero-heading { font-size: 64px; }
  .section-heading { font-size: 44px; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .wc-single-wrap { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .cta-band { padding: 60px 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { padding: 0 24px; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* Mini cart overlay */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mini-cart-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

/* WC breadcrumb */
.woocommerce-breadcrumb {
  font-size: 13px;
  color: var(--grey);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.woocommerce-breadcrumb a { color: var(--lime); }

/* WC pagination */
.woocommerce-pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
}
.woocommerce-pagination .page-numbers {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black-border);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--grey-light);
  transition: all var(--transition);
}
.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
  border-color: var(--lime);
  color: var(--lime);
  background: rgba(200,246,0,0.06);
}

/* =============================================
   FLAIR-STYLE HERO
   ============================================= */

.hero-flair {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #111418;
}

/* Background layer — set --hero-bg-image via inline style or child theme */
.hero-flair-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-bg-image, none);
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}

.hero-flair-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8,8,8,0.92) 0%,
    rgba(8,8,8,0.75) 40%,
    rgba(8,8,8,0.25) 70%,
    rgba(8,8,8,0.05) 100%
  );
}

/* Decorative blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  animation: blob-drift 12s ease-in-out infinite alternate;
}

.hero-blob--lime {
  width: 480px;
  height: 480px;
  background: rgba(200,246,0,0.18);
  top: -120px;
  right: 15%;
}

.hero-blob--blue {
  width: 360px;
  height: 360px;
  background: rgba(30,100,255,0.12);
  bottom: 60px;
  right: 35%;
  animation-delay: -6s;
}

@keyframes blob-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* Inner layout */
.hero-flair-inner {
  position: relative;
  z-index: 3;
  flex: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 60px 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* Stars badge */
.hero-stars-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: reveal-up 0.6s ease forwards 0.1s;
}

.hero-stars {
  color: var(--lime);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-stars-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
}

/* Main heading */
.hero-flair-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  opacity: 0;
  animation: reveal-up 0.8s ease forwards 0.3s;
}

.hero-flair-line1 {
  font-family: var(--font-stamp);
  font-size: clamp(64px, 8vw, 110px);
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.hero-flair-line2 {
  font-family: var(--font-stamp);
  font-size: clamp(72px, 10vw, 130px);
  line-height: 0.88;
  color: var(--lime);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -2px;
  /* Slight italic tilt like Flair */
  display: block;
  transform: skewX(-4deg);
  transform-origin: left;
}

.hero-flair-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 420px;
  opacity: 0;
  animation: reveal-up 0.7s ease forwards 0.5s;
}

/* CTA buttons */
.hero-flair-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: reveal-up 0.7s ease forwards 0.7s;
}

.btn-flair-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-stamp);
  font-size: 18px;
  letter-spacing: 3px;
  padding: 18px 48px;
  border-radius: 50px;
  border: 2px solid var(--lime);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-flair-primary:hover {
  background: transparent;
  color: var(--lime);
  box-shadow: 0 0 40px rgba(200,246,0,0.3);
}

.btn-flair-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 32px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-flair-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* Right visual */
.hero-flair-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

/* Giant background number */
.hero-flair-bignum {
  position: absolute;
  font-family: var(--font-stamp);
  font-size: clamp(200px, 28vw, 380px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(200,246,0,0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
  animation: bignum-pulse 6s ease-in-out infinite;
}

@keyframes bignum-pulse {
  0%,100% { opacity:0.8; transform: scale(1); }
  50%      { opacity:0.5; transform: scale(1.03); }
}

/* Floating logo */
.hero-flair-logo-float {
  position: relative;
  z-index: 2;
  max-height: 280px;
  max-width: 280px;
  width: auto;
  filter: drop-shadow(0 0 80px rgba(200,246,0,0.5));
  animation: float-product 6s ease-in-out infinite;
}

.hero-flair-logo-text {
  position: relative;
  z-index: 2;
  font-family: var(--font-stamp);
  font-size: clamp(72px, 10vw, 120px);
  color: var(--lime);
  line-height: 0.9;
  text-align: center;
  filter: drop-shadow(0 0 60px rgba(200,246,0,0.45));
  animation: float-product 6s ease-in-out infinite;
}

/* Orbit rings */
.hero-flair-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(200,246,0,0.12);
  animation: spin-ring 22s linear infinite;
  pointer-events: none;
}

.hero-flair-ring--2 {
  width: 500px;
  height: 500px;
  border-style: dashed;
  animation-duration: 35s;
  animation-direction: reverse;
  border-color: rgba(200,246,0,0.06);
}

/* Bottom tear */
.hero-tear {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  line-height: 0;
}

.hero-tear svg { display: block; width: 100%; height: 90px; }

/* =============================================
   PHOTO STRIP CAROUSEL
   ============================================= */

.photo-strip-section {
  background: var(--black);
  padding: 0;
  overflow: hidden;
  position: relative;
  /* Negative margin to pull tight under hero tear */
  margin-top: -2px;
}

.photo-strip-track-wrap {
  overflow: hidden;
  position: relative;
  /* Fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.photo-strip-track {
  display: flex;
  align-items: flex-end;
  gap: 0;
  /* Width = enough for 2 sets × 8 cards */
  width: max-content;
  animation: strip-scroll 30s linear infinite;
  will-change: transform;
}

.photo-strip-track:hover { animation-play-state: paused; }

@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual strip card */
.strip-card {
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}

.strip-card--tall  { width: 220px; height: 360px; }
.strip-card--short { width: 200px; height: 260px; }

/* The actual visible image box with torn edges */
.strip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* Torn paper look — irregular clip-path */
  clip-path: polygon(
    3%  0%,
    18% 2%,
    35% 0%,
    52% 3%,
    68% 1%,
    85% 2%,
    100% 0%,
    98% 20%,
    100% 42%,
    97% 65%,
    100% 85%,
    98% 100%,
    82% 97%,
    65% 100%,
    48% 98%,
    30% 100%,
    14% 97%,
    0%  100%,
    2%  78%,
    0%  55%,
    3%  32%,
    0%  12%
  );
  /* Small margin between cards via outline trick */
  outline: 6px solid var(--black);
  background: #1a1a1a;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.strip-card:hover .strip-card-inner {
  transform: scale(1.04) translateY(-8px);
  filter: brightness(1.15);
}

.strip-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.strip-card:hover .strip-card-inner img {
  transform: scale(1.08);
}

/* Placeholder state when no image available */
.strip-card--placeholder .strip-card-inner {
  background: #1a1a1a;
  border: 1px dashed rgba(200,246,0,0.2);
}

.strip-card-placeholder-label {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(200,246,0,0.3);
}

.strip-card--placeholder .strip-card-placeholder-label { display: flex; }
.strip-card--placeholder img { display: none; }

/* Alternate vertical alignment for visual rhythm */
.strip-card:nth-child(odd)  { align-self: flex-start; margin-top: 20px; }
.strip-card:nth-child(even) { align-self: flex-end;   margin-bottom: 20px; }

/* Strip bottom tear */
/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--black-border);
  border-radius: var(--r-md);
  background: var(--black-card);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover { border-color: rgba(200,246,0,0.28); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 24px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--black-border);
  color: var(--lime);
  transition: transform var(--transition), background var(--transition);
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--lime-glow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq-answer p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--grey-light);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .faq-question { padding: 18px; font-size: 15px; }
  .faq-answer p { padding: 0 18px 18px; }
}

/* ══ END FAQ ══ */

.strip-tear-bottom {
  position: relative;
  z-index: 2;
  background: var(--black);
  margin-top: -1px;
  line-height: 0;
}

.strip-tear-bottom svg { display: block; width: 100%; height: 70px; }

/* =============================================
   MOBILE ADJUSTMENTS FOR NEW SECTIONS
   ============================================= */

@media (max-width: 1024px) {
  .hero-flair-inner {
    grid-template-columns: 1fr;
    padding: 100px 32px 60px;
    gap: 0;
  }
  .hero-flair-visual { display: none; }
}

@media (max-width: 768px) {
  .hero-flair-inner { padding: 100px 24px 60px; }
  .hero-flair-line1 { font-size: 56px; }
  .hero-flair-line2 { font-size: 64px; }
  .strip-card--tall  { width: 160px; height: 280px; }
  .strip-card--short { width: 140px; height: 200px; }
}

/* =============================================
   HERO — STATS ROW
   ============================================= */
.hero-stats-row {
  display: flex;
  gap: 0;
  margin-top: 48px;
  opacity: 0;
  animation: reveal-up 0.7s ease forwards 0.9s;
}

.hero-stat-pill {
  display: flex;
  flex-direction: column;
  padding: 16px 28px 16px 0;
  border-right: 1px solid rgba(200,246,0,0.15);
  margin-right: 28px;
}
.hero-stat-pill:last-child { border-right: none; margin-right: 0; }

.hero-stat-num {
  font-family: var(--font-stamp);
  font-size: 36px;
  color: var(--lime);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* =============================================
   HERO — FLOATING BADGES
   ============================================= */
.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8,8,8,0.85);
  border: 1px solid var(--black-border);
  backdrop-filter: blur(12px);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  z-index: 6;
  border-radius: 4px;
  white-space: nowrap;
}

.hero-badge-float svg { color: var(--lime); flex-shrink: 0; }

.hero-badge-float--1 {
  bottom: 28%;
  left: -20px;
  animation: badge-float-1 4s ease-in-out infinite;
}
.hero-badge-float--2 {
  top: 28%;
  right: -10px;
  animation: badge-float-2 5s ease-in-out infinite 1s;
}

@keyframes badge-float-1 {
  0%,100% { transform: translateY(0px) rotate(-1deg); }
  50%      { transform: translateY(-8px) rotate(0deg); }
}
@keyframes badge-float-2 {
  0%,100% { transform: translateY(0px) rotate(1deg); }
  50%      { transform: translateY(8px) rotate(0deg); }
}

/* =============================================
   PRODUCT CARD — HOVER OVERLAY
   ============================================= */
.product-card-link { display: block; }

.product-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,246,0,0.15);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card-hover-overlay span {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.6);
  padding: 10px 24px;
}

.product-card:hover .product-card-hover-overlay { opacity: 1; }

/* No products message */
.no-products-msg {
  text-align: center;
  padding: 80px 0;
  color: var(--grey);
}
.no-products-msg p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =============================================
   STRIP — EMPTY SLOT
   ============================================= */
.strip-card-inner--empty {
  background: rgba(200,246,0,0.04);
  border: 1px dashed rgba(200,246,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-empty-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(200,246,0,0.3);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

/* =============================================
   MOBILE NAV DRAWER
   ============================================= */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav ul {
  padding: 32px 28px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav ul li a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav ul li a:hover {
  color: var(--lime);
  padding-left: 8px;
}

/* Nav CTA button sizing */
.nav-cta-btn {
  padding: 10px 24px !important;
  font-size: 13px !important;
}

/* =============================================
   CART COUNT HIDDEN STATE
   ============================================= */
.cart-count--hidden {
  display: none !important;
}

/* =============================================
   MOBILE UPDATES
   ============================================= */
@media (max-width: 900px) {
  .main-navigation { display: none; }
  .nav-hamburger   { display: flex; }
  .mobile-nav      { display: block; }
  .nav-cta-btn     { display: none; }
  .hero-stats-row  { gap: 0; flex-wrap: wrap; }
  .hero-stat-pill  { padding: 12px 20px 12px 0; margin-right: 20px; }
  .hero-stat-num   { font-size: 28px; }
}

@media (max-width: 600px) {
  .hero-flair-line1 { font-size: 52px; }
  .hero-flair-line2 { font-size: 60px; }
  .hero-badge-float { display: none; }
  .products-grid    { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card-name { font-size: 15px; }
  .product-card-body { padding: 16px; }
}

/* =============================================
   SCROLLED HEADER STATE
   ============================================= */
.site-header.is-scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.7);
  background: rgba(8,8,8,0.98);
}


/* NZKART quick fix: use uploaded image as hero background and remove rotating number 10 */
.hero-flair-bg {
  background-image: url('assets/hero-section-background.png') !important;
  background-size: cover !important;
  background-position: center center !important;
}

.hero-flair-bignum {
  display: none !important;
}


/* NZKART hero clean fix: show uploaded background properly and remove the whole center/right graphic */
.hero-flair {
  background-image:
    linear-gradient(105deg, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.55) 42%, rgba(8,8,8,0.12) 72%, rgba(8,8,8,0.04) 100%),
    url('assets/hero-section-background.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.hero-flair-bg {
  background-image: url('assets/hero-section-background.png') !important;
  background-size: cover !important;
  background-position: center center !important;
  opacity: 1 !important;
}

.hero-flair-bg-overlay {
  background: linear-gradient(105deg, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.55) 42%, rgba(8,8,8,0.12) 72%, rgba(8,8,8,0.04) 100%) !important;
}

.hero-flair-inner {
  grid-template-columns: minmax(0, 560px) 1fr !important;
}

.hero-flair-visual,
.hero-flair-bignum,
.hero-flair-logo-float,
.hero-flair-logo-text,
.hero-flair-ring,
.hero-badge-float,
.hero-blob {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
