/**
 * Cart Page Styles
 * طراحی جذاب و مینیمال برای صفحه سبدخرید
 */

/* Section Base - جلوگیری از اسکرول افقی */
html {
	overflow-x: hidden !important;
	max-width: 100vw !important;
	width: 100% !important;
}

body {
	overflow-x: hidden !important;
	max-width: 100vw !important;
	width: 100% !important;
	position: relative !important;
	margin: 0 !important;
	padding: 0 !important;
}

.site {
	overflow-x: hidden !important;
	max-width: 100vw !important;
	width: 100% !important;
}

.tshop-cart-page {
	position: relative;
	width: 100%;
	max-width: 100vw;
	min-height: 100vh;
	padding: 8rem 2rem 4rem;
	background: #000000;
	overflow-x: hidden !important;
	overflow-y: visible;
	isolation: isolate;
	box-sizing: border-box !important;
}

.tshop-cart-page * {
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* Background */
.tshop-cart-page__background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.tshop-cart-page__grid-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 50px 50px;
	opacity: 0;
	animation: gridFadeIn 1.5s ease-out forwards;
}

@keyframes gridFadeIn {
	to {
		opacity: 1;
	}
}

.tshop-cart-page__gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.3;
	animation: cartOrbFloat 20s ease-in-out infinite;
}

.tshop-cart-page__gradient-orb--1 {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255, 215, 0, 0.4), transparent 70%);
	top: 10%;
	right: -5%;
	animation-delay: 0s;
}

.tshop-cart-page__gradient-orb--2 {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 70%);
	bottom: 10%;
	left: -5%;
	animation-delay: 5s;
}

@keyframes cartOrbFloat {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	25% {
		transform: translate(30px, -30px) scale(1.1);
	}
	50% {
		transform: translate(-20px, 20px) scale(0.9);
	}
	75% {
		transform: translate(20px, 30px) scale(1.05);
	}
}

/* Container */
.tshop-cart-page__container {
	position: relative;
	z-index: 1;
	max-width: 1400px !important;
	margin: 0 auto !important;
	width: 100% !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

/* Header */
.tshop-cart-page__header {
	text-align: center;
	margin-bottom: 4rem;
	opacity: 0;
	transform: translateY(30px);
}

.tshop-cart-page__header[data-header-visible="true"] {
	opacity: 1;
	transform: translateY(0);
}

.tshop-cart-page__title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 1rem 0;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	letter-spacing: -0.02em;
	background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.tshop-cart-page__subtitle {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 400;
}

/* Content */
.tshop-cart-page__content {
	opacity: 0;
	transform: translateY(40px);
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

.tshop-cart-page__content[data-content-visible="true"] {
	opacity: 1;
	transform: translateY(0);
}

.tshop-cart-page__main-content {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
	display: flex !important;
	flex-direction: column !important;
	gap: 2rem !important;
}

/* Timeline - تمام عرض (بدون تغییر) */
.tshop-cart-page .tshop-checkout-timeline {
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
	margin-bottom: 2rem !important;
}

/* Timeline - تمام عرض (بدون تغییر) */
.tshop-cart-page__main-content > .tshop-checkout-timeline {
	width: 100% !important;
	max-width: 100% !important;
	margin-bottom: 2rem !important;
	box-sizing: border-box !important;
}

/* Wrapper برای Cart Form و Collaterals - کنار هم */
.tshop-cart-page__cart-wrapper {
	display: grid !important;
	grid-template-columns: 1fr 420px !important;
	gap: 2rem !important;
	align-items: start !important;
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

/* WooCommerce Cart Form - عرض محدود */
.tshop-cart-page__cart-wrapper .woocommerce-cart-form {
	width: 100% !important;
	max-width: 100% !important;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 2.5rem;
	margin: 0 !important;
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.05) inset;
	transition: all 0.3s ease;
	box-sizing: border-box !important;
	overflow: hidden !important;
	display: block !important;
	position: relative !important;
	grid-column: 1 / 1 !important;
	overflow-x: hidden !important;
}

.tshop-cart-page .woocommerce-cart-form:hover {
	border-color: rgba(255, 255, 255, 0.18);
	box-shadow: 
		0 12px 48px rgba(0, 0, 0, 0.25),
		0 0 0 1px rgba(255, 255, 255, 0.08) inset;
	transform: translateY(-2px);
}

/* Cart Table */
.tshop-cart-page .shop_table {
	width: 100% !important;
	max-width: 100% !important;
	border-collapse: collapse;
	margin: 0;
	background: transparent;
	table-layout: fixed !important;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

.tshop-cart-page .shop_table thead {
	display: none;
}

.tshop-cart-page .shop_table tbody tr,
.tshop-cart-page .shop_table .woocommerce-cart-form__cart-item,
.tshop-cart-page .shop_table .cart_item {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	align-items: center !important;
	gap: 1.5rem !important;
	width: 100% !important;
	max-width: 100% !important;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 1rem 1.25rem !important;
	margin-bottom: 1rem !important;
	backdrop-filter: blur(10px) saturate(150%);
	-webkit-backdrop-filter: blur(10px) saturate(150%);
	transition: all 0.3s ease;
	position: relative;
	box-sizing: border-box !important;
	overflow: hidden !important;
	min-height: auto !important;
	height: auto !important;
}

.tshop-cart-page .shop_table tbody tr:hover {
	border-color: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tshop-cart-page .shop_table tbody td {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: auto !important;
	max-width: none !important;
	padding: 0 !important;
	border: none;
	text-align: right;
	box-sizing: border-box !important;
	overflow: visible !important;
	word-wrap: break-word !important;
	flex-shrink: 0 !important;
}

.tshop-cart-page .shop_table tbody td::before {
	display: none !important;
}

.tshop-cart-page .shop_table .product-remove {
	position: relative !important;
	top: auto !important;
	left: auto !important;
	padding: 0 !important;
	order: 1 !important;
	flex-shrink: 0 !important;
}

.tshop-cart-page .shop_table .product-remove a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(244, 67, 54, 0.2);
	border: 1px solid rgba(244, 67, 54, 0.4);
	border-radius: 8px;
	color: #f44336;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.2s ease;
}

.tshop-cart-page .shop_table .product-remove a:hover {
	background: rgba(244, 67, 54, 0.3);
	border-color: rgba(244, 67, 54, 0.6);
	transform: scale(1.1);
}

.tshop-cart-page .shop_table .product-remove::before {
	display: none;
}

.tshop-cart-page .shop_table .product-thumbnail {
	text-align: center;
	margin: 0 !important;
	order: 2 !important;
	flex-shrink: 0 !important;
	width: 100px !important;
	height: 100px !important;
}

.tshop-cart-page .shop_table .product-thumbnail img {
	width: 100px !important;
	height: 100px !important;
	min-width: 100px !important;
	min-height: 100px !important;
	max-width: 100px !important;
	max-height: 100px !important;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.tshop-cart-page .shop_table .product-thumbnail::before {
	display: none;
}

.tshop-cart-page .shop_table .product-name {
	font-size: 1rem !important;
	font-weight: 600;
	color: #ffffff;
	margin: 0 !important;
	order: 3 !important;
	flex: 1 !important;
	min-width: 0 !important;
	padding-right: 1rem !important;
	display: flex !important;
	flex-direction: column !important;
}

/* When product-name contains variation data, make it full width */
.tshop-cart-page .shop_table .product-name:has(dl.variation),
.tshop-cart-page .shop_table .product-name:has(.woocommerce-cart-item-data) {
	flex-basis: 100% !important;
	order: 10 !important;
}

.tshop-cart-page .shop_table .product-name a {
	color: #ffffff;
	text-decoration: none;
	transition: color 0.2s ease;
	display: block !important;
	line-height: 1.4 !important;
	order: 1 !important;
}

.tshop-cart-page .shop_table .product-name a:hover {
	color: #ffd700;
}

.tshop-cart-page .shop_table .product-name::before {
	display: none !important;
}

/* ============================================
   Coupon Section - بخش کد تخفیف
   ============================================ */
.tshop-cart-page .shop_table .actions {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1.5rem !important;
	padding: 1.5rem 1.25rem !important;
	background: transparent !important;
	border: none !important;
}

.tshop-cart-page .shop_table .actions .coupon {
	display: flex !important;
	align-items: center !important;
	gap: 0.75rem !important;
	flex: 1 !important;
	max-width: 500px !important;
}

.tshop-cart-page .shop_table .actions .coupon label {
	display: none !important;
}

.tshop-cart-page .shop_table .actions .coupon input[type="text"],
.tshop-cart-page .shop_table .actions .coupon #coupon_code {
	flex: 1 !important;
	min-width: 0 !important;
	padding: 0.875rem 1rem !important;
	background: rgba(255, 255, 255, 0.05) !important;
	border: 1px solid rgba(255, 255, 255, 0.15) !important;
	border-radius: 10px !important;
	color: #ffffff !important;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	font-size: 0.9375rem !important;
	transition: all 0.2s ease !important;
}

.tshop-cart-page .shop_table .actions .coupon input[type="text"]:focus,
.tshop-cart-page .shop_table .actions .coupon #coupon_code:focus {
	outline: none !important;
	border-color: rgba(255, 215, 0, 0.4) !important;
	background: rgba(255, 255, 255, 0.08) !important;
}

.tshop-cart-page .shop_table .actions .coupon input[type="text"]::placeholder,
.tshop-cart-page .shop_table .actions .coupon #coupon_code::placeholder {
	color: rgba(255, 255, 255, 0.4) !important;
}

.tshop-cart-page .shop_table .actions .coupon button,
.tshop-cart-page .shop_table .actions .coupon .button {
	flex-shrink: 0 !important;
	padding: 0.875rem 1.5rem !important;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.08)) !important;
	border: 1.5px solid rgba(255, 215, 0, 0.35) !important;
	border-radius: 10px !important;
	color: #ffd700 !important;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	font-size: 0.9375rem !important;
	font-weight: 600 !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	white-space: nowrap !important;
	min-width: auto !important;
}

.tshop-cart-page .shop_table .actions .coupon button:hover,
.tshop-cart-page .shop_table .actions .coupon .button:hover {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.25), rgba(255, 215, 0, 0.15)) !important;
	border-color: rgba(255, 215, 0, 0.5) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25) !important;
}

/* دکمه Update Cart */
.tshop-cart-page .shop_table .actions button[name="update_cart"],
.tshop-cart-page .shop_table .actions .button[name="update_cart"] {
	padding: 0.875rem 1.5rem !important;
	background: rgba(255, 255, 255, 0.08) !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 10px !important;
	color: #ffffff !important;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	font-size: 0.9375rem !important;
	font-weight: 500 !important;
	cursor: pointer !important;
	transition: all 0.2s ease !important;
	white-space: nowrap !important;
}

.tshop-cart-page .shop_table .actions button[name="update_cart"]:hover,
.tshop-cart-page .shop_table .actions .button[name="update_cart"]:hover {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ============================================
   نمایش اطلاعات سفارشی (Custom Order Data) - Box زیر محتوا
   ============================================ */

/* اطلاعات سفارشی - Box کامل زیر همه چیز */
.tshop-cart-page .shop_table .product-name dl.variation,
.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	flex-wrap: wrap !important;
	gap: 2rem !important;
	margin: 1rem 0 0 0 !important;
	padding: 1.25rem !important;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.06) 100%) !important;
	border: 1.5px solid rgba(255, 215, 0, 0.35) !important;
	border-radius: 10px !important;
	backdrop-filter: blur(15px) !important;
	-webkit-backdrop-filter: blur(15px) !important;
	width: 100% !important;
	box-sizing: border-box !important;
	order: 20 !important;
	align-self: stretch !important;
}

/* گروه تصویر سفارشی */
.tshop-cart-page .shop_table .product-name dl.variation dt:nth-of-type(1),
.tshop-cart-page .shop_table .product-name dl.variation dd:nth-of-type(1) {
	display: inline-block !important;
	vertical-align: middle !important;
}

/* گروه متن سفارشی */
.tshop-cart-page .shop_table .product-name dl.variation dt:nth-of-type(2),
.tshop-cart-page .shop_table .product-name dl.variation dd:nth-of-type(2) {
	display: inline-block !important;
	vertical-align: middle !important;
}

/* عنوان‌ها */
.tshop-cart-page .shop_table .product-name dl.variation dt,
.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dt {
	display: inline-block !important;
	font-size: 0.8125rem !important;
	font-weight: 600 !important;
	color: rgba(255, 215, 0, 1) !important;
	margin: 0 0.5rem 0 0 !important;
	padding: 0 !important;
	vertical-align: middle !important;
}

/* محتوا */
.tshop-cart-page .shop_table .product-name dl.variation dd,
.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd {
	display: inline-block !important;
	margin: 0 1.5rem 0 0 !important;
	padding: 0 !important;
	vertical-align: middle !important;
}

.tshop-cart-page .shop_table .product-name dl.variation dd:last-child,
.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd:last-child {
	margin-right: 0 !important;
}

/* تصویر سفارشی */
.tshop-cart-page .shop_table .product-name dl.variation dd img,
.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd img {
	display: inline-block !important;
	max-width: 60px !important;
	width: 60px !important;
	height: 60px !important;
	object-fit: cover !important;
	border-radius: 8px !important;
	border: 2px solid rgba(255, 215, 0, 0.4) !important;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
	margin: 0 !important;
	vertical-align: middle !important;
}

/* متن سفارشی */
.tshop-cart-page .shop_table .product-name dl.variation dd p,
.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd p {
	display: inline-block !important;
	color: rgba(255, 255, 255, 0.95) !important;
	font-size: 0.875rem !important;
	line-height: 1.5 !important;
	margin: 0 !important;
	padding: 0.5rem 0.875rem !important;
	background: rgba(0, 0, 0, 0.3) !important;
	border-radius: 8px !important;
	border: 1px solid rgba(255, 255, 255, 0.12) !important;
	word-break: break-word !important;
	white-space: normal !important;
	vertical-align: middle !important;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	/* Cart Item Row در موبایل */
	.tshop-cart-page .shop_table tbody tr,
	.tshop-cart-page .shop_table .woocommerce-cart-form__cart-item {
		flex-direction: row !important;
		flex-wrap: wrap !important;
		align-items: center !important;
		gap: 0.75rem !important;
		padding: 0.875rem !important;
		position: relative !important;
		min-height: auto !important;
	}
	
	/* Remove Button - موبایل */
	.tshop-cart-page .shop_table .product-remove {
		position: absolute !important;
		top: 0.5rem !important;
		left: 0.5rem !important;
		order: 1 !important;
		z-index: 10 !important;
		margin: 0 !important;
	}
	
	.tshop-cart-page .shop_table .product-remove a {
		width: 28px !important;
		height: 28px !important;
		font-size: 0.875rem !important;
		background: rgba(244, 67, 54, 0.95) !important;
		border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25) !important;
		border-radius: 6px !important;
	}
	
	/* Thumbnail Section - موبایل */
	.tshop-cart-page .shop_table .product-thumbnail {
		width: 80px !important;
		height: 80px !important;
		order: 2 !important;
		margin: 0 !important;
		padding: 0 !important;
		flex-shrink: 0 !important;
	}
	
	.tshop-cart-page .shop_table .product-thumbnail img {
		width: 80px !important;
		height: 80px !important;
		min-width: 80px !important;
		min-height: 80px !important;
		max-width: 80px !important;
		max-height: 80px !important;
		border-radius: 10px !important;
		object-fit: cover !important;
		display: block !important;
	}
	
	/* Product Info Container */
	.tshop-cart-page .shop_table .product-name {
		flex: 1 !important;
		min-width: 0 !important;
		order: 3 !important;
		padding: 0 !important;
		margin: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: center !important;
	}
	
	.tshop-cart-page .shop_table .product-name a {
		font-size: 0.9375rem !important;
		line-height: 1.4 !important;
		font-weight: 600 !important;
		display: block !important;
		margin: 0 0 0.375rem 0 !important;
		color: #ffffff !important;
		order: 1 !important;
	}
	
	/* Price - compact inline */
	.tshop-cart-page .shop_table .product-price {
		order: 4 !important;
		flex: 1 !important;
		min-width: auto !important;
		width: auto !important;
		text-align: right !important;
		display: inline-flex !important;
		align-items: center !important;
		gap: 0.375rem !important;
		padding: 0 !important;
		margin: 0 !important;
		background: transparent !important;
		border: none !important;
		font-size: 0.8125rem !important;
		order: 2 !important;
	}
	
	.tshop-cart-page .shop_table .product-price::before {
		content: '' !important;
		display: none !important;
	}
	
	.tshop-cart-page .shop_table .product-price .amount {
		font-size: 0.8125rem !important;
		font-weight: 500 !important;
		color: rgba(255, 255, 255, 0.8) !important;
	}
	
	/* Quantity & Subtotal Row */
	.tshop-cart-page .shop_table .product-quantity {
		order: 5 !important;
		flex-shrink: 0 !important;
		width: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		background: transparent !important;
		border: none !important;
	}
	
	.tshop-cart-page .shop_table .product-quantity::before {
		display: none !important;
	}
	
	.tshop-cart-page .shop_table .product-quantity .quantity {
		margin: 0 !important;
		display: flex !important;
		align-items: center !important;
		gap: 0.25rem !important;
	}
	
	.tshop-cart-page .shop_table .product-quantity input[type="number"] {
		width: 50px !important;
		padding: 0.375rem !important;
		font-size: 0.8125rem !important;
		text-align: center !important;
		background: rgba(255, 255, 255, 0.08) !important;
		border: 1px solid rgba(255, 255, 255, 0.15) !important;
		border-radius: 6px !important;
	}
	
	.tshop-cart-page .shop_table .product-subtotal {
		order: 6 !important;
		flex-shrink: 0 !important;
		width: auto !important;
		margin: 0 !important;
		padding: 0 !important;
		background: transparent !important;
		border: none !important;
		text-align: left !important;
	}
	
	.tshop-cart-page .shop_table .product-subtotal::before {
		display: none !important;
	}
	
	.tshop-cart-page .shop_table .product-subtotal .amount {
		font-size: 1rem !important;
		font-weight: 700 !important;
		color: #ffd700 !important;
	}
	
	/* اطلاعات سفارشی - موبایل - FULL WIDTH SECTION */
	.tshop-cart-page .shop_table .product-name:has(dl.variation),
	.tshop-cart-page .shop_table .product-name:has(.woocommerce-cart-item-data) {
		flex-basis: 100% !important;
		order: 10 !important;
		margin-top: 0.75rem !important;
		padding-top: 0.75rem !important;
		border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data {
		display: flex !important;
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 1rem !important;
		margin: 0.75rem 0 0 0 !important;
		padding: 1rem !important;
		border-radius: 10px !important;
		order: 20 !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dt,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dt {
		display: block !important;
		font-size: 0.8125rem !important;
		margin: 0 0 0.5rem 0 !important;
		text-align: center !important;
		padding: 10px 0 !important;
		color: rgba(255, 215, 0, 1) !important;
		font-weight: 600 !important;
		text-transform: uppercase !important;
		letter-spacing: 0.5px !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dd,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd {
		display: block !important;
		margin: 0 0 1rem 0 !important;
		text-align: center !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dd:last-child,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd:last-child {
		margin-bottom: 0 !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dd img,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd img {
		display: block !important;
		max-width: 100% !important;
		width: 100% !important;
		height: auto !important;
		min-height: 150px !important;
		max-height: 250px !important;
		border-radius: 12px !important;
		margin: 0 auto 1rem auto !important;
		object-fit: cover !important;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dd p,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd p {
		display: block !important;
		font-size: 0.9375rem !important;
		padding: 0.875rem 1.125rem !important;
		margin: 0 auto !important;
		max-width: 90% !important;
		text-align: center !important;
		line-height: 1.6 !important;
	}
}

@media (max-width: 480px) {
	.tshop-cart-page .shop_table tbody tr,
	.tshop-cart-page .shop_table .woocommerce-cart-form__cart-item {
		gap: 0.625rem !important;
		padding: 0.75rem !important;
	}
	
	/* Remove Button - موبایل کوچک */
	.tshop-cart-page .shop_table .product-remove {
		top: 0.4375rem !important;
		left: 0.4375rem !important;
	}
	
	.tshop-cart-page .shop_table .product-remove a {
		width: 26px !important;
		height: 26px !important;
		font-size: 0.8125rem !important;
	}
	
	/* Thumbnail - موبایل کوچک */
	.tshop-cart-page .shop_table .product-thumbnail {
		width: 70px !important;
		height: 70px !important;
	}
	
	.tshop-cart-page .shop_table .product-thumbnail img {
		width: 70px !important;
		height: 70px !important;
		min-width: 70px !important;
		min-height: 70px !important;
		max-width: 70px !important;
		max-height: 70px !important;
		border-radius: 8px !important;
	}
	
	/* Product Name - موبایل کوچک */
	.tshop-cart-page .shop_table .product-name a {
		font-size: 0.875rem !important;
		line-height: 1.35 !important;
		margin: 0 0 0.3125rem 0 !important;
	}
	
	/* Price */
	.tshop-cart-page .shop_table .product-price .amount {
		font-size: 0.75rem !important;
	}
	
	/* Quantity */
	.tshop-cart-page .shop_table .product-quantity input[type="number"] {
		width: 45px !important;
		padding: 0.3125rem !important;
		font-size: 0.75rem !important;
	}
	
	/* Subtotal */
	.tshop-cart-page .shop_table .product-subtotal .amount {
		font-size: 0.9375rem !important;
	}
	
	/* اطلاعات سفارشی - موبایل کوچک */
	.tshop-cart-page .shop_table .product-name:has(dl.variation),
	.tshop-cart-page .shop_table .product-name:has(.woocommerce-cart-item-data) {
		margin-top: 0.625rem !important;
		padding-top: 0.625rem !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data {
		padding: 0.875rem !important;
		gap: 0.875rem !important;
		margin: 0.625rem 0 0 0 !important;
		border-radius: 8px !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dt,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dt {
		font-size: 0.75rem !important;
		margin: 0 0 0.4375rem 0 !important;
		padding: 10px 0 !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dd,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd {
		margin: 0 0 0.875rem 0 !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dd img,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd img {
		min-height: 130px !important;
		max-height: 220px !important;
		margin: 0 auto 0.875rem auto !important;
		border-radius: 10px !important;
	}
	
	.tshop-cart-page .shop_table .product-name dl.variation dd p,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data dd p {
		font-size: 0.875rem !important;
		padding: 0.75rem 1rem !important;
	}
}

.tshop-cart-page .shop_table .product-price {
	font-size: 0.95rem !important;
	color: rgba(255, 255, 255, 0.7);
	margin: 0 !important;
	order: 4 !important;
	flex-shrink: 0 !important;
	width: 100px !important;
	text-align: center !important;
}

.tshop-cart-page .shop_table .product-price::before {
	display: none !important;
}

.tshop-cart-page .shop_table .product-quantity {
	margin: 0 !important;
	order: 5 !important;
	flex-shrink: 0 !important;
	width: auto !important;
}

.tshop-cart-page .shop_table .product-quantity .quantity {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.tshop-cart-page .shop_table .product-quantity input[type="number"] {
	width: 70px !important;
	padding: 0.5rem !important;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	color: #ffffff;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.9rem !important;
	text-align: center;
	transition: all 0.2s ease;
}

.tshop-cart-page .shop_table .product-quantity input[type="number"]:focus {
	outline: none;
	border-color: rgba(255, 215, 0, 0.5);
	background: rgba(255, 255, 255, 0.08);
}

.tshop-cart-page .shop_table .product-quantity::before {
	display: none !important;
}

.tshop-cart-page .shop_table .product-subtotal {
	font-size: 1.1rem !important;
	font-weight: 700;
	color: #ffd700;
	margin: 0 !important;
	order: 6 !important;
	flex-shrink: 0 !important;
	width: 120px !important;
	text-align: left !important;
}

.tshop-cart-page .shop_table .product-subtotal::before {
	display: none !important;
}

/* Cart Actions */
.tshop-cart-page .actions {
	display: flex !important;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	width: 100% !important;
	max-width: 100% !important;
	box-sizing: border-box !important;
}

.tshop-cart-page .actions .button {
	padding: 0.875rem 1.75rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.12) 100%);
	border: 1.5px solid rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	color: #ffffff;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px) saturate(150%);
	-webkit-backdrop-filter: blur(10px) saturate(150%);
	box-shadow: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
}

.tshop-cart-page .actions .button:hover {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.18) 100%);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.tshop-cart-page .actions .coupon {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	min-width: 300px;
}

.tshop-cart-page .actions .coupon input[type="text"] {
	flex: 1;
	padding: 0.875rem 1.25rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	color: #ffffff;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 0.95rem;
	transition: all 0.2s ease;
}

.tshop-cart-page .actions .coupon input[type="text"]:focus {
	outline: none;
	border-color: rgba(255, 215, 0, 0.5);
	background: rgba(255, 255, 255, 0.08);
}

.tshop-cart-page .actions .coupon input[type="text"]::placeholder {
	color: rgba(255, 255, 255, 0.4);
}

/* Cart Collaterals - کنار Cart Form */
.tshop-cart-page .cart-collaterals {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	box-sizing: border-box !important;
	position: sticky !important;
	top: 120px !important;
	align-self: start !important;
	grid-column: 2 / -1 !important;
}

.tshop-cart-page .cart_totals {
	width: 100% !important;
	max-width: 100% !important;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 2.5rem;
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.05) inset;
	position: sticky;
	top: 120px;
	height: fit-content;
	box-sizing: border-box !important;
	overflow: hidden !important;
}

.tshop-cart-page .cart_totals h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1.5rem 0;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tshop-cart-page .cart_totals table {
	width: 100% !important;
	border-collapse: collapse !important;
	margin: 0 !important;
	table-layout: fixed !important;
	display: table !important;
}

.tshop-cart-page .cart_totals table tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: table-row !important;
	width: 100% !important;
}

.tshop-cart-page .cart_totals table tr:last-child {
	border-bottom: none !important;
	display: table-row !important;
}

.tshop-cart-page .cart_totals table th,
.tshop-cart-page .cart_totals table td {
	padding: 1rem 0 !important;
	color: rgba(255, 255, 255, 0.9) !important;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	font-size: 0.95rem !important;
	text-align: right !important;
	display: table-cell !important;
	vertical-align: middle !important;
	box-sizing: border-box !important;
}

.tshop-cart-page .cart_totals table th {
	font-weight: 500 !important;
	width: 50% !important;
	padding-right: 1rem !important;
}

.tshop-cart-page .cart_totals table td {
	font-weight: 600 !important;
	text-align: left !important;
	width: 50% !important;
	padding-left: 1rem !important;
}

.tshop-cart-page .cart_totals .order-total {
	display: table-row !important;
	border-top: 2px solid rgba(255, 215, 0, 0.3) !important;
	margin-top: 1rem !important;
}

.tshop-cart-page .cart_totals .order-total th,
.tshop-cart-page .cart_totals .order-total td {
	font-size: 1.2rem !important;
	font-weight: 700 !important;
	color: #ffd700 !important;
	padding-top: 1.5rem !important;
	padding-bottom: 1.5rem !important;
	display: table-cell !important;
	vertical-align: middle !important;
	text-align: right !important;
}

.tshop-cart-page .cart_totals .order-total th {
	text-align: right !important;
	padding-right: 1rem !important;
}

.tshop-cart-page .cart_totals .order-total td {
	text-align: left !important;
	padding-left: 1rem !important;
}

/* Proceed to Checkout Button */
.tshop-cart-page .cart_totals .wc-proceed-to-checkout,
.tshop-cart-page .wc-proceed-to-checkout,
.wc-proceed-to-checkout {
	margin-top: 2rem !important;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
	width: 100% !important;
	box-sizing: border-box !important;
	height: auto !important;
	min-height: auto !important;
	max-height: none !important;
	overflow: visible !important;
}

.tshop-cart-page .cart_totals .checkout-button,
.tshop-cart-page .cart_totals .wc-proceed-to-checkout .checkout-button,
.tshop-cart-page .cart_totals .wc-proceed-to-checkout a.button,
.tshop-cart-page .cart_totals .wc-proceed-to-checkout a,
.tshop-cart-page .wc-proceed-to-checkout .checkout-button,
.tshop-cart-page .wc-proceed-to-checkout a.button,
.tshop-cart-page .wc-proceed-to-checkout a,
.wc-proceed-to-checkout .checkout-button,
.wc-proceed-to-checkout a.button,
.wc-proceed-to-checkout a {
	width: 100% !important;
	padding: 1.25rem 2rem !important;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%) !important;
	border: 1.5px solid rgba(255, 215, 0, 0.4) !important;
	border-radius: 12px !important;
	color: #ffffff !important;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
	font-size: 1rem !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	cursor: pointer !important;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
	backdrop-filter: blur(10px) saturate(150%) !important;
	-webkit-backdrop-filter: blur(10px) saturate(150%) !important;
	box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	box-sizing: border-box !important;
	margin: 0 !important;
	height: auto !important;
	min-height: auto !important;
	max-height: none !important;
	overflow: visible !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.tshop-cart-page .cart_totals .checkout-button:hover,
.tshop-cart-page .cart_totals .wc-proceed-to-checkout .checkout-button:hover,
.tshop-cart-page .cart_totals .wc-proceed-to-checkout a.button:hover,
.tshop-cart-page .cart_totals .wc-proceed-to-checkout a:hover,
.tshop-cart-page .wc-proceed-to-checkout .checkout-button:hover,
.tshop-cart-page .wc-proceed-to-checkout a.button:hover,
.tshop-cart-page .wc-proceed-to-checkout a:hover,
.wc-proceed-to-checkout .checkout-button:hover,
.wc-proceed-to-checkout a.button:hover,
.wc-proceed-to-checkout a:hover {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.2) 100%) !important;
	border-color: rgba(255, 215, 0, 0.6) !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3) !important;
}

/* Cross Sells */
.tshop-cart-page .cross-sells {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	padding: 2.5rem;
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
	box-shadow: 
		0 8px 32px rgba(0, 0, 0, 0.2),
		0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.tshop-cart-page .cross-sells h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 1.5rem 0;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Empty Cart */
.tshop-cart-page .cart-empty {
	text-align: center;
	padding: 4rem 2rem;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	backdrop-filter: blur(20px) saturate(150%);
	-webkit-backdrop-filter: blur(20px) saturate(150%);
}

.tshop-cart-page .cart-empty .woocommerce-info {
	margin-bottom: 2rem;
}

.tshop-cart-page .cart-empty .return-to-shop {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 165, 0, 0.15) 100%);
	border: 1.5px solid rgba(255, 215, 0, 0.4);
	border-radius: 12px;
	color: #ffffff;
	font-family: 'Peyda', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s ease;
}

.tshop-cart-page .cart-empty .return-to-shop:hover {
	background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(255, 165, 0, 0.2) 100%);
	border-color: rgba(255, 215, 0, 0.6);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
	.tshop-cart-page__cart-wrapper {
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
	}
	
	.tshop-cart-page__cart-wrapper .woocommerce-cart-form {
		grid-column: 1 / -1 !important;
	}
	
	.tshop-cart-page__cart-wrapper .cart-collaterals {
		grid-column: 1 / -1 !important;
		position: relative !important;
		top: 0 !important;
	}
	
	.tshop-cart-page .cart_totals {
		position: relative !important;
		top: 0 !important;
	}
}

/* Tablet Breakpoint */
@media (max-width: 900px) {
	/* Adjust cart item layout for tablets */
	.tshop-cart-page .shop_table tbody tr,
	.tshop-cart-page .shop_table .woocommerce-cart-form__cart-item {
		gap: 1.25rem !important;
	}
	
	.tshop-cart-page .shop_table .product-thumbnail {
		width: 90px !important;
		height: 90px !important;
	}
	
	.tshop-cart-page .shop_table .product-thumbnail img {
		width: 90px !important;
		height: 90px !important;
		min-width: 90px !important;
		min-height: 90px !important;
		max-width: 90px !important;
		max-height: 90px !important;
	}
	
	.tshop-cart-page .shop_table .product-name {
		font-size: 0.95rem !important;
	}
	
	.tshop-cart-page .shop_table .product-price {
		width: 90px !important;
		font-size: 0.875rem !important;
	}
	
	.tshop-cart-page .shop_table .product-quantity input[type="number"] {
		width: 65px !important;
		padding: 0.4375rem !important;
		font-size: 0.875rem !important;
	}
	
	.tshop-cart-page .shop_table .product-subtotal {
		width: 110px !important;
		font-size: 1rem !important;
	}
	
	/* Variation data for tablets */
	.tshop-cart-page .shop_table .product-name dl.variation,
	.tshop-cart-page .shop_table .product-name .woocommerce-cart-item-data {
		gap: 1.5rem !important;
		padding: 1.125rem !important;
	}
}

@media (max-width: 768px) {
	.tshop-cart-page {
		padding: 6rem 1.5rem 3rem;
	}
	
	.tshop-cart-page__header {
		margin-bottom: 3rem;
	}
	
	.tshop-cart-page .woocommerce-cart-form {
		padding: 1.5rem;
	}
	
	.tshop-cart-page .shop_table tbody tr {
		padding: 1.25rem;
	}
	
	.tshop-cart-page .shop_table .product-thumbnail img {
		width: 100px;
		height: 100px;
	}
	
	/* Coupon Section Mobile */
	.tshop-cart-page .shop_table .actions {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 1rem !important;
		padding: 1.25rem !important;
	}
	
	.tshop-cart-page .shop_table .actions .coupon {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		gap: 0.625rem !important;
		width: 100% !important;
		max-width: 100% !important;
	}
	
	.tshop-cart-page .shop_table .actions .coupon input[type="text"],
	.tshop-cart-page .shop_table .actions .coupon #coupon_code {
		flex: 1 !important;
		min-width: 0 !important;
		padding: 0.8125rem 0.9375rem !important;
		font-size: 0.875rem !important;
	}
	
	.tshop-cart-page .shop_table .actions .coupon button,
	.tshop-cart-page .shop_table .actions .coupon .button {
		flex-shrink: 0 !important;
		width: auto !important;
		padding: 0.8125rem 1rem !important;
		font-size: 0.875rem !important;
		text-align: center !important;
		white-space: nowrap !important;
	}
	
	.tshop-cart-page .shop_table .actions button[name="update_cart"],
	.tshop-cart-page .shop_table .actions .button[name="update_cart"] {
		width: 100% !important;
		padding: 0.8125rem 1.25rem !important;
		font-size: 0.875rem !important;
	}
	
	.tshop-cart-page .cart_totals {
		padding: 1.5rem;
	}
}

@media (max-width: 480px) {
	.tshop-cart-page {
		padding: 5rem 1rem 2rem;
	}
	
	.tshop-cart-page__title {
		font-size: 1.75rem;
	}
	
	.tshop-cart-page__subtitle {
		font-size: 0.95rem;
	}
	
	.tshop-cart-page .woocommerce-cart-form {
		padding: 1rem;
	}
	
	/* Coupon Section Mobile Small */
	.tshop-cart-page .shop_table .actions {
		padding: 1rem !important;
		gap: 0.875rem !important;
	}
	
	.tshop-cart-page .shop_table .actions .coupon {
		flex-direction: row !important;
		gap: 0.5rem !important;
	}
	
	.tshop-cart-page .shop_table .actions .coupon input[type="text"],
	.tshop-cart-page .shop_table .actions .coupon #coupon_code {
		flex: 1 !important;
		padding: 0.75rem 0.8125rem !important;
		font-size: 0.8125rem !important;
	}
	
	.tshop-cart-page .shop_table .actions .coupon button,
	.tshop-cart-page .shop_table .actions .coupon .button {
		flex-shrink: 0 !important;
		width: auto !important;
		padding: 0.75rem 0.875rem !important;
		font-size: 0.75rem !important;
	}
	
	.tshop-cart-page .shop_table .actions button[name="update_cart"],
	.tshop-cart-page .shop_table .actions .button[name="update_cart"] {
		padding: 0.75rem 1rem !important;
		font-size: 0.8125rem !important;
	}
	
	.tshop-cart-page .woocommerce-cart-form {
		padding: 1rem;
		border-radius: 16px;
	}
	
	.tshop-cart-page .shop_table tbody tr,
	.tshop-cart-page .shop_table .woocommerce-cart-form__cart-item,
	.tshop-cart-page .shop_table .cart_item {
		padding: 0.75rem 0.875rem !important;
		gap: 0.75rem !important;
		border-radius: 12px;
		flex-wrap: wrap !important;
	}
	
	.tshop-cart-page .shop_table .product-thumbnail {
		width: 70px !important;
		height: 70px !important;
	}
	
	.tshop-cart-page .shop_table .product-thumbnail img {
		width: 70px !important;
		height: 70px !important;
		min-width: 70px !important;
		min-height: 70px !important;
		max-width: 70px !important;
		max-height: 70px !important;
	}
	
	.tshop-cart-page .shop_table .product-name {
		font-size: 0.9rem !important;
		padding-right: 0.5rem !important;
	}
	
	.tshop-cart-page .shop_table .product-price {
		font-size: 0.85rem !important;
		width: 80px !important;
	}
	
	.tshop-cart-page .shop_table .product-quantity input[type="number"] {
		width: 55px !important;
		padding: 0.35rem !important;
		font-size: 0.8rem !important;
	}
	
	.tshop-cart-page .shop_table .product-subtotal {
		font-size: 0.95rem !important;
		width: 90px !important;
	}
	
	.tshop-cart-page .cart_totals {
		padding: 1.25rem;
		border-radius: 16px;
	}
}
