.elementor-82 .elementor-element.elementor-element-422a687b{--display:flex;}.elementor-82 .elementor-element.elementor-element-422a687b.e-con{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for text-editor, class: .elementor-element-5fb47955 *//* =========================================================
   NEW RS BEAUTY — CART PAGE CSS (FINAL v5)
   Paste in: Appearance > Customize > Additional CSS
   ========================================================= */

:root {
  --rs-maroon: #5c1a38;
  --rs-maroon-dark: #42122a;
  --rs-text: #2b2424;
  --rs-border: #ead9c8;
  --rs-cream: #fdf8f2;
}

/* ============ SAARA TEXT DARK ============ */
.woocommerce .cart,
.woocommerce .cart_totals,
.woocommerce table.shop_table,
.woocommerce table.shop_table td,
.woocommerce table.shop_table th,
.woocommerce .product-name a,
.woocommerce .woocommerce-Price-amount,
.woocommerce .cart-subtotal,
.woocommerce .order-total {
  color: var(--rs-text) !important;
}

/* ============ CART TABLE ============ */
.woocommerce table.shop_table {
  border: 1px solid var(--rs-border);
  border-radius: 14px;
  overflow: hidden;
  border-collapse: separate !important;
  border-spacing: 0;
  background: #ffffff;
}
.woocommerce table.shop_table thead th {
  background: var(--rs-maroon);
  color: #ffffff !important;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 16px 18px;
  font-size: 15px;
  text-transform: uppercase;
}
.woocommerce table.shop_table td {
  padding: 18px;
  border-top: 1px solid var(--rs-border);
  vertical-align: middle;
}

/* ============ PRODUCT NAME ============ */
.woocommerce .product-name a {
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color .25s ease;
}
.woocommerce .product-name a:hover { color: var(--rs-maroon) !important; }

/* ============ PRODUCT IMAGE ============ */
.woocommerce .product-thumbnail img {
  width: 110px !important;
  height: auto !important;
  max-width: none;
  border-radius: 12px;
  border: 1px solid var(--rs-border);
}

/* ============ PRICES ============ */
.woocommerce .woocommerce-Price-amount { font-weight: 600; }

/* ============ QUANTITY BOX (- 1 +) ============ */
.woocommerce .quantity {
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid var(--rs-border) !important;
  border-radius: 10px !important;
  overflow: hidden;
  background: #fff;
  width: auto !important;
  height: 44px;
  position: relative;
}
.woocommerce .quantity .ct-decrease,
.woocommerce .quantity .ct-increase {
  position: static !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 100%;
  margin: 0 !important;
  inset: auto !important;
  cursor: pointer;
  background: var(--rs-cream);
  color: var(--rs-maroon);
  font-size: 18px;
  line-height: 1;
}
.woocommerce .quantity .ct-decrease { order: 1; }
.woocommerce .quantity input.qty {
  order: 2;
  position: static !important;
  border: none !important;
  border-left: 1px solid var(--rs-border) !important;
  border-right: 1px solid var(--rs-border) !important;
  border-radius: 0 !important;
  width: 50px !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: center;
  background: #fff;
  color: var(--rs-text);
  font-weight: 600;
  -moz-appearance: textfield;
}
.woocommerce .quantity .ct-increase { order: 3; }
.woocommerce .quantity input.qty::-webkit-outer-spin-button,
.woocommerce .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}

/* ============ REMOVE (trash) ICON ============ */
.woocommerce a.remove {
  color: var(--rs-maroon) !important;
  font-size: 26px !important;        /* text/emoji icon ka size */
  line-height: 1 !important;
  width: auto !important;
  height: auto !important;
  font-weight: 700;
  transition: transform .2s ease;
}
.woocommerce a.remove:hover {
  transform: scale(1.15);
  background: transparent !important;
  color: var(--rs-maroon) !important;
}
/* Agar icon SVG hai to uska size yahan se badhega */
.woocommerce a.remove .ct-icon,
.woocommerce a.remove svg {
  width: 24px !important;
  height: 24px !important;
  fill: var(--rs-maroon) !important;
}

/* ============ COUPON FIELD ============ */
.woocommerce .coupon input.input-text {
  border: 1px solid var(--rs-border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--rs-text);
  background: #fff;
}
.woocommerce .coupon input.input-text::placeholder { color: #9b8c80; }

/* ============ BUTTONS ============ */
.woocommerce .button,
.woocommerce button.button {
  background: var(--rs-maroon) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 13px 26px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
}
.woocommerce .button:hover,
.woocommerce button.button:hover {
  background: var(--rs-maroon-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(92,26,56,.25);
}
.woocommerce button.button:disabled,
.woocommerce button.button[disabled] {
  background: #c9b6c0 !important;
  cursor: not-allowed; transform: none; box-shadow: none;
}

/* ============ CART TOTALS BOX ============ */
.woocommerce .cart_totals {
  background: var(--rs-cream);
  border: 1px solid var(--rs-border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(92,26,56,.07);
}
.woocommerce .cart_totals h2 {
  color: var(--rs-maroon) !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rs-border);
}
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  padding: 14px 6px;
  font-size: 16px;
  border-top: 1px solid var(--rs-border);
}
.woocommerce .cart_totals .order-total th,
.woocommerce .cart_totals .order-total td strong {
  font-size: 19px;
  color: var(--rs-maroon) !important;
}

/* ============ PROCEED TO CHECKOUT - CENTER ============ */
.woocommerce .wc-proceed-to-checkout,
.woocommerce .wc-proceed-to-checkout p {
  text-align: center !important;
  margin: 0 !important;
  padding: 0 !important;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce .wc-proceed-to-checkout p a.checkout-button {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
  background: var(--rs-maroon) !important;
  color: #ffffff !important;
  border-radius: 12px !important;
  padding: 16px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 18px 0 0 !important;
  transition: background .25s ease, transform .15s ease, box-shadow .25s ease;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
  background: var(--rs-maroon-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(92,26,56,.3);
}

/* =========================================================
   MOBILE VIEW — har item ek CARD, price quantity ke saath
   ========================================================= */
@media (max-width: 768px) {

  /* Side scroll / cut hone se rokein */
  .woocommerce .woocommerce-cart-form,
  .woocommerce table.shop_table {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

  /* Desktop table header chhupayein */
  .woocommerce table.shop_table thead { display: none !important; }

  /* Har cart item = ek card: image left, content right */
  .woocommerce table.shop_table tr.cart_item {
    display: grid !important;
    grid-template-columns: 84px 1fr;
    gap: 4px 14px;
    align-items: start;
    padding: 16px !important;
    border: 1px solid var(--rs-border) !important;
    border-radius: 14px;
    background: #fff;
    margin-bottom: 14px;
  }

  /* Duplicate desktop columns chhupayein */
  .woocommerce table.shop_table tr.cart_item td.product-quantity,
  .woocommerce table.shop_table tr.cart_item td.product-subtotal,
  .woocommerce table.shop_table tr.cart_item > td.product-remove {
    display: none !important;
  }

  .woocommerce table.shop_table tr.cart_item td {
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    vertical-align: top;
  }

  .woocommerce td.product-thumbnail img { width: 84px !important; }
  .woocommerce td.product-name a { font-size: 15px; line-height: 1.35; }

  /* ===== MOBILE ACTIONS: quantity + price ek saath ===== */
  .woocommerce .product-mobile-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
  }

  /* Quantity ab sirf utni width legi jitni zaroorat — extra space khatam */
  .woocommerce .product-mobile-actions .quantity {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 150px !important;
    height: 40px;
  }
  .woocommerce .product-mobile-actions .quantity .ct-decrease,
  .woocommerce .product-mobile-actions .quantity .ct-increase { width: 38px; }
  .woocommerce .product-mobile-actions .quantity input.qty { width: 46px !important; }

  /* × aur price wale <p> — quantity ke saath inline */
  .woocommerce .product-mobile-actions > p {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
  }
  /* <br> hata do taaki trash icon price ke saath hi rahe */
  .woocommerce .product-mobile-actions > p br { display: none !important; }

  .woocommerce .product-mobile-actions .ct-product-multiply-symbol {
    color: var(--rs-text);
    font-size: 15px;
  }
  .woocommerce .product-mobile-actions .woocommerce-Price-amount {
    font-size: 16px;
    color: var(--rs-maroon) !important;
  }
  .woocommerce .product-mobile-actions a.remove { margin-left: 4px; }

  /* Coupon + buttons full width */
  .woocommerce .coupon { display: flex; flex-direction: column; gap: 10px; }
  .woocommerce .coupon input.input-text { width: 100% !important; }
  .woocommerce .button,
  .woocommerce button.button { width: 100% !important; }

  /* Cart totals */
  .woocommerce .cart_totals { margin-top: 22px; padding: 20px; }
  .woocommerce .cart_totals h2 { font-size: 22px !important; }
  /* Mobile me trash icon chhota */
  .woocommerce .product-mobile-actions a.remove {
    font-size: 18px !important;
    margin-left: 4px;
  }
  .woocommerce .product-mobile-actions a.remove .ct-icon,
  .woocommerce .product-mobile-actions a.remove svg {
    width: 16px !important;
    height: 16px !important;
  }
}/* End custom CSS */