.casr-wrap {
	padding-top: 2rem;
	padding-bottom: 3rem;
}

.casr-hero {
	margin-bottom: 2rem;
	padding: 1rem 0 1.5rem;
	border-bottom: 1px solid #e8e8e8;
}

.casr-kicker {
	margin: 0 0 .4rem;
	font-size: .9rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #666;
}

.casr-title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.5rem);
	line-height: 1.05;
	font-weight: 800;
	color: #111;
	word-break: break-word;
}

.casr-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}

.casr-card {
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,.06);
	transition: transform .2s ease, box-shadow .2s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.casr-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 38px rgba(0,0,0,.10);
}

.casr-image-link img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	background: #f6f6f6;
}

.casr-placeholder {
	aspect-ratio: 1 / 1;
	background: linear-gradient(135deg, #f2f2f2, #e6e6e6);
}

.casr-content {
	padding: 1rem 1rem 1.15rem;
	display: flex;
	flex-direction: column;
	gap: .75rem;
	flex: 1;
}

.casr-product-title {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.25;
	font-weight: 700;
}

.casr-product-title a {
	color: #111;
	text-decoration: none;
}

.casr-product-title a:hover {
	color: #0a7dff;
}

.casr-price {
	font-size: 1.05rem;
	font-weight: 700;
	color: #111;
}

.casr-actions {
	margin-top: auto;
	padding-top: .35rem;
}

.casr-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: .85rem 1rem;
	border-radius: 12px;
	background: #1f9d2a;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	transition: background .2s ease, transform .2s ease;
}

.casr-button:hover {
	background: #178223;
	color: #fff;
	transform: translateY(-1px);
}

.casr-empty {
	padding: 2rem 0;
	color: #555;
	font-size: 1.05rem;
}

@media (max-width: 768px) {
	.casr-grid {
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
		gap: 1rem;
	}

	.casr-content {
		padding: .9rem;
	}
}