﻿/* Navbar with white background and light shadow (same as About page) */
#navbar {
	background: #ffffff !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
	border-bottom: none !important;
}

#navbar .nav-initial {
	background: #ffffff !important;
	backdrop-filter: none !important;
}

#navbar .nav-scrolled {
	background: #ffffff !important;
	backdrop-filter: none !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

#navbar .logo {
	color: #1c1917 !important;
}

#navbar .nav-links a {
	color: #1c1917 !important;
}

#navbar .icon-btn {
	color: #1c1917 !important;
}

#navbar .nav-links a.active {
	color: #1c1917 !important;
}

.cart-page {
	background-color: #fbfaf9;
	min-height: 100vh;
	padding-top: 120px;
	padding-bottom: 80px;
}

.cart-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.cart-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 2.5rem;
	font-weight: 600;
	margin-bottom: 48px;
	color: #1c1917;
}

.cart-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
}

@media (min-width: 1024px) {
	.cart-grid {
		grid-template-columns: 1.5fr 1fr;
		gap: 64px;
	}
}

.cart-items-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.cart-item {
	display: flex;
	gap: 24px;
	padding: 32px;
	background: white;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
}

.cart-item:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.item-img {
	width: 120px;
	height: 120px;
	background: #f5f5f4;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;
}

.item-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.item-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.item-info h3 {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 600;
	margin: 0 0 4px 0;
	color: #1c1917;
}

.item-info p {
	color: #78716c;
	font-size: 14px;
	margin: 0;
}

.item-total {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1c1917;
}

.item-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.quantity-control {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #f5f5f4;
	padding: 8px 16px;
	border-radius: 999px;
}

.qty-btn {
	border: none;
	background: none;
	cursor: pointer;
	color: #78716c;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px;
	transition: color 0.2s ease;
}

.qty-btn:hover {
	color: #da830a;
	transition: all 0.3s ease;
}

.qty-val {
	font-weight: 500;
	min-width: 24px;
	text-align: center;
	color: #1c1917;
}

.remove-btn {
	border: none;
	background: none;
	cursor: pointer;
	color: #78716c;
	padding: 8px;
	transition: color 0.2s ease;
}

.remove-btn:hover {
	color: #ef4444;
}

.cart-summary {
	position: relative;
}

.summary-card {
	background: white;
	padding: 32px;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
	position: sticky;
	top: 120px;
}

.summary-title {
	font-family: "Cormorant Garamond", serif;
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 24px;
	color: #1c1917;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
	font-size: 15px;
	color: #57534e;
}

.summary-row.tax-row {
	margin-bottom: 20px;
}

.total-row {
	border-top: 1px solid #e7e5e4;
	padding-top: 20px;
	margin-top: 20px;
	font-weight: 600;
	font-size: 18px;
	color: #1c1917;
}

.btn-checkout {
	width: 100%;
	background: transparent;
	border: 2px solid #da830a;
	color: #da830a;
	padding: 18px 24px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	margin-top: 32px;
	transition: all 0.3s ease;
	font-family: "Montserrat", sans-serif;
	box-shadow: 0 2px 8px rgba(218, 131, 10, 0.15);
}

.btn-checkout:hover {
	background: #da830a;
	color: white;
	border-color: #da830a;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(218, 131, 10, 0.3);
}

.btn-checkout:active {
	transform: translateY(0);
}

.free-shipping-note {
	text-align: center;
	font-size: 12px;
	color: #78716c;
	margin-top: 20px;
}
