/* ==========================================
   Product Preview Display Large (PPDL)
========================================== */

.ppdl-container {
  width: 100%;
}

/* PRODUCT CARD */
.ppdl-product {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: #f5f7fb;
  border-radius: 18px;
  padding: 35px 24px;
}

/* If meta exists, product card should NOT have bottom radius (because meta list closes it) */
.ppdl-container.has-meta .ppdl-product{
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* If no meta, product card keeps full radius */
.ppdl-container.no-meta .ppdl-product{
  border-radius: 18px;
}

/* LEFT */
.ppdl-left {
  display: flex;
  align-items: center;
  width: 60%;
}

/* IMAGE */
.ppdl-product-image {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppdl-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

/* INFO */
.ppdl-product-info {
  padding-left: 22px;
}

/* TEXT */
.ppdl-brand {
  font-family: "Open Sans";
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 800;
  color: #111827 !important; /* ili koja ti već treba */
}

.ppdl-name {
  font-family: "Open Sans";
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  line-height: 1.05;
  text-decoration: none;
  color: #245069 !important; /* ili koja ti već treba */
}

/* ==========================================
   RIGHT
========================================== */
.ppdl-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 40%;
  gap: 28px;
}

/* COUNT / PRICE / REMOVE */
.ppdl-product-count,
.ppdl-product-price,
.ppdl-product-cancel {
  display: flex;
  align-items: center;
}

/* ✅ COUNT NUMBER + X */
.ppdl-product-count {
  position: relative;
}

/* BROJ */
.ppdl-product-count span,
.ppdl-product-count {
  font-size: clamp(18px, 1.6vw, 22px); /* ⬅️ POVEĆANO */
  font-weight: 700;
  line-height: 1;
  color: #111827;
}


/* PRICE */
.ppdl-price {
  font-size: clamp(19px, 1.8vw, 24px); /* ⬅️ POVEĆANO */
  font-weight: 600;
  line-height: 1;
  color: #111827;
  display: block;
}

/* REMOVE */
.ppdl-cancel-btn {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ppdl-cancel-icon {
  width: 100%;
  height: 100%;

  display: block;

  background-image: url("../../images/icons/delete.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%; /* ⬅️ KONTROLA VELIČINE IKONE */

  opacity: 0.7;
  transition: opacity 0.15s ease;
}

.ppdl-cancel-btn:hover .ppdl-cancel-icon {
  opacity: 1;
}

/* ==========================================
   MOBILE
========================================== */
@media (max-width: 768px) {

  .ppdl-product {
    align-items: flex-start;
    padding: 24px 18px;
  }

  .ppdl-left {
    width: 100%;
  }

  /* 🔥 KLJUČNI FIX – desni dio centriran */
  .ppdl-right {
    align-self: center;
    gap: 18px;
  }

  .ppdl-product-count,
  .ppdl-product-count span {
    font-size: 18px;
  }

  .ppdl-price {
    font-size: 20px;
  }
}
