#hyrjetEReja_farmaci_container {
  width: 100%;
  text-align: center;
}

.hyrjetEReja_title {
  font-style: italic;
  letter-spacing: 5px;
  font-weight: bold;
  margin-bottom: 30px;
}

/* SLIDER */

.products_slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider_window {
  overflow: hidden;
}

.slider_track_hyrjetEReja {
  display: flex;
  transition: transform 0.5s ease;
}

/* PRODUCT CARD */

.product_card {
  min-width: 25%;
  padding: 15px;
  box-sizing: border-box;
  cursor: pointer;
}

.product_card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.product_name {
  color: #1f8c55;
  font-weight: 600;
  margin-top: 10px;
  cursor: default;
}

.product_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.product_price {
  font-weight: bold;
  cursor: default;
}

.cart_btn {
  background: #8bc69c;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* ARROWS */

.slider_btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #ffffffcc;
  border: none;
  font-size: 22px;
  cursor: pointer;
  padding: 8px 12px;
}

.prev_slide {
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  z-index: 100;
  border-radius: 50%;
}

.next_slide {
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  z-index: 100;
  border-radius: 50%;
}

/* Container for buttons and value */
.qty-controls_hyrje_re {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
}

/* Plus/Minus buttons */
.qty-btn_hyrje_re {
  width: 28px;
  height: 28px;
  border: none;
  background-color: #1a5f39; /* blue background */
  color: #fff; /* white text */
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

/* Hover effect */
.qty-btn_hyrje_re:hover {
  background-color: #1a5f39;
}

/* Quantity display */
.qty-value_hyrje_re {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

/* Optional: disable selection of buttons text */
.qty-btn_hyrje_re,
.qty-value_hyrje_re {
  user-select: none;
}

@media (max-width: 768px) {
  .product_card {
    min-width: 100%;
  }
}
