/*
Theme Name: Erickson Landscape Supply
Theme URI: https://www.ericksonslandscapesupply.com
Author: Erickson's Landscape Supply
Author URI: https://www.ericksonslandscapesupply.com
Description: Premium landscape materials showcase theme for Erickson's Landscape Supply. Features nature-inspired design, volume calculator, product showcase, and phone-first CTAs.
Version: 1.4.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: erickson-landscape
Tags: landscape, nature, green, one-page, custom-post-type
*/

/* ============================================
   CSS VARIABLES & ROOT
   ============================================ */
:root {
  /* Nature-Inspired Color Palette */
  --color-grass-dark: #2d5016;
  --color-grass: #4A7023;
  --color-grass-light: #6B8E23;
  --color-grass-bright: #8FBC8F;

  --color-soil-dark: #5C4033;
  --color-soil: #8B6F47;
  --color-soil-light: #D2B48C;

  --color-sky-light: #87CEEB;
  --color-sky: #4A90E2;
  --color-sky-dark: #2C5F8D;

  --color-flower-pink: #FFB6C1;
  --color-flower-yellow: #FFD700;
  --color-flower-purple: #DDA0DD;
  --color-flower-white: #F0F8FF;

  --color-stone: #A9A9A9;
  --color-stone-light: #D3D3D3;

  /* Aliases used by estimator & newer components */
  --color-forest: var(--color-grass-dark);   /* #2d5016 */
  --color-sage:   var(--color-grass-light);  /* #6B8E23 */
  --color-tan:    var(--color-soil-light);   /* #D2B48C */

  --color-text-dark: #2C2C2C;
  --color-text-medium: #5A5A5A;
  --color-text-light: #7A7A7A;

  --color-white: #FFFFFF;
  --color-bg-light: #F5F7FA;

  /* Gradients */
  --gradient-grass: linear-gradient(135deg, var(--color-grass-dark) 0%, var(--color-grass-light) 50%, var(--color-grass-bright) 100%);
  --gradient-soil: linear-gradient(135deg, var(--color-soil-dark) 0%, var(--color-soil) 100%);
  --gradient-sky: linear-gradient(180deg, var(--color-sky-light) 0%, var(--color-sky) 50%, var(--color-sky-dark) 100%);
  --gradient-sunset: linear-gradient(135deg, #FF6B6B 0%, #FFD93D 50%, #6BCF7F 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Inter', sans-serif;

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-smooth: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-secondary);
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top, rgba(135, 206, 235, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-grass-dark);
}

h1 { font-size: clamp(3.6rem, 6vw, 7.2rem); }
h2 { font-size: clamp(3rem, 5vw, 5.4rem); }
h3 { font-size: clamp(2.4rem, 4vw, 3.6rem); }
h4 { font-size: clamp(2rem, 3vw, 2.8rem); }

.title-highlight {
  display: block;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 1;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1.2rem 2.4rem;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
  z-index: -1;
}

.btn:hover::before {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gradient-grass);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--color-white);
  color: var(--color-grass-dark);
  border: 2px solid var(--color-grass-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--color-grass-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1.6rem 3.2rem;
  font-size: 1.7rem;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: var(--spacing-lg);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.logo-image {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(107, 142, 35, 0.3));
}

.footer-logo .logo-image {
  height: 80px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-grass);
  transition: width var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-grass-light);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.directions-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  background: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.4rem;
  transition: all var(--transition-smooth);
  white-space: nowrap;
}

.directions-btn:hover {
  background: var(--color-forest);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.directions-label {
  display: inline;
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1rem 2rem;
  background: var(--gradient-grass);
  color: var(--color-white);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.phone-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.phone-icon {
  flex-shrink: 0;
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(-10deg); }
  20%, 40% { transform: rotate(10deg); }
  50%, 100% { transform: rotate(0deg); }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: var(--spacing-sm);
  cursor: pointer;
}

.hamburger {
  width: 30px;
  height: 3px;
  background: var(--color-grass-dark);
  border-radius: 3px;
  transition: var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12rem 0 8rem;
  overflow: hidden;
  /* Background set via inline style in front-page.php using get_template_directory_uri() */
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), var(--gradient-grass);
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 400px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
  border-radius: 50%;
  animation: float-cloud 30s ease-in-out infinite;
  filter: blur(20px);
}

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

@keyframes float-cloud-reverse {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-100px) translateY(20px); }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 10;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-lg);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-grass-dark);
}

.badge-icon {
  font-size: 1.8rem;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
  text-shadow: 2px 2px 4px rgba(45, 80, 22, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--spacing-xl);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: var(--spacing-3xl);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

.stat-number {
  font-family: var(--font-primary);
  font-size: 3.6rem;
  font-weight: 700;
  background: var(--gradient-grass);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.3rem;
  color: var(--color-text-medium);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--color-stone-light), transparent);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: rgba(255, 255, 255, 0.9);
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { top: 10px; opacity: 1; }
  100% { top: 30px; opacity: 0; }
}

.scroll-text {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* FLOWING GRASS EFFECT REMOVED - caused vertical line artifacts */

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.section-label {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.1) 0%, rgba(143, 188, 143, 0.1) 100%);
  color: var(--color-grass-dark);
  border-radius: 50px;
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-md);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
}

.section-title {
  margin-bottom: var(--spacing-md);
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--color-text-medium);
  line-height: 1.6;
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-section {
  background: var(--color-white);
  position: relative;
}

.trust-section::before,
.trust-section::after {
  content: '🌿';
  position: absolute;
  font-size: 8rem;
  opacity: 0.1;
  z-index: 0;
  animation: sway 4s ease-in-out infinite;
}

.trust-section::before {
  top: 10%;
  left: 5%;
}

.trust-section::after {
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}

@keyframes sway {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.trust-card {
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(107, 142, 35, 0.1);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-grass);
  transform: scaleX(0);
  transition: transform var(--transition-smooth);
}

.trust-card:hover::before {
  transform: scaleX(1);
}

.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-grass-light);
}

.trust-icon {
  font-size: 5rem;
  margin-bottom: var(--spacing-md);
  display: inline-block;
}

.trust-title {
  font-size: 2.2rem;
  margin-bottom: var(--spacing-sm);
}

.trust-description {
  color: var(--color-text-medium);
  line-height: 1.6;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
  background: linear-gradient(180deg, var(--color-bg-light) 0%, rgba(245, 247, 250, 0.5) 100%);
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-3xl);
}

.product-category {
  position: relative;
  cursor: pointer;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

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

.product-category:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

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

.placeholder-image {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  transition: transform var(--transition-slow);
}

.product-category:hover .placeholder-image {
  transform: scale(1.05);
}

.placeholder-icon {
  font-size: 6rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.placeholder-text {
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.product-badge {
  position: absolute;
  top: var(--spacing-md);
  right: var(--spacing-md);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 215, 0, 0.95);
  color: var(--color-grass-dark);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.product-content {
  padding: var(--spacing-xl);
}

.product-title {
  font-size: 2.4rem;
  margin-bottom: var(--spacing-md);
}

.product-description {
  color: var(--color-text-medium);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-lg);
}

.feature-tag {
  padding: 0.4rem var(--spacing-sm);
  background: rgba(107, 142, 35, 0.1);
  color: var(--color-grass-dark);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-grass-light);
  font-weight: 600;
  transition: var(--transition-base);
}

/* Stretched link — makes the whole card clickable */
.product-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product-link:hover {
  gap: var(--spacing-sm);
  color: var(--color-grass-dark);
}

/* Keep the estimator button clickable above the stretched link */
.add-to-estimator-btn {
  position: relative;
  z-index: 2;
}

.products-cta {
  text-align: center;
  padding: var(--spacing-xl);
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
}

.cta-text {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-grass-dark);
  margin-bottom: var(--spacing-lg);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--color-white);
  position: relative;
}

.services-section::before {
  content: '🪴';
  position: absolute;
  top: 15%;
  left: 8%;
  font-size: 6rem;
  opacity: 0.2;
  animation: grow 4s ease-in-out infinite;
}

.services-section::after {
  content: '🌱';
  position: absolute;
  bottom: 15%;
  right: 8%;
  font-size: 6rem;
  opacity: 0.2;
  animation: grow 5s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes grow {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-xl);
}

.service-card {
  padding: var(--spacing-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 247, 250, 0.9) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: all var(--transition-smooth);
  text-align: center;
  opacity: 0;
  transform: scale(0.9);
  animation: scale-in 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes scale-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.service-card:hover {
  border-color: var(--color-grass-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.service-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-md);
  background: var(--gradient-grass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  transform: rotate(360deg);
}

.service-icon {
  font-size: 3.6rem;
}

.service-title {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}

.service-description {
  color: var(--color-text-medium);
  line-height: 1.6;
}

/* ============================================
   CALCULATOR SECTION
   ============================================ */
.calculator-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
  overflow: hidden;
}

.calculator-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background:
    repeating-linear-gradient(90deg,
      rgba(139, 111, 71, 0.3) 0px,
      rgba(139, 111, 71, 0.3) 20px,
      rgba(92, 64, 51, 0.3) 20px,
      rgba(92, 64, 51, 0.3) 40px
    );
  border-top: 3px solid rgba(74, 112, 35, 0.5);
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-3xl);
  align-items: center;
}

.calculator-intro {
  position: relative;
  z-index: 1;
}

.calculator-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.calculator-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-grass-dark);
}

.feature-icon {
  flex-shrink: 0;
  color: var(--color-grass-light);
}

.calculator-tool {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.form-label {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-grass-dark);
}

.form-input,
.form-textarea {
  padding: 1.2rem 1.6rem;
  border: 2px solid rgba(107, 142, 35, 0.2);
  border-radius: var(--radius-md);
  font-family: var(--font-secondary);
  font-size: 1.5rem;
  transition: all var(--transition-base);
  background: var(--color-white);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-grass-light);
  box-shadow: 0 0 0 3px rgba(107, 142, 35, 0.1);
}

.form-hint {
  font-size: 1.2rem;
  color: var(--color-text-light);
  font-style: italic;
}

.shape-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-sm);
}

.shape-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  border: 2px solid rgba(107, 142, 35, 0.2);
  border-radius: var(--radius-md);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-dark);
}

.shape-btn:hover {
  border-color: var(--color-grass-light);
  background: rgba(107, 142, 35, 0.05);
}

.shape-btn.active {
  border-color: var(--color-grass-light);
  background: rgba(107, 142, 35, 0.1);
  color: var(--color-grass-dark);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.calculator-result {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.1) 0%, rgba(143, 188, 143, 0.1) 100%);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-grass-light);
}

.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-lg);
}

.result-header h3 {
  font-size: 2rem;
}

.result-reset {
  padding: var(--spacing-xs) var(--spacing-md);
  background: var(--color-white);
  border: 1px solid var(--color-grass-light);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-grass-dark);
  cursor: pointer;
  transition: var(--transition-base);
}

.result-reset:hover {
  background: var(--color-grass-light);
  color: var(--color-white);
}

.result-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.result-item {
  text-align: center;
  padding: var(--spacing-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
}

.result-label {
  font-size: 1.2rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}

.result-value {
  font-family: var(--font-primary);
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-grass-dark);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
  background: var(--color-white);
  position: relative;
}

.blog-section::before {
  content: '📚';
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 5rem;
  opacity: 0.1;
  transform: rotate(15deg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 2px solid transparent;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-grass-light);
}

.blog-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-image .placeholder-image {
  transition: transform var(--transition-slow);
}

.blog-card:hover .placeholder-image {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-grass-dark);
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-content {
  padding: var(--spacing-xl);
}

.blog-date {
  display: block;
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-sm);
}

.blog-title {
  font-size: 2.2rem;
  margin-bottom: var(--spacing-sm);
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--color-text-medium);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-grass-light);
  font-weight: 600;
  transition: var(--transition-base);
}

.blog-link:hover {
  gap: var(--spacing-sm);
  color: var(--color-grass-dark);
}

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

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  background: linear-gradient(135deg, var(--color-bg-light) 0%, rgba(240, 248, 255, 1) 100%);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
  opacity: 0;
  transform: scale(0.95);
  animation: scale-in 0.6s ease forwards;
  animation-delay: var(--delay, 0s);
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
  z-index: 10;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-lg);
  background: linear-gradient(to top, rgba(45, 80, 22, 0.95) 0%, rgba(45, 80, 22, 0.7) 50%, transparent 100%);
  color: var(--color-white);
  transform: translateY(60%);
  transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-tag {
  display: inline-block;
  padding: 0.4rem var(--spacing-sm);
  background: rgba(255, 215, 0, 0.9);
  color: var(--color-grass-dark);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--spacing-xs);
}

.gallery-title {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.gallery-description {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: var(--color-white);
  position: relative;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-3xl);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin: var(--spacing-xl) 0;
}

.contact-method {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(107, 142, 35, 0.05);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-grass-light);
  transition: all var(--transition-base);
}

.contact-method:hover {
  background: rgba(107, 142, 35, 0.1);
  transform: translateX(5px);
}

.method-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-grass);
  border-radius: 50%;
  color: var(--color-white);
}

.method-content {
  flex: 1;
}

.method-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.method-value {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-grass-dark);
  transition: var(--transition-base);
}

.method-value:hover {
  color: var(--color-grass-light);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 142, 35, 0.1) 0%, rgba(143, 188, 143, 0.1) 100%);
  border-radius: 50%;
  color: var(--color-grass-dark);
  transition: all var(--transition-smooth);
}

.social-link:hover {
  background: var(--gradient-grass);
  color: var(--color-white);
  transform: translateY(-4px) rotate(360deg);
  box-shadow: var(--shadow-md);
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 247, 250, 0.9) 100%);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(107, 142, 35, 0.1);
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.form-note {
  font-size: 1.3rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: var(--spacing-md);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
  background: var(--gradient-grass);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before,
.newsletter-section::after {
  content: '🍃';
  position: absolute;
  font-size: 3rem;
  opacity: 0.3;
  animation: fall 10s linear infinite;
}

.newsletter-section::before {
  top: -50px;
  left: 20%;
  animation-delay: 0s;
}

.newsletter-section::after {
  top: -50px;
  right: 30%;
  animation-delay: 3s;
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

.newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-xl);
  padding: var(--spacing-2xl);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
}

.newsletter-title {
  font-size: 3.2rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
}

.newsletter-subtitle {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.newsletter-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 500px;
  width: 100%;
}

.newsletter-input-wrapper {
  position: relative;
  flex: 1;
}

.input-icon {
  position: absolute;
  left: var(--spacing-md);
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-light);
  pointer-events: none;
}

.newsletter-input {
  width: 100%;
  padding: 1.4rem 1.6rem 1.4rem 4.4rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  transition: all var(--transition-base);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gradient-soil);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.footer-description {
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-sm);
}

.footer-address {
  font-size: 1.4rem;
  font-style: normal;
  margin-bottom: var(--spacing-md);
}

.footer-address a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-address a:hover {
  color: var(--color-tan);
}

.footer-social {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social .social-link {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.footer-social .social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
}

.footer-heading {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  transition: var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact a {
  transition: var(--transition-base);
}

.footer-contact a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-legal a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: var(--spacing-xl);
  right: var(--spacing-xl);
  width: 56px;
  height: 56px;
  background: var(--gradient-grass);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-smooth);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-fade-in {
  animation: fade-in 1s ease forwards;
}

.animate-fade-in-up {
  animation: fade-in-up 1s ease forwards;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================
   WORDPRESS SPECIFIC
   ============================================ */
.wp-block-image,
.alignnone,
.aligncenter,
.alignleft,
.alignright {
  margin: var(--spacing-lg) 0;
}

.aligncenter {
  text-align: center;
}

.wp-caption {
  max-width: 100%;
}

.page-content,
.entry-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--spacing-3xl) var(--spacing-lg);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin: var(--spacing-xl) 0 var(--spacing-md);
}

.entry-content p {
  margin-bottom: var(--spacing-md);
  font-size: 1.7rem;
  line-height: 1.8;
  color: var(--color-text-medium);
}

.entry-content ul,
.entry-content ol {
  padding-left: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin-bottom: var(--spacing-xs);
  font-size: 1.6rem;
  color: var(--color-text-medium);
}

/* Push non-homepage content below the fixed header */
body:not(.home) {
  padding-top: var(--header-height, 88px);
}

/* WooCommerce category/shop pages */
.woocommerce-page:not(.home),
.woocommerce-shop:not(.home),
.tax-product_cat {
  padding-top: var(--header-height, 88px);
}

/* Page hero for inner pages */
.page-hero {
  background: var(--gradient-grass);
  padding: 6rem 0 6rem;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(3rem, 5vw, 5.4rem);
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.page-hero-subtitle {
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Breadcrumb */
.breadcrumb {
  padding: var(--spacing-md) 0;
  font-size: 1.4rem;
  color: var(--color-text-light);
}

.breadcrumb a {
  color: var(--color-grass-light);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-3xl);
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.5rem;
  transition: var(--transition-base);
}

.pagination a {
  background: var(--color-white);
  color: var(--color-grass-dark);
  border: 2px solid rgba(107, 142, 35, 0.2);
}

.pagination a:hover,
.pagination .current {
  background: var(--gradient-grass);
  color: var(--color-white);
  border-color: transparent;
}

/* 404 page */
.error-404 {
  text-align: center;
  padding: var(--spacing-3xl) 0;
}

.error-404 .error-number {
  font-size: 12rem;
  font-family: var(--font-primary);
  font-weight: 700;
  background: var(--gradient-grass);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--spacing-md);
}

/* Single post */
.single-post-header {
  background: var(--gradient-grass);
  padding: 14rem 0 6rem;
}

.single-post-title {
  color: var(--color-white);
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .header-content {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
  }

  .calculator-wrapper,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

  .hero-stats {
    flex-wrap: wrap;
  }
}

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

  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    padding: var(--spacing-lg);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-smooth);
    z-index: 999;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-link {
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(107, 142, 35, 0.1);
  }

  .menu-toggle {
    display: flex;
  }

  .phone-number {
    display: none;
  }

  .directions-label {
    display: none;
  }

  .directions-btn {
    padding: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .products-grid,
  .services-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .input-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }

  .back-to-top {
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 48px;
    height: 48px;
  }
}

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

:focus-visible {
  outline: 3px solid var(--color-grass-light);
  outline-offset: 3px;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .hero-particles,
  .back-to-top,
  .newsletter-section {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* ============================================================
   DELIVERY ESTIMATOR
   ============================================================ */

/* Overlay */
.estimator-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.estimator-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* Panel */
.estimator-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

.estimator-panel.is-open {
  transform: translateX(0);
}

/* Panel header */
.estimator-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.4rem;
  background: var(--gradient-grass);
  color: #fff;
  flex-shrink: 0;
}

.estimator-panel-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.estimator-panel-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.estimator-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.estimator-close:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Scrollable body */
.estimator-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

/* Section labels */
.estimator-section-label {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-forest);
  margin-bottom: 1.2rem;
}

/* Empty state */
.estimator-empty {
  text-align: center;
  padding: 2.4rem 1.6rem;
  color: var(--color-text-light);
  border: 2px dashed #ddd;
  border-radius: var(--radius-md);
}

.estimator-empty svg {
  color: #ccc;
  margin-bottom: 1rem;
}

.estimator-empty p {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
}

.estimator-empty-hint {
  font-size: 1.3rem !important;
  color: #aaa;
}

/* Product items in estimator */
.estimator-product-item {
  background: #f8f9f6;
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
  border: 1px solid #e8ede0;
}

.estimator-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.estimator-product-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
  flex: 1;
  line-height: 1.3;
}

.estimator-product-unit-price {
  font-size: 1.3rem;
  color: var(--color-text-light);
  white-space: nowrap;
}

.estimator-product-remove {
  background: none;
  border: none;
  color: #bbb;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
  margin-top: -2px;
}

.estimator-product-remove:hover {
  color: #e74c3c;
}

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

/* Quantity controls */
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid #d0d8c8;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.qty-btn {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-forest);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
  flex-shrink: 0;
}

.qty-btn:hover {
  background: #eef3e8;
}

.qty-btn:disabled {
  color: #ccc;
  cursor: not-allowed;
}

.qty-input {
  width: 48px;
  text-align: center;
  border: none;
  border-left: 1.5px solid #d0d8c8;
  border-right: 1.5px solid #d0d8c8;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-dark);
  font-family: var(--font-primary);
  padding: 0.4rem 0;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.estimator-line-total {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-forest);
  min-width: 60px;
  text-align: right;
}

.estimator-line-total--na {
  font-size: 1.3rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* Products subtotal bar */
.estimator-subtotal {
  border-top: 2px dashed #d0d8c8;
  padding-top: 1.2rem;
  margin-top: 0.4rem;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.subtotal-note {
  font-size: 1.2rem;
  color: var(--color-text-light);
  font-style: italic;
  margin-top: 0.6rem;
}

/* Grand totals block */
.estimator-totals {
  background: linear-gradient(135deg, #f0f5e8 0%, #e8f0d8 100%);
  border: 2px solid var(--color-sage);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.totals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.totals-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.totals-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.totals-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-medium);
  font-weight: 500;
}

.totals-value {
  font-weight: 700;
  color: var(--color-text-dark);
}

.totals-grand {
  border-top: 2px solid var(--color-sage) !important;
  border-bottom: none !important;
  padding-top: 1rem;
  margin-top: 0.4rem;
}

.totals-grand .totals-label {
  font-size: 1.7rem;
  color: var(--color-text-dark);
  font-weight: 700;
}

.totals-grand-amt {
  font-size: 2.4rem !important;
  color: var(--color-forest) !important;
}

.totals-disclaimer {
  font-size: 1.2rem;
  color: var(--color-text-light);
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* From address line */
.estimator-from {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 1.4rem;
}

/* PlaceAutocompleteElement (new Google Places API) */

/* Suppress the full-screen dialog backdrop Google adds */
gmp-internal-backdrop,
.gmp-m3-paper-backdrop,
[jsaction*="mapspicker:dismiss"] {
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
  pointer-events: none !important;
}

/* Make the element fill the form-group like a regular input */
.estimator-place-autocomplete,
gmp-place-autocomplete {
  display: block;
  width: 100%;
}

/* Style the internal input to match .form-input */
.estimator-place-autocomplete input,
gmp-place-autocomplete input {
  width: 100% !important;
  padding: 1rem 1.2rem !important;
  border: 1.5px solid var(--color-grass-bright) !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-primary) !important;
  font-size: 1.5rem !important;
  color: var(--color-text-dark) !important;
  background: #fff !important;
  box-sizing: border-box !important;
  outline: none !important;
}

.estimator-place-autocomplete input:focus,
gmp-place-autocomplete input:focus {
  border-color: var(--color-grass) !important;
  box-shadow: 0 0 0 3px rgba(74, 112, 35, 0.1) !important;
}

/* Error message */
.estimator-error {
  font-size: 1.4rem;
  color: #e74c3c;
  background: #fef0f0;
  border-radius: var(--radius-sm);
  padding: 1rem 1.4rem;
  margin-top: 1rem;
}

/* Results */
.estimator-result {
  background: linear-gradient(135deg, #f0f5e8 0%, #e8f0d8 100%);
  border: 2px solid var(--color-sage);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.estimate-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.estimate-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.estimate-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.estimate-row-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-text-medium);
  font-weight: 500;
}

.estimate-row-value {
  font-weight: 700;
  color: var(--color-text-dark);
}

.estimate-row-total {
  margin-top: 0.4rem;
  padding-top: 1rem;
  border-top: 2px solid var(--color-sage) !important;
  border-bottom: none !important;
}

.estimate-fee {
  font-size: 2.2rem;
  color: var(--color-forest);
}

.estimate-disclaimer {
  font-size: 1.2rem;
  color: var(--color-text-light);
  margin: 0;
  font-style: italic;
}

/* CTA */
.estimator-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.estimator-call-btn {
  font-size: 1.5rem !important;
}

.estimator-clear-btn {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #aaa;
  cursor: pointer;
  text-align: center;
  padding: 0.4rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.estimator-clear-btn:hover {
  color: #e74c3c;
}

/* ---- Header estimator toggle button ---- */
.estimator-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.6rem;
  background: transparent;
  color: var(--color-forest);
  border: 2px solid var(--color-forest);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.4rem;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  white-space: nowrap;
}

.estimator-toggle-btn:hover,
.estimator-toggle-btn[aria-expanded="true"] {
  background: var(--color-forest);
  color: #fff;
}

.estimator-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-tan);
  color: var(--color-forest);
  font-size: 1.1rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.estimator-count[data-count="0"],
.estimator-count:empty {
  display: none;
}

.estimator-btn-label {
  display: inline;
}

/* ---- Add to estimator button on product cards ---- */
.product-card-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.add-to-estimator-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: transparent;
  color: var(--color-forest);
  border: 1.5px solid var(--color-forest);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.add-to-estimator-btn:hover {
  background: var(--color-forest);
  color: #fff;
}

.add-to-estimator-btn.added {
  background: var(--color-forest);
  color: #fff;
  border-color: var(--color-forest);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .estimator-panel {
    width: 100vw;
  }

  .estimator-btn-label {
    display: none;
  }

  .estimator-toggle-btn {
    padding: 1rem;
  }
}

/* Large variant — single product page */
.add-to-estimator-btn--large {
  padding: 1.4rem 2.8rem;
  font-size: 1.7rem;
  border-width: 2px;
  border-radius: var(--radius-md);
  width: 100%;
  justify-content: center;
  margin-top: 1.6rem;
}

/* Loop variant — WooCommerce category/shop grid */
.add-to-estimator-btn--loop {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
}

/* "Added" confirmation note on single product */
.erickson-estimator-wrap {
  margin-top: 0.8rem;
}

.estimator-added-note {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: var(--color-forest);
  font-weight: 600;
}

.estimator-open-link {
  background: none;
  border: none;
  color: var(--color-forest);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.estimator-open-link:hover {
  color: var(--color-sage);
}

/* ============================================
   WOOCOMMERCE PRODUCT LOOP — MATCH HOMEPAGE THEME
   ============================================ */

/* ---- Page layout ---- */
.woocommerce-page .woocommerce,
.tax-product_cat .woocommerce {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 8rem;
}

/* Category archive title */
.woocommerce-products-header {
  text-align: center;
  margin-bottom: 4rem;
}
.woocommerce-products-header__title.page-title {
  font-family: var(--font-primary);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--color-grass-dark);
  margin-bottom: 1rem;
}
.term-description {
  font-size: 1.8rem;
  color: var(--color-text-medium);
  max-width: 64rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---- Product grid ---- */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
  gap: 3rem !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
  clear: both !important;
}

/* ---- Product card ---- */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: var(--color-white) !important;
  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: auto !important;
  display: flex !important;
  flex-direction: column !important;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14) !important;
}

/* ---- Product image ---- */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  width: 100% !important;
  height: 240px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  margin: 0 !important;
}

.woocommerce ul.products li.product:hover a img,
.woocommerce-page ul.products li.product:hover a img {
  transform: scale(1.05) !important;
}

/* Image wrapper clip */
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce-page ul.products li.product .woocommerce-loop-product__link {
  display: block !important;
  overflow: hidden !important;
  line-height: 0 !important;
}

/* ---- Product info area ---- */
.woocommerce ul.products li.product .product-info-wrap,
.woocommerce ul.products li.product > a + *,
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .price,
.woocommerce-page ul.products li.product .button {
  padding-left: 2.4rem !important;
  padding-right: 2.4rem !important;
}

/* ---- Product title ---- */
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce-page ul.products li.product h2.woocommerce-loop-product__title {
  font-family: var(--font-primary) !important;
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--color-text-dark) !important;
  line-height: 1.3 !important;
  margin: 2rem 0 0.8rem !important;
  padding: 0 2.4rem !important;
}

/* ---- Price ---- */
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  display: block !important;
  font-family: var(--font-primary) !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: var(--color-grass-dark) !important;
  margin: 0 0 1.6rem !important;
  padding: 0 2.4rem !important;
}

.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
  color: var(--color-text-light) !important;
  font-weight: 400 !important;
  margin-right: 0.6rem !important;
}

/* ---- Buttons area ---- */
.woocommerce ul.products li.product .erickson-loop-actions,
.woocommerce-page ul.products li.product .erickson-loop-actions {
  display: flex !important;
  flex-direction: column !important;
  gap: 1rem !important;
  padding: 0 2.4rem 2.4rem !important;
  margin-top: auto !important;
}

/* View Details button (replaces WooCommerce add-to-cart) */
.woocommerce ul.products li.product a.button,
.woocommerce-page ul.products li.product a.button,
.woocommerce ul.products li.product .erickson-view-btn,
.woocommerce-page ul.products li.product .erickson-view-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  width: 100% !important;
  padding: 1.2rem 2rem !important;
  background: linear-gradient(135deg, var(--color-grass-dark) 0%, var(--color-grass-light) 100%) !important;
  color: #fff !important;
  font-family: var(--font-primary) !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
  box-sizing: border-box !important;
  letter-spacing: 0.02em !important;
  margin: 0 2.4rem 2.4rem !important;
  width: calc(100% - 4.8rem) !important;
}

.woocommerce ul.products li.product a.button:hover,
.woocommerce-page ul.products li.product a.button:hover,
.woocommerce ul.products li.product .erickson-view-btn:hover,
.woocommerce-page ul.products li.product .erickson-view-btn:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
}

/* Add to Estimator button on loop */
.woocommerce ul.products li.product .add-to-estimator-btn--loop,
.woocommerce-page ul.products li.product .add-to-estimator-btn--loop {
  width: calc(100% - 4.8rem) !important;
  margin: 0 2.4rem 2.4rem !important;
  justify-content: center !important;
}

/* ---- Sale badge ---- */
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
  background: #FFD700 !important;
  color: var(--color-grass-dark) !important;
  font-family: var(--font-primary) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  padding: 0.4rem 1.2rem !important;
  top: 1.6rem !important;
  left: auto !important;
  right: 1.6rem !important;
  min-height: unset !important;
  min-width: unset !important;
  line-height: 1.6 !important;
}

/* ---- WooCommerce result count & ordering bar ---- */
.woocommerce-result-count,
.woocommerce-ordering {
  font-family: var(--font-primary) !important;
  font-size: 1.4rem !important;
  color: var(--color-text-medium) !important;
}

.woocommerce-ordering select {
  border: 1.5px solid var(--color-grass-bright) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.6rem 1rem !important;
  font-family: var(--font-primary) !important;
  font-size: 1.4rem !important;
  color: var(--color-text-dark) !important;
  background: #fff !important;
}

/* ---- Pagination ---- */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border: none !important;
  border-radius: var(--radius-sm) !important;
  font-family: var(--font-primary) !important;
  font-size: 1.5rem !important;
  color: var(--color-grass-dark) !important;
  padding: 0.8rem 1.4rem !important;
  transition: background 0.2s ease !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--color-grass-dark) !important;
  color: #fff !important;
}

/* ---- Single product page ---- */
.woocommerce div.product .woocommerce-product-gallery__image img {
  border-radius: var(--radius-lg) !important;
}

.woocommerce div.product .entry-summary {
  font-family: var(--font-primary) !important;
}

.woocommerce div.product .product_title {
  font-family: var(--font-primary) !important;
  font-size: clamp(2.8rem, 4vw, 4.2rem) !important;
  font-weight: 800 !important;
  color: var(--color-grass-dark) !important;
  line-height: 1.2 !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--font-primary) !important;
  font-size: 2.8rem !important;
  font-weight: 700 !important;
  color: var(--color-grass-dark) !important;
}

/* ---- Breadcrumb ---- */
.woocommerce .woocommerce-breadcrumb {
  font-family: var(--font-primary) !important;
  font-size: 1.3rem !important;
  color: var(--color-text-light) !important;
  margin-bottom: 2rem !important;
}
.woocommerce .woocommerce-breadcrumb a {
  color: var(--color-grass) !important;
}
.woocommerce .woocommerce-breadcrumb a:hover {
  color: var(--color-grass-dark) !important;
}

/* ============================================
   SINGLE PRODUCT — MOBILE STACK
   ============================================ */
@media (max-width: 768px) {
  .entry-content > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* WooCommerce pagination — match theme style */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  background: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-radius: var(--radius-sm) !important;
  border: 2px solid rgba(107,142,35,0.25) !important;
  color: var(--color-grass-dark) !important;
  font-family: var(--font-primary) !important;
  font-weight: 600 !important;
  background: white !important;
  padding: 0.8rem 1.4rem !important;
  transition: all 0.2s ease;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--gradient-grass) !important;
  color: white !important;
  border-color: transparent !important;
}
