/*
Theme Name: Taylors Gift Farm Modernized
Theme URI: https://taylorsgiftfarm.org
Author: Advisory Engineering & Analytics, LLC
Author URI: https://aea-innovations.com
Description: Premium modernized dark-mode glassmorphic theme designed for TaylorsGiftFarm.org. Built with customizer management panels for easy configuration.
Version: 1.0.0
Text Domain: taylors-gift-farm
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* ==========================================================================
   Design System & Variables
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Color Palette (Sleek Dark Organic Mode) */
  --bg-base: #06130a;
  --bg-surface: #0d2315;
  --bg-surface-glass: rgba(13, 35, 21, 0.7);
  --border-color: rgba(212, 175, 55, 0.15);
  --border-color-glow: rgba(212, 175, 55, 0.4);
  
  --primary: #2d6a4f; /* Organic Leaf Green */
  --primary-rgb: 45, 106, 79;
  --primary-hover: #1b4332;
  
  --secondary: #d4af37; /* Harvest Amber Gold */
  --secondary-rgb: 212, 175, 55;
  --secondary-hover: #b8931d;
  
  --text-main: #f4f7f5;
  --text-muted: #95a59b;
  --text-inverse: #06130a;
  
  --success: #52b788;
  --warning: #f4a261;
  --error: #e63946;

  /* Typography */
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Glow Shadows */
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.12);
  --shadow-glow-strong: 0 0 35px rgba(212, 175, 55, 0.25);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.45);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-base);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-surface);
  border: 2px solid var(--bg-base);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

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

.section-padding {
  padding: 8rem 0;
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-main);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2.25rem; }
h4 { font-size: 1.75rem; }

p {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--text-main);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--secondary);
  color: var(--bg-base);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
  background: var(--text-main);
  color: var(--bg-base);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* Glassmorphism Cards */
.glass-card {
  background: var(--bg-surface-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}
.glass-card:hover {
  border-color: var(--border-color-glow);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0;
  transition: var(--transition-smooth);
}
.glass-card:hover .card-glow {
  opacity: 1;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 19, 10, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  background: var(--bg-base);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-area a {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 2px;
}

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}

.nav-btn {
  background: var(--primary);
  color: var(--text-main) !important;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
}
.nav-btn:hover {
  background: var(--primary-hover);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav-toggle .bar {
  width: 25px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition-smooth);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, #06130a 0%, #0d2818 100%);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://taylorsgiftfarm.org/wp-content/uploads/2024/06/aerial4.jpg') no-repeat center center/cover;
  opacity: 0.15;
  filter: grayscale(1);
}

.hero-glow {
  position: absolute;
  top: 40%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(45, 106, 79, 0.25) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.hero-section .badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  border: 1px solid var(--border-color-glow);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
  background: rgba(212, 175, 55, 0.05);
}

.hero-title {
  font-size: 4.25rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-main) 30%, #a3b899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 650px;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
}

/* ==========================================================================
   CSA Info / Model Section
   ========================================================================== */
.csa-info-section {
  background: #091a0e;
}

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-badge {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.csa-features {
  display: grid;
  gap: 2rem;
}

.csa-feature-item {
  display: flex;
  gap: 1.5rem;
}

.feature-icon {
  font-size: 2rem;
  color: var(--secondary);
  line-height: 1;
}

.feature-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.csa-display-card {
  position: relative;
}

.csa-display-card img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-glass);
}

.csa-card-overlay {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 250px;
  background: var(--bg-surface);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-glass);
}

.csa-card-overlay h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
  background: var(--bg-base);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

/* ==========================================================================
   CSA Memberships (WooCommerce Mockup)
   ========================================================================== */
.memberships-section {
  background: #091a0e;
}

.memberships-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.membership-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.membership-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-glass);
}

.membership-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #0d2315;
  position: relative;
}

.membership-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.membership-card:hover .membership-img-wrap img {
  transform: scale(1.05);
}

.membership-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--secondary);
  color: var(--bg-base);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.membership-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.membership-body h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.membership-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-family: var(--font-sans);
}

.membership-footer {
  margin-top: auto;
}

.btn-card-buy {
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.membership-card:hover .btn-card-buy {
  background: var(--secondary);
  color: var(--bg-base);
  border-color: var(--secondary);
}

/* ==========================================================================
   Categories Section
   ========================================================================== */
.categories-section {
  background: var(--bg-base);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.category-card {
  position: relative;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: var(--transition-smooth);
}
.category-card:hover .category-img {
  opacity: 0.6;
  transform: scale(1.05);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem;
  background: linear-gradient(to top, rgba(6, 19, 10, 0.9) 20%, transparent);
  z-index: 2;
}

.category-content h4 {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.category-content p {
  font-size: 0.85rem;
}

/* ==========================================================================
   Cattle & Inventory Section
   ========================================================================== */
.inventory-section {
  background: #091a0e;
}

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.inventory-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.inventory-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
}

.inventory-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.inventory-card:hover .inventory-img {
  transform: scale(1.03);
}

.inventory-body {
  padding: 2rem;
}

.inventory-body h4 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Our Story / Timeline Section
   ========================================================================== */
.story-section {
  background: var(--bg-base);
}

.story-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 2rem 3rem;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 2.5rem;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border: 4px solid var(--bg-base);
  border-radius: 50%;
  z-index: 10;
}

.timeline-item:nth-child(odd) .timeline-badge {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-badge {
  left: -8px;
}

.timeline-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.timeline-content {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: inline-block;
  text-align: left;
  max-width: 420px;
}

.timeline-content h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Medical Narrative / Testimonial
   ========================================================================== */
.testimonial-section {
  background: #091a0e;
  position: relative;
  overflow: hidden;
}

.quote-decor {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 25rem;
  color: rgba(212, 175, 55, 0.03);
  line-height: 1;
  top: -80px;
  left: 50px;
  user-select: none;
  pointer-events: none;
}

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2.5rem auto;
  border: 2px solid var(--secondary);
  box-shadow: var(--shadow-glow);
}

.testimonial-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 2.5rem;
}

.testimonial-author {
  font-family: var(--font-sans);
}

.testimonial-author h5 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

/* ==========================================================================
   Contribute Section
   ========================================================================== */
.contribute-section {
  background: var(--bg-base);
}

.contribute-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.contribute-text h3 {
  margin-bottom: 1.5rem;
}

.contribute-text p {
  margin-bottom: 1.5rem;
}

.contribute-img {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
  background: #091a0e;
  text-align: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.newsletter-box {
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-box h3 {
  margin-bottom: 1rem;
}

.newsletter-box p {
  margin-bottom: 2.5rem;
}

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

.newsletter-form input[type="email"] {
  flex-grow: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 1rem 1.5rem;
  color: var(--text-main);
  font-family: var(--font-sans);
  outline: none;
  transition: var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--secondary);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #050d07;
  border-top: 1px solid var(--border-color);
  padding: 6rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  margin-bottom: 2rem;
}

.footer-about p {
  margin-bottom: 1.5rem;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.social-icon:hover {
  background: var(--secondary);
  color: var(--bg-base);
  border-color: var(--secondary);
}

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

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

.footer-links-list a {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.footer-links-list a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
}

.copyright p {
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .memberships-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
  }
  
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none; /* In real template, this will be drawer */
  }
  
  .timeline::before {
    left: 40px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 80px;
    padding-right: 0;
    text-align: left !important;
  }
  
  .timeline-item:nth-child(even) {
    left: 0;
  }
  
  .timeline-badge {
    left: 32px !important;
  }
  
  .memberships-grid {
    grid-template-columns: 1fr;
  }
  
  .inventory-grid {
    grid-template-columns: 1fr;
  }
  
  .contribute-card {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
}

/* ==========================================================================
   WooCommerce Specific Overrides
   ========================================================================== */
.woocommerce-Price-amount {
  color: var(--secondary) !important;
  font-weight: 700;
}

.woocommerce-product-search button {
  background: var(--secondary) !important;
  color: var(--bg-base) !important;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
  color: var(--secondary) !important;
}

.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
  background-color: var(--secondary) !important;
  color: var(--bg-base) !important;
  font-family: var(--font-sans) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-full) !important;
  transition: var(--transition-smooth) !important;
}

.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
  background-color: var(--text-main) !important;
  color: var(--bg-base) !important;
}
