/*
Theme Name: Slimco
Theme URI: https://slimco.kubapieprzyk.pl
Author: Kuba Pieprzyk
Author URI: https://kubapieprzyk.pl
Description: Minimalistyczny motyw e-commerce dla Slimco — akcesoria EDC. Inspirowany estetyką esencjalizmu.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: slimco
Tags: e-commerce, woocommerce, minimalist, one-column, custom-colors
*/

/* ============================================
   SLIMCO THEME — DESIGN SYSTEM
   Palette: Deep Teal + Warm Sand + Ivory
   ============================================ */

:root {
  /* Primary Palette */
  --sl-bg:         #F5F0EB;      /* warm ivory */
  --sl-bg-alt:     #EDE7E0;      /* sand */
  --sl-bg-dark:    #1A2F2A;      /* deep forest teal */
  --sl-bg-card:    #FFFFFF;
  --sl-text:       #1A2F2A;
  --sl-text-muted: #5C7A72;
  --sl-accent:     #2D8B75;      /* emerald teal */
  --sl-accent-hover:#23705E;
  --sl-accent-light:#E8F5F0;
  --sl-border:     #D4CDC5;
  --sl-white:      #FFFFFF;
  --sl-black:      #0F1F1A;

  /* Typography */
  --sl-font-display: 'Outfit', sans-serif;
  --sl-font-body:    'DM Sans', sans-serif;
  --sl-font-mono:    'JetBrains Mono', monospace;

  /* Spacing */
  --sl-space-xs: 0.5rem;
  --sl-space-sm: 1rem;
  --sl-space-md: 2rem;
  --sl-space-lg: 4rem;
  --sl-space-xl: 6rem;
  --sl-space-2xl: 8rem;

  /* Transitions */
  --sl-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --sl-duration: 0.3s;

  /* Layout */
  --sl-max-width: 1280px;
  --sl-radius: 6px;
  --sl-radius-lg: 12px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

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

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--sl-duration) var(--sl-ease);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--sl-font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--sl-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--sl-text-muted);
}

.container {
  width: 100%;
  max-width: var(--sl-max-width);
  margin: 0 auto;
  padding: 0 var(--sl-space-md);
}

/* ============================================
   TOP BAR
   ============================================ */

.top-bar {
  background: var(--sl-bg-dark);
  color: var(--sl-white);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-family: var(--sl-font-body);
  letter-spacing: 0.04em;
  opacity: 0.95;
}

.top-bar span {
  margin: 0 1rem;
  opacity: 0.85;
}

.top-bar span::before {
  content: '|';
  margin-right: 1rem;
  opacity: 0.3;
}

.top-bar span:first-child::before {
  display: none;
}

/* ============================================
   HEADER / NAV
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--sl-border);
  transition: box-shadow var(--sl-duration) var(--sl-ease);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(26, 47, 42, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: var(--sl-max-width);
  margin: 0 auto;
  padding-left: var(--sl-space-md);
  padding-right: var(--sl-space-md);
}

.site-logo {
  font-family: var(--sl-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--sl-text);
}

.site-logo span {
  color: var(--sl-accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--sl-text-muted);
  position: relative;
  padding-bottom: 2px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sl-accent);
  transition: width var(--sl-duration) var(--sl-ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--sl-text);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.header-actions a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sl-text-muted);
}

.header-actions a:hover {
  color: var(--sl-accent);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sl-accent);
  color: var(--sl-white);
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-left: 4px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--sl-text);
  margin: 5px 0;
  transition: all var(--sl-duration) var(--sl-ease);
}

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

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--sl-bg-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 139, 117, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(45, 139, 117, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sl-space-lg);
  align-items: center;
  max-width: var(--sl-max-width);
  margin: 0 auto;
  padding: var(--sl-space-xl) var(--sl-space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sl-accent);
  margin-bottom: 1.5rem;
  font-family: var(--sl-font-mono);
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--sl-accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  color: var(--sl-white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-style: normal;
  color: var(--sl-accent);
}

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

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

.hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media video,
.hero-media img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--sl-radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--sl-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--sl-radius);
  cursor: pointer;
  transition: all var(--sl-duration) var(--sl-ease);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--sl-accent);
  color: var(--sl-white);
  border-color: var(--sl-accent);
}

.btn-primary:hover {
  background: var(--sl-accent-hover);
  border-color: var(--sl-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 139, 117, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--sl-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--sl-accent);
  color: var(--sl-accent);
}

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

.btn-dark:hover {
  background: var(--sl-accent);
  border-color: var(--sl-accent);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--sl-accent);
  border-color: var(--sl-accent);
}

.btn-ghost:hover {
  background: var(--sl-accent);
  color: var(--sl-white);
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  background: var(--sl-white);
  border-bottom: 1px solid var(--sl-border);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--sl-max-width);
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: var(--sl-space-md) var(--sl-space-sm);
  border-right: 1px solid var(--sl-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-value {
  font-family: var(--sl-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--sl-accent);
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--sl-text-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   SECTION LAYOUT
   ============================================ */

.section {
  padding: var(--sl-space-xl) 0;
}

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

.section-alt {
  background: var(--sl-bg-alt);
}

.section-label {
  font-family: var(--sl-font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sl-accent);
  margin-bottom: 0.75rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--sl-space-lg);
}

.section-header h2 {
  margin-bottom: 0.5rem;
}

.section-header-left {
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--sl-space-lg);
}

/* ============================================
   PRODUCTS GRID
   ============================================ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sl-space-md);
}

.product-card {
  background: var(--sl-bg-card);
  border-radius: var(--sl-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sl-border);
  transition: all var(--sl-duration) var(--sl-ease);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 47, 42, 0.1);
  border-color: var(--sl-accent);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--sl-bg-alt);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--sl-ease);
}

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

.product-info {
  padding: 1.25rem;
}

.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.product-info .product-desc {
  font-size: 0.85rem;
  color: var(--sl-text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--sl-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--sl-text);
}

.product-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--sl-text-muted);
  margin-left: 2px;
}

.product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sl-accent);
  color: var(--sl-white);
  font-size: 1.1rem;
  transition: all var(--sl-duration) var(--sl-ease);
}

.product-link:hover {
  background: var(--sl-accent-hover);
  transform: scale(1.1);
}

/* ============================================
   MARQUEE / TICKER
   ============================================ */

.marquee {
  background: var(--sl-accent);
  overflow: hidden;
  padding: 0.9rem 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: scroll-marquee 30s linear infinite;
}

.marquee-item {
  font-family: var(--sl-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sl-white);
  padding: 0 2.5rem;
  opacity: 0.9;
}

.marquee-item::after {
  content: '◆';
  margin-left: 2.5rem;
  opacity: 0.4;
  font-size: 0.5rem;
  vertical-align: middle;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sl-space-md);
}

.philosophy-card {
  padding: var(--sl-space-md);
  border-radius: var(--sl-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--sl-duration) var(--sl-ease);
}

.philosophy-card:hover {
  background: rgba(45, 139, 117, 0.08);
  border-color: rgba(45, 139, 117, 0.25);
}

.philosophy-number {
  font-family: var(--sl-font-mono);
  font-size: 0.85rem;
  color: var(--sl-accent);
  font-weight: 700;
  margin-bottom: 1rem;
}

.philosophy-card h3 {
  color: var(--sl-white);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.philosophy-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

/* ============================================
   FEATURED PRODUCT (Product of the Week)
   ============================================ */

.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sl-space-lg);
  align-items: center;
}

.featured-image {
  border-radius: var(--sl-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 47, 42, 0.12);
}

.featured-image img {
  width: 100%;
  display: block;
}

.featured-content h2 {
  margin-bottom: 1rem;
}

.featured-content > p {
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.feature-list li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--sl-text-muted);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sl-accent);
  font-weight: 700;
}

.featured-buttons {
  display: flex;
  gap: 1rem;
}

/* ============================================
   ENGINEERING / SPECS
   ============================================ */

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sl-space-md);
}

.spec-card {
  background: var(--sl-bg-card);
  border-radius: var(--sl-radius-lg);
  padding: var(--sl-space-md);
  border: 1px solid var(--sl-border);
  transition: all var(--sl-duration) var(--sl-ease);
}

.spec-card:hover {
  border-color: var(--sl-accent);
  box-shadow: 0 8px 30px rgba(45, 139, 117, 0.08);
}

.spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--sl-radius);
  background: var(--sl-accent-light);
  color: var(--sl-accent);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.spec-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.spec-card p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.spec-tag {
  font-family: var(--sl-font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sl-accent);
  opacity: 0.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: var(--sl-bg-dark);
  text-align: center;
  padding: var(--sl-space-xl) var(--sl-space-md);
}

.cta-section h2 {
  color: var(--sl-white);
  margin-bottom: 0.75rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ============================================
   NEWSLETTER
   ============================================ */

.newsletter {
  text-align: center;
  padding: var(--sl-space-xl) var(--sl-space-md);
}

.newsletter h2 {
  margin-bottom: 0.25rem;
}

.newsletter > p {
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 1rem;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--sl-border);
  border-radius: var(--sl-radius);
  font-family: var(--sl-font-body);
  font-size: 0.9rem;
  background: var(--sl-bg-card);
  color: var(--sl-text);
  outline: none;
  transition: border-color var(--sl-duration) var(--sl-ease);
}

.newsletter-form input:focus {
  border-color: var(--sl-accent);
}

.newsletter-form button {
  padding: 0.85rem 1.5rem;
  background: var(--sl-accent);
  color: var(--sl-white);
  border: none;
  border-radius: var(--sl-radius);
  font-family: var(--sl-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--sl-duration) var(--sl-ease);
}

.newsletter-form button:hover {
  background: var(--sl-accent-hover);
}

.newsletter-hint {
  font-size: 0.8rem;
  color: var(--sl-text-muted);
  opacity: 0.7;
}

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

.site-footer {
  background: var(--sl-bg-dark);
  color: rgba(255, 255, 255, 0.6);
  padding-top: var(--sl-space-lg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sl-space-lg);
  max-width: var(--sl-max-width);
  margin: 0 auto;
  padding: 0 var(--sl-space-md);
  padding-bottom: var(--sl-space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .site-logo {
  color: var(--sl-white);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-family: var(--sl-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sl-white);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--sl-duration) var(--sl-ease);
}

.footer-col ul li a:hover {
  color: var(--sl-accent);
}

.footer-bottom {
  max-width: var(--sl-max-width);
  margin: 0 auto;
  padding: 1.5rem var(--sl-space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-payments {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.footer-payments span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  font-family: var(--sl-font-mono);
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--sl-bg-dark);
  z-index: 200;
  padding: var(--sl-space-lg) var(--sl-space-md);
  transition: right var(--sl-duration) var(--sl-ease);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--sl-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav a:hover {
  color: var(--sl-accent);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 150;
}

.mobile-overlay.active {
  display: block;
}

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

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  text-align: left;
}

.woocommerce ul.products li.product a img {
  border-radius: var(--sl-radius-lg);
}

.woocommerce ul.products li.product .price {
  font-family: var(--sl-font-display);
  font-weight: 700;
  color: var(--sl-text);
}

.woocommerce .button,
.woocommerce button.button {
  background: var(--sl-accent) !important;
  color: var(--sl-white) !important;
  border-radius: var(--sl-radius) !important;
  font-family: var(--sl-font-body) !important;
  font-weight: 600 !important;
  border: none !important;
  transition: all var(--sl-duration) var(--sl-ease) !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: var(--sl-accent-hover) !important;
}

.woocommerce-message {
  border-top-color: var(--sl-accent) !important;
}

.woocommerce-message::before {
  color: var(--sl-accent) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--sl-ease), transform 0.6s var(--sl-ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

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

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding: var(--sl-space-lg) var(--sl-space-md);
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-media {
    order: -1;
  }

  .featured-product {
    grid-template-columns: 1fr;
    gap: var(--sl-space-md);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --sl-space-xl: 4rem;
    --sl-space-lg: 3rem;
  }

  .main-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .philosophy-grid,
  .specs-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sl-space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .top-bar span {
    display: block;
    margin: 0.2rem 0;
  }

  .top-bar span::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
