/*
 * Cart page styles
 * Lightweight, cleaner cart visual layer.
 */

body.woocommerce-cart .cart-page-wrapper {
	background: #000;
}

body.woocommerce-cart .cart-page-wrapper .section-base {
	padding: 22px 0 40px;
}

body.woocommerce-cart .page-hero-enhanced.cart-hero {
	display: none;
}

body.woocommerce-cart .page-hero-enhanced .page-hero-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.7) 100%);
}

body.woocommerce-cart .page-hero-enhanced .page-hero-title {
	font-size: clamp(38px, 6vw, 58px);
	margin-bottom: 8px;
}

body.woocommerce-cart .page-hero-enhanced .page-hero-subtitle {
	font-size: 15px;
	color: #d6d6d6;
	margin-bottom: 0;
}

body.woocommerce-cart .two-column {
	display: grid;
	gap: 34px;
	grid-template-columns: minmax(0, 1fr) 350px;
	align-items: start;
}

body.woocommerce-cart .left-column {
	min-width: 0;
}

body.woocommerce-cart .right-column {
	width: 350px;
	max-width: 100%;
}

body.woocommerce-cart .card-enhanced {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

body.woocommerce-cart .left-column .card-enhanced {
	padding: 0;
}

body.woocommerce-cart .left-column .section-title {
	display: none;
}

body.woocommerce-cart .cart-list-head {
	display: none;
	grid-template-columns: minmax(0, 1fr) 130px 110px 90px;
	gap: 16px;
	align-items: center;
	padding: 0 10px 10px;
	margin-bottom: 8px;
	border-bottom: 0;
	font-size: 12px;
	letter-spacing: 0.6px;
	text-transform: uppercase;
	font-weight: 700;
	color: #8f98bb;
}

body.woocommerce-cart .cart-list-head .cart-col-qty,
body.woocommerce-cart .cart-list-head .cart-col-price,
body.woocommerce-cart .cart-list-head .cart-col-remove {
	text-align: right;
}

body.woocommerce-cart .woocommerce-cart-form__contents thead {
	display: none;
}

body.woocommerce-cart .woocommerce-cart-form__contents {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0 14px;
}

body.woocommerce-cart .woocommerce-cart-form__contents tr.woocommerce-cart-form__cart-item > td.product-custom-display {
	padding: 0;
	border: 0;
}

body.woocommerce-cart .woocommerce-cart-form__contents td.product-remove {
	display: none;
}

body.woocommerce-cart .cart-item {
	display: grid;
	grid-template-columns: 96px minmax(0, 1fr) 130px 70px 90px;
	align-items: center;
	background: #090c16;
	border: 0;
	border-radius: 10px;
	padding: 16px 18px;
	margin-bottom: 0;
	gap: 18px;
	transition: background-color 0.2s ease;
}

body.woocommerce-cart .cart-item:hover {
	background: #0d1220;
	box-shadow: none;
}

body.woocommerce-cart .cart-item-thumbnail {
	width: 96px;
	height: 96px;
	border-radius: 8px;
	border: 0;
	overflow: hidden;
}

body.woocommerce-cart .cart-item-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

body.woocommerce-cart .cart-item-details-center {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	min-width: 0;
}

body.woocommerce-cart .cart-item-details-content {
	min-width: 0;
}

body.woocommerce-cart .cart-item-name {
	font-size: 16px;
	font-family: "Open Sans", Arial, sans-serif;
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 0;
}

body.woocommerce-cart .cart-item-name a {
	color: #ffffff;
	text-decoration: none;
}

body.woocommerce-cart .cart-item-name a:hover {
	color: #8b5cf6;
}

body.woocommerce-cart .cart-item-remove-center {
	display: none;
}

body.woocommerce-cart .cart-item-quantity {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	background: #0f1322;
	border: 0;
	padding: 4px 6px;
	border-radius: 6px;
}

body.woocommerce-cart .cart-item-quantity label {
	color: #a0a8c8;
	font-size: 10px;
	letter-spacing: 0.4px;
	text-transform: uppercase;
}

body.woocommerce-cart .cart-item-quantity input[type="number"] {
	background: #080b14;
	border: 0;
	border-radius: 5px;
	height: 32px;
	width: 48px;
	padding: 4px;
	font-size: 13px;
	color: #f0f3ff;
}

body.woocommerce-cart .cart-item-price {
	text-align: right;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #9aa2c0;
}

body.woocommerce-cart .cart-item-price .amount,
body.woocommerce-cart .cart-item-price .woocommerce-Price-amount {
	font-size: 18px;
	font-weight: 700;
	color: #8b5cf6;
	line-height: 1.1;
	font-family: "Open Sans", Arial, sans-serif;
}

body.woocommerce-cart .cart-item-price del,
body.woocommerce-cart .cart-item-subtotal del {
	display: none;
}

body.woocommerce-cart .cart-item-price ins,
body.woocommerce-cart .cart-item-subtotal ins {
	text-decoration: none;
	color: inherit;
}

body.woocommerce-cart .cart-item-subtotal {
	display: none;
}

body.woocommerce-cart .remove-item {
	width: 32px;
	height: 32px;
	border-radius: 5px;
}

body.woocommerce-cart .cart-item-remove-end {
	width: 100%;
	text-align: right;
}

body.woocommerce-cart .remove-item.remove-item-text {
	display: inline-block;
	width: auto;
	height: auto;
	padding: 0;
	border: 0;
	background: transparent;
	color: #8f98bb;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	text-decoration: none;
	line-height: 1.2;
	box-shadow: none;
	transform: none;
}

body.woocommerce-cart .remove-item.remove-item-text:hover {
	color: #ff7b7b;
	background: transparent;
	border: 0;
	box-shadow: none;
	transform: none;
}

body.woocommerce-cart .cart-actions {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 0;
	gap: 12px;
}

body.woocommerce-cart .left-column .cart-actions {
	display: none;
}

body.woocommerce-cart .coupon-row {
	gap: 10px;
}

body.woocommerce-cart .coupon-row input.form-input {
	height: 44px;
	border-radius: 6px;
	border: 0;
	background: #0c1019;
}

body.woocommerce-cart .coupon-row .btn-primary,
body.woocommerce-cart .update-cart-btn {
	height: 44px;
	padding: 0 18px;
	border-radius: 6px;
	font-size: 13px;
	letter-spacing: 1px;
	border: 0;
}

body.woocommerce-cart .update-cart-btn {
	margin-left: auto;
}

body.woocommerce-cart .cart-sidebar.right-column {
	top: 90px;
}

body.woocommerce-cart .cart-inline-totals {
	margin-top: 18px;
	padding: 0;
	background: transparent;
	border-radius: 0;
	display: grid;
	gap: 8px;
	max-width: 320px;
	margin-left: auto;
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row .label {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: none;
	color: #aeb4c8;
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row .label::after {
	content: ":";
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row .value {
	font-size: 16px;
	font-weight: 600;
	color: #f5f6fb;
	text-align: right;
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row.subtotal .value,
body.woocommerce-cart .cart-inline-totals .cart-inline-row.subtotal .value .amount,
body.woocommerce-cart .cart-inline-totals .cart-inline-row.subtotal .value .woocommerce-Price-amount,
body.woocommerce-cart .cart-inline-totals .cart-inline-row.shipping .value,
body.woocommerce-cart .cart-inline-totals .cart-inline-row.shipping .value .amount,
body.woocommerce-cart .cart-inline-totals .cart-inline-row.shipping .value .woocommerce-Price-amount {
	font-size: 16px;
	font-weight: 600;
	color: #f5f6fb;
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row.total .label {
	font-size: 16px;
	font-weight: 700;
	color: #f5f6fb;
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row.total {
	margin-top: 6px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row.total .value,
body.woocommerce-cart .cart-inline-totals .cart-inline-row.total .value .amount,
body.woocommerce-cart .cart-inline-totals .cart-inline-row.total .value .woocommerce-Price-amount {
	font-size: 16px;
	font-weight: 800;
	line-height: 1;
	color: #8b5cf6;
	letter-spacing: 0.01em;
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row.total .value .woocommerce-Price-amount {
	display: inline-flex;
	align-items: baseline;
	gap: 4px;
	white-space: nowrap;
}

body.woocommerce-cart .cart-inline-totals .cart-inline-row.total .value .woocommerce-Price-currencySymbol {
	display: inline !important;
	white-space: nowrap;
}

body.woocommerce-cart .cart-sidebar .cart_totals .cart-subtotal,
body.woocommerce-cart .cart-sidebar .cart_totals .shipping,
body.woocommerce-cart .cart-sidebar .cart_totals .order-total {
	display: none;
}

body.woocommerce-cart .cart-sidebar .card-enhanced {
	padding: 24px;
	background: #090c16;
	border: 0;
	border-radius: 10px;
}

body.woocommerce-cart .cart-sidebar-coupon {
	margin-top: 16px;
	padding: 12px;
	background: #0f1322;
	border: 1px solid #2a3044;
	border-radius: 8px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

body.woocommerce-cart .cart-sidebar-coupon .form-input {
	height: 42px;
	border: 1px solid #394062;
	border-radius: 6px;
	background: #161b2d;
	color: #f5f6fb;
	padding: 0 12px;
}

body.woocommerce-cart .cart-sidebar-coupon .form-input::placeholder {
	color: #b4bddf;
}

body.woocommerce-cart .cart-sidebar-coupon .form-input:focus {
	outline: none;
	border-color: #8b5cf6;
	box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

body.woocommerce-cart .cart-sidebar-coupon .btn-primary {
	height: 42px;
	border: 1px solid #8b5cf6;
	background: transparent;
	color: #ffffff;
	border-radius: 6px;
	font-size: 13px;
	letter-spacing: 0.8px;
}

body.woocommerce-cart .cart-sidebar-coupon .btn-primary:hover {
	background: #8b5cf6;
	border-color: #8b5cf6;
	color: #ffffff;
}

body.woocommerce-cart .cart-sidebar .cart_totals h2 {
	display: none;
}

body.woocommerce-cart .cart-sidebar .cart_totals .shop_table {
	border: 0 !important;
	margin: 0 !important;
	background: transparent !important;
}

body.woocommerce-cart .cart-sidebar .cart_totals .shop_table tbody,
body.woocommerce-cart .cart-sidebar .cart_totals .shop_table tr,
body.woocommerce-cart .cart-sidebar .cart_totals .shop_table th,
body.woocommerce-cart .cart-sidebar .cart_totals .shop_table td {
	border: 0 !important;
	background: transparent !important;
}

body.woocommerce-cart .cart-sidebar .shop_table th,
body.woocommerce-cart .cart-sidebar .shop_table td {
	padding: 8px 0;
}

body.woocommerce-cart .cart-sidebar .shop_table th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: #a0a8c8;
}

body.woocommerce-cart .cart-sidebar .shop_table td {
	font-size: 15px;
	font-weight: 600;
	color: #f5f6fb;
	word-break: break-word;
}

body.woocommerce-cart .cart-sidebar .order-total th,
body.woocommerce-cart .cart-sidebar .order-total td {
	font-size: 16px;
	font-weight: 700;
	padding-top: 14px;
	border-top: 0;
	line-height: 1.2;
	font-family: "Open Sans", Arial, sans-serif;
}

body.woocommerce-cart .cart-sidebar .order-total .amount,
body.woocommerce-cart .cart-sidebar .order-total .woocommerce-Price-amount {
	font-size: 34px;
	font-weight: 800;
	color: #8b5cf6;
	line-height: 1.05;
	font-family: "Open Sans", Arial, sans-serif;
}

body.woocommerce-cart .cart-sidebar .wc-proceed-to-checkout .checkout-button {
	border-radius: 6px;
	padding: 16px 20px;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.8px;
	box-shadow: none;
	border: 0;
	display: block;
	width: 100%;
	position: relative;
	margin-bottom: 36px;
}

body.woocommerce-cart .cart-sidebar #wcpay-payment-request-wrapper,
body.woocommerce-cart .cart-sidebar #wcpay-payment-request-button,
body.woocommerce-cart .cart-sidebar .wcpay-payment-request-button,
body.woocommerce-cart .cart-sidebar .wcpay-payment-request-button__container,
body.woocommerce-cart .cart-sidebar .wc-stripe-payment-request-wrapper,
body.woocommerce-cart .cart-sidebar .wc-stripe-payment-request-button,
body.woocommerce-cart .cart-sidebar .ppc-button-wrapper,
body.woocommerce-cart .cart-sidebar .ppcp-button-wrapper,
body.woocommerce-cart .cart-sidebar [id*="payment-request"] {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box;
}

body.woocommerce-cart .cart-sidebar #wcpay-payment-request-button iframe,
body.woocommerce-cart .cart-sidebar .wcpay-payment-request-button iframe,
body.woocommerce-cart .cart-sidebar .wc-stripe-payment-request-button iframe,
body.woocommerce-cart .cart-sidebar .ppc-button-wrapper iframe,
body.woocommerce-cart .cart-sidebar .ppcp-button-wrapper iframe {
	width: 100% !important;
	max-width: 100% !important;
}

body.woocommerce-cart .cart-sidebar .woocommerce-shipping-destination,
body.woocommerce-cart .cart-sidebar .shipping td,
body.woocommerce-cart .cart-sidebar .shipping th {
	font-size: 14px;
	line-height: 1.45;
}

body.woocommerce-cart .cart-sidebar .wc-proceed-to-checkout .checkout-button:hover {
	transform: none;
	box-shadow: none;
}

body.woocommerce-cart .cart-sidebar .wc-proceed-to-checkout .checkout-button::after {
	content: "OR";
	position: absolute;
	top: calc(100% + 12px);
	left: 0;
	right: 0;
	display: block;
	text-align: center;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.06em;
	background:
		linear-gradient(currentColor, currentColor) left center / 40% 1px no-repeat,
		linear-gradient(currentColor, currentColor) right center / 40% 1px no-repeat;
	opacity: 0.8;
}

body.woocommerce-cart .empty-cart-notice {
	padding: 44px 26px !important;
	border-radius: 8px;
	text-align: center;
}

body.woocommerce-cart .empty-cart-notice .feature-icon {
	margin-bottom: 20px;
}

body.woocommerce-cart .empty-cart-notice .section-title {
	font-size: 30px;
	margin-bottom: 10px !important;
}

body.woocommerce-cart .empty-cart-notice .section-subtitle {
	margin-bottom: 22px !important;
}

@media (max-width: 1024px) {
	body.woocommerce-cart .two-column {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	body.woocommerce-cart .right-column {
		width: 100%;
	}

	body.woocommerce-cart .cart-sidebar.right-column {
		top: 0;
	}
}

@media (max-width: 768px) {
	body.woocommerce-cart .cart-list-head {
		display: none;
	}

	body.woocommerce-cart .cart-page-wrapper .section-base {
		padding: 24px 0 44px;
	}

	body.woocommerce-cart .left-column .card-enhanced,
	body.woocommerce-cart .cart-sidebar .card-enhanced {
		padding: 16px;
	}

	body.woocommerce-cart .cart-item {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		padding: 12px;
		gap: 12px;
	}

	body.woocommerce-cart .cart-item-details-center,
	body.woocommerce-cart .cart-item-details-content {
		align-items: center;
		text-align: center;
	}

	body.woocommerce-cart .cart-item-name {
		font-size: 16px;
	}

	body.woocommerce-cart .cart-item-price .amount,
	body.woocommerce-cart .cart-item-price .woocommerce-Price-amount,
	body.woocommerce-cart .cart-sidebar .order-total .amount,
	body.woocommerce-cart .cart-sidebar .order-total .woocommerce-Price-amount {
		font-size: 28px;
	}

	body.woocommerce-cart .cart-item-thumbnail {
		width: 74px;
		height: 74px;
	}

	body.woocommerce-cart .cart-item-quantity,
	body.woocommerce-cart .cart-item-price,
	body.woocommerce-cart .cart-item-remove-end {
		grid-column: 1 / -1;
		width: auto;
		align-items: center;
		border-top: 1px solid #2a2a2f;
		padding-top: 12px;
	}

	body.woocommerce-cart .cart-item-quantity {
		display: flex;
		justify-content: center;
		border-top: 1px solid #2a2a2f;
	}

	body.woocommerce-cart .cart-item-price {
		text-align: center;
	}

	body.woocommerce-cart .cart-item-price,
	body.woocommerce-cart .cart-item-remove-end {
		border-top: 0;
		padding-top: 0;
	}

	body.woocommerce-cart .cart-item-remove-end {
		width: 100%;
		text-align: center;
	}
}
