/* Variables CSS Mejoradas */
:root {
  /* Paleta de colores naturales */
  --primary-green: #2d5016;
  --secondary-green: #4a7c59;
  --light-green: #7fb069;
  --accent-green: #a7c957;
  --sage-green: #8fbc8f;
  --forest-green: #355e3b;

  /* Colores tierra */
  --earth-brown: #8b4513;
  --light-brown: #d2b48c;
  --cream: #f5f5dc;

  /* Colores base */
  --white: #ffffff;
  --off-white: #fafafa;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --dark-gray: #343a40;
  --black: #1a1a1a;

  /* Colores modo oscuro */
  --dark-bg: #1a1a1a;
  --dark-surface: #2d2d2d;
  --dark-text: #e0e0e0;
  --dark-border: #404040;

  /* Tipografía */
  --font-primary: "Poppins", sans-serif;
  --font-display: "Playfair Display", serif;

  /* Tamaños de fuente */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Espaciado */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Bordes */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transiciones */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;

  /* Gradientes */
  --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-green) 0%, var(--light-green) 100%);
  --gradient-earth: linear-gradient(135deg, var(--earth-brown) 0%, var(--light-brown) 100%);
}

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Asegurar que las imágenes sean responsivas */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  transition: background-color var(--transition-normal), color var(--transition-normal);
  overflow-x: hidden;
  padding-top: 80px;
}

/* Modo oscuro */
body.dark-mode {
  background-color: #181f1a;
  color: #e0e0e0;
}

body.dark-mode .header {
  background-color: #232d24;
  border-bottom-color: #2d3a2e;
}

body.dark-mode .logo-container {
  color: var(--light-green);
}

body.dark-mode .nav-link {
  color: #e0e0e0;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
  color: #a7c957;
}

body.dark-mode .footer {
  background-color: #232d24;
  color: #e0e0e0;
}

body.dark-mode .feature-card,
body.dark-mode .cart-items,
body.dark-mode .cart-summary,
body.dark-mode .contact-info,
body.dark-mode .contact-form,
body.dark-mode .step-card {
  background-color: #232d24;
  color: #e0e0e0;
  border-color: #2d3a2e;
}

body.dark-mode .products-showcase,
body.dark-mode .features-section,
body.dark-mode .how-it-works,
body.dark-mode .catalog-page,
body.dark-mode .testimonials {
  background-color: #181f1a;
}

body.dark-mode .section-title,
body.dark-mode .feature-card h3,
body.dark-mode .cart-items h3,
body.dark-mode .cart-summary h2,
body.dark-mode .contact-info h2,
body.dark-mode .contact-form h2 {
  color: #a7c957;
}

body.dark-mode .product-card {
  background: #232d24;
  color: #e0e0e0;
}

body.dark-mode .product-title {
  color: #a7c957;
}

body.dark-mode .product-price {
  color: #7fb069;
}

body.dark-mode .btn-primary {
  background: linear-gradient(135deg, #355e3b 0%, #7fb069 100%);
  color: #fffbe6;
}

body.dark-mode .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fffbe6;
  border: 2px solid #7fb069;
}

body.dark-mode .cart-link,
body.dark-mode .theme-toggle {
  background-color: #232d24;
  color: #a7c957;
}

body.dark-mode .cart-link:hover,
body.dark-mode .theme-toggle:hover {
  background-color: #355e3b;
  color: #fffbe6;
}

body.dark-mode .filters-sidebar,
body.dark-mode .products-header,
body.dark-mode .testimonial-card,
body.dark-mode .newsletter-content,
body.dark-mode .benefit-card,
body.dark-mode .contact-info,
body.dark-mode .cart-items,
body.dark-mode .cart-summary {
  background-color: #232d24 !important;
  color: #e0e0e0 !important;
  border-color: #2d3a2e !important;
}

body.dark-mode .sort-options select {
  background-color: #232d24;
  color: #e0e0e0;
  border: 2px solid #2d3a2e;
}

body.dark-mode .feature-card p,
body.dark-mode .product-description,
body.dark-mode .benefit-card p,
body.dark-mode .testimonial-card p {
  color: #bfcdb7 !important;
}

body.dark-mode .product-badge {
  background: linear-gradient(135deg, #355e3b 0%, #7fb069 100%) !important;
  color: #fffbe6 !important;
}

body.dark-mode .filters-sidebar label,
body.dark-mode .filters-sidebar h3,
body.dark-mode .filters-sidebar span,
body.dark-mode .filters-sidebar input,
body.dark-mode .filters-sidebar select {
  color: #e0e0e0 !important;
}

body.dark-mode .filters-sidebar input[type="radio"]:checked+span,
body.dark-mode .filters-sidebar input[type="checkbox"]:checked+span {
  color: #a7c957 !important;
}

/* Contenedores */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* Header mejorado */
.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: var(--space-1) 0;
}

.navbar {
  padding: var(--space-2) 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  min-height: 80px;
  width: 95%;
}

.nav-logo {
  flex: 0 0 auto;
  margin-right: var(--space-16);
  padding-left: 0;
  transform: translateX(-140px);
  position: relative;
  z-index: 10;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: var(--space-6);
  flex-grow: 1;
  justify-content: center;
  margin: 0;
  transform: translateX(-30px);
}

.nav-logo a {
  text-decoration: none;
  display: block;
  position: relative;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--primary-green);
  font-weight: 700;
  font-size: var(--text-xl);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo:hover .logo-container {
  transform: scale(1.05);
}

.hero-logo-image {
  height: 300px;
  width: 200px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.1));
  animation: gentle-float 4s ease-in-out infinite;
  border-radius: 12px;
}

@keyframes gentle-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.logo-display {
  background: linear-gradient(135deg, #8fbc8f 0%, #a7c957 100%);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  width: 220px;
  height: 320px;
}

.logo-display::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Estilos para el logo del encabezado */
.header-logo {
  margin: 0;
  padding: 0;
}

.logo-gradient-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
  border-radius: 50px;
  padding: 12px 25px;
  gap: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-decoration: none;
  min-width: 200px;
  margin-right: var(--space-6);
}

.logo-gradient-bg:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #43A047 0%, #7CB342 100%);
}

.logo-gradient-bg::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  transition: transform 0.6s ease-out;
  pointer-events: none;
  opacity: 0;
}

.logo-gradient-bg:hover::after {
  transform: rotate(30deg) translate(50%, 50%);
  opacity: 1;
}

.logo-text-eco,
.logo-text-pencil {
  color: white;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-family: var(--font-display);
}

.logo-leaf-icon {
  font-size: 2.2rem;
  line-height: 1;
  margin: 0 4px;
  position: relative;
  top: -2px;
  animation: floatLeaf 3s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@keyframes floatLeaf {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.05);
  }
}

@keyframes pulseText {
  0% {
    opacity: 0.9;
  }

  100% {
    opacity: 1;
  }
}

body.dark-mode .logo-gradient-bg {
  background: linear-gradient(135deg, #355e3b 0%, #7fb069 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.logo-icon {
  font-size: var(--text-2xl);
  animation: gentle-bounce 2s ease-in-out infinite;
}

.logo-text {
  font-family: var(--font-display);
}

@keyframes gentle-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

.nav-link {
  font-size: var(--text-base);
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: all var(--transition-fast);
  position: relative;
  padding: var(--space-2) 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex: 0 0 auto;
  margin-left: var(--space-8);
}

.theme-toggle,
.cart-link {
  font-size: var(--text-2xl);
  padding: var(--space-3);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  background-color: var(--light-green);
  transform: scale(1.15);
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cart-link:hover {
  background-color: var(--light-green);
  transform: scale(1.15);
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Estilos para los elementos de navegación */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: auto;
  justify-content: flex-end;
  padding-right: var(--space-4);
  position: relative;
  right: 20px;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-base);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-3);
  padding: var(--space-1);
  transition: all var(--transition-fast);
  position: relative;
  z-index: 5;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.sun-icon,
.moon-icon {
  font-size: var(--text-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.cart-link {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-1);
  transition: all var(--transition-fast);
  z-index: 5;
}

.cart-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.2);
}

.cart-icon {
  font-size: var(--text-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: var(--primary-green);
  color: white;
  font-size: var(--text-sm);
  font-weight: 700;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
  border: 2px solid white;
}

/* Hero Section Mejorado */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--accent-green) 100%);
  margin-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
  /* Evita que los elementos flotantes interfieran con los clics */
}

.floating-seed {
  position: absolute;
  font-size: var(--text-2xl);
  animation: float 6s ease-in-out infinite;
}

.floating-seed:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-seed:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}

.floating-seed:nth-child(3) {
  top: 30%;
  left: 70%;
  animation-delay: 2s;
}

.floating-seed:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 3s;
}

.floating-seed:nth-child(5) {
  top: 10%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-4);
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: var(--space-6);
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.title-line {
  display: block;
}

.highlight {
  background: linear-gradient(45deg, #fff, #f0f8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

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

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

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.pencil-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 400px;
  height: 500px;
  margin: 0 auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15));
}

.pencil-container {
  position: relative;
  margin-bottom: var(--space-8);
}

.pencil-image {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
  animation: gentle-sway 3s ease-in-out infinite;
}

.logo-leaf-icon {
  font-size: 2.5rem;
  margin: 0 var(--space-2);
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.3));
  animation: gentle-sway 3s ease-in-out infinite;
  transform-origin: bottom center;
}

/* Estilos para la tarjeta del lápiz en el héroe */
.eco-pencil-card {
  background-color: var(--sage-green);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 5px solid rgba(255, 255, 255, 0.3);
}

.pencil-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  position: relative;
  background-color: white;
  border-radius: 15px;
  margin: 10px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.eco-pencil-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.5s ease;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.eco-pencil-img:hover {
  transform: scale(1.05);
}

.seed-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: white;
  color: var(--primary-green);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 1rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  border: 2px solid var(--light-green);
}

.growth-stages {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  position: relative;
}

.plant-stage {
  font-size: 2rem;
  animation: bounce 2s infinite alternate;
  position: relative;
}

.stage-1 {
  animation-delay: 0s;
}

.stage-2 {
  animation-delay: 0.3s;
}

.stage-3 {
  animation-delay: 0.6s;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-10px);
  }
}

.eco-pencil-display {
  height: 400px;
  width: 200px;
  background: linear-gradient(135deg, #8fbc8f 0%, #a7c957 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
  animation: float 6s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.eco-pencil-display::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.eco-pencil-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-text-eco,
.logo-text-pencil {
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  font-size: 1.2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.eco-text {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.pencil-icon {
  font-size: 3rem;
  margin: 15px 0;
  animation: bounce 2s infinite ease;
}

.pencil-text {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes gentle-sway {

  0%,
  100% {
    transform: rotate(-2deg);
  }

  50% {
    transform: rotate(2deg);
  }
}

.seed-indicator {
  position: absolute;
  top: 10px;
  right: -60px;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255, 255, 255, 0.9);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--primary-green);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(167, 201, 87, 0.7);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(167, 201, 87, 0);
  }
}

.seed-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: seed-pulse 1.5s ease-in-out infinite;
}

@keyframes seed-pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.growth-stages {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.eco-pencil-card {
  background-color: rgba(163, 211, 156, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  padding: 20px;
  position: relative;
  width: 100%;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-pencil-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 36px rgba(31, 38, 135, 0.2);
}

.seed-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary-green);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 80, 22, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(45, 80, 22, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(45, 80, 22, 0);
  }
}

.pencil-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.eco-pencil-img {
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.eco-pencil-card:hover .eco-pencil-img {
  transform: scale(1.05);
}

.plant-stage {
  font-size: var(--text-3xl);
  opacity: 0.7;
  animation: grow-stages 4s ease-in-out infinite;
}

.plant-stage:nth-child(2) {
  animation-delay: 1.3s;
}

.plant-stage:nth-child(3) {
  animation-delay: 2.6s;
}

@keyframes grow-stages {

  0%,
  75% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  25%,
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

/* Secciones */
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--space-12);
  color: var(--primary-green);
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

body.dark-mode .section-title {
  color: var(--light-green);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
}

/* Features Section */
.features-section {
  padding: var(--space-20) 0;
  background: var(--off-white);
  margin-top: var(--space-12);
}

body.dark-mode .features-section {
  background: var(--dark-surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.feature-card {
  background: var(--white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  display: block;
}

.feature-card h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: var(--space-20) 0;
  background: var(--white);
  box-shadow: 0 4px 20px 0 rgba(167, 201, 87, 0.07);
  position: relative;
  z-index: 2;
}

body.dark-mode .how-it-works {
  background: #232d24;
}

.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 250px;
  position: relative;
  margin: 0 auto;
  background: rgba(167, 201, 87, 0.10);
  border-radius: var(--radius-xl);
  box-shadow: 0 2px 12px rgba(127, 176, 105, 0.09);
  padding: var(--space-6) var(--space-4);
  animation: fadeInUp 0.8s cubic-bezier(.23, 1.01, .32, 1) both;
  transition: transform 0.2s;
}

.step:hover {
  transform: translateY(-6px) scale(1.025);
  box-shadow: 0 6px 24px rgba(127, 176, 105, 0.14);
}

.step-number {
  background: var(--gradient-primary);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 2px 8px rgba(127, 176, 105, 0.18);
  border: 3px solid #fff;
  z-index: 1;
}

.step-icon {
  font-size: 2.7rem;
  margin: var(--space-4) 0;
  animation: bounce 2.2s infinite cubic-bezier(.68, -0.55, .27, 1.55);
  color: var(--primary-green);
  filter: drop-shadow(0 2px 8px rgba(127, 176, 105, 0.13));
}

body.dark-mode .step-icon {
  color: #a7c957;
}

.step-content h3 {
  font-size: var(--text-xl);
  color: var(--primary-green);
  font-family: var(--font-display);
  margin-bottom: var(--space-2);
  font-weight: 700;
}

.step-content p {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 0;
}

body.dark-mode .step-content h3 {
  color: #a7c957;
}

body.dark-mode .step-content p {
  color: #bfcdb7;
}

.step-arrow {
  font-size: 2.5rem;
  color: var(--accent-green);
  margin: 0 16px;
  opacity: 0.7;
  animation: arrowMove 1.2s infinite alternate cubic-bezier(.68, -0.55, .27, 1.55);
  transition: color 0.2s;
  user-select: none;
}

body.dark-mode .step-arrow {
  color: #7fb069;
}

@keyframes arrowMove {
  0% {
    transform: translateX(0) scale(1);
    opacity: 0.7;
  }

  100% {
    transform: translateX(8px) scale(1.1);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .steps-container {
    flex-direction: column;
    gap: var(--space-8);
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: var(--space-2) 0;
  }
}


.steps-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 250px;
  position: relative;
  margin: 0 auto;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-lg);
}

.step-content h3 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: var(--space-2);
}

.step-content p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.step-icon {
  font-size: var(--text-3xl);
}

.step-arrow {
  font-size: var(--text-3xl);
  color: var(--accent-green);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 var(--space-2);
}

/* Products Showcase */
.products-showcase {
  padding: var(--space-20) 0;
  background-color: var(--off-white);
}

.products-showcase .section-title {
  font-size: 3.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.products-showcase .showcase-cta {
  margin-top: 1rem;
}

body.dark-mode .products-showcase {
  background: var(--dark-bg);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
}

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

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.product-badge {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--gradient-primary);
  color: var(--white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

.product-info {
  padding: var(--space-6);
}

.product-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: var(--space-2);
}

.product-description {
  color: var(--gray);
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  line-height: 1.5;
}

.product-price {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: var(--space-4);
}

.product-actions {
  display: flex;
  gap: var(--space-2);
}

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

/* Testimonials */
.testimonials {
  padding: var(--space-20) 0;
  background: var(--light-green);
  color: var(--white);
}

body.dark-mode .testimonials {
  background: var(--forest-green);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.testimonial-card {
  background: var(--off-white);
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial-content {
  margin-bottom: var(--space-6);
}

.testimonial-content p {
  font-style: italic;
  color: var(--gray);
  line-height: 1.6;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: var(--text-4xl);
  color: var(--accent-green);
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.author-info h4 {
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: var(--space-1);
}

.author-info span {
  color: var(--gray);
  font-size: var(--text-sm);
}

/* Newsletter */
.newsletter {
  padding: var(--space-16) 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.newsletter-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-2);
}

.newsletter-text p {
  font-size: var(--text-lg);
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.newsletter-form input {
  flex: 1;
  padding: var(--space-4);
  border: none;
  border-radius: var(--radius-lg);
  font-size: var(--text-base);
}

.newsletter-form button {
  background: var(--white);
  color: var(--primary-green);
  border: none;
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-lg);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
  background-color: var(--primary-green);
  color: var(--white);
  padding: var(--space-16) 0 var(--space-8);
  position: relative;
  margin-top: var(--space-20);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

.footer-section h4 {
  margin-bottom: var(--space-4);
  color: var(--accent-green);
  font-weight: 600;
}

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

.footer-section ul li {
  margin-bottom: var(--space-2);
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--accent-green);
}

.social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.social-links a {
  font-size: var(--text-lg);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1000;
  padding: var(--space-2);
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: var(--dark-gray);
  margin: 3px 0;
  transition: var(--transition-fast);
  border-radius: var(--radius-sm);
}

/* Responsive Design */
/* Media Queries para dispositivos medianos (tablets) */
@media (max-width: 768px) {
  .hero-text {
    width: 100%;
  }

  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .steps-container {
    flex-direction: column;
    gap: var(--space-8);
  }

  .step-arrow {
    transform: rotate(90deg);
    margin: var(--space-2) 0;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: auto;
    padding: var(--space-4) 0;
    transform: translateY(-100%);
    transition: transform var(--transition-normal) ease-in-out;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
  }

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

  .nav-item {
    width: 100%;
    text-align: center;
    padding: var(--space-2) 0;
  }

  .nav-link {
    display: block;
    padding: var(--space-2) var(--space-4);
    width: 100%;
  }

  .nav-actions {
    margin-left: auto;
    margin-right: var(--space-4);
  }

  .hamburger {
    display: flex;
    cursor: pointer;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: var(--space-8);
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-description {
    font-size: var(--text-base);
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-4);
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .newsletter-form {
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    box-sizing: border-box;
  }

  .pencil-showcase {
    width: 180px;
    height: 280px;
    margin: 0 auto;
  }

  .nav-link {
    padding: var(--space-2);
  }

  .theme-toggle,
  .cart-link {
    padding: var(--space-2);
  }

  .features-grid,
  .products-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .container {
    padding: 0 var(--space-2);
  }

  .nav-container {
    min-height: 60px;
  }

  .nav-logo {
    margin-right: var(--space-4);
    transform: translateX(0);
  }

  .nav-actions {
    margin-right: var(--space-2);
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: var(--space-8);
  }

  .hero-title {
    font-size: var(--text-4xl);
  }

  .hero-description {
    font-size: var(--text-base);
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--space-4);
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .newsletter-form {
    flex-direction: column;
    gap: var(--space-4);
    width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    box-sizing: border-box;
  }

  .pencil-showcase {
    width: 180px;
    height: 280px;
    margin: 0 auto;
  }

  .nav-link {
    padding: var(--space-2);
  }

  .theme-toggle,
  .cart-link {
    padding: var(--space-2);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-section {
    margin-bottom: var(--space-6);
  }
}

/* Media Queries para dispositivos muy pequeños */
@media (max-width: 375px) {
  .hero-title {
    font-size: var(--text-3xl);
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Estados de carga */
.loading,
.loading-products {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-8);
  margin: var(--space-16) 0;
  text-align: center;
}

.loading-products h3 {
  font-family: var(--font-display);
  color: var(--primary-green);
  margin-bottom: var(--space-6);
  font-size: var(--text-xl);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top-color: var(--primary-green);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Utilidades */
.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Estilo especial para el logo Chocole */
.logo-text-chocole {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: #fffbe6;
  margin-left: 18px;
  letter-spacing: 2px;
  text-transform: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.10);
  transition: color 0.3s;
  line-height: 1;
  display: inline-block;
}

.logo-gradient-bg {
  flex-direction: row;
}

.catalog-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-8);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  height: auto;
}

.products-section {
  display: block;
  height: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
  margin-bottom: var(--space-12);
  flex: unset;
}

.products-scroll-area {
  height: auto;
  overflow: unset;
  min-width: unset;
  display: unset;
  flex-direction: unset;
}

.contact-map-iframe {
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
  min-height: 400px;
  width: 100%;
  border: none;
}

.contact-map-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(31, 38, 135, 0.10);
  padding: 24px 32px;
  z-index: 10;
  min-width: 260px;
  max-width: 320px;
  font-size: 1.1rem;
  color: #2d5016;
  font-family: 'Poppins', sans-serif;
}

.contact-map-overlay h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #2d5016;
}

@media (max-width: 700px) {
  .contact-map-overlay {
    left: 10px;
    top: 10px;
    padding: 12px 10px;
    min-width: 180px;
    max-width: 90vw;
    font-size: 1rem;
  }

  .contact-map-iframe {
    min-height: 250px;
  }
}

.map-container {
  position: relative;
  margin-top: 40px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.logo-chocole-badge {
  background: linear-gradient(135deg, #7fb069 0%, #4a7c59 100%);
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(31, 38, 135, 0.10);
  padding: 8px 32px 8px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
  border: none;
}

.logo-chocole-badge .logo-leaf-icon {
  font-size: 2.1rem;
  margin: 0;
  background: none;
  box-shadow: none;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-chocole-badge .logo-text-chocole {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  margin: 0;
  text-transform: none;
  line-height: 1;
  display: inline-block;
}

.contact-info-solo {
  background: linear-gradient(135deg, #f8fff4 0%, #e6f4ea 100%);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 2.5rem;
  border: 2px solid #e0f2e9;
  padding: 3.5rem 2.5rem 3rem 2.5rem;
  max-width: 520px;
  margin: 40px auto 60px auto;
  position: relative;
}

.contact-info-solo h2 {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: #2d5016;
  font-weight: 800;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(127, 176, 105, 0.08);
}

.contact-info-solo .contact-item {
  background: rgba(167, 201, 87, 0.10);
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(127, 176, 105, 0.08);
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: box-shadow 0.2s;
}

.contact-info-solo .contact-item:hover {
  box-shadow: 0 6px 18px rgba(127, 176, 105, 0.16);
}

.contact-info-solo .contact-icon {
  font-size: 2.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a7c957 0%, #7fb069 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(127, 176, 105, 0.10);
  flex-shrink: 0;
}

.contact-info-solo .contact-details h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #355e3b;
  margin-bottom: 0.2rem;
}

.contact-info-solo .contact-details p {
  color: #4a7c59;
  font-size: 1.05rem;
  margin: 0;
}

@media (max-width: 700px) {
  .contact-info-solo {
    padding: 2rem 0.7rem 2rem 0.7rem;
    max-width: 98vw;
  }
}

.contact-page.contact-center {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.contact-center-flex {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.contact-info-solo {
  margin: 0 auto 60px auto;
}

@media (max-width: 700px) {
  .contact-page.contact-center {
    min-height: 60vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .contact-center-flex {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
  }

  .contact-info-solo {
    margin: 0 auto 2rem auto;
  }
}

.contact-content-center {
  width: 100vw;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.contact-content-center .page-header {
  text-align: center;
  width: 100%;
  margin-bottom: 0.5rem;
}

.contact-content-center .page-header h1 {
  text-align: center;
  width: 100%;
}

.contact-content-center .page-header p {
  text-align: center;
  width: 100%;
  margin: 0 auto 1.5rem auto;
}

@media (max-width: 700px) {
  .contact-content-center {
    min-height: 60vh;
    padding-top: 2rem;
    padding-bottom: 2rem;
    gap: 1.2rem;
  }
}

.contact-full-viewport {
  min-height: calc(100vh - 80px);
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media (max-width: 700px) {
  .contact-full-viewport {
    min-height: calc(100vh - 60px);
    height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 60px auto;
  padding: 0 1.5rem;
}

.contact-info,
.contact-form {
  background: linear-gradient(135deg, #f8fff4 0%, #e6f4ea 100%);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
  border-radius: 2rem;
  border: 2px solid #e0f2e9;
  padding: 2.5rem 2rem 2rem 2rem;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h2,
.contact-form h2 {
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  color: #2d5016;
  font-weight: 800;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: 0 2px 8px rgba(127, 176, 105, 0.08);
}

.contact-info .contact-item {
  background: rgba(167, 201, 87, 0.10);
  border-radius: 1.2rem;
  box-shadow: 0 2px 8px rgba(127, 176, 105, 0.08);
  margin-bottom: 1.5rem;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: box-shadow 0.2s;
}

.contact-info .contact-item:hover {
  box-shadow: 0 6px 18px rgba(127, 176, 105, 0.16);
}

.contact-info .contact-icon {
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a7c957 0%, #7fb069 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(127, 176, 105, 0.10);
  flex-shrink: 0;
}

.contact-info .contact-details h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #355e3b;
  margin-bottom: 0.2rem;
}

.contact-info .contact-details p {
  color: #4a7c59;
  font-size: 1.01rem;
  margin: 0;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: flex;
  gap: 1.2rem;
}

.form-group {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #355e3b;
  margin-bottom: 0.4rem;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e0f2e9;
  border-radius: 0.8rem;
  font-size: 1rem;
  background: #fff;
  color: #355e3b;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02) inset;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #7fb069;
  box-shadow: 0 0 0 3px rgba(167, 201, 87, 0.13);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #7fb069 0%, #a7c957 100%);
  color: #fff;
  border: none;
  padding: 1rem 0;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 15px rgba(127, 176, 105, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #a7c957 0%, #7fb069 100%);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 25px rgba(127, 176, 105, 0.13);
}

@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 98vw;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem 0.7rem 1.5rem 0.7rem;
  }
}