.sffd-featured-products-bcbc0b92 {
	margin: 2rem 0;
	font-family: inherit;
}

.sffd-products-grid-bcbc0b92 {
	display: grid;
	grid-template-columns: repeat(var(--sffd-cols, 4), 1fr);
	gap: 2rem;
}

.sffd-product-card-bcbc0b92 {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid #eaeaea;
}

.sffd-product-card-bcbc0b92:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.sffd-product-image-link-bcbc0b92 {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f9f9f9;
}

.sffd-product-image-link-bcbc0b92 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.sffd-product-card-bcbc0b92:hover .sffd-product-image-link-bcbc0b92 img {
	transform: scale(1.05);
}

.sffd-sale-badge-bcbc0b92 {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #d9534f;
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.sffd-product-info-bcbc0b92 {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.sffd-product-category-bcbc0b92 {
	font-size: 0.75rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.5rem;
}

.sffd-product-category-bcbc0b92 a {
	color: #888;
	text-decoration: none;
}

.sffd-product-category-bcbc0b92 a:hover {
	color: #333;
}

.sffd-product-title-bcbc0b92 {
	font-size: 1.125rem;
	margin: 0 0 0.5rem;
	line-height: 1.3;
	font-weight: 600;
}

.sffd-product-title-bcbc0b92 a {
	color: #222;
	text-decoration: none;
}

.sffd-product-title-bcbc0b92 a:hover {
	color: #000;
}

.sffd-product-excerpt-bcbc0b92 {
	font-size: 0.875rem;
	color: #555;
	margin-bottom: 1rem;
	flex-grow: 1;
	line-height: 1.5;
}

.sffd-product-price-bcbc0b92 {
	font-weight: 700;
	font-size: 1.125rem;
	color: #222;
	margin-bottom: 1.5rem;
}

.sffd-product-price-bcbc0b92 del {
	color: #999;
	font-weight: 400;
	margin-right: 0.5rem;
	font-size: 0.9em;
}

.sffd-product-price-bcbc0b92 ins {
	text-decoration: none;
	color: #d9534f;
}

.sffd-product-actions-bcbc0b92 {
	display: flex;
	gap: 0.5rem;
	flex-direction: column;
}

.sffd-btn-view-bcbc0b92,
.sffd-btn-cart-bcbc0b92 {
	display: block;
	text-align: center;
	padding: 0.75rem 1rem;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	transition: background-color 0.2s, color 0.2s;
	border: 1px solid transparent;
}

.sffd-btn-view-bcbc0b92 {
	background: #f5f5f5;
	color: #333;
	border-color: #ddd;
}

.sffd-btn-view-bcbc0b92:hover {
	background: #e9e9e9;
	color: #000;
}

.sffd-btn-cart-bcbc0b92 {
	background: #222;
	color: #fff;
}

.sffd-btn-cart-bcbc0b92:hover {
	background: #000;
	color: #fff;
}

.sffd-empty-state-bcbc0b92 {
	text-align: center;
	padding: 4rem 2rem;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px dashed #ddd;
	color: #666;
}

/* Responsive Layout */
@media (max-width: 1024px) {
	.sffd-products-grid-bcbc0b92 {
		grid-template-columns: repeat(min(var(--sffd-cols, 4), 3), 1fr);
	}
}

@media (max-width: 768px) {
	.sffd-products-grid-bcbc0b92 {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 480px) {
	.sffd-products-grid-bcbc0b92 {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}