.elementor-2054 .elementor-element.elementor-element-6d62ae7{--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;}@media(max-width:767px){.elementor-2054 .elementor-element.elementor-element-6d62ae7{--content-width:500px;--min-height:0px;}}@media(min-width:768px){.elementor-2054 .elementor-element.elementor-element-6d62ae7{--content-width:1600px;}}/* Start custom CSS for container, class: .elementor-element-6d62ae7 *//* ======= CART PAGE CONTAINER ONLY ======= */
body.woocommerce-cart .woocommerce {
  background-color: #fff;
  padding: 40px 20px;
  font-family: inherit;
  color: #222;
}

/* ======= CART TABLE ======= */
body.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}

body.woocommerce-cart table.shop_table th,
body.woocommerce-cart table.shop_table td {
  padding: 16px;
  border: 1px solid #eee;
  vertical-align: middle;
  text-align: left;
}

/* ======= PRODUCT IMAGE ======= */
body.woocommerce-cart td.product-thumbnail img {
  width: 80px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* ======= QUANTITY FIELD ======= */
body.woocommerce-cart .quantity input {
  max-width: 60px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 5px 10px;
}

/* ======= REMOVE BUTTON ======= */
body.woocommerce-cart a.remove {
  color: #e63946;
  font-weight: bold;
}

body.woocommerce-cart a.remove:hover {
  background: transparent;
  color: #ff0000;
}

/* ======= COUPON SECTION ======= */
body.woocommerce-cart .cart .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 20px;
}

body.woocommerce-cart .cart .coupon {
  display: flex;
  gap: 10px;
}

body.woocommerce-cart .cart input.input-text {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

body.woocommerce-cart .cart input.button {
  background-color: #444;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
}

body.woocommerce-cart .cart input.button:hover {
  background-color: #222;
}

/* ======= CART TOTALS ======= */
body.woocommerce-cart .cart-collaterals {
  margin-top: 40px;
  display: flex;
  justify-content: flex-end;
}

body.woocommerce-cart .cart_totals {
  max-width: 320px;
  width: 100%;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}

body.woocommerce-cart .cart_totals h2 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #333;
}

body.woocommerce-cart .cart_totals table th,
body.woocommerce-cart .cart_totals table td {
  border: none;
  padding: 10px 0;
  font-size: 16px;
}

/* ======= CHECKOUT BUTTON ======= */
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: block;
  background-color: #FF5890;
  color: #fff;
  padding: 14px;
  text-align: center;
  
  border-radius: 8px;
  margin-top: 20px;
  transition: background 0.3s ease;

}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
  background-color: #000000;
}

/* ======= MOBILE RESPONSIVENESS ======= */
@media (max-width: 768px) {
  body.woocommerce-cart .cart .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  body.woocommerce-cart .cart-collaterals {
    justify-content: center;
  }

  body.woocommerce-cart .cart_totals {
    width: 100%;
  }

  body.woocommerce-cart td.product-thumbnail img {
    width: 60px;
  }
}/* End custom CSS */