/* ============================================ */
/* LA FLECHA - Custom Styles                    */
/* ============================================ */

/* --- Navbar scroll state --- */
.nav-scrolled {
  background-color: rgba(30, 10, 15, 0.95) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-scrolled .nav-logo-text {
  color: white;
}

/* --- Filter buttons --- */
.filter-btn {
  background-color: white;
  color: #6B4226;
  border: 1px solid #e5e7eb;
}

.filter-btn:hover {
  background-color: #FDE8EC;
  border-color: #B91C3B;
  color: #B91C3B;
}

.filter-btn.active {
  background-color: #B91C3B;
  color: white;
  border-color: #B91C3B;
}

/* --- Product card --- */
.product-card {
  background: white;
  border-radius: 1.25rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-card .product-image {
  height: 200px;
  background: linear-gradient(135deg, #E8F0E0 0%, #d4e4c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: capitalize;
}

.badge-flor-seca { background: #FDE8EC; color: #B91C3B; }
.badge-bebidas { background: #DBEAFE; color: #1E40AF; }
.badge-dulces { background: #FEF3C7; color: #92400E; }
.badge-especiales { background: #E0E7FF; color: #3730A3; }

/* --- Team card --- */
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #FAFAFA;
  border-radius: 1.25rem;
  transition: all 0.3s ease;
}

.team-card:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.team-card .team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 4px solid #FDE8EC;
  background: linear-gradient(135deg, #DC2F4E 0%, #B91C3B 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* --- Smooth transitions for product filtering --- */
.product-card.hiding {
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.3s ease;
}

.product-card.showing {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}
