.card {
	background: white;
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden;
	transition: all .3s ease;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 32px rgba(74, 31, 27, .15);
	border-color: var(--accent);
}

.card-badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--accent);
	color: white;
	padding: .4rem .8rem;
	border-radius: 20px;
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	z-index: 10;
}

.card-img {
	width: 100%;
	height: 200px;
	background: linear-gradient(135deg, #4a1f1b 0%, #3a1815 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--accent);
	font-size: 3rem;
	position: relative;
}

.card-body {
	padding: 1.5rem;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.card-body h3 {
	color: var(--primary);
	font-size: 1.3rem;
	font-family: "Cormorant Garamond", serif;
	margin-bottom: .5rem;
	font-weight: 700;
}

.card-meta {
	display: flex;
	gap: 1rem;
	margin-bottom: .8rem;
	font-size: .8rem;
	color: var(--muted);
	flex-wrap: wrap;
}

.card-meta span {
	display: flex;
	align-items: center;
	gap: .3rem;
}

.card-desc {
	color: var(--muted);
	font-size: .9rem;
	margin-bottom: 1rem;
	flex-grow: 1;
	line-height: 1.5;
}

.card-highlights {
	background: var(--light);
	padding: .8rem;
	border-radius: 4px;
	margin-bottom: 1rem;
	font-size: .85rem;
	color: var(--text);
}

.card-highlights li {
	margin: .3rem 0;
	margin-left: 1.5rem;
}

.card-price {
	background: #faf3e8;
	padding: 1rem;
	border-radius: 6px;
	margin-bottom: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid var(--border);
}

.price-lbl {
	font-size: .75rem;
	color: var(--muted);
	font-weight: 600;
	text-transform: uppercase;
}

.price-amt {
	font-size: 1.7rem;
	color: var(--primary);
	font-weight: 700;
	font-family: "Cormorant Garamond", serif;
}

.price-per {
	font-size: .75rem;
	color: var(--muted);
}

.card-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: .8rem;
}

.btn-det {
	background: transparent;
	color: var(--primary);
	border: 1.5px solid var(--primary);
	padding: .7rem;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	font-size: .85rem;
	transition: all .2s;
}

.btn-det:hover {
	background: var(--primary);
	color: white;
}

.btn-bk {
	background: var(--primary);
	color: white;
	border: none;
	padding: .7rem;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
	font-size: .85rem;
	transition: all .2s;
}

.btn-bk:hover {
	background: #3a1815;
	box-shadow: 0 4px 12px rgba(74, 31, 27, .3);
}

.modal.show {
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 768px) {
	.card-actions {
		grid-template-columns: 1fr;
	}
}