.wr-filters {
	display: flex;
	gap: 8px;
	margin: 24px 0 0;
}

.wr-filter-btn {
	padding: 8px 16px;
	border: 1px solid #d8cfc0;
	border-radius: 999px;
	background: #fff;
	color: #555;
	font-size: 13px;
	cursor: pointer;
}

.wr-filter-btn:hover {
	background: #f4f1ec;
}

.wr-filter-btn.wr-filter-active {
	background: #a98467;
	border-color: #a98467;
	color: #fff;
}

.wr-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
	margin: 24px 0;
}

.wr-card {
	border: 1px solid #c9c1b3 !important;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 6px 14px rgba(0,0,0,0.14) !important;
	display: flex;
	flex-direction: column;
	transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.wr-card:hover {
	box-shadow: 0 10px 20px rgba(0,0,0,0.18) !important;
}

.wr-image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	background-color: #f4f1ec;
}

.wr-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #999;
	font-size: 13px;
}

.wr-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex-grow: 1;
}

.wr-title {
	margin: 0;
	font-size: 17px;
	line-height: 1.3;
}

.wr-desc {
	margin: 0;
	font-size: 13px;
	color: #666;
}

.wr-price {
	margin: 4px 0 0;
	font-weight: 600;
	font-size: 15px;
}

.wr-link {
	font-size: 13px;
	text-decoration: underline;
}

.wr-action {
	margin-top: auto;
	padding-top: 12px;
}

.wr-buy-btn {
	width: 100%;
	padding: 10px 14px;
	border: none;
	border-radius: 6px;
	background: #a98467;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}

.wr-buy-btn:hover {
	background: #8f6c52;
}

.wr-buy-btn:disabled {
	opacity: 0.6;
	cursor: default;
}

.wr-badge {
	display: inline-block;
	padding: 8px 14px;
	border-radius: 6px;
	background: #eef3ea;
	color: #4a6b45;
	font-size: 14px;
	font-weight: 600;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}

.wr-card.wr-purchased {
	opacity: 0.55;
}
