body {
	font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
	background: #fff;
	margin: 0;
}
.cart-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 12px;
	box-sizing: border-box;
}
.cart-tabs {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0 18px 0;
	position: relative;
	font-size: 17px;
}
.cart-tab {
	display: flex;
	align-items: center;
	color: #888;
	font-weight: normal;
	position: relative;
	padding: 0 38px;
	z-index: 1;
}
.cart-tab.active {
	color: #222;
	font-weight: bold;
}
.cart-tab .fa {
	margin-left: 8px;
	font-size: 21px;
}
.cart-tabs::after {
	content: "";
	position: absolute;
	left: 9%;
	right: 9%;
	bottom: -10px;
	height: 2px;
	background: linear-gradient(90deg, #ededed 50%, #f9f9f9 100%);
}
.cart-boxes {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: row;
	gap: 45px;
	margin-top: 45px;
	margin-bottom: 50px;
}
.cart-product {
	order: 1;
	background: #fff;
	border-radius: 13px;
	border: 1.2px solid #eeeeee;
	box-shadow: 0 2px 10px #0001;
	padding: 28px 24px;
	min-width: 370px;
	max-width: 530px;
	align-items: flex-start;
	display: flex;
	gap: 27px;
}
.cart-product-img {
	width: 109px;
	height: 109px;
	border-radius: 10px;
	object-fit: cover;
	background: #f9f9f9;
	border: 1px solid #eee;
	margin-left: 17px;
	display: flex;
}
.cart-product-content {
	flex: 1;
	min-width: 0;
}
.cart-product-title {
	font-size: 15.7px;
	font-weight: bold;
	margin-bottom: 10px;
	color: #222;
	line-height: 1.7;
	word-break: break-word;
}
.cart-product-detail {
	font-size: 14.2px;
	color: #666;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.color-circle {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #ffe100;
	margin-right: 7px;
	border: 1.5px solid #e0e0e0;
}
.cart-product-detail .fa-award {
	font-size: 17px;
	color: #888;
	margin-left: 7px;
	margin-right: 6px;
}
.cart-product-price {
	margin: 8px 0 6px;
	color: #222;
	font-weight: bold;
}
.cart-product-actions {
	display: flex;
	align-items: center;
	margin-top: 22px;
	gap: 6px;
	font-size: 15px;
}
.cart-product-actions .fa-trash {
	color: #555;
	background: #eee;
	padding: 7px;
	border-radius: 7px;
	cursor: pointer;
	transition: background .2s;
}
.cart-product-actions .fa-trash:hover {
	background: #fcc;
	color: #b00;
}
.cart-product-actions .product-qty {
	background: #f7f7f7;
	border: 1px solid #ddd;
	border-radius: 7px;
	padding: 6px 13px;
	min-width: 32px;
	font-size: 15px;
	text-align: center;
	margin: 0 8px;
	outline: none;
}
.cart-product-actions .fa-plus, .cart-product-actions .fa-minus {
	color: #555;
	background: #eee;
	padding: 7px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 13.5px;
	transition: background .2s;
}
.cart-product-actions .fa-plus:hover, .cart-product-actions .fa-minus:hover {
	background: #ffe10077;
}
.cart-summary {
	order: 2;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 2px 10px #0001;
	padding: 32px 30px;
	min-width: 320px;
	max-width: 375px;
	margin-left: 25px;
	display: flex;
	flex-direction: column;
	align-self: center;
}
.cart-summary p {
	margin: 18px 0;
	font-size: 16.5px;
	display: flex;
	justify-content: space-between;
}
.cart-summary .shipping-desc {
	font-size: 13.5px;
	color: #838383;
	margin-bottom: 4px;
}
.cart-summary .shipping-desc span {
	font-size: 12px;
	color: #a1a1a1;
}
.cart-summary .total {
	font-size: 19px;
	color: #222;
	font-weight: bold;
	margin-bottom: 22px;
}
.cart-summary .btn {
	width: 100%;
	background: #ffe000;
	border: none;
	color: #222;
	font-size: 16px;
	font-weight: bold;
	border-radius: 8px;
	padding: 15px 0;
	cursor: pointer;
	margin-top: 16px;
	transition: background .2s;
}
.cart-summary .btn:hover {
	background: #ffe000cc;
}
.cart-product-actions .fa-trash, .cart-product-actions .fa-plus, .cart-product-actions .fa-minus {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	font-size: 16px;
}
@media (max-width: 1100px) {
	.cart-container {
		max-width: 99vw;
	}
	.cart-boxes {
		gap: 25px;
	}
	.cart-summary, .cart-product {
		min-width: 95vw;
		max-width: 99vw;
	}
}
@media (max-width: 900px) {
	.cart-boxes {
		flex-direction: column-reverse;
		align-items: center;
		gap: 30px;
		padding-bottom: 20px;
	}
	.cart-summary, .cart-product {
		margin-left: 0;
		width: 100%;
		max-width: 98vw;
		box-sizing: border-box;
	}
	.cart-product-actions {
		gap: 10px;
		flex-wrap: wrap;
	}
	.cart-product-actions .product-qty {
		padding: 8px 12px;
		min-width: 44px;
		font-size: 16px;
	}
}
@media (max-width: 700px) {
	.cart-container {
		padding: 0 10px;
	}
	.cart-tabs {
		margin: 18px 0 8px 0;
		font-size: 15px;
	}
	.cart-tab {
		padding: 0 18px;
		font-size: 15px;
	}
	.cart-product {
		padding: 16px 12px;
		gap: 14px;
		align-items: center;
		min-width: auto;
		max-width: 99vw;
	}
	.cart-product-img {
		width: 84px;
		height: 84px;
		margin-left: 12px;
	}
	.cart-product-title {
		font-size: 15px;
	}
	.cart-product-detail {
		font-size: 13px;
	}
	.cart-product-price {
		font-size: 15px;
	}
	.cart-product-actions .fa-trash {
		width: 42px;
		height: 42px;
		font-size: 17px;
		padding: 8px;
	}
	.cart-product-actions .fa-plus, .cart-product-actions .fa-minus {
		width: 38px;
		height: 38px;
		font-size: 16px;
		padding: 8px;
	}
	.cart-summary {
		width: 100%;
		max-width: 99vw;
		margin: 0;
		padding: 18px;
		border-radius: 12px;
	}
	.cart-summary .btn {
		padding: 14px 0;
		font-size: 16px;
		border-radius: 10px;
	}
	.cart-boxes {
		padding-bottom: 16px;
	}
}
@media (max-width: 480px) {
	.cart-product {
		padding: 12px;
		gap: 10px;
	}
	.cart-product-img {
		width: 74px;
		height: 74px;
	}
	.cart-product-title {
		font-size: 14.2px;
	}
	.cart-summary {
		position: fixed;
		left: 8px;
		right: 8px;
		bottom: 12px;
		z-index: 120;
		padding: 12px;
		border-radius: 12px;
		box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
		min-width: auto;
		max-width: calc(100% - 16px);
	}
	.cart-boxes {
		padding-bottom: 120px;
	}
	.cart-summary .btn {
		padding: 14px 0;
		font-size: 16px;
		border-radius: 10px;
	}
	.cart-product-actions .fa-trash {
		width: 46px;
		height: 46px;
	}
	.cart-product-actions .product-qty {
		min-width: 48px;
		padding: 8px 14px;
		font-size: 16px;
	}
}
@media (max-height: 420px) {
	.cart-summary {
		position: static;
		box-shadow: none;
	}
	.cart-boxes {
		padding-bottom: 40px;
	}
}
.cart-badge {
	position: absolute;
	top: -7px;
	left: 15px;
	min-width: 19px;
	height: 19px;
	background: #ffe100;
	color: #222;
	font-size: 15px;
	font-weight: bold;
	border-radius: 7px;
	padding: 0 6px;
	display: inline-block;
	text-align: center;
	line-height: 19px;
	pointer-events: none;
	box-shadow: 0 1px 4px #0002;
}
.header-action-link#cart {
	position: relative;
}