/* ============================================================
   Cafepoint – vlastné CSS
   ============================================================ */

/* --- KOŠÍK: layout aplikovaného kupónu (text vľavo, tlačidlo vpravo) --- */
.extras-col-basket .discount-coupon .applied-coupon {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
}
.extras-col-basket .discount-coupon .applied-coupon > strong {
  flex: 1 1 auto;
  text-align: left;
  margin: 0;
}
.extras-col-basket .discount-coupon .applied-coupon form {
  flex: 0 0 auto;
  margin: 0;
}

/* --- KOŠÍK: tlačidlo "Odstrániť" – nech sa text zmestí a vyzerá ako tlačidlo --- */
.extras-col-basket .discount-coupon .applied-coupon button {
  position: static !important;
  font-size: 0 !important;              /* skryje pôvodný text "Aplikovať" */
  width: auto !important;               /* box sa roztiahne na text */
  min-width: 0 !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 16px !important;
  border-radius: 8px !important;
  white-space: nowrap;
  line-height: 1;
}
.extras-col-basket .discount-coupon .applied-coupon button::after {
  content: "Odstrániť";
  font-size: 14px;
  line-height: 1;
}

/* --- KARTY: veľké biele písmo v texte kariet --- */
.card .card-text a,
.card .card-text {
  text-transform: uppercase;
  color: #ffffff;
}