.btn-primary.filter-btn {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
}

.btn-primary.filter-btn:hover {
  background-color: #218838 !important;
  border-color: #1e7e34 !important;
}



.star-rating {
  display: flex;
  gap: 5px;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating label {
  font-size: 30px;
  color: #ddd; 
  cursor: pointer;
  transition: color 0.3s ease;
}

.star-rating input[type="radio"]:checked ~ label {
  color: #28a745; 
}

.star-green {
  color: #28a745; /* Yaşıl */
  font-size: 20px;
}


.header-top-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 40px; /* sağdan boşluq */
  flex: 1; 
}

.header-top-lang {
  display: flex;
  align-items: center;
}

.header-top-lang .dropdown {
  text-align: right;
}

/* Dropdown əsas stil */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown menü gizlidir */
.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  z-index: 1;
}

/* Dropdown tıklanan zaman görünməlidir */
.dropdown.show .dropdown-menu {
  display: block;
}

/* Dropdown itemlər üçün stil */
.dropdown-item {
  padding: 10px;
  color: #333;
  text-decoration: none;
  display: block;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
  color: #007bff;
}

/* Genel stil ayarları */
.shop-item {
  margin-bottom: 25px !important;
}

.shop-item-info {
  padding-top: 20px !important;
  text-align: center !important;
}

.shop-item-title {
  font-size: 19px !important;
  color: #0F4229 !important;
  transition: all .5s ease-in-out !important;
}

.shop-item-title:hover {
  color: #5B8C51 !important;
}

.shop-item-price {
  font-size: 18px !important;
  color: #5B8C51 !important;
  font-weight: 700 !important;
  margin-top: 5px !important;
}

.shop-item-price del {
  color: #7a8a9e !important;
  margin-right: 10px !important;
  font-weight: 500 !important;
}

.shop-item-img {
  position: relative !important;
  z-index: 1 !important;
}

.shop-item-img img {
  border-radius: 5px !important;
  width: 100% !important; /* Resimlerin genişliğini dolduracak şekilde ayarla */
}

/* Görsel efektleri */
.shop-item-img::before {
  content: "" !important;
  top: 1px !important;
  left: 1px !important;
  right: 1px !important;
  bottom: 1px !important;
  position: absolute !important;
  border-radius: 9px !important;
  background: rgba(91, 140, 81, .8) !important;
  z-index: 2 !important;
  transform: scale(0.9) !important;
  visibility: hidden !important;
  opacity: 0 !important;
  transition: all 0.3s linear 0s !important;
}

.shop-item:hover .shop-item-img::before {
  transform: scale(1) !important;
  visibility: visible !important;
  opacity: 0.8 !important;
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

.weather-app {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #e6f2d9;
  color: #2d4a12;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 15px;
}

.weather-title {
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  color: #3a5e17;
  text-shadow: 1px 1px 2px #b9d186;
}

.weather-container {
  display: flex;
  gap: 40px;
  max-width: 900px;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.weather-list {
  flex: 1 1 280px;
  background: #c1de88;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 10px #a3bf4a66;
}

.weather-list-title {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.4rem;
  border-bottom: 2px solid #88b335;
  padding-bottom: 8px;
}


.weather-day-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #d8e5aa;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 12px;
  cursor: default;
  box-shadow: 0 2px 5px #9db55f44;
  transition: background-color 0.3s ease;
}
.weather-day-item:hover {
  background: #d7ef7a;
}

.weather-day-name {
  font-weight: 600;
  font-size: 1.1rem;
  flex: 1;
}

.weather-desc {
  flex: 2;
  font-size: 0.95rem;
  text-transform: capitalize;
  color: #4c7320;
  margin-left: 10px;
}

.weather-temp {
  font-weight: 700;
  font-size: 1.2rem;
  width: 50px;
  text-align: right;
}

.weather-icon {
  width: 36px;
  height: 36px;
  margin-left: 10px;
}

.weather-chart-container {
  flex: 1 1 480px;
  background: #c7e08f;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 6px 10px #a3bf4a66;
}

.weather-chart-container {
  height: 500px;
}
canvas {
  width: 100% !important;
  height: 100% !important;
}


.weather-agro-plan-box {
  margin-top: 30px;
  max-width: 900px;
  width: 100%;
  background: #d4e8a1;
  border-radius: 15px;
  padding: 18px 25px;
  box-shadow: 0 6px 12px #a0bf4d88;
  font-size: 1rem;
  line-height: 1.4;
  color: #3d5f1b;
  margin-bottom: 30px;
  
}

.weather-input[type="text"] {
  margin-bottom: 20px;
  padding: 12px 15px;
  border-radius: 30px;
  border: 2px solid #8db536;
  font-size: 1rem;
  width: 280px;
  background: #f3f9d8;
  color: #355711;
  transition: border-color 0.3s ease;
}
.weather-input[type="text"]:focus {
  outline: none;
  border-color: #a8cd49;
  background: #f9fdd6;
}

.weather-button {
  padding: 12px 26px;
  border-radius: 30px;
  border: none;
  background: #689f20;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 6px 10px rgb(104 159 32 / 0.5);
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}
.weather-button:hover {
  background: #88bb3a;
}

@media (max-width: 700px) {
  .weather-container {
    flex-direction: column;
    align-items: center;
  }
  .weather-list, .weather-chart-container {
    flex: 1 1 100%;
    max-width: 500px;
  }
  .weather-input[type="text"] {
    width: 100%;
  }
}

 