.elementor-9 .elementor-element.elementor-element-c19988b{--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-9 .elementor-element.elementor-element-dbadee6{--update-cart-automatically-display:none;--links-normal-color:var( --e-global-color-primary );--forms-buttons-border-type:solid;}.elementor-9 .elementor-element.elementor-element-dbadee6 .shop_table .button{border-width:1px 1px 1px 1px;}/* Start custom CSS for woocommerce-cart, class: .elementor-element-dbadee6 *//* ================================
   CART ITEM – RTL CLEAN LAYOUT
   ================================ */

body.woocommerce-cart {
  direction: rtl;
}

/* إخفاء رؤوس الجدول */
.woocommerce-cart table.shop_table thead {
  display: none;
}

/* تحويل صف المنتج إلى كرت */
.woocommerce-cart tr.woocommerce-cart-form__cart-item {
  display: grid;
  grid-template-columns: 56px 1fr 80px;
  grid-template-areas:
    "thumb name remove"
    "thumb price qty"
    "thumb subtotal subtotal";
  gap: 6px 10px;
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  position: relative;
}

/* إزالة أي padding افتراضي */
.woocommerce-cart tr.woocommerce-cart-form__cart-item td {
  padding: 0 !important;
  border: 0 !important;
}

/* ================= IMAGE ================= */
.product-thumbnail {
  grid-area: thumb;
  width: 56px;
}

.product-thumbnail img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
}

/* ================= NAME ================= */
.product-name {
  grid-area: name;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
}

.product-name a {
  color: #111;
  text-decoration: none;
}

/* ================= REMOVE ================= */
.product-remove {
  grid-area: remove;
  justify-self: start;
  align-self: start;
}

.product-remove a {
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: #f3f3f3;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  color: #000;
}

/* ================= PRICE ================= */
.product-price {
  grid-area: price;
  font-size: 13px;
  color: #666;
}

/* ================= QTY ================= */
.product-quantity {
  grid-area: qty;
  justify-self: start;
}

.product-quantity input.qty {
  width: 56px;
  height: 30px;
  padding: 0;
  font-size: 13px;
  border-radius: 8px;
  text-align: center;
}

/* ================= SUBTOTAL ================= */
.product-subtotal {
  grid-area: subtotal;
  font-size: 13.5px;
  font-weight: 700;
}

.product-subtotal small {
  display: block;
  font-size: 11px;
  color: #777;
  margin-top: 2px;
}

/* إخفاء زر تحديث السلة */
.woocommerce-cart tr td.actions {
  display: none;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .woocommerce-cart .product-thumbnail {
    display: block !important;
  }
}

/* ================= MOBILE TIGHTER ================= */
@media (max-width: 767px) {
  .woocommerce-cart tr.woocommerce-cart-form__cart-item {
    grid-template-columns: 50px 1fr 60px;
    gap: 6px 8px;
    padding: 8px;
  }

  .product-thumbnail img {
    width: 50px;
    height: 50px;
  }

  .product-name {
    font-size: 13px;
  }

  .product-quantity input.qty {
    width: 50px;
  }
}/* End custom CSS */