/*
Theme Name: Griggs Lawn and Tractor
Theme URI: https://griggslawnandtractor.com
Author: Griggs Lawn and Tractor LLC
Author URI: https://griggslawnandtractor.com
Description: Custom WooCommerce theme for Griggs Lawn and Tractor equipment sales
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
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: griggs-theme
Tags: e-commerce, equipment, woocommerce, business
*/

/* ==========================================================================
   Google Fonts Import
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ==========================================================================
   CSS Variables
   ========================================================================== */
:root {
  --primary-green: #1a5f3c;
  --primary-green-dark: #134d31;
  --primary-green-light: #2d7a4f;
  --accent-orange: #ff8c42;
  --accent-orange-hover: #ff7629;
  --accent-orange-light: #ffa766;
  --navy-dark: #0f172a;
  --navy-medium: #1e293b;
  --gray-light: #f8fafc;
  --gray-medium: #94a3b8;
  --gray-dark: #475569;
  --white: #ffffff;
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-light: #64748b;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fafbfc;
}

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

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

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
  padding: 0.875rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-phone,
.top-bar-address {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.top-bar-phone i,
.top-bar-address i {
  opacity: 0.9;
  font-size: 0.875rem;
}

.top-bar a {
  color: var(--white);
  font-weight: 600;
  transition: var(--transition-base);
}

.top-bar a:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.98);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}

.site-logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  transition: var(--transition-base);
}

.site-logo:hover {
  color: var(--primary-green);
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
}

.nav-menu a {
  color: var(--text-medium);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-base);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition-smooth);
}

.nav-menu a:hover {
  color: var(--primary-green);
}

.nav-menu a:hover:after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(26, 95, 60, 0.25);
  letter-spacing: -0.01em;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 95, 60, 0.35);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  transition: var(--transition-base);
}

.mobile-menu-toggle:hover {
  color: var(--primary-green);
}

/* ==========================================================================
   Modern Hero Section
   ========================================================================== */
.hero-section-modern {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background: var(--white);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(26, 95, 60, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 140, 66, 0.03) 0%, transparent 50%);
}

.hero-gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(26, 95, 60, 0.03) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content-modern {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, rgba(26, 95, 60, 0.1) 0%, rgba(26, 95, 60, 0.05) 100%);
  border: 1px solid rgba(26, 95, 60, 0.2);
  border-radius: var(--radius-xl);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.hero-badge i {
  color: var(--accent-orange);
}

.hero-content-modern h1 {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  letter-spacing: -0.03em;
}

.hero-content-modern p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
}

.hero-buttons-modern {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary-large,
.btn-outline-large {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 140, 66, 0.5);
}

.btn-outline-large {
  background: var(--white);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-outline-large:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 95, 60, 0.3);
}

.btn-white {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-white:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary-green);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-green);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-medium);
  font-weight: 600;
}

.hero-image-modern {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.hero-card-image {
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

.equipment-showcase {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.equipment-showcase i {
  font-size: 10rem;
  color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(26, 95, 60, 0.1) 0%, rgba(26, 95, 60, 0.05) 100%);
  border-radius: var(--radius-xl);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-header-center h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-header-center p {
  font-size: 1.125rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.section-footer-center {
  text-align: center;
  margin-top: 4rem;
}

.btn-primary-outline {
  background: var(--white);
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: var(--transition-smooth);
}

.btn-primary-outline:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 95, 60, 0.3);
}

/* ==========================================================================
   Modern Features Section
   ========================================================================== */
.features-section-modern {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fafbfc 0%, var(--white) 100%);
}

.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card-modern {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  position: relative;
}

.feature-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.featured-highlight {
  border: 2px solid var(--accent-orange);
  box-shadow: 0 4px 20px rgba(255, 140, 66, 0.2);
}

.feature-ribbon {
  position: absolute;
  top: 1.5rem;
  right: -0.5rem;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: var(--white);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

.feature-ribbon::before {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0.5rem 6px 0;
  border-color: transparent var(--accent-orange-hover) transparent transparent;
}

.feature-icon-modern {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--white);
  font-size: 2.25rem;
  box-shadow: 0 8px 24px rgba(26, 95, 60, 0.3);
  transition: var(--transition-smooth);
}

.feature-card-modern:hover .feature-icon-modern {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 32px rgba(26, 95, 60, 0.4);
}

.feature-card-modern h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-card-modern p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-brands {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.brand-tag {
  padding: 0.375rem 0.875rem;
  background: rgba(26, 95, 60, 0.08);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary-green);
}

.feature-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
}

.benefit-item i {
  color: var(--accent-orange);
  font-size: 0.875rem;
}

.feature-cta {
  margin-top: 1rem;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition-base);
}

.feature-link:hover {
  gap: 0.875rem;
  color: var(--accent-orange);
}

.feature-link i {
  transition: var(--transition-base);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 140, 66, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 140, 66, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow-md);
  font-weight: 600;
}

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

.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-section {
  background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(26, 95, 60, 0.1);
}

.feature-icon {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--white);
  font-size: 2.25rem;
  box-shadow: 0 8px 20px rgba(26, 95, 60, 0.25);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 28px rgba(26, 95, 60, 0.35);
}

.feature-card h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.feature-card p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 1rem;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
  text-align: center;
  background-color: var(--white);
}

.products-section h2 {
  margin-bottom: 0.75rem;
}

.products-section > p {
  color: var(--text-medium);
  font-size: 1.125rem;
  margin-bottom: 4rem;
}

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

.product-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(26, 95, 60, 0.1);
}

.product-image-wrapper {
  position: relative;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}

.product-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

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

.product-image-wrapper img {
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}

.product-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
  z-index: 2;
}

.product-info {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  color: var(--primary-green);
  font-size: 0.8125rem;
  margin-bottom: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--text-dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-title a {
  transition: var(--transition-base);
}

.product-title a:hover {
  color: var(--primary-green);
}

.product-description {
  color: var(--text-medium);
  font-size: 0.9375rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.product-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition-base);
  padding: 0.75rem 0;
}

.product-link i {
  transition: var(--transition-base);
}

.product-link:hover {
  gap: 0.875rem;
  color: var(--primary-green-dark);
}

.product-link:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 1.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.875rem;
}

.footer-links a {
  display: inline-block;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
}

.contact-info i {
  margin-top: 0.25rem;
  color: var(--accent-orange);
  font-size: 1.125rem;
}

.business-hours-list {
  list-style: none;
}

.business-hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9375rem;
}

.business-hours-list li:last-child {
  border-bottom: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--primary-green) 100%);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(45, 122, 79, 0.4);
}

.footer-bottom {
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

/* ==========================================================================
   Shop/Archive Pages
   ========================================================================== */
.page-header {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-description {
  color: var(--text-medium);
  font-size: 1.25rem;
  line-height: 1.6;
}

.shop-controls {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  margin-bottom: 2.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.shop-controls-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 1.5rem;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.form-group label {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.form-control {
  padding: 0.875rem 1.125rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  transition: var(--transition-base);
  background-color: var(--white);
  font-family: var(--font-primary);
  color: var(--text-dark);
}

.form-control:hover {
  border-color: #cbd5e1;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(26, 95, 60, 0.1);
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.5rem;
}

.checkbox-wrapper input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  accent-color: var(--primary-green);
}

.checkbox-wrapper label {
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  user-select: none;
}

.product-count {
  color: var(--text-medium);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.product-count strong {
  color: var(--text-dark);
  font-weight: 700;
}

/* ==========================================================================
   Financing Page
   ========================================================================== */
.financing-hero {
  text-align: center;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%);
}

.financing-hero h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
}

.financing-hero p {
  font-size: 1.25rem;
  max-width: 820px;
  margin: 0 auto 2rem;
  color: var(--text-medium);
  line-height: 1.7;
}

.why-finance {
  padding: 5rem 0;
  background-color: var(--white);
}

.why-finance h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(26, 95, 60, 0.25);
}

.financing-partners {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--gray-light) 0%, #ffffff 100%);
}

.financing-partners h2 {
  text-align: center;
  margin-bottom: 4rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.partner-card {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  margin-bottom: 2.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.partner-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.partner-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 2rem;
  gap: 2rem;
}

.partner-info h3 {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
}

.partner-info p {
  color: var(--text-medium);
  line-height: 1.7;
}

.partner-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9375rem;
}

.feature-item::before {
  content: "✓";
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  font-weight: bold;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.875rem;
  box-shadow: 0 2px 6px rgba(26, 95, 60, 0.3);
}

.partner-disclaimer {
  font-size: 0.8125rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.6;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 968px) {
  .header-content {
    flex-wrap: wrap;
  }
  
  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .main-nav.active {
    display: flex;
    padding: 1rem 0;
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .shop-controls-grid {
    grid-template-columns: 1fr;
  }
  
  .top-bar-content {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section {
    padding: 5rem 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   WooCommerce Overrides
   ========================================================================== */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  margin: 0;
  padding: 0;
}

.woocommerce .price {
  color: var(--text-dark);
  font-weight: 700;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background-color: var(--primary-green-dark);
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: var(--accent-orange);
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background-color: var(--accent-orange-hover);
}

/* Single Product Page */
.woocommerce div.product {
  margin-top: 2rem;
}

.woocommerce div.product .product_title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.woocommerce div.product p.price {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary {
  margin-bottom: 2rem;
}

/* ==========================================================================
   Modern Animations & Effects
   ========================================================================== */

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Stagger animation for grid items */
.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }

/* Pulse animation for badges */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.product-badge {
  animation: pulse 2s ease-in-out infinite;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection color */
::selection {
  background-color: var(--primary-green);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary-green);
  color: var(--white);
}

/* Focus visible for accessibility */
*:focus-visible {
  outline: 2px solid var(--primary-green);
  outline-offset: 2px;
}

/* Loading state */
.loading {
  pointer-events: none;
  opacity: 0.6;
  position: relative;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--white);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Improved scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-medium);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray-dark);
}

/* Skeleton loading for images */
.product-image-wrapper:empty {
  background: linear-gradient(
    90deg,
    #f0f0f0 25%,
    #e0e0e0 50%,
    #f0f0f0 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ==========================================================================
   Modern Products Section
   ========================================================================== */
.products-section-modern {
  padding: 6rem 0;
  background: var(--white);
}

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

.product-card-modern {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-modern:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  border-color: rgba(26, 95, 60, 0.15);
}

.product-badge-modern {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-hover) 100%);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  box-shadow: 0 4px 16px rgba(255, 140, 66, 0.4);
}

.product-badge-modern i {
  font-size: 0.875rem;
}

.product-image-modern {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  overflow: hidden;
}

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

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

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 95, 60, 0.9) 0%, rgba(19, 77, 49, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.quick-view-btn {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  background: var(--white);
  color: var(--primary-green);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition-base);
  transform: translateY(10px);
}

.product-card-modern:hover .quick-view-btn {
  transform: translateY(0);
}

.quick-view-btn:hover {
  background: var(--accent-orange);
  color: var(--white);
}

.product-info-modern {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-modern {
  color: var(--primary-green);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.product-title-modern {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--text-dark);
}

.product-title-modern a {
  transition: var(--transition-base);
}

.product-title-modern a:hover {
  color: var(--primary-green);
}

.product-meta {
  margin-bottom: 1.25rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
}

.product-rating i {
  color: var(--accent-orange);
}

.product-rating span {
  margin-left: 0.375rem;
  color: var(--text-medium);
  font-weight: 600;
  font-size: 0.8125rem;
}

.product-price-modern {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.product-btn-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: var(--transition-smooth);
  margin-top: auto;
}

.product-btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 95, 60, 0.4);
}

.product-btn-modern i {
  transition: var(--transition-base);
}

.product-btn-modern:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   Modern CTA Section
   ========================================================================== */
.cta-section-modern {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
}

.cta-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.cta-content-modern {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-icon {
  width: 88px;
  height: 88px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: var(--white);
  font-size: 2.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-content-modern h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.cta-content-modern p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.cta-buttons-modern {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-info-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9375rem;
}

.cta-info-item i {
  color: var(--accent-orange);
  font-size: 1.125rem;
}

/* ==========================================================================
   Responsive - Modern Components
   ========================================================================== */
@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-image-modern {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .features-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .products-grid-modern {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .cta-info {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-section-modern {
    padding: 5rem 0 4rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-buttons-modern {
    flex-direction: column;
  }
  
  .btn-primary-large,
  .btn-outline-large {
    width: 100%;
    justify-content: center;
  }
  
  .products-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons-modern {
    flex-direction: column;
  }
}
