.cart-wrapper {
	background-color: #eaeded;
	padding: 20px;
	min-height: calc(100vh - 100px);
	/* Adjust based on header/footer heights */
}

.cart-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 3fr 1fr;
	gap: 20px;
}

.cart-items-section {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.cart-items-section h1 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

.cart-items-section hr {
	border-color: #eee;
	margin-bottom: 20px;
}

.cart-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
}

.cart-item:last-child {	border-bottom: none; }

.cart-item img {
	width: 150px;
	height: 150px;
	object-fit: contain;
	border-radius: 4px;
}

.cart-item-info {	flex-grow: 1; }

.cart-item-info h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
}

.cart-item-info .brand {
	font-size: 14px;
	color: #007185;
	text-decoration: none;
}

.cart-item-info .stock-status {
	font-size: 14px;
	font-weight: 700;
	color: #26b341;
	margin-top: 10px;
}

.cart-item-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

.cart-item-actions .quantity-wrapper {
	display: flex;
	gap: 5px;
}

.cart-item-actions select.item-qty {
	padding: 5px 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background-color: #f0f2f2;
}

.cart-item-actions .custom-qty-input {
	width: 60px;
	padding: 5px 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.cart-item-actions .delete-btn {
	background: none;
	border: none;
	color: #007185;
	cursor: pointer;
	font-size: 14px;
	transition: color 0.2s ease;
}

.cart-item-actions .delete-btn:hover {	color: #c7511f; }

.cart-item-price {
	font-size: 20px;
	font-weight: 700;
	color: #B12704;
	white-space: nowrap;
}

.cart-subtotal-text {
	text-align: right;
	font-size: 21px;
	font-weight: 700;
}

.cart-subtotal-text span {	color: #B12704; }

.cart-summary-section {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 120px;
	/* Adjust to be below the fixed header */
	height: fit-content;
}

.cart-summary-section h2 {
	font-size: 21px;
	font-weight: 700;
	margin-bottom: 15px;
}

.cart-summary-section p {
	font-size: 16px;
	margin-bottom: 5px;
}

.cart-summary-section .subtotal {
	font-size: 20px;
	font-weight: 700;
	margin-top: 15px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cart-summary-section .subtotal span:first-child {	font-weight: 400; }

.cart-summary-section .proceed-btn {
	width: 100%;
	padding: 12px;
	font-size: 16px;
	font-weight: 700;
	color: #0F1111;
	background-color: #FFD814;
	border: 1px solid #FCD200;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	position: relative;
	/* For animation */
	overflow: hidden;
	/* For animation */
}

.cart-summary-section .proceed-btn:hover { background-color: #F7CA00; }

.cart-summary-section .proceed-btn:disabled {
	background-color: #ddd;
	border-color: #ccc;
	color: #999;
	cursor: not-allowed;
}

.cart-summary-section .gift-checkbox {
	margin-top: 15px;
	font-size: 14px;
}

.coupon-container {
	margin-top: 20px;
	margin-bottom: 20px;
	display: flex;
	gap: 5px;
}

.coupon-container input {
	flex-grow: 1;
	padding: 8px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
}

.coupon-container button {
	padding: 8px 12px;
	background-color: #f0f2f2;
	border: 1px solid #c7c7c7;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
}

.coupon-container button:hover {	background-color: #e0e0e0; }

/* Keyframes for button animation */
@keyframes pulse {
	0% {	box-shadow: 0 0 0 0 rgba(255, 216, 20, 0.4);	}

	70% { box-shadow: 0 0 0 10px rgba(255, 216, 20, 0);	}

	100% { box-shadow: 0 0 0 0 rgba(255, 216, 20, 0); }
}

.proceed-btn.pulsing {	animation: pulse 1.5s infinite; }