/*
Theme Name: NZ Kart
Theme URI: https://nzkart.co.nz
Author: NZ Kart
Author URI: https://nzkart.co.nz
Description: A dark, premium WooCommerce theme for NZ Kart — pet and outdoor products. Built for easy editing via the WordPress block editor and full WooCommerce integration.
Version: 1.0.0
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, minimal, one-column, two-columns, custom-colors, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, theme-options
*/

/* =============================================
   NZ KART THEME - MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,700;1,700&family=Dancing+Script:wght@700&display=swap');

:root {
  --color-bg:        #0a0a0f;
  --color-bg-2:      #0d0d14;
  --color-bg-card:   rgba(255,255,255,0.04);
  --color-border:    rgba(255,255,255,0.08);
  --color-blue:      #3b82f6;
  --color-white:     #ffffff;
  --color-muted:     #6b7280;
  --color-light:     #9ca3af;
  --color-green:     #22c55e;
  --font-sans:       'DM Sans', sans-serif;
  --font-serif:      'Playfair Display', serif;
  --radius-sm:       8px;
  --radius-md:       16px;
  --radius-lg:       24px;
  --radius-pill:     50px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* =============================================
   NAVIGATION
   ============================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
}

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

.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-icon {
  width: 32px;
  height: 32px;
  background: #f59e0b;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #000;
}

.site-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
}

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

.main-navigation a {
  color: var(--color-light);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.main-navigation a:hover { color: var(--color-white); }

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

.nav-cart-link {
  position: relative;
  color: var(--color-light);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

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

.cart-count {
  background: var(--color-blue);
  color: #fff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-bg);
}

.btn-white:hover {
  background: #e5e7eb;
  color: var(--color-bg);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.18);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
}

.btn-blue {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn-blue:hover { background: #2563eb; }

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
  display: grid;
  grid-template-columns: 5fr 7fr;
  min-height: calc(100vh - 68px);
  position: relative;
  overflow: hidden;
}

.hero-content {
  padding: 100px 40px 100px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 580px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  flex-shrink: 0;
}

.hero-heading {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero-heading em {
  font-family: 'Dancing Script', cursive;
  font-style: normal;
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1.15em;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.1;
}

.hero-description {
  color: var(--color-light);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 430px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.hero-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  padding: 24px 28px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  max-width: 460px;
}

.hero-feat {
  color: var(--color-blue);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-feat-num { color: rgba(255,255,255,0.3); font-size: 11px; }

/* ---- Hero corner glows ---- */
.hero-glow-blue {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.28) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-green {
  position: absolute;
  bottom: -140px;
  left: -100px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(16,185,129,0.22) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-visual {
  background: radial-gradient(ellipse at center, #0d1e4a 0%, var(--color-bg) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.12);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

.hero-visual::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}

/* ---- Orbit rings + dots ---- */
.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.08);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 1;
}

.hero-orbit-1 { width: 540px; height: 540px; animation: orbitSpin 18s linear infinite; }
.hero-orbit-2 { width: 400px; height: 400px; animation: orbitSpin 24s linear infinite reverse; }
.hero-orbit-3 { width: 640px; height: 640px; animation: orbitSpin 30s linear infinite; }

@keyframes orbitSpin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.hero-orbit-dot {
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 12px rgba(59,130,246,0.9), 0 0 24px rgba(59,130,246,0.4);
}

.hero-orbit-dot--green {
  background: var(--color-green);
  box-shadow: 0 0 12px rgba(16,185,129,0.9), 0 0 24px rgba(16,185,129,0.4);
}

.hero-orbit-dot--sm {
  width: 6px; height: 6px;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 8px rgba(255,255,255,0.6);
}

/* ---- Floating particles ---- */
.hero-particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-particle-1 {
  width: 4px; height: 4px;
  background: rgba(59,130,246,0.7);
  top: 25%; left: 20%;
  animation: particleFloat 6s ease-in-out infinite;
}
.hero-particle-2 {
  width: 3px; height: 3px;
  background: rgba(16,185,129,0.7);
  top: 65%; left: 75%;
  animation: particleFloat 8s ease-in-out infinite 1.5s;
}
.hero-particle-3 {
  width: 5px; height: 5px;
  background: rgba(59,130,246,0.4);
  top: 80%; left: 30%;
  animation: particleFloat 7s ease-in-out infinite 3s;
}

@keyframes particleFloat {
  0%, 100% { transform: translate(0,0) scale(1); opacity: 0.6; }
  33%       { transform: translate(8px,-12px) scale(1.3); opacity: 1; }
  66%       { transform: translate(-6px,8px) scale(0.8); opacity: 0.4; }
}

.hero-product-img {
  position: relative;
  z-index: 2;
  width: 520px;
  filter: drop-shadow(0 30px 80px rgba(59,130,246,0.35));
}

.hero-geo {
  position: absolute;
  top: 40px; right: 50px;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 3;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50px;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 3;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */

.section {
  padding: 100px 80px;
  max-width: 100%;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

.section-label {
  color: var(--color-blue);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.section-heading {
  font-size: 46px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
}

.section-heading.serif { font-family: var(--font-serif); }

.section-body {
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.8;
  max-width: 580px;
  margin-top: 20px;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =============================================
   FEATURES GRID
   ============================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.feature-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.2s, background 0.2s;
}

.feature-card:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(59,130,246,0.05);
}

.feature-card.accent {
  background: rgba(59,130,246,0.08);
  border-color: rgba(59,130,246,0.25);
}

.feat-num {
  color: var(--color-blue);
  font-size: 11px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.feat-title {
  color: var(--color-white);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feat-text {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* =============================================
   SPECS SECTION
   ============================================= */

.specs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.specs-table { margin-top: 36px; }

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--color-muted); }
.spec-value { color: var(--color-white); font-weight: 500; }

.specs-visual {
  background: radial-gradient(ellipse at center, #0d1e4a 0%, var(--color-bg-2) 70%);
  border-radius: 24px;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.specs-visual img {
  width: 160px;
  filter: drop-shadow(0 20px 50px rgba(59,130,246,0.3));
}

/* =============================================
   PRICE SECTION
   ============================================= */

.price-card {
  max-width: 480px;
  margin: 56px auto 0;
  background: var(--color-bg-card);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.price-plan-label {
  color: var(--color-blue);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.price-amount {
  font-size: 58px;
  font-weight: 700;
  line-height: 1;
}

.price-currency {
  font-size: 18px;
  color: var(--color-muted);
  font-weight: 400;
}

.price-subtitle {
  color: var(--color-muted);
  font-size: 15px;
  margin-top: 10px;
}

.price-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 28px 0;
}

.price-features li {
  color: #d1d5db;
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li:last-child { border-bottom: none; }
.check { color: var(--color-green); }

/* =============================================
   FAQ SECTION
   ============================================= */

.faq-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.faq-item { border-bottom: 1px solid var(--color-border); }

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

.faq-plus {
  color: var(--color-blue);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-answer {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.75;
  padding-bottom: 20px;
  display: none;
}

.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-plus { transform: rotate(45deg); }

/* =============================================
   WOOCOMMERCE SHOP PAGE
   ============================================= */

.woo-shop-header {
  padding: 80px 80px 40px;
  border-bottom: 1px solid var(--color-border);
}

.woo-shop-header h1 {
  font-size: 48px;
  font-weight: 700;
}

.woocommerce-notices-wrapper { padding: 0 80px; }

.woocommerce-ordering {
  margin: 0 80px 40px;
}

.woocommerce-ordering select {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
}

ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 80px 80px;
  list-style: none;
}

ul.products li.product {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

ul.products li.product:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
}

ul.products li.product a img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: var(--color-bg-2);
}

ul.products li.product .woocommerce-loop-product__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-white);
  padding: 20px 24px 8px;
}

ul.products li.product .price {
  color: var(--color-blue);
  font-size: 20px;
  font-weight: 700;
  padding: 0 24px 20px;
  display: block;
}

ul.products li.product .button {
  margin: 0 24px 24px;
  background: var(--color-white);
  color: var(--color-bg);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

ul.products li.product .button:hover { background: #e5e7eb; }

/* =============================================
   WOOCOMMERCE SINGLE PRODUCT
   ============================================= */

.single-product-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px;
  align-items: start;
}

.woocommerce-product-gallery {
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, #0d1e4a 0%, var(--color-bg-2) 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  min-height: 500px;
}

.woocommerce-product-gallery img {
  max-width: 320px;
  filter: drop-shadow(0 20px 60px rgba(59,130,246,0.3));
}

.summary .product_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}

.summary .price {
  color: var(--color-blue);
  font-size: 32px;
  font-weight: 700;
  display: block;
  margin-bottom: 24px;
}

.summary .woocommerce-product-details__short-description {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.summary .quantity input {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  width: 80px;
  font-family: var(--font-sans);
}

.summary .single_add_to_cart_button {
  background: var(--color-white);
  color: var(--color-bg);
  padding: 16px 40px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-left: 12px;
}

.summary .single_add_to_cart_button:hover { background: #e5e7eb; }

.product_meta {
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 13px;
}

.woocommerce-tabs {
  padding: 60px 80px;
  border-top: 1px solid var(--color-border);
}

.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 36px;
}

.woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 14px 28px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--color-white);
  border-bottom-color: var(--color-blue);
}

.woocommerce-tabs .panel {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* =============================================
   CART & CHECKOUT — Premium Full-Width
   ============================================= */

/* ── Force WooCommerce to use our full width ─────────────────────── */

/* WC wraps cart/checkout in .woocommerce — we need full bleed */
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* The actual content wrapper inside those */
.woocommerce-cart .woocommerce > *,
.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content {
  max-width: none !important;
}

/* ── CART PAGE ───────────────────────────────────────────────────── */

.woocommerce-cart-form {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 80px 0;
}

/* Cart page hero label */
.woocommerce-cart .woocommerce::before,
.page-title.woocommerce-cart-page-title { display: none; }

/* Cart table */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
}

.woocommerce table.shop_table thead {
  background: rgba(255,255,255,0.03);
}

.woocommerce table.shop_table th {
  color: var(--color-muted);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 600;
  text-align: left;
}

.woocommerce table.shop_table td {
  padding: 24px 24px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
  color: var(--color-white);
  font-size: 15px;
}

.woocommerce table.shop_table tr:last-child td { border-bottom: none; }

.woocommerce table.shop_table .product-thumbnail { width: 110px; }

.woocommerce table.shop_table .product-thumbnail img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  padding: 10px;
  border: 1px solid var(--color-border);
  display: block;
}

.woocommerce table.shop_table .product-name a {
  color: var(--color-white);
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  transition: color 0.2s;
}
.woocommerce table.shop_table .product-name a:hover { color: var(--color-blue); }

.woocommerce table.shop_table .product-price { color: var(--color-light); font-size: 16px; }

.woocommerce table.shop_table .product-subtotal {
  color: var(--color-blue);
  font-weight: 700;
  font-size: 18px;
}

.woocommerce table.shop_table .product-quantity input.qty {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-family: var(--font-sans);
  width: 80px;
  text-align: center;
  transition: border-color 0.2s;
}
.woocommerce table.shop_table .product-quantity input.qty:focus {
  outline: none;
  border-color: var(--color-blue);
}

.woocommerce table.shop_table .product-remove a {
  color: var(--color-muted);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: all 0.2s;
}
.woocommerce table.shop_table .product-remove a:hover {
  background: rgba(239,68,68,0.12);
  border-color: #ef4444;
  color: #ef4444;
}

/* Coupon + update row */
.woocommerce .actions {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  flex-wrap: wrap;
  border-top: 1px solid var(--color-border);
}

.woocommerce .coupon {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}

.woocommerce .coupon label { display: none; }

.woocommerce .coupon input[type="text"] {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  min-width: 220px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.woocommerce .coupon input[type="text"]::placeholder { color: var(--color-muted); }
.woocommerce .coupon input[type="text"]:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

/* All WC buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  background: rgba(255,255,255,0.06) !important;
  color: var(--color-white) !important;
  border: 1px solid var(--color-border) !important;
  padding: 14px 28px !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: border-color 0.2s, background 0.2s !important;
  letter-spacing: 0.3px !important;
  text-decoration: none !important;
  display: inline-block !important;
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
  border-color: var(--color-blue) !important;
  background: rgba(59,130,246,0.1) !important;
  color: var(--color-white) !important;
}

/* Cart collaterals (totals section below table) */
.woocommerce .cart-collaterals {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 80px 120px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: start;
}

/* Left side (empty / shipping calc) */
.woocommerce .cart-collaterals .cross-sells { }

/* Cart totals box */
.cart_totals {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
}

.cart_totals h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
}

.cart_totals table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.cart_totals table th {
  font-size: 13px;
  color: var(--color-muted);
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.cart_totals table td {
  font-size: 16px;
  color: var(--color-white);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  text-align: right;
}

.cart_totals .order-total th,
.cart_totals .order-total td {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  border-bottom: none;
  padding-top: 24px;
}

.cart_totals .order-total td { color: var(--color-white); }

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

.wc-proceed-to-checkout .checkout-button,
.wc-proceed-to-checkout a.button {
  display: block !important;
  width: 100% !important;
  background: var(--color-white) !important;
  color: var(--color-bg) !important;
  border: none !important;
  padding: 20px 40px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  text-align: center !important;
  letter-spacing: 0.2px !important;
  transition: background 0.2s, transform 0.15s !important;
  cursor: pointer !important;
  text-decoration: none !important;
}
.wc-proceed-to-checkout .checkout-button:hover,
.wc-proceed-to-checkout a.button:hover {
  background: #e5e7eb !important;
  color: var(--color-bg) !important;
  transform: translateY(-2px) !important;
}

/* ── CHECKOUT PAGE ─────────────────────────────────────────────────── */

.woocommerce-checkout {
  padding: 0 !important;
  max-width: none !important;
}

.nk-checkout-form {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 80px 120px;
}

.nk-checkout-wrap {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
}

.nk-checkout-header { margin-bottom: 48px; }

.nk-checkout-heading {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -2px;
  margin: 16px 0 0;
  color: var(--color-white);
  line-height: 1.0;
}

.nk-checkout-section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.nk-checkout-fields {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 36px 40px;
  margin-bottom: 28px;
}

/* WooCommerce native checkout form fields */
.woocommerce-checkout .form-row { margin-bottom: 20px; }

.woocommerce-checkout .form-row label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.woocommerce-checkout .form-row abbr { color: var(--color-blue); text-decoration: none; }

.woocommerce-checkout .form-row input[type="text"],
.woocommerce-checkout .form-row input[type="email"],
.woocommerce-checkout .form-row input[type="tel"],
.woocommerce-checkout .form-row input[type="number"],
.woocommerce-checkout .form-row input[type="password"],
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 16px 20px;
  border-radius: 14px;
  font-family: var(--font-sans);
  font-size: 15px;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.woocommerce-checkout .form-row input::placeholder,
.woocommerce-checkout .form-row textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.woocommerce-checkout .form-row input:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.1);
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 10px);
  display: inline-block;
  vertical-align: top;
}
.woocommerce-checkout .form-row-first { margin-right: 20px; }

/* WC select2 dropdowns */
.woocommerce-checkout .select2-container .select2-selection--single {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  height: 54px;
  display: flex;
  align-items: center;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--color-white);
  padding: 0 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 52px;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  height: 52px;
  right: 16px;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: var(--color-muted) transparent transparent transparent;
}

/* Right panel — sticky order summary */
.nk-order-review-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 36px 40px;
  position: sticky;
  top: 96px;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
  color: var(--color-light);
  vertical-align: middle;
}
.woocommerce-checkout-review-order-table th {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
}
.woocommerce-checkout-review-order-table .product-total { text-align: right; }
.woocommerce-checkout-review-order-table .order-total td,
.woocommerce-checkout-review-order-table .order-total th {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  border-bottom: none;
  padding-top: 22px;
}

/* Payment section WC injects into the right column */
#payment {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-top: 24px;
}

#payment .payment_methods {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  border: none !important;
  background: transparent !important;
}

#payment .payment_methods li {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

#payment .payment_methods li.woocommerce-PaymentMethod--selected,
#payment .payment_methods li:has(input:checked) {
  border-color: var(--color-blue);
  background: rgba(59,130,246,0.06);
}

#payment .payment_methods li label {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--color-white) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

#payment .payment_methods li input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-blue);
  cursor: pointer;
  flex-shrink: 0;
}

#payment .payment_box {
  background: rgba(59,130,246,0.06) !important;
  border: 1px solid rgba(59,130,246,0.15) !important;
  border-radius: 12px !important;
  padding: 16px 18px !important;
  margin-top: 14px !important;
  font-size: 13px !important;
  color: var(--color-muted) !important;
  line-height: 1.6 !important;
}

#payment .payment_box p { color: var(--color-muted) !important; font-size: 13px !important; }

#payment #place_order,
#place_order {
  background: var(--color-white) !important;
  color: var(--color-bg) !important;
  padding: 20px 48px !important;
  border-radius: var(--radius-pill) !important;
  font-family: var(--font-sans) !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  border: none !important;
  cursor: pointer !important;
  width: 100% !important;
  letter-spacing: 0.2px !important;
  transition: background 0.2s, transform 0.15s !important;
  margin-top: 8px !important;
  display: block !important;
}
#payment #place_order:hover,
#place_order:hover {
  background: #e5e7eb !important;
  transform: translateY(-2px) !important;
}

/* Privacy policy text */
#payment .woocommerce-privacy-policy-text {
  font-size: 12px !important;
  color: var(--color-muted) !important;
  margin-top: 16px !important;
  line-height: 1.7 !important;
}
#payment .woocommerce-privacy-policy-text a { color: var(--color-blue) !important; }

/* WC notices inside checkout */
.woocommerce-checkout .woocommerce-NoticeGroup { margin-bottom: 32px; }

/* ── PRODUCTS PAGE ─────────────────────────────────────────────────── */

.products-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 80px 80px;
  background: radial-gradient(ellipse at 20% 60%, rgba(16,185,129,0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.1) 0%, transparent 55%),
              var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.products-hero-glow-blue {
  position: absolute;
  top: -80px; right: -60px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(59,130,246,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.products-hero-glow-green {
  position: absolute;
  bottom: -100px; left: -80px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(16,185,129,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.products-hero-inner { position: relative; max-width: 700px; }

.products-hero-heading {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin: 16px 0 20px;
  color: var(--color-white);
}

.products-hero-heading em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--color-blue);
}

.products-hero-sub {
  color: var(--color-light);
  font-size: 18px;
  line-height: 1.75;
  max-width: 500px;
}

.products-hero-scroll {
  position: absolute;
  bottom: -48px; right: 80px;
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Products grid wrapper */
.products-page-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 120px;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 56px;
}
.products-count .woocommerce-result-count { color: var(--color-muted); font-size: 14px; margin: 0; }
.products-sort .woocommerce-ordering select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

/* Product cards */
.nk-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.nk-product-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  position: relative;
  backdrop-filter: blur(8px);
}

.nk-product-card:hover {
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-10px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(59,130,246,0.1);
}

.nk-product-card-link { text-decoration: none; display: block; }

.nk-product-img-wrap {
  position: relative;
  background: radial-gradient(ellipse at 50% 60%, rgba(59,130,246,0.12) 0%, rgba(0,0,0,0.3) 70%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.nk-product-img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 24px 50px rgba(59,130,246,0.3));
  position: relative;
  z-index: 2;
}
.nk-product-card:hover .nk-product-img { transform: scale(1.08) translateY(-4px); }

.nk-product-img-glow {
  position: absolute;
  bottom: 10%; left: 50%;
  transform: translateX(-50%);
  width: 50%; height: 30px;
  background: rgba(59,130,246,0.18);
  filter: blur(20px);
  border-radius: 50%;
  z-index: 1;
  transition: opacity 0.3s;
}
.nk-product-card:hover .nk-product-img-glow { opacity: 1.5; }

.nk-product-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 3;
}
.nk-product-badge--new { background: var(--color-green); }

.nk-product-info {
  padding: 32px 32px 28px;
}

.nk-product-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.nk-product-excerpt {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.nk-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nk-product-price {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.5px;
}
.nk-product-price .woocommerce-Price-amount { color: var(--color-white); }

.nk-product-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-blue);
  transition: gap 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nk-product-card:hover .nk-product-cta { text-decoration: underline; }

/* Add to cart button */
.nk-product-add-btn {
  display: block;
  margin: 0 32px 28px;
  padding: 16px 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.15) 0%, rgba(59,130,246,0.08) 100%);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: var(--radius-pill);
  color: var(--color-blue);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
  letter-spacing: 0.5px;
}
.nk-product-add-btn:hover {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
  box-shadow: 0 8px 30px rgba(59,130,246,0.35);
}

/* Empty state */
.nk-products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 100px 0;
  color: var(--color-muted);
}
.nk-products-empty-icon { font-size: 56px; margin-bottom: 24px; }
.nk-products-empty h2 { font-size: 28px; font-weight: 700; color: var(--color-white); margin-bottom: 12px; }
.nk-products-empty p { font-size: 16px; }

/* Pagination */
.products-pagination {
  padding: 60px 0 0;
  display: flex;
  justify-content: center;
}
.products-pagination .page-numbers {
  display: flex; gap: 8px; list-style: none;
}
.products-pagination .page-numbers a,
.products-pagination .page-numbers span {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-light);
  font-size: 14px;
  transition: all 0.2s;
  text-decoration: none;
}
.products-pagination .page-numbers .current,
.products-pagination .page-numbers a:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .nk-products-grid { grid-template-columns: repeat(2, 1fr); }
  .nk-checkout-wrap { grid-template-columns: 1fr 400px; gap: 48px; }
}

@media (max-width: 1024px) {
  .nk-checkout-form { padding: 60px 48px 80px; }
  .nk-checkout-wrap { grid-template-columns: 1fr; gap: 40px; }
  .nk-checkout-heading { font-size: 44px; }
  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last { width: 100%; display: block; margin-right: 0; }
  .nk-order-review-box { position: static; }
  .woocommerce .cart-collaterals { padding: 48px 48px 80px; }
}

@media (max-width: 768px) {
  .woocommerce-cart-form { padding: 40px 24px 0; }
  .woocommerce .cart-collaterals { padding: 32px 24px 60px; grid-template-columns: 1fr; gap: 32px; }
  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td { padding: 18px 14px; }
  .nk-checkout-form { padding: 40px 20px 60px; }
  .nk-checkout-fields { padding: 24px 20px; }
  .nk-order-review-box { padding: 24px 20px; }
  .products-hero { padding: 70px 24px 60px; }
  .products-hero-heading { font-size: 48px; }
  .products-page-wrap { padding: 0 24px 80px; }
  .nk-products-grid { grid-template-columns: 1fr; gap: 20px; }
  .nk-checkout-heading { font-size: 36px; }
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: #080810;
  border-top: 1px solid var(--color-border);
  padding: 60px 80px;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.footer-tagline {
  color: #4b5563;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #4b5563;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--color-light); }

.footer-copy {
  color: #374151;
  font-size: 13px;
}

/* =============================================
   WOOCOMMERCE MESSAGES
   ============================================= */

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin: 20px 80px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.woocommerce-message { border-left: 3px solid var(--color-green); }
.woocommerce-info    { border-left: 3px solid var(--color-blue); }
.woocommerce-error   { border-left: 3px solid #ef4444; }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; }
  .hero-heading { font-size: 56px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .specs-layout { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  ul.products { grid-template-columns: repeat(2,1fr); }
  .single-product-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 24px; }
  .main-navigation { display: none; }
  .section { padding: 60px 24px; }
  .hero-content { padding: 60px 24px; }
  .hero-heading { font-size: 44px; }
  .woo-shop-header { padding: 48px 24px 24px; }
  ul.products { grid-template-columns: 1fr; padding: 0 24px 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .single-product-wrap { padding: 40px 24px; }
  .woocommerce-tabs { padding: 40px 24px; }
  .site-footer { padding: 40px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* =============================================
   CUSTOM WHITE CURSOR
   ============================================= */

*, *::before, *::after { cursor: none !important; }

.nk-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.nk-cursor--hover {
  width: 60px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.nk-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transition: transform 0.05s linear;
}

/* =============================================
   MINI CART POPUP
   ============================================= */

.nav-cart-link {
  position: relative;
  color: var(--color-light);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: var(--font-sans);
  padding: 0;
}
.nav-cart-link:hover { color: var(--color-white); }

.mini-cart-popup {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 340px;
  background: #13131e;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mini-cart-popup.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* nav-actions needs position relative for popup to anchor */
.nav-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.mini-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--color-border);
}

.mini-cart-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}

.mini-cart-close {
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 16px;
  padding: 0;
  transition: color 0.2s;
}
.mini-cart-close:hover { color: var(--color-white); }

.mini-cart-body {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
}

.mini-cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.mini-cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--color-bg-card);
}
.mini-cart-item-name { font-size: 14px; font-weight: 600; color: var(--color-white); }
.mini-cart-item-qty  { font-size: 12px; color: var(--color-muted); margin-top: 2px; }
.mini-cart-item-price { font-size: 14px; color: var(--color-blue); font-weight: 700; margin-top: 4px; }

.mini-cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  padding-top: 4px;
}

.mini-cart-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.mini-cart-empty {
  text-align: center;
  color: var(--color-muted);
  padding: 20px 0;
}

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside grids */
.features-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.3s; }
.hero-content .reveal:nth-child(2) { transition-delay: 0.05s; }
.hero-content .reveal:nth-child(3) { transition-delay: 0.1s; }
.hero-content .reveal:nth-child(4) { transition-delay: 0.18s; }
.hero-content .reveal:nth-child(5) { transition-delay: 0.26s; }

/* =============================================
   HERO PRODUCT FLOAT ANIMATION
   ============================================= */

@keyframes floatProduct {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-20px); }
}

.hero-product-img {
  animation: floatProduct 5s ease-in-out infinite;
  filter: drop-shadow(0 50px 120px rgba(59,130,246,0.6)) drop-shadow(0 0 40px rgba(96,165,250,0.3));
  max-width: 95%;
}

/* =============================================
   HERO "VIEW PRODUCT" PILL
   ============================================= */

.hero-view-btn {
  position: absolute;
  bottom: 48px;
  right: 60px;
  background: var(--color-blue);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.hero-view-btn:hover { background: #2563eb; transform: scale(1.04); }

.hero-view-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* =============================================
   BUTTON: NO ARROWS by default
   ============================================= */

/* Remove arrows from all btn elements (arrows in PHP templates already removed) */
.btn { gap: 8px; }

/* Play icon inside Watch the story */
.play-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* =============================================
   NAV: SHOP LINK
   ============================================= */

/* highlight "Shop" in nav */
.main-navigation li:last-child a {
  color: var(--color-blue);
  font-weight: 600;
}
.main-navigation li:last-child a:hover { color: #93c5fd; }


/* =============================================
   BRAND: BOLD NZ KART TEXT (no icon)
   ============================================= */

.site-title-link {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.site-title-link:hover { opacity: 0.8; }

/* Hide old brand icon if it somehow renders */
.brand-icon { display: none; }


/* =============================================
   LEGAL PAGES (Privacy Policy & Terms)
   ============================================= */

.legal-hero {
  padding: 110px 80px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.legal-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.legal-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.legal-hero-heading {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.legal-hero-sub {
  color: var(--color-muted);
  font-size: 15px;
  letter-spacing: 0.5px;
}

.legal-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 80px 120px;
}

.legal-body {
  color: var(--color-light);
  font-size: 16px;
  line-height: 1.9;
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 52px;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.legal-body p {
  margin-bottom: 18px;
  color: rgba(255,255,255,0.65);
}

.legal-body ul {
  margin: 0 0 20px 24px;
  color: rgba(255,255,255,0.65);
}

.legal-body ul li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.legal-body strong {
  color: var(--color-white);
  font-weight: 600;
}

.legal-body a {
  color: var(--color-blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(59,130,246,0.3);
  transition: border-color 0.2s;
}

.legal-body a:hover {
  border-color: var(--color-blue);
}

@media (max-width: 768px) {
  .legal-hero { padding: 80px 24px 60px; }
  .legal-hero-heading { font-size: 40px; }
  .legal-wrap { padding: 60px 24px 80px; }
}

/* =============================================
   HERO: "pets." calligraphic script override
   ============================================= */

.hero-pets-script {
  font-family: 'Dancing Script', cursive !important;
  font-style: normal !important;
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #93c5fd 0%, #6ee7b7 50%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  line-height: 1.05;
  position: relative;
  filter: drop-shadow(0 0 28px rgba(96,165,250,0.55));
  animation: petsGlow 3s ease-in-out infinite;
}

@keyframes petsGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(96,165,250,0.5)); }
  50%       { filter: drop-shadow(0 0 40px rgba(110,231,183,0.7)); }
}

/* Flowing underline flourish */
.hero-pets-script::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 8px;
  right: 8px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.7) 30%, rgba(110,231,183,0.7) 70%, transparent);
  border-radius: 3px;
  animation: petsLine 3s ease-in-out infinite;
}

@keyframes petsLine {
  0%, 100% { opacity: 0.6; transform: scaleX(0.9); }
  50%       { opacity: 1; transform: scaleX(1); }
}

/* =============================================
   NKSHOP — PREMIUM PRODUCT ARCHIVE
   ============================================= */

/* Hero */
.shop-hero {
    padding: 110px 80px 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 60%, rgba(13,30,74,0.9) 0%, var(--color-bg) 65%);
    border-bottom: 1px solid var(--color-border);
}
.shop-hero-glow-blue {
    position: absolute; top: -100px; left: -80px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(59,130,246,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.shop-hero-glow-green {
    position: absolute; bottom: -120px; right: -60px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(16,185,129,0.15) 0%, transparent 70%);
    pointer-events: none;
}
.shop-hero-inner { position: relative; max-width: 640px; }
.shop-hero-heading {
    font-size: 64px;
    font-weight: 700;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 16px 0 20px;
}
.shop-hero-heading em {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-size: 1.1em;
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.shop-hero-sub { color: var(--color-light); font-size: 17px; line-height: 1.8; max-width: 480px; }

/* Wrap & Toolbar */
.nkshop-wrap { max-width: 1400px; margin: 0 auto; padding: 0 80px 120px; }

.nkshop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0 36px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 56px;
}
.nkshop-count { color: var(--color-muted); font-size: 14px; letter-spacing: 0.3px; }
.nkshop-sort-select {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-white);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: 14px;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}
.nkshop-sort-select:hover { border-color: rgba(59,130,246,0.4); }
.nkshop-sort-form { display: flex; }

/* Grid */
.nkshop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Card */
.nkshop-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 28px;
    overflow: hidden;
    transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
}
.nkshop-card:hover {
    border-color: rgba(59,130,246,0.35);
    transform: translateY(-10px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(59,130,246,0.08);
}
.nkshop-card-link { text-decoration: none; display: block; flex: 1; }

/* Image shell */
.nkshop-img-shell {
    position: relative;
    background: radial-gradient(ellipse at 50% 65%, rgba(59,130,246,0.1) 0%, rgba(0,0,0,0.25) 70%);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.nkshop-img {
    width: 78%;
    height: 78%;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 24px 48px rgba(59,130,246,0.28));
    position: relative;
    z-index: 2;
}
.nkshop-card:hover .nkshop-img { transform: scale(1.1) translateY(-6px); }

.nkshop-img-glow {
    position: absolute;
    bottom: 8%; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 32px;
    background: rgba(59,130,246,0.2);
    filter: blur(24px);
    border-radius: 50%;
    z-index: 1;
    transition: opacity 0.3s;
    opacity: 0;
}
.nkshop-card:hover .nkshop-img-glow { opacity: 1; }

.nkshop-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,30,74,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
    z-index: 3;
    backdrop-filter: blur(2px);
}
.nkshop-card:hover .nkshop-hover-overlay { opacity: 1; }

.nkshop-hover-cta {
    background: var(--color-blue);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 32px rgba(59,130,246,0.4);
}

/* Badge */
.nkshop-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--color-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    z-index: 4;
}
.nkshop-badge--sale { background: #ef4444; }
.nkshop-badge--new  { background: var(--color-green); }

/* Info section */
.nkshop-info { padding: 28px 28px 20px; }

.nkshop-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    letter-spacing: -0.4px;
    line-height: 1.25;
}
.nkshop-excerpt {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 20px;
}
.nkshop-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.nkshop-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.5px;
}
.nkshop-price del { opacity: 0.4; font-size: 16px; margin-right: 6px; }
.nkshop-price ins { text-decoration: none; }
.nkshop-price .woocommerce-Price-amount { color: var(--color-white); }
.nkshop-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--color-blue);
    font-size: 16px;
    transition: background 0.2s, border-color 0.2s;
}
.nkshop-card:hover .nkshop-arrow {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: #fff;
}

/* Add to cart */
.nkshop-add-btn {
    display: block;
    margin: 0 28px 28px;
    padding: 15px 0;
    background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(59,130,246,0.06) 100%);
    border: 1px solid rgba(59,130,246,0.28);
    border-radius: var(--radius-pill);
    color: var(--color-blue);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
    letter-spacing: 0.4px;
}
.nkshop-add-btn:hover {
    background: var(--color-blue);
    color: #fff;
    border-color: var(--color-blue);
    box-shadow: 0 8px 28px rgba(59,130,246,0.35);
}

/* Empty */
.nkshop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 0;
    color: var(--color-muted);
}
.nkshop-empty-icon { font-size: 56px; margin-bottom: 24px; }
.nkshop-empty h2 { font-size: 28px; font-weight: 700; color: var(--color-white); margin-bottom: 12px; }

/* Pagination */
.nkshop-pagination {
    padding: 60px 0 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.nkshop-pagination .page-numbers {
    width: 42px; height: 42px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    color: var(--color-light);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.nkshop-pagination .page-numbers.current,
.nkshop-pagination .page-numbers:hover {
    background: var(--color-blue);
    border-color: var(--color-blue);
    color: #fff;
}

/* Responsive */
@media (max-width: 1100px) {
    .nkshop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .shop-hero { padding: 70px 24px 50px; }
    .shop-hero-heading { font-size: 44px; }
    .nkshop-wrap { padding: 0 24px 80px; }
    .nkshop-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* Legal page nav link */
.legal-nav {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}
.legal-nav-link {
  color: var(--color-blue);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(59,130,246,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.legal-nav-link:hover { border-color: var(--color-blue); }

/* =============================================
   SUPERCHARGED ENHANCEMENTS (v2)
   ============================================= */

/* ── Scroll progress bar (very top of viewport) ── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6 0%, #22c55e 50%, #60a5fa 100%);
  background-size: 200% 100%;
  z-index: 1002;
  transition: width 0.08s linear;
  box-shadow: 0 0 14px rgba(59,130,246,0.55);
  animation: progressShift 3s linear infinite;
  pointer-events: none;
}
@keyframes progressShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ── Rock-solid sticky nav (fixed, follows scroll guaranteed) ── */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
body { padding-top: 68px; }

.site-header.nav-scrolled {
  background: rgba(8, 8, 14, 0.96);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  border-bottom-color: rgba(59,130,246,0.18);
}
.site-header.nav-scrolled .nav-inner { height: 60px; }

/* ── Animated underline on nav links ── */
.main-navigation a {
  position: relative;
  padding: 6px 0;
}
.main-navigation a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
  transition: width 0.35s cubic-bezier(0.22,1,0.36,1);
  border-radius: 2px;
}
.main-navigation a:hover::after { width: 100%; }

/* ── Logo paw print reveal on hover (white SVG via mask) ── */
.site-title-link {
  position: relative;
  display: inline-block;
}
.site-title-link::before {
  content: '';
  position: absolute;
  left: -26px; top: 50%;
  width: 16px;
  height: 16px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><ellipse cx='6' cy='11' rx='2' ry='2.6'/><ellipse cx='18' cy='11' rx='2' ry='2.6'/><ellipse cx='9.5' cy='6' rx='1.8' ry='2.4'/><ellipse cx='14.5' cy='6' rx='1.8' ry='2.4'/><path d='M12 12.5c-3.5 0-6 2.5-6 5.5 0 1.5 1.2 2.5 2.7 2.5.9 0 1.7-.4 2.5-.7.4-.2.7-.3 1.2-.3.5 0 .8.1 1.2.3.8.3 1.6.7 2.5.7 1.5 0 2.7-1 2.7-2.5 0-3-2.5-5.5-6-5.5z'/></svg>") center / contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'><ellipse cx='6' cy='11' rx='2' ry='2.6'/><ellipse cx='18' cy='11' rx='2' ry='2.6'/><ellipse cx='9.5' cy='6' rx='1.8' ry='2.4'/><ellipse cx='14.5' cy='6' rx='1.8' ry='2.4'/><path d='M12 12.5c-3.5 0-6 2.5-6 5.5 0 1.5 1.2 2.5 2.7 2.5.9 0 1.7-.4 2.5-.7.4-.2.7-.3 1.2-.3.5 0 .8.1 1.2.3.8.3 1.6.7 2.5.7 1.5 0 2.7-1 2.7-2.5 0-3-2.5-5.5-6-5.5z'/></svg>") center / contain no-repeat;
  transform: translateY(-50%) scale(0) rotate(-30deg);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}
.site-title-link:hover::before {
  transform: translateY(-50%) scale(1) rotate(0deg);
  opacity: 1;
}

/* ── Cart icon playful bounce ── */
.nav-cart-link svg { transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1); }
.nav-cart-link:hover svg { transform: translateY(-2px) rotate(-8deg); }

.cart-count {
  animation: countPulse 1.6s ease-in-out infinite;
}
@keyframes countPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(59,130,246,0); }
}

/* ── Button shine sweep ── */
.btn-white, .btn-blue {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-white::before, .btn-blue::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-150%);
  transition: transform 0.7s ease;
  z-index: -1;
  pointer-events: none;
}
.btn-blue::before {
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
}
.btn-white:hover::before, .btn-blue:hover::before { transform: translateX(150%); }

/* ── Floating paw prints in hero (white SVG icons) ── */
.hero-paw {
  position: absolute;
  color: rgba(255,255,255,0.55);
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.18));
  user-select: none;
  line-height: 0;
}
.hero-paw svg { display: block; width: 100%; height: 100%; }
.hero-paw-1 { top: 16%; left: 4%;  width: 32px; height: 32px; animation: pawDrift 9s ease-in-out infinite; }
.hero-paw-2 { bottom: 22%; left: 14%; width: 22px; height: 22px; animation: pawDrift 11s ease-in-out infinite 1.5s; }
.hero-paw-3 { top: 62%; left: 32%; width: 26px; height: 26px; animation: pawDrift 13s ease-in-out infinite 3s; }
@keyframes pawDrift {
  0%, 100% { transform: translate(0,0) rotate(-15deg); opacity: 0.18; }
  50%      { transform: translate(14px,-22px) rotate(18deg); opacity: 0.42; }
}

/* ── Feature card upgrades: lift + spotlight + glow ── */
.feature-card {
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s,
              transform 0.4s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.4s;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(59,130,246,0.18), transparent 45%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 0;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 36px rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.4);
}
.feature-card:hover::before { opacity: 1; }
.feature-card > * { position: relative; z-index: 1; }

.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s, border-color 0.4s;
}
.feat-icon svg { display: block; }
.feature-card:hover .feat-icon {
  transform: scale(1.12) rotate(-8deg);
  box-shadow: 0 8px 24px rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.3);
}

/* ── Price card pulsing aura + lift ── */
.price-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.price-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(135deg, rgba(59,130,246,0.5), rgba(16,185,129,0.5), rgba(59,130,246,0.5));
  background-size: 200% 200%;
  filter: blur(26px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s;
  animation: gradientShift 6s ease infinite;
}
.price-card:hover { transform: translateY(-6px); }
.price-card:hover::before { opacity: 0.55; }
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ── Themed price-list icons (glowing emoji badges) ── */
.price-features li {
  transition: padding-left 0.3s ease, color 0.3s ease;
}
.price-features li:hover {
  padding-left: 6px;
  color: var(--color-white);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(255,255,255,0.06);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, background 0.3s;
}
.check svg { display: block; }
.price-features li:hover .check {
  background: rgba(255,255,255,0.12);
  transform: scale(1.18) rotate(8deg);
  box-shadow: 0 0 22px rgba(255,255,255,0.22);
}

/* ── FAQ hover slide ── */
.faq-item {
  transition: padding-left 0.3s ease, border-bottom-color 0.3s ease;
}
.faq-item:hover {
  padding-left: 12px;
  border-bottom-color: rgba(59,130,246,0.3);
}
.faq-question { transition: color 0.2s; }
.faq-question:hover { color: var(--color-blue); }
.faq-item.open .faq-answer { animation: faqSlide 0.4s ease; }
@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Empty cart bouncing paw (white SVG) ── */
.mini-cart-empty-dog {
  display: inline-block;
  color: var(--color-white);
  opacity: 0.55;
  animation: dogBounce 2s ease-in-out infinite;
  margin-bottom: 12px;
  line-height: 0;
}
.mini-cart-empty-dog svg { display: block; }
@keyframes dogBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-10px) rotate(5deg); }
}
.mini-cart-empty-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: -8px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Section-label glowing dot (skip hero-eyebrow which has its own) ── */
.section-label:not(.hero-eyebrow)::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 10px var(--color-blue);
  animation: labelPulse 2s ease-in-out infinite;
}
@keyframes labelPulse {
  0%, 100% { box-shadow: 0 0 6px var(--color-blue); transform: scale(1); }
  50%      { box-shadow: 0 0 16px var(--color-blue); transform: scale(1.35); }
}
.hero-eyebrow::before { animation: labelPulse 2s ease-in-out infinite; }

/* ── Hero feats subtle hover ── */
.hero-feats {
  transition: border-color 0.3s, transform 0.4s;
}
.hero-feats:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-2px);
}
.hero-feat { transition: transform 0.3s, color 0.3s; }
.hero-feat:hover {
  transform: translateX(4px);
  color: #93c5fd;
}

/* ── Hero scroll dash animation ── */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-scroll::after {
  content: '';
  display: inline-block;
  width: 26px;
  height: 1px;
  background: rgba(255,255,255,0.55);
  transform-origin: left;
  animation: scrollDash 2.2s ease-in-out infinite;
}
@keyframes scrollDash {
  0%   { transform: scaleX(0); transform-origin: left; }
  45%  { transform: scaleX(1); transform-origin: left; }
  55%  { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ── Smoother feature-card reveal stagger ── */
.features-grid .reveal:nth-child(1) { transition-delay: 0s; }

/* ── Mobile tweaks ── */
@media (max-width: 768px) {
  .hero-paw { display: none; }
  body { padding-top: 60px; }
  .site-header .nav-inner { height: 60px; }
}

/* ── Footer inline paw (white SVG) ── */
.footer-paw {
  display: inline-flex;
  vertical-align: middle;
  color: rgba(255,255,255,0.4);
  margin: 0 4px;
  line-height: 0;
}
.footer-paw svg { display: block; }

/* ── WordPress admin-bar offset (logged in users) ── */
body.admin-bar .site-header     { top: 32px; }
body.admin-bar .scroll-progress { top: 32px; }
body.admin-bar                  { padding-top: 100px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header     { top: 46px; }
  body.admin-bar .scroll-progress { top: 46px; }
  body.admin-bar                  { padding-top: 106px; }
}

/* ── Respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-paw, .hero-product-img { animation: none !important; }
}

/* =============================================
   MOBILE RESPONSIVE — FULL FIX
   ============================================= */

/* ── Hamburger button ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    order: 3;
}
.nav-hamburger:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}
.nav-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-drawer {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8,8,14,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.mobile-drawer.open {
    transform: translateX(0);
}
.mobile-drawer-inner {
    padding: 40px 32px 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex: 1;
}
.mobile-drawer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.mobile-drawer-nav li {
    border-bottom: 1px solid var(--color-border);
}
.mobile-drawer-nav a {
    display: block;
    padding: 20px 0;
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
    transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer-nav a:hover {
    color: var(--color-blue);
    padding-left: 8px;
}
.drawer-shop a {
    color: var(--color-blue) !important;
}
.mobile-drawer-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 18px;
    font-size: 16px;
}
.mobile-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0,0,0,0.5);
}
.mobile-drawer-overlay.show {
    display: block;
}

/* ── Hero: stack on mobile ── */
@media (max-width: 768px) {

    /* Show hamburger, hide desktop nav + order btn */
    .nav-hamburger { display: flex; }
    .main-navigation { display: none !important; }
    .nav-actions .btn-white { display: none; }
    .nav-inner { padding: 0 20px; gap: 12px; }

    /* Hero stacks vertically */
    .hero {
        grid-template-columns: 1fr !important;
        min-height: auto;
    }
    .hero-content {
        padding: 56px 24px 40px;
        max-width: 100%;
        order: 1;
    }
    .hero-heading { font-size: 48px; letter-spacing: -1.5px; }
    .hero-description { font-size: 15px; }
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-buttons .btn-lg { width: 100%; justify-content: center; }
    .hero-feats { max-width: 100%; }
    .hero-visual {
        order: 2;
        min-height: 320px;
    }
    .hero-product-img { width: 260px; }
    .hero-geo, .hero-scroll, .hero-view-btn { display: none; }

    /* Sections */
    .section { padding: 60px 20px; }
    .section-heading { font-size: 32px; }
    .features-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; }
    .specs-layout { grid-template-columns: 1fr; gap: 40px; }
    .specs-visual { min-height: 260px; padding: 40px 24px; }
    .faq-layout { grid-template-columns: 1fr; gap: 32px; }
    .price-card { padding: 28px 24px; }
    .price-amount { font-size: 44px; }

    /* Shop page */
    .shop-hero { padding: 70px 20px 40px; }
    .shop-hero-heading { font-size: 38px; }
    .nkshop-wrap { padding: 0 20px 80px; }
    .nkshop-grid { grid-template-columns: 1fr; gap: 20px; }

    /* Products page */
    .products-hero { padding: 70px 20px 48px; }
    .products-hero-heading { font-size: 38px; }
    .products-page-wrap { padding: 0 20px 60px; }
    .nk-products-grid { grid-template-columns: 1fr; gap: 20px; }
    .products-toolbar { flex-direction: column; align-items: flex-start; gap: 16px; }

    /* Story page */
    .story-hero { grid-template-columns: 1fr !important; padding: 70px 20px 48px; min-height: auto; }
    .story-hero-heading { font-size: 36px; }
    .story-hero-visual { display: none; }
    .story-mission, .story-origin, .story-values, .story-cta { padding: 60px 20px; }
    .story-section-inner { grid-template-columns: 1fr; gap: 12px; }
    .story-number { font-size: 36px; }
    .story-block-heading { font-size: 24px; }
    .story-values-grid { grid-template-columns: 1fr; }
    .story-cta-heading { font-size: 30px; }

    /* WooCommerce shop */
    .woo-shop-header { padding: 40px 20px 20px; }
    .woo-shop-header h1 { font-size: 32px; }
    ul.products { grid-template-columns: 1fr; padding: 0 20px 48px; }
    .woocommerce-notices-wrapper,
    .woocommerce-ordering { padding: 0 20px; margin-left: 0; margin-right: 0; }

    /* Single product */
    .single-product-wrap { grid-template-columns: 1fr; padding: 24px 20px; gap: 32px; }
    .woocommerce-product-gallery { padding: 32px 20px; min-height: 280px; }
    .summary .product_title { font-size: 28px; }
    .sp-wrap { grid-template-columns: 1fr; }
    .sp-gallery { position: static; height: auto; min-height: 300px; padding: 32px 20px; }
    .sp-main-img { max-width: 220px; }
    .sp-summary { padding: 32px 20px; }
    .sp-title { font-size: 28px; }
    .woocommerce-tabs { padding: 32px 20px; }

    /* Cart page */
    .nkc-hero { padding: 48px 20px 0; }
    .woocommerce-cart-form { padding: 20px 16px 0; }
    .woocommerce .cart-collaterals {
        padding: 24px 16px 60px;
        grid-template-columns: 1fr;
        gap: 24px;
    }
    /* Stack cart table nicely on mobile */
    .woocommerce table.shop_table { border: none; border-radius: 0; }
    .woocommerce table.shop_table thead { display: none; }
    .woocommerce table.shop_table tr {
        display: grid;
        grid-template-columns: 80px 1fr auto auto;
        grid-template-rows: auto auto;
        gap: 8px 12px;
        padding: 16px;
        border-bottom: 1px solid var(--color-border);
        align-items: center;
    }
    .woocommerce table.shop_table td {
        padding: 0;
        border-bottom: none;
        font-size: 14px;
    }
    .woocommerce table.shop_table .product-thumbnail { grid-row: 1 / 3; grid-column: 1; }
    .woocommerce table.shop_table .product-thumbnail img { width: 64px; height: 64px; }
    .woocommerce table.shop_table .product-name { grid-column: 2 / 4; font-size: 15px; font-weight: 600; }
    .woocommerce table.shop_table .product-price { grid-column: 2; font-size: 13px; }
    .woocommerce table.shop_table .product-quantity { grid-column: 3; }
    .woocommerce table.shop_table .product-quantity input.qty { width: 60px; padding: 8px 10px; }
    .woocommerce table.shop_table .product-subtotal { grid-column: 2; font-size: 16px; font-weight: 700; }
    .woocommerce table.shop_table .product-remove { grid-row: 1; grid-column: 4; }
    .woocommerce .actions { padding: 16px; flex-direction: column; gap: 12px; }
    .woocommerce .coupon { flex-direction: column; width: 100%; }
    .woocommerce .coupon input[type="text"] { width: 100%; min-width: 0; }
    /* Cart totals */
    .cart_totals { padding: 24px 20px; }
    .wc-proceed-to-checkout .checkout-button,
    .wc-proceed-to-checkout a.button { padding: 16px 24px !important; font-size: 15px !important; }

    /* Checkout page */
    .nkco-hero { padding: 48px 20px 0 !important; }
    .nkco-body { padding: 24px 16px 60px !important; }
    .nkco-wrap { grid-template-columns: 1fr !important; gap: 28px !important; }
    .nkco-heading { font-size: 36px !important; }
    .nkco-section { padding: 24px 20px !important; }
    .nkco-review-box { position: static !important; }
    .nk-checkout-form { padding: 24px 16px 60px; }
    .nk-checkout-wrap { grid-template-columns: 1fr; gap: 24px; }
    .nk-checkout-heading { font-size: 32px; }
    .nk-checkout-fields { padding: 20px 16px; }
    .nk-order-review-box { position: static; padding: 20px 16px; }
    .woocommerce-checkout .form-row-first,
    .woocommerce-checkout .form-row-last { width: 100% !important; display: block !important; margin-right: 0 !important; }
    /* Place order button */
    #place_order,
    #payment #place_order { padding: 16px 24px !important; font-size: 15px !important; }

    /* Messages */
    .woocommerce-message,
    .woocommerce-info,
    .woocommerce-error { margin: 16px 20px; }

    /* Footer */
    .site-footer { padding: 40px 20px; }
    .footer-inner { flex-direction: column; text-align: center; gap: 24px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }

    /* Legal pages */
    .legal-hero { padding: 70px 20px 48px; }
    .legal-hero-heading { font-size: 36px; }
    .legal-wrap { padding: 48px 20px 72px; }

    /* Mini cart full width on mobile */
    .mini-cart-popup { width: calc(100vw - 32px); right: -8px; }
    .nav-actions { gap: 12px; }
}

@media (max-width: 480px) {
    .hero-heading { font-size: 40px; }
    .hero-product-img { width: 200px; }
    .nkshop-grid { grid-template-columns: 1fr; }
    body { padding-top: 60px; }
    .site-header.nav-scrolled .nav-inner { height: 56px; }
}
