body {
  background-color: #f0c6ff;
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
}

.container h2 {
  color: #4a3172;
  font-weight: 700;
  margin-bottom: 30px;
}

/* Layout на картички */

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.card {
  margin-top: 50px;
  margin-bottom: 20px;

  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  background-color: #ffffff75;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-height: 600px;
}

.card-img-top {
  position: relative;
  width: 100%;
  height: 70%;
  overflow: hidden;
}

.card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.card-img-top .arrow-left,
.card-img-top .arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.card-img-top .arrow-left {
  left: 10px;
}
.card-img-top .arrow-right {
  right: 10px;
}

.card-img-top img:hover {
  transform: scale(1.05);
}

.card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.card-body h5 {
  font-size: 18px;
  font-weight: 600;
  color: #4a3172;
  text-align: center;
}

.card-body p {
  font-size: 16px;
  margin: 0;
  text-align: center;
}

.card-body .discount-price {
  color: #d9264d;
  font-weight: 700;
}

/* Копчиња */
.card-body .btn {
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 8px;
}

.d-flex.gap-2 {
  justify-content: center;
  gap: 10px;
}

/* Layout на row */
.row {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.remove-wishlist {
  border: 2px solid #ff4c4c !important;
}

.add-to-cart {
  border: 2px solid #28a745 !important;
}

/* Toast и модал */
.toast {
  font-size: 14px;
}

.modal-body {
  font-size: 16px;
  color: #555;
}
/* Скриј стрелки ако има само една слика */
.card-img-top.single-image .arrow-left,
.card-img-top.single-image .arrow-right {
  display: none;
}
/* Responsive */
@media (min-width: 1200px) {
  .row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .row {
    grid-template-columns: 1fr;
  }
}
/* Оддалеченост за мобилни/tablet */
@media (max-width: 1199px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .card {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Екстра мали екрани */
@media (max-width: 575px) {
  .card-body .d-flex.gap-2 {
    flex-direction: column;
    gap: 8px;
  }
}
