:root {
    --font-heading: 'Quicksand', sans-serif;
    --font-body: 'Karla', sans-serif;
    --color-primary: #5a8f3d; /* Organic green */
    --color-secondary: #e67e22; /* Warm orange */
  }
  
  body {
    font-family: var(--font-body);
    font-weight: 400; /* Regular */
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, .navbar-brand, .btn-primary {
    font-family: var(--font-heading);
    font-weight: 700; /* Bold */
    letter-spacing: -0.5px; /* Tighten spacing for Quicksand */
  }
  
  /* Subtle hierarchy */
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.75rem; font-weight: 500; } /* Medium weight for subheadings */
  
  /* Special accents */
  .organic-badge, .price-tag {
    font-family: var(--font-heading);
    font-weight: 500;
  }


  #header {
    background-color: #ecf0f1
  }


  .navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  }
  
  .cart {
    position: relative;
  }
  

  .nav-link.active {
    font-weight: 500;
    color: #0d6efd !important;
  }




  .image-container {
    width: 250px;
    height: 200px;
    margin: 0 auto;
    transition: all 0.3s ease;
  }
  
  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .product-link:hover .product-image {
    transform: scale(1.1);
  }
  
  .product-link:hover .image-container {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  .product-link:hover h5 {
    color: #fd7e14 !important;
    transform: translateY(-3px);
    transition: all 0.3s ease;
  }



  .object-cover {
    object-fit: cover;
  }



  .social-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
  }

  .icon-text {
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
  }

  .gap-x-lg {
    gap: 4rem;
  }
  
  @media (max-width: 576px) {
    .gap-x-lg {
      gap: 2rem;
    }
  }

  .social-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
  }

  .social-link:hover {
    color: #198754; /* Bootstrap success color */
  }

  .footer-title {
    color: #28a26f; /* or #ffffff or #dddddd */
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1rem;
  }


  

  .icon-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .icon-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0.5rem 1rem rgba(255, 255, 255, 0.1);
  }
  .icon-img {
    width: 80px;
    transition: transform 0.3s ease;
  }
  .icon-card:hover .icon-img {
    transform: scale(1.1);
  }
  


 .accordion-body {
  color: #fff;
 } 




 .category-tag {
  padding: 6px 10px;
  background-color: #f8f9fa;
  border: 2px solid #dee2e6;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: 0.2s;
}
.category-tag:hover {
  background-color: #e9ecef;
}
.category-tag.active {
  background-color: #d1f7dc;
  border-color: #28a745;
  color: #28a745;
  font-weight: 600;
}

/* Mobile override: mostrar/ocultar el bloque completo */
@media (max-width: 767.98px) {
  #sidebar-filters {
    width: 100%;
  }
  #filter-block {
    display: none;
  }
  #filter-block.show {
    display: block !important;
    margin-bottom: 1rem; /* o usa 16px si preferís exacto */
  }
}



.card.producto {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card.producto:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}
.card.producto > img.card-img-top {
  object-fit: cover;
  height: 180px;
  width: 100%;
}
.card.producto h6 {
  font-size: 0.95rem;
}
.card.producto .precio-final {
  font-size: 1.2rem;
}
.card.producto .precio-anterior {
  font-size: 0.85rem;
}
.qty-input {
  max-width: 60px;
  font-size: 0.85rem;
  padding: 4px 6px;
}
.oferta-sticker {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 75px !important;
  height: auto !important;
  z-index: 10;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.6));
}

.producto {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.producto.fade-out {
  opacity: 0;
}



#spinner {
  z-index: 20;
}
