/* ========== WOOCOMMERCE CART ========== */

/* odstup od headera a footeru */
body.woocommerce-cart .btContentWrap {
  padding-top: 100px !important;
  padding-bottom: 20px;
}

/* oznam */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info {
  background: #f7faea;
  border: 1px solid rgba(192, 215, 50, 0.45);
  border-left: 5px solid #c0d732;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 24px;
  color: #1f1f1f;
}

/* väčší ľavý padding v ozname */
.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info {
  padding-left: 50px !important;
  position: relative;
}

/* ikonka/pseudoelement na stred zhora-dole */
.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before {
  left: 18px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
}

/* v košíku nech button vo woocommerce message vyzerá ako obyčajný link */
.woocommerce-cart .woocommerce-message a.button,
.woocommerce-cart .woocommerce-message .button.wc-forward,
.woocommerce-cart .woocommerce-info a.button,
.woocommerce-cart .woocommerce-info .button {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin-left: 8px !important;
  min-height: 0 !important;
  border-radius: 0 !important;
  display: inline !important;
  color: #6e7c14 !important;
  font-size: inherit !important;
  font-weight: 600 !important;
  line-height: inherit !important;
  text-decoration: underline !important;
}

.woocommerce-cart .woocommerce-message a.button:hover,
.woocommerce-cart .woocommerce-message .button.wc-forward:hover,
.woocommerce-cart .woocommerce-info a.button:hover,
.woocommerce-cart .woocommerce-info .button:hover {
  background: transparent !important;
  color: #566110 !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: underline !important;
}

/* hlavná tabuľka */
.woocommerce-cart table.shop_table.cart,
.woocommerce-cart .shop_table.shop_table_responsive.cart {
  width: 100%;
  border: 1px solid #ececec;
  border-radius: 18px;
  overflow: hidden;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

/* hlavička */
.woocommerce-cart table.shop_table.cart thead th {
  background: #f8f8f8;
  color: #1f1f1f;
  font-size: 14px;
  font-weight: 700;
  padding: 18px 16px;
  border: none;
}

/* bunky */
.woocommerce-cart table.shop_table.cart td,
.woocommerce-cart table.shop_table.cart th {
  border-top: 1px solid #efefef;
  border-left: none;
  border-right: none;
  padding: 18px 16px;
  vertical-align: top;
}

.woocommerce-cart table.shop_table.cart tbody tr:first-child td {
  border-top: none;
}

/* názov produktu */
.woocommerce-cart td.product-name a {
  color: #1f1f1f;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.45;
  text-decoration: none;
}

.woocommerce-cart td.product-name a:hover {
  color: #6e7c14;
}

/* obrázok produktu */
.woocommerce-cart td.product-thumbnail img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #ececec;
  background: #fafafa;
  padding: 6px;
}

/* odstránenie produktu */
.woocommerce-cart td.product-remove a.remove {
  width: 34px;
  height: 34px;
  line-height: 31px;
  text-align: center;
  border-radius: 50%;
  background: #f4f4f4;
  color: #888 !important;
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.2s ease;
}

.woocommerce-cart td.product-remove a.remove:hover {
  background: #ffe9e9;
  color: #c62828 !important;
}

/* cena a medzisúčet */
.woocommerce-cart td.product-price,
.woocommerce-cart td.product-subtotal {
  font-size: 17px;
  font-weight: 700;
  color: #1f1f1f;
  white-space: nowrap;
}

/* množstvo */
.woocommerce-cart .quantity .qty {
  width: 88px;
  min-height: 48px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 0 10px;
}

.woocommerce-cart .quantity .qty:focus {
  outline: none;
  border-color: #c0d732;
  box-shadow: 0 0 0 4px rgba(192, 215, 50, 0.18);
}

/* meta údaje */
.woocommerce-cart .wcpa_cart_meta {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.woocommerce-cart .wcpa_cart_meta_item {
  background: #fafafa;
  border: 1px solid #efefef;
  border-radius: 12px;
  padding: 12px 14px;
}

.woocommerce-cart .wcpa_cart_meta_item-label {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: #6b6b6b;
}

.woocommerce-cart .wcpa_cart_meta_item-value p {
  margin: 0;
  font-size: 15px;
  color: #222;
}

/* actions riadok */
.woocommerce-cart td.actions {
  background: #fcfcfc;
  padding-top: 20px;
  padding-bottom: 20px;
}

/* coupon a update vedľa seba */
.woocommerce-cart td.actions .coupon {
  display: inline-flex !important;
  align-items: center;
  gap: 12px;
  margin: 0;
  vertical-align: middle;
}

.woocommerce-cart td.actions > p {
  display: inline-flex !important;
  align-items: center;
  margin: 0 0 0 12px !important;
  vertical-align: middle;
}

/* input kupónu */
.woocommerce-cart .coupon input.input-text,
.woocommerce-cart #coupon_code {
  min-height: 42px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 15px;
  min-width: 220px;
  background: #fff;
  color: #222;
}

.woocommerce-cart .coupon input.input-text:focus,
.woocommerce-cart #coupon_code:focus {
  outline: none;
  border-color: #c0d732;
  box-shadow: 0 0 0 4px rgba(192, 215, 50, 0.18);
}

/* sekundárne tlačidlá */
.woocommerce-cart button[name="apply_coupon"],
.woocommerce-cart button[name="update_cart"],
.woocommerce-cart td.actions .coupon .button,
.woocommerce-cart td.actions .button {
  width: auto !important;
  min-width: 0 !important;
  min-height: 42px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: #f5f5f5 !important;
  border: 1px solid #dddddd !important;
  color: #7a7a7a !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  box-shadow: none !important;
  border-radius: 10px !important;
}

.woocommerce-cart button[name="apply_coupon"]:hover,
.woocommerce-cart button[name="update_cart"]:hover,
.woocommerce-cart td.actions .coupon .button:hover,
.woocommerce-cart td.actions .button:hover {
  background: #ececec !important;
  border-color: #d4d4d4 !important;
  color: #5f5f5f !important;
}

/* sumár košíka */
.woocommerce-cart .cart-collaterals {
  margin-top: 28px;
}

.woocommerce-cart .cart_totals {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  max-width: 460px;
  margin-left: auto;
}

.woocommerce-cart .cart_totals h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 18px;
  color: #1f1f1f;
}

.woocommerce-cart .cart_totals table.shop_table {
  border: none;
  margin: 0 0 18px;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
  border-top: 1px solid #efefef;
  padding: 14px 0;
  background: transparent;
}

.woocommerce-cart .cart_totals table.shop_table tr:first-child th,
.woocommerce-cart .cart_totals table.shop_table tr:first-child td {
  border-top: none;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
  font-size: 20px;
  font-weight: 800;
  color: #1f1f1f;
}

/* hlavné CTA */
.woocommerce-cart .wc-proceed-to-checkout {
  padding-bottom: 0;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button.button.alt {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c0d732;
  color: #1f1f1f;
  font-size: 17px;
  font-weight: 800;
  border-radius: 14px;
  border: none;
  box-shadow: 0 10px 22px rgba(192, 215, 50, 0.28);
  text-align: center;
  padding: 14px 18px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button.button.alt:hover {
  background: #aec52a;
  color: #1f1f1f;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button br {
  display: none;
}

/* mobile */
@media (max-width: 768px) {
  body.woocommerce-cart .btContentWrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .woocommerce-cart table.shop_table.cart,
  .woocommerce-cart .shop_table.shop_table_responsive.cart {
    border-radius: 14px;
  }

  .woocommerce-cart td.product-name a {
    font-size: 16px;
  }

  .woocommerce-cart td.actions .coupon,
  .woocommerce-cart td.actions > p {
    display: block !important;
    margin: 10px 0 0 0 !important;
  }

  .woocommerce-cart .coupon input.input-text,
  .woocommerce-cart #coupon_code,
  .woocommerce-cart td.actions .coupon .button,
  .woocommerce-cart button[name="update_cart"] {
    width: 100% !important;
  }

  .woocommerce-cart .cart_totals {
    max-width: 100%;
    margin-left: 0;
    padding: 20px;
  }
}
