/* =================================
   ANDCAT MODERN STYLES
   Paleta: Verde Agricultura + Naranja Herramientas
   ================================= */

:root {
  --primary-green: #6A4C9C;
  --light-green: #8B6BB1;
  --orange-tools: #4E9F73;
  --metallic-gray: #6C757D;
  --dark-text: #333333;
  --light-bg: #F8F9FA;
}

/* Hero Section Moderno */
.hero-andcat {
  position: relative;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-andcat::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 Q50,30 100,0 L100,100 Q50,70 0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-text .brand {
  color: var(--orange-tools);
  display: block;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.feature-item::before {
  content: '✓';
  background: var(--orange-tools);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-modern {
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-modern {
  background: var(--orange-tools);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary-modern:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

.btn-secondary-modern {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary-modern:hover {
  background: white;
  color: var(--primary-green);
  text-decoration: none;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-visual {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.tool-icon {
  background: var(--orange-tools);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto;
}

/* =============================
   HEADER MODERNO ANDCAT
   ============================= */

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #6A4C9C 0%, #8B6BB1 100%);
  color: white;
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: white;
  text-decoration: none;
}

/* Header Principal */
.container-menu-desktop {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1000;
}

/* =============================
   HEADER GLASSMORPHISM - SOLO BARRA PRINCIPAL
   ============================= */

/* Solo la barra principal del header */
.wrap-menu-desktop {
  background: #F6F6F6 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1) !important;
}

/* Logo más destacado */
.logo img {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Navegación con fondo sólido */
.main-menu a {
  color: var(--dark-text) !important;
  font-weight: 600 !important;
  padding: 12px 16px !important;
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  background: transparent !important;
  border: none !important;
  margin: 0 2px !important;
}

.main-menu a:hover {
  background: var(--primary-green) !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(106, 76, 156, 0.3) !important;
}

.main-menu .active-menu a {
  background: var(--primary-green) !important;
  color: white !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(106, 76, 156, 0.3) !important;
}

/* Iconos del header */
.wrap-icon-header {
  display: flex !important;
  gap: 20px !important;
  align-items: center !important;
}

.icon-header-item {
  background: rgba(106, 76, 156, 0.1) !important;
  border: 1px solid rgba(106, 76, 156, 0.2) !important;
  color: var(--dark-text) !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.icon-header-item:hover {
  background: var(--primary-green) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(106, 76, 156, 0.3) !important;
}

/* Contador del carrito */
.icon-header-noti::before {
  background: #FF6B35 !important;
  color: white !important;
  font-weight: bold !important;
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.7rem !important;
  top: -5px !important;
  right: -5px !important;
}

/* =============================
   SECCIÓN PRODUCTOS MODERNOS
   ============================= */

.products-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.products-title {
  text-align: center;
  margin-bottom: 60px;
}

.products-title h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 15px;
}

.products-title .highlight {
  color: var(--primary-green);
}

.products-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.products-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--orange-tools) 100%);
  border: none;
  margin: 0 auto;
  border-radius: 2px;
}

.product-card-modern {
  min-height: 260px; /* Reduce la altura mínima */
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(106, 76, 156, 0.1);
  position: relative;
  margin-bottom: 30px;
}

.product-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(106, 76, 156, 0.15);
}

.product-image-container {
   height: 160px; /* Reduce la altura de la imagen */
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #f8f9fa;
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-modern:hover .product-image-container img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--orange-tools) 0%, #45a049 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.product-view-btn {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.4s ease;
  opacity: 0;
  z-index: 2;
}

.product-card-modern:hover .product-view-btn {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.product-view-btn:hover {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
  color: white;
  text-decoration: none;
  transform: translateX(-50%) translateY(-3px);
}

.product-info {
  padding: 15px 12px;
  text-align: center;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 8px;
  line-height: 1.4;
  text-decoration: none;
  display: block;
}

.product-name:hover {
  color: var(--primary-green);
  text-decoration: none;
}

.product-rating {
  margin-bottom: 12px;
}

.product-rating i {
  color: #FFD700;
  font-size: 14px;
  margin-right: 2px;
}

.product-rating .rating-text {
  font-size: 0.85rem;
  color: #666;
  margin-left: 8px;
}
.product-price-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.add-to-cart-btn {
  margin: 0;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange-tools);
  margin-bottom: 10px;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, var(--orange-tools) 0%, #45a049 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.add-to-cart-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(78, 159, 115, 0.4);
}

.view-more-section {
  text-align: center;
  margin-top: 50px;
}

.btn-view-more-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(106, 76, 156, 0.3);
}

.btn-view-more-modern:hover {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(106, 76, 156, 0.4);
  color: white;
  text-decoration: none;
}

.btn-view-more-modern i {
  transition: transform 0.3s ease;
}

.btn-view-more-modern:hover i {
  transform: translateX(5px);
}

/* =============================
   SECCIÓN ESTADÍSTICAS ANDCAT
   ============================= */

.stats-section {
  background: #F1F3F5;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: linear-gradient(135deg, #6A4C9C 0%, #8B6BB1 100%);
  border-radius: 15px;
  padding: 20px 15px;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(106, 76, 156, 0.2);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(106, 76, 156, 0.3);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #FFD700;
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* =============================
   FOOTER MODERNO ANDCAT
   ============================= */

.footer-modern {
  background: linear-gradient(135deg, #2C2C54 0%, #40407A 100%);
  color: white;
  padding: 50px 0 30px;
  position: relative;
}

.footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green) 0%, var(--orange-tools) 100%);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  align-items: start;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange-tools);
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-column ul li a::before {
  content: '▸';
  color: var(--orange-tools);
  font-size: 0.8rem;
}

.footer-column ul li a:hover {
  color: white;
  transform: translateX(5px);
  text-decoration: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.contact-icon {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-tools);
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  border-color: var(--orange-tools);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--primary-green) 100%);
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.social-link {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--orange-tools);
  transform: translateY(-3px);
  color: white;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom .brand-name {
  color: var(--orange-tools);
  font-weight: 600;
}

/* =============================
   PÁGINA DE TIENDA MODERNA
   ============================= */

/* Header de la tienda */
.shop-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  padding: 60px 0 40px;
  color: white;
  position: relative;
  margin-top: 0;
}

.shop-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 Q50,20 100,0 L100,100 Q50,80 0,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.shop-title {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.shop-title h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.shop-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.shop-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.shop-stat {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.shop-stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange-tools);
  margin-bottom: 5px;
}

.shop-stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Área de contenido */
.shop-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

/* Sidebar de filtros modernizado */
.shop-sidebar {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(106, 76, 156, 0.1);
  height: fit-content;
  position: sticky;
  top: 20px;
}

.filter-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 10px;
}

.filter-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--orange-tools);
  border-radius: 2px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-item {
  margin-bottom: 8px;
}

.category-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: #666;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.category-link::before {
  content: '📁';
  font-size: 0.9rem;
}

.category-link:hover {
  background: rgba(106, 76, 156, 0.1);
  color: var(--primary-green);
  text-decoration: none;
  transform: translateX(5px);
}

.category-link.active {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: white;
}

.category-link.active::before {
  content: '📂';
}

/* Grid de productos mejorado */
.products-grid {
  display: grid;
  /*grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));*/
   grid-template-columns: repeat(5, 1fr); 
  gap: 20px;

}

/* =============================
   MODAL DE AYUDA MODERNIZADO
   ============================= */

/* Modal backdrop */
.modal.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
  transform: translateY(0);
}

/* Modal de preguntas frecuentes */
.modal-content.help-modal {
  border-radius: 20px !important;
  border: none !important;
  box-shadow: 0 20px 60px rgba(106, 76, 156, 0.25) !important;
  overflow: hidden !important;
}

.modal-header.help-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%) !important;
  color: white !important;
  border: none !important;
  padding: 25px 30px !important;
  position: relative !important;
}

.modal-header.help-header::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,0 Q50,20 100,0 L100,100 Q50,80 0,100 Z" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: cover;
}

.modal-title.help-title {
  font-weight: 800 !important;
  font-size: 1.4rem !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  position: relative !important;
  z-index: 2 !important;
}

.modal-title.help-title::before {
  content: '❓';
  margin-right: 10px;
  font-size: 1.2rem;
}

.modal-header .close.help-close {
  color: white !important;
  opacity: 1 !important;
  font-size: 1.5rem !important;
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 50% !important;
  width: 35px !important;
  height: 35px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  z-index: 2 !important;
}

.modal-header .close.help-close:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: scale(1.1) !important;
}

.modal-body.help-body {
  padding: 0 !important;
  max-height: 70vh !important;
  overflow-y: auto !important;
}

/* Preguntas FAQ modernas */
.faq-item {
  border-bottom: 1px solid rgba(106, 76, 156, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(106, 76, 156, 0.02);
}

.faq-question {
  padding: 25px 30px;
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1rem;
  margin: 0;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-question::before {
  content: '▶';
  color: var(--orange-tools);
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-question.active::before {
  transform: rotate(90deg);
}

.faq-question::after {
  content: '';
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--orange-tools);
  border-radius: 2px;
}

.faq-answer {
  padding: 0 30px 25px 65px;
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  display: none;
}

.faq-answer.show {
  display: block;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sección "Otras preguntas" */
.other-questions {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 25px 30px;
  margin: 0;
  border-top: 1px solid rgba(106, 76, 156, 0.1);
}

.other-questions h5 {
  color: var(--primary-green);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.other-questions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-questions li {
  margin-bottom: 8px;
}

.other-questions li::before {
  content: '✓';
  color: var(--orange-tools);
  font-weight: bold;
  margin-right: 10px;
}

.modal-footer.help-footer {
  border: none !important;
  padding: 20px 30px !important;
  background: #f8f9fa !important;
}

.btn-help-close {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 12px 25px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
}

.btn-help-close:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(106, 76, 156, 0.3) !important;
  color: white !important;
}

/* =============================
   MODAL DE AYUDA ANDCAT
   ============================= */

/* Scrollbar personalizado para el modal de ayuda */
#modalAyuda .modal-body::-webkit-scrollbar {
  width: 6px;
}

#modalAyuda .modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

#modalAyuda .modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 3px;
}

#modalAyuda .modal-body::-webkit-scrollbar-thumb:hover {
  background: var(--light-green);
}

/* Animación del modal */
#modalAyuda.fade .modal-dialog {
  transform: translateY(-50px);
  transition: transform 0.3s ease-out;
}

#modalAyuda.show .modal-dialog {
  transform: translateY(0);
}

/* Estilos para el contenido de preguntas FAQ */
#modalAyuda .page-content h3 {
  color: var(--primary-green);
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--orange-tools);
  padding-bottom: 8px;
  display: inline-block;
}

#modalAyuda .page-content h4 {
  color: var(--orange-tools);
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

#modalAyuda .page-content p {
  margin-bottom: 15px;
  color: #666;
}

#modalAyuda .page-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

#modalAyuda .page-content li {
  margin-bottom: 8px;
  color: #666;
}

#modalAyuda .page-content li::marker {
  color: var(--orange-tools);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stat-card {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-modern {
    padding: 40px 0 20px;
  }
  
  .shop-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .shop-sidebar {
    position: static;
  }
  
  .shop-stats {
    gap: 20px;
  }
  
  .shop-title h1 {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================
   BOTONES MODERNOS ANDCAT
   ============================= */

.btn-andcat {
  background: linear-gradient(135deg, #6A4C9C 0%, #8B6BB1 100%);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(106, 76, 156, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  outline: none;
  display: inline-block;
}

.btn-andcat:hover, .btn-andcat:focus {
  background: linear-gradient(135deg, #8B6BB1 0%, #6A4C9C 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 25px rgba(106, 76, 156, 0.25);
  text-decoration: none;
}

/* Para botones secundarios */
.btn-andcat-secondary {
  background: transparent;
  color: #6A4C9C;
  border: 2px solid #6A4C9C;
}

.btn-andcat-secondary:hover, .btn-andcat-secondary:focus {
  background: #6A4C9C;
  color: #fff;
}

.slider-veragro {
  width: 100%;
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
  padding: 1rem 0;
  
}

.slider-track {
  display: flex;
  animation: deslizaLogos 18s linear infinite;
  position: relative;
}

.slider-track img {
 width: 180px;
  height: auto;
  margin: 0 20px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

@keyframes deslizaLogos {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


