/* --- Desktop (štandardne) --- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}

/* --- Mobilné zobrazenie --- */
@media (max-width: 768px) {
  .cart-table,
  .cart-table thead,
  .cart-table tbody,
  .cart-table th,
  .cart-table td,
  .cart-table tr {
    display: block;
  }

  .cart-table thead {
    display: none; /* skryje hlavičku */
  }

  .cart-table tr {
    margin-bottom: 1rem;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 0.75rem;
    background: #fff;
    box-shadow: 0 2px 3px rgba(0,0,0,0.05);
  }

  .cart-table td {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border: none;
    align-items: center;
    gap: 15px;
    border-bottom: 1px #e6e6e6 solid;
  }

  .cart-table td:last-child {
    border-bottom: none;
  }

  .cart-table td::before {
    content: attr(data-label); /* text z hlavičky */
    font-weight: bold;
    text-transform: uppercase;
    color: #666;
  }

  /* vstupy, tlačidlá, obrázky nech sú menšie */
  .cart-table input.cart-quantity {
    width: 60px;
    text-align: center;
  }

  .cart-plus, .cart-minus {
    padding: 0.3rem 0.6rem;
    font-size: 1rem;
  }

.cart-col-qty img {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-col-product {
  width: 100%;
}

.cart-col-color, .cart-col-filling, .cart-col-text {
  width: 100%;
}

.cart-col-price, .cart-col-qty, .cart-col-remove {
  width: 100%;
}





}
