.elementor-14 .elementor-element.elementor-element-3ff3bfb4{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for container, class: .elementor-element-3ff3bfb4 *//* ===== Cart Page Modern UI ===== */
.wc-block-cart {
	display: flex;
	gap: 30px;
	font-family: "Poppins", sans-serif;
	animation: fadeSlide 0.8s ease-in-out;
}

/* Main Cart Table */
.wc-block-cart__main {
	flex: 2;
	background: #f9f9f9;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 0px 1px rgba(0, 0, 0, 2.05);
	animation: slideUp 0.9s ease;
}

tr.wc-block-cart-items__header {
	border-top: black;
	border-width: 2px;
	border-left: black;
	border-right: black;
	background-color: #f9f9f9;
}

.wc-block-cart-items {
	width: 100%;
	border-collapse: collapse;
}

.wc-block-cart-items__header th {
	text-align: left;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 8px;
	border-bottom: 1px solid #eee;
}

.wc-block-cart-items__row td {
	padding: 18px 12px;
	vertical-align: middle;
	border-bottom: 1px solid #f1f1f1;
	transition: background 0.3s ease;
}
/* Save Badge UI */
.wc-block-components-product-badge.wc-block-components-sale-badge {
    display: inline-block;
    background: #32a62b; /* red shade */
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px; /* pill shape */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 5px 0;
    animation: fadeIn 0.4s ease-in-out;
}

/* Price inside Save Badge */
.wc-block-components-sale-badge .wc-block-components-formatted-money-amount {
    font-weight: 700;
    margin-left: 4px;
}

/* Small animation for entry */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Product Image */
.wc-block-cart-item__image img {
	border-radius: 12px;
	max-width: 80px;
	transition: transform 0.3s ease;
}

.wc-block-cart-item__image img:hover {
	transform: scale(1.05);
}

/* Product Name */
.wc-block-components-product-name {
	font-size: 15px;
	font-weight: 500;
	color: #222;
	text-decoration: none;
	transition: color 0.3s ease;
}

.wc-block-components-product-name:hover {
	color: #2D4BFF;
}

ul.wc-block-components-product-details {
	display: none;
}

span.wc-block-formatted-money-amount.wc-block-components-formatted-money-amount.wc-block-components-product-price__value {
	font-size: 20px !important;
	color: black !important;
}

/* Quantity Box */
.wc-block-components-quantity-.elementor-14 .elementor-element.elementor-element-3ff3bfb4 {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 10px;
}

.wc-block-components-quantity-.elementor-14 .elementor-element.elementor-element-3ff3bfb4__input {
	width: 60px;
	padding: 6px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 6px;
	transition: border 0.3s ease;
}

.wc-block-components-quantity-.elementor-14 .elementor-element.elementor-element-3ff3bfb4__input:focus {
	border-color: #2D4BFF;
	outline: none;
}

.wc-block-components-quantity-.elementor-14 .elementor-element.elementor-element-3ff3bfb4__button {
	border: none;
	background: #f0f0f0;
	padding: 6px 10px;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.3s ease;
}

.wc-block-components-quantity-.elementor-14 .elementor-element.elementor-element-3ff3bfb4__button:hover {
	background: #ddd;
}

/* Remove Item */
.wc-block-cart-item__remove-link {
	display: inline-block;
	margin-top: 10px;
	color: #ff3b3b;
	font-size: 13px;
	transition: color 0.3s ease;
}

.wc-block-cart-item__remove-link:hover {
	color: #cc0000;
}

/* Subtotal / Estimated Total UI Fix */
.wc-block-components-totals-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.wc-block-components-totals-item__label {
    font-weight: 500;
    color: #333;
}

.wc-block-components-totals-item__value {
    font-weight: 600;
    color: #000;
}

.wc-block-components-totals-footer-item-tax-value {
    font-size: 16px;
}


/* Cart Totals */
.wc-block-cart__sidebar {
	flex: 1;
	background: #f9f9f9;
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 0px 1px rgba(0, 0, 0, 2.05);
	animation: slideRight 1s ease;
}

.wc-block-cart__totals-title {
	font-size: 18px;
	font-weight: 600;
	/*margin-bottom: 20px;*/
}

.wc-block-components-totals-item {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	/*border-bottom: 1px dashed #eee;*/
}

.wc-block-components-totals-footer-item {
	font-size: 16px;
	font-weight: 600;
	color: #222;
}

.wp-block-woocommerce-cart-order-summary-totals-block {
	padding: 10px 0px 10px 0px !important;
}

/* Checkout Button */
.wc-block-cart__submit-button {
	width: 100%;
	background: #000000 !important;
	color: #fff !important;
	padding: 10px 0px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 40px !important;
	margin-top: 20px;
	text-align: center;
	transition: background 0.3s ease, transform 0.2s ease;
}

/* Coupon Box Styling */
.wc-block-components-totals-coupon__content {
	margin-top: 15px;
	font-family: "Poppins", sans-serif;
}

/* Input Box */
.wc-block-components-totals-coupon__input input {
	width: 100%;
	padding: 12px 14px;
	font-size: 14px;
	border: 1px solid #ddd;
	border-radius: 8px;
	outline: none;
	transition: all 0.3s ease;
}

.wc-block-components-totals-coupon__input input:focus {
	border-color: #0073e6;
	box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
}

/* Label */
.wc-block-components-totals-coupon__input label {
	font-size: 13px;
	color: #666;
	display: block;
	margin-bottom: 6px;
}

/* Apply Button */
.wc-block-components-totals-coupon__button {
	margin-top: 12px;
	width: 100%;
	padding: 12px;
	font-size: 15px;
	font-weight: 500;
	border: none;
	border-radius: 8px;
	background: #0073e6;
	color: #fff;
	cursor: pointer;
	transition: background 0.3s ease;
}

/* ===== Replace "Estimated total" with "Subtotal" ===== */
.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  position: relative;
  visibility: hidden;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label::after {
  content: "Subtotal";
  position: absolute;
  top: 0;
  left: 0;
  visibility: visible;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  text-align: right;
}



/* Align value properly */
.wc-block-components-totals-item__value {
	text-align: right;
	font-size: 16px;
	font-weight: 600;
	color: #111;
}

.wc-block-cart__submit-button:hover {
	background: #1A34CC !important;
	transform: translateY(-2px);
}

.page .wc-block-components-totals-wrapper {
	margin-bottom: 0px;
	padding: 10px 0px 8px 0px;
	/* border-bottom: 1px solid rgba(var(--color-four-rgb), 0.3); */
	/* padding-top: 0px; */
}

.page .wc-block-components-panel__button[aria-expanded="true"] {
	margin-bottom: 0px !important;
	padding-bottom: 0px !important;
}

.page .wc-block-components-totals-coupon__input.wc-block-components-text-input label {
	color: #000000;
}

/* ===== Animations ===== */
@keyframes fadeSlide {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
	.wc-block-cart {
		flex-direction: column;
	}

	.wc-block-cart__main,
	.wc-block-cart__sidebar {
		width: 100%;
	}
}

@media (max-width: 576px) {
	.wc-block-cart-items__header th {
		font-size: 13px;
	}

	.wc-block-cart-item__product {
		font-size: 13px;
	}

	.wc-block-cart-item__image img {
		max-width: 60px;
	}

	.wc-block-cart__submit-button {
		font-size: 14px;
		padding: 12px;
	}
}/* End custom CSS */