.elementor-216 .elementor-element.elementor-element-09f024a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-216 .elementor-element.elementor-element-56990fc{--spacer-size:115px;}.elementor-216 .elementor-element.elementor-element-1e9fce72{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-2630dc4c *//* 🎨 Ogólny styl koszyka */
.woocommerce-cart .entry-content {
  padding: 40px 20px;
  background: #fafafa;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  font-family: 'Raleway', sans-serif;
}

/* 🧾 Tabela produktów */
.woocommerce-cart table.shop_table {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-collapse: collapse;
}

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  padding: 20px;
  text-align: center;
  vertical-align: middle;
  font-size: 15px;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

/* 👉 Wyrównanie cyfrowych kolumn do prawej */
.woocommerce-cart table.shop_table td.product-price,
.woocommerce-cart table.shop_table td.product-quantity,
.woocommerce-cart table.shop_table td.product-subtotal {
  text-align: right;
}

/* 👉 Nagłówki też do prawej */
.woocommerce-cart table.shop_table th.product-price,
.woocommerce-cart table.shop_table th.product-quantity,
.woocommerce-cart table.shop_table th.product-subtotal {
  text-align: right;
}

.woocommerce-cart table.shop_table th {
  background-color: #f2f2f2;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

/* 📸 Miniatura produktu */
.woocommerce-cart .product-thumbnail img {
  max-width: 70px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.1);
}

/* ❌ Ikona usuwania */
.woocommerce-cart a.remove {
  background: #e74c3c;
  color: #fff !important;
  font-size: 18px;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  transition: background 0.3s ease;
}

.woocommerce-cart a.remove:hover {
  background: #c0392b;
}

/* 📦 Podsumowanie koszyka */
.cart-collaterals {
  margin-top: 40px;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

/* 💰 Kwoty i tekst */
.cart_totals table th,
.cart_totals table td {
  font-size: 16px;
  padding: 10px;
  text-align: right;
}

/* 🟢 Przycisk do kasy */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: #000;
  color: #fff;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-block;
  text-align: center;
  transition: background 0.3s ease;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background: #333;
}

/* 🧾 Kupon (jeśli aktywny) */
.woocommerce-cart .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.woocommerce-cart .coupon input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.woocommerce-cart .coupon button {
  background: #000;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.woocommerce-cart .coupon button:hover {
  background: #333;
}
/* Ukryj placeholder tekst */
.woocommerce-cart .coupon input::placeholder {
  color: transparent;
}

/* Dodaj pseudo-placeholder jako przedrostek */
.woocommerce-cart .coupon input::before {
  content: 'Podaj kod rabatowy'; /* ❗️Nie działa – CSS nie obsługuje ::before na inputach */
}/* End custom CSS */