/* Swiper container */
.swiper {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 50px;
}

/* Swiper pojedinačne kartice */
.swiper-slide {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  width: 25% !important; /* Forsiramo 4 kartice po redu */
  border: 1px solid #ddd;
  padding: 10px;
  background: #fff;
}

.swiper-slide:hover {
  transform: translateY(-5px);
}

/* Unutarnji sadržaj (npr. slika i tekst) */
.swiper-slide img {
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  display: block;
}

.dopa-card {
  padding: 20px;
  text-align: center;
}

/* Naslov - može biti isto malo manji */
.dopa-card h3 {
  font-size: 1.1rem; /* ili 17-18px */
  margin: 10px 0 6px;
  font-weight: 600;
}

/* Manji font za sve paragrafe unutar kartice */
.dopa-card p {
  font-size: 0.85rem; /* ili 14px ako preferiraš */
  color: #666;
  margin-bottom: 10px;
}

.dopa-card ul {
  padding-left: 20px;
  margin: 10px 0;
  list-style-type: disc;
}

.dopa-card ul li {
  font-size: 14px !important;
  color: #444 !important;
  line-height: 1.4 !important;
  margin-bottom: 4px;
}

.order-button {
  background-color: #000;
  color: #fff;
  padding: 10px 18px;
  font-size: 0.95rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.order-button:hover {
  background-color: #333;
}

/* Pagination */
.swiper-pagination-bullet {
  background: #000;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}