/* Стилове за сезонния хранителен гид */

/* Главна икона */
.seasonal-main-icon {
  font-size: 4rem;
  color: #43e97b;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Сезонни бутони */
.btn-season {
  padding: 1.5rem 1rem;
  border: 2px solid transparent;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.btn-season i {
  font-size: 1.5rem;
}

.btn-season.active {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-spring {
  background: linear-gradient(135deg, #a8e6cf, #dcedc1);
  color: #2d5016;
}

.btn-spring.active {
  border-color: #43e97b;
}

.btn-summer {
  background: linear-gradient(135deg, #ffd3b6, #ffaaa5);
  color: #8b0000;
}

.btn-summer.active {
  border-color: #ff6b6b;
}

.btn-autumn {
  background: linear-gradient(135deg, #ffd89b, #19547b);
  color: #5a3921;
}

.btn-autumn.active {
  border-color: #ff9a3c;
}

.btn-winter {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
  color: #2c3e50;
}

.btn-winter.active {
  border-color: #4facfe;
}

/* Сезонни баджове */
.seasonal-badge {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bg-spring { background: #a8e6cf; }
.bg-summer { background: #ffd3b6; }
.bg-autumn { background: #ffd89b; }
.bg-winter { background: #a1c4fd; }

/* Карти за локални източници */
.local-source-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #43e97b;
}

.local-source-card h5 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.local-source-card ul {
  margin-bottom: 0;
  padding-left: 1rem;
}

.local-source-card li {
  margin-bottom: 0.25rem;
  color: #5a6a7e;
}

/* Екологични ползи */
.eco-benefit {
  padding: 1rem;
}

.eco-benefit i {
  font-size: 2rem;
  color: #43e97b;
  margin-bottom: 0.5rem;
}

.eco-benefit h6 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.eco-benefit small {
  color: #6c757d;
}

/* Екологичен калкулатор */
.eco-results {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #43e97b;
}

.eco-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: white;
  border-radius: 8px;
}

.eco-result-item:last-child {
  margin-bottom: 0;
}

.eco-result-item i {
  color: #43e97b;
  font-size: 1.25rem;
}

/* Таблица */
.table th {
  background: linear-gradient(135deg, #4facfe, #38f9d7);
  color: white;
  border: none;
  font-weight: 600;
}

.table td {
  border-color: #e9ecef;
  vertical-align: middle;
}

/* Карти за съвети */
.tip-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tip-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.tip-card h5 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.tip-card p {
  color: #5a6a7e;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Адаптивни стилове */
@media (max-width: 768px) {
  .btn-season {
    padding: 1rem 0.5rem;
    font-size: 0.9rem;
  }
  
  .seasonal-main-icon {
    font-size: 3rem;
  }
  
  .eco-result-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .tip-card {
    margin-bottom: 1rem;
  }
}

/* Анимации за превключване на сезони */
.season-section {
  animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Стилове за плъзгача */
.form-range::-webkit-slider-thumb {
  background: #43e97b;
  border: none;
}

.form-range::-moz-range-thumb {
  background: #43e97b;
  border: none;
}

.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px rgba(67, 233, 123, 0.25);
}

/* Допълнителни визуални елементи */
.season-indicator {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.spring-indicator { background: #a8e6cf; }
.summer-indicator { background: #ffd3b6; }
.autumn-indicator { background: #ffd89b; }
.winter-indicator { background: #a1c4fd; }