/*
Theme Name: BlauKern
Theme URI: https://blaukern.de
Description: BlauKern Theme für SAMP Saunatimer
Version: 1.0
Author: BlauKern
Text Domain: blaukern
*/

/* ===== VARIABLES ===== */
:root {
  --blue: #046BD2;
  --blue-bright: #1a7fe0;
  --blue-glow: rgba(4, 107, 210, 0.4);
  --dark: #0d1117;
  --dark-2: #1e293b;
  --light-bg: #F0F5FA;
  --white: #ffffff;
  --text-muted: #94a3b8;
  --led-on: #046BD2;
  --led-off: rgba(4, 107, 210, 0.08);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ===== HEADER ===== */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo img { height: 36px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 2.5rem; }
.site-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a.active { color: var(--white); }

.cart-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  background: none;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.cart-btn:hover {
  border-color: var(--blue);
  background: rgba(4,107,210,0.1);
  color: var(--white);
}
.cart-count {
  background: var(--blue);
  color: white;
  width: 18px; height: 18px;
  border-radius: 50%;
  font-size: 0.65rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* ===== WOOCOMMERCE NOTICES ===== */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  background: var(--dark-2);
  border-top: 3px solid var(--blue);
  color: var(--white);
  padding: 1rem 2.5rem;
  margin-top: 80px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}
.woocommerce-message a,
.woocommerce-info a { color: var(--blue); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 2.5rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(4,107,210,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(4,107,210,0.15);
  border: 1px solid rgba(4,107,210,0.3);
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: blink 2s infinite;
}

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

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--blue); display: block; }

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hero-cta::after { content: '→'; transition: transform 0.3s; }
.hero-cta:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(4,107,210,0.4);
  color: var(--white);
}
.hero-cta:hover::after { transform: translateX(4px); }

/* ===== DEVICE VISUAL ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.device-container { position: relative; }

.device-glow {
  position: absolute;
  width: 200px; height: 400px;
  background: radial-gradient(ellipse, rgba(4,107,210,0.3) 0%, transparent 70%);
  filter: blur(40px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.device {
  position: relative;
  width: 120px;
  background: linear-gradient(145deg, #1a2540, #0d1524);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(4,107,210,0.2);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.device-label {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.2rem;
}

.led-strip {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  width: fit-content;
  margin: 0 auto;
}
.led-segment {
  width: 48px; height: 8px;
  border-radius: 2px;
  background: var(--led-off);
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
.led-segment.on {
  background: var(--led-on);
  box-shadow: 0 0 8px var(--blue-glow), 0 0 2px var(--blue);
}

.device-stats { margin-top: 1.2rem; }
.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0.3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.stat-label {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.stat-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue);
}
.wifi-indicator { display: flex; justify-content: center; margin-top: 0.8rem; }
.wifi-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: blink 2s infinite;
}

/* ===== STATS ROW ===== */
.stats-row {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.stat-desc { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 4rem;
  max-width: 500px;
}
.section-title.light { color: var(--white); }

/* ===== FEATURES ===== */
.features {
  padding: 7rem 2.5rem;
  background: var(--light-bg);
  color: var(--dark);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(4,107,210,0.12);
}
.feature-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), #0388e8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.feature-card p { font-size: 0.9rem; line-height: 1.7; color: #475569; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 7rem 2.5rem; background: var(--dark); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 1rem;
  position: relative;
}
.step { position: relative; }
.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(4,107,210,0.12);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}
.step p { font-size: 0.9rem; line-height: 1.7; color: var(--text-muted); }
.step-connector {
  position: absolute;
  top: 2.5rem; right: -1.5rem;
  width: 3rem; height: 1px;
  background: linear-gradient(to right, rgba(4,107,210,0.4), transparent);
}

/* ===== PRODUCT DETAIL ===== */
.product-detail {
  padding: 7rem 2.5rem;
  background: var(--dark-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.product-visual-large {
  position: relative;
  display: flex;
  justify-content: center;
}
.device-large {
  position: relative;
  width: 180px;
  background: linear-gradient(145deg, #1a2540, #0d1524);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(4,107,210,0.25);
  box-shadow: 0 0 80px rgba(4,107,210,0.15), 0 40px 100px rgba(0,0,0,0.8);
}
.device-large .led-strip { gap: 7px; }
.device-large .led-segment { width: 72px; height: 10px; border-radius: 3px; }

.product-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}
.product-info p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.spec-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.spec-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(4,107,210,0.4);
  color: var(--white);
}

/* ===== SHOP HERO ===== */
.shop-hero {
  padding: 10rem 2.5rem 4rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(4,107,210,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.2); }
.shop-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
}
.shop-hero h1 em { font-style: normal; color: var(--blue); }

/* ===== SHOP CONTENT ===== */
.shop-content {
  padding: 4rem 2.5rem 7rem;
  max-width: 1200px;
  margin: 0 auto;
}
.shop-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.shop-count { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.08em; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--dark-2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(4,107,210,0.3);
  box-shadow: 0 20px 60px rgba(4,107,210,0.1);
}
.product-image-wrap {
  height: 280px;
  background: linear-gradient(145deg, #0d1524 0%, #1a2540 50%, #0f1e38 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.product-image-wrap::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 200px; height: 300px;
  background: radial-gradient(ellipse, rgba(4,107,210,0.2) 0%, transparent 70%);
}
.product-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: var(--blue);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  z-index: 1;
}

/* Card device mockup */
.card-device {
  position: relative;
  width: 90px;
  background: linear-gradient(145deg, #1e2e50, #0d1a2e);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  border: 1px solid rgba(4,107,210,0.3);
  box-shadow: 0 0 30px rgba(4,107,210,0.2), 0 20px 50px rgba(0,0,0,0.5);
  z-index: 1;
}
.card-device .device-label { font-size: 0.5rem; margin-bottom: 0.8rem; }
.card-device .led-segment { width: 36px; height: 6px; border-radius: 1.5px; }
.card-device .led-strip { gap: 4px; }

.product-body { padding: 1.75rem; }
.product-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.product-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.product-price small {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}
.product-price ins { text-decoration: none; }
.product-price del { opacity: 0.5; font-size: 1.2rem; }

.btn-cart {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-cart:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4,107,210,0.4);
  color: white;
}

/* WooCommerce add-to-cart button override */
.woocommerce .btn-cart.add_to_cart_button,
.woocommerce .btn-cart.ajax_add_to_cart {
  background: var(--blue);
  color: white;
  border-radius: 6px;
  padding: 0.75rem 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: none;
  text-transform: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.woocommerce .btn-cart.add_to_cart_button::before { display: none; }
.woocommerce .btn-cart.loading { opacity: 0.7; }
.woocommerce .btn-cart.added { background: #16a34a; }

.details-link {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}
.details-link:hover { color: var(--blue); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }

.modal-visual {
  background: linear-gradient(145deg, #0d1524, #1a2540);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  border-radius: 20px 0 0 20px;
  position: relative;
}
.modal-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(4,107,210,0.15) 0%, transparent 70%);
  border-radius: inherit;
}
.modal-device {
  position: relative;
  width: 110px;
  background: linear-gradient(145deg, #1e2e50, #0d1a2e);
  border-radius: 14px;
  padding: 1.2rem 1rem;
  border: 1px solid rgba(4,107,210,0.3);
  box-shadow: 0 0 40px rgba(4,107,210,0.25), 0 30px 70px rgba(0,0,0,0.6);
  z-index: 1;
}
.modal-device .led-segment { width: 44px; height: 7px; border-radius: 2px; }
.modal-device .led-strip { gap: 4px; }
.modal-device .device-label { margin-bottom: 1rem; }

.modal-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.modal-close:hover { background: rgba(255,255,255,0.15); }

.modal-content { padding: 2.5rem; overflow-y: auto; }
.modal-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.modal-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.5rem;
}
.modal-price small { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.modal-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.specs-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; }
.specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.06); }
.specs-table td { padding: 0.75rem 0; font-size: 0.85rem; }
.specs-table td:first-child { color: var(--text-muted); width: 45%; }
.specs-table td:last-child { font-weight: 500; }

.btn-cart-modal {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
  text-align: center;
}
.btn-cart-modal:hover {
  background: var(--blue-bright);
  box-shadow: 0 8px 24px rgba(4,107,210,0.4);
  color: white;
}

/* ===== SINGLE PRODUCT PAGE ===== */
.single-product-wrap {
  min-height: 100vh;
  padding: 9rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.single-product-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.single-product-info {}
.single-product-info h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.single-product-info .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1.5rem;
  display: block;
}
.single-product-info .price ins { text-decoration: none; }
.single-product-info .woocommerce-product-details__short-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.single-product-info .woocommerce-product-details__short-description p {
  color: var(--text-muted);
}
.single-add-to-cart-wrap { margin-bottom: 2rem; }
.single-add-to-cart-wrap form { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.single-add-to-cart-wrap .quantity { display: none; }
.single-add-to-cart-wrap .single_add_to_cart_button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: var(--blue);
  color: var(--white) !important;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  transition: all 0.3s ease;
}
.single-add-to-cart-wrap .single_add_to_cart_button:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(4,107,210,0.4);
}

/* WooCommerce tabs on single product */
.woocommerce-tabs { display: none; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--dark-2);
  border: 1px solid rgba(4,107,210,0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon {
  width: 28px; height: 28px;
  background: rgba(4,107,210,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
footer.site-footer {
  background: #080c12;
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img { height: 28px; width: auto; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header.site-header { padding: 1rem 1.5rem; }
  .site-nav { gap: 1.5rem; }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-visual { order: -1; }

  .stats-row { padding: 1.5rem; }

  .features { padding: 4rem 1.5rem; }
  .features-grid { grid-template-columns: 1fr; }

  .how-it-works { padding: 4rem 1.5rem; }
  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .step-connector { display: none; }

  .product-detail {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .shop-hero { padding: 8rem 1.5rem 3rem; }
  .shop-content { padding: 3rem 1.5rem 5rem; }
  .product-grid { grid-template-columns: 1fr; }

  .modal { grid-template-columns: 1fr; }
  .modal-visual { border-radius: 20px 20px 0 0; padding: 2rem; min-height: 200px; }
  .modal-content { padding: 1.5rem; }

  .single-product-wrap {
    grid-template-columns: 1fr;
    padding: 8rem 1.5rem 4rem;
    gap: 3rem;
  }

  footer.site-footer { padding: 2.5rem 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
}
