.epw-product-feed {
	display: block;
}

.epw-product-feed__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.epw-feed-card {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid #d8d8d8;
	background: linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.09);
	transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.epw-feed-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 38px rgba(0, 0, 0, 0.15);
}

.epw-feed-card__media {
	display: block;
	aspect-ratio: 1 / 1;
	background: #efefef;
}

.epw-feed-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.epw-feed-card__body {
	padding: 14px 14px 16px;
}

.epw-feed-card__title {
	margin: 0;
	font-size: 15px;
	line-height: 1.35;
	font-weight: 700;
}

.epw-feed-card__title a {
	color: #131313;
	text-decoration: none;
}

.epw-feed-card__price {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 700;
	color: #101010;
}

.epw-feed-card__price ins {
	text-decoration: none;
}

.epw-feed-card__price del {
	opacity: 0.55;
	margin-right: 6px;
}

.epw-feed-card__swipe {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 14px;
	background: #0f0f0f;
	color: #ffffff;
	transform: translateY(100%);
	transition: transform 0.25s ease;
}

.epw-feed-card:hover .epw-feed-card__swipe,
.epw-feed-card:focus-within .epw-feed-card__swipe {
	transform: translateY(0);
}

.epw-feed-card__options {
	display: grid;
	gap: 10px;
}

.epw-feed-card__option-row {
	display: grid;
	gap: 6px;
}

.epw-feed-card__option-label {
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	opacity: 0.75;
}

.epw-feed-card__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.epw-feed-card__chip {
	display: inline-flex;
	padding: 6px 10px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
}

.epw-feed-card__cta {
	display: inline-flex;
	margin-top: 12px;
	padding: 10px 16px;
	border-radius: 999px;
	background: #ffffff;
	color: #111111;
	text-decoration: none;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.epw-product-feed__loading,
.epw-feed-empty {
	padding: 14px 16px;
	border: 1px solid #d8d8d8;
	border-radius: 10px;
	font-size: 14px;
	color: #3a3a3a;
	background: #fafafa;
}

@media (max-width: 1024px) {
	.epw-product-feed__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.epw-product-feed__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.epw-feed-card__swipe {
		position: static;
		transform: none;
	}
}
