/**
 * Style Sheet for Featured Products Grid Widget
 * Suffix: de2d1a7e
 */

.featured-products-container-de2d1a7e {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
	width: 100%;
	display: block;
	box-sizing: border-box;
}

/* Header Grid Styling */
.widget-header-de2d1a7e {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 25px;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 15px;
}

.widget-header-title-de2d1a7e {
	font-size: 24px;
	font-weight: 700;
	margin: 0 0 5px 0;
	color: #212529;
}

.widget-header-subtitle-de2d1a7e {
	font-size: 14px;
	color: #6c757d;
	margin: 0;
}

.widget-header-link-de2d1a7e {
	font-size: 14px;
	font-weight: 600;
	color: #343a40;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: color 0.2s ease;
}

.widget-header-link-de2d1a7e:hover {
	color: #f57c00;
}

.widget-header-link-de2d1a7e .arrow-de2d1a7e {
	font-size: 16px;
}

/* Responsive Grid System */
.featured-products-grid-de2d1a7e {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
	box-sizing: border-box;
}

/* Card Styling */
.product-card-de2d1a7e {
	background: #ffffff;
	border: 1px solid #f1f1f1;
	border-radius: 8px;
	padding: 15px;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
	box-sizing: border-box;
}

.product-card-de2d1a7e:hover {
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border-color: #ffe0b2;
}

/* Badges styling */
.image-wrapper-de2d1a7e {
	position: relative;
	width: 100%;
	height: 180px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.product-badge-de2d1a7e {
	position: absolute;
	top: 0;
	left: 0;
	background: #e65100;
	color: #ffffff;
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 3px 8px;
	border-radius: 3px;
	z-index: 10;
}

.product-img-de2d1a7e {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.product-card-de2d1a7e:hover .product-img-de2d1a7e {
	transform: scale(1.03);
}

/* Info & Meta */
.product-info-de2d1a7e {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.product-title-de2d1a7e {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.4;
	margin: 0 0 10px 0;
	min-height: 38px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-title-de2d1a7e a {
	color: #212529;
	text-decoration: none;
	transition: color 0.2s ease;
}

.product-title-de2d1a7e a:hover {
	color: #f57c00;
}

/* WooCommerce Price layout overrides for grid look */
.price-amount-de2d1a7e {
	font-size: 15px;
	font-weight: 700;
	color: #f57c00;
	margin-bottom: 8px;
}

.price-amount-de2d1a7e del {
	font-size: 12px;
	color: #9e9e9e;
	margin-right: 6px;
	font-weight: 500;
}

.price-amount-de2d1a7e ins {
	text-decoration: none;
	font-weight: 700;
}

/* Rating stars */
.product-rating-wrapper-de2d1a7e {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 15px;
}

.rating-stars-de2d1a7e {
	color: #ffc107;
	font-size: 14px;
	letter-spacing: -1px;
}

.rating-count-de2d1a7e {
	font-size: 11px;
	color: #9e9e9e;
}

/* Add to Cart outline Button style */
.add-to-cart-btn-de2d1a7e {
	display: block;
	width: 100%;
	text-align: center;
	padding: 8px 10px;
	font-size: 12px;
	font-weight: 600;
	color: #f57c00;
	background: transparent;
	border: 1px solid #ffe0b2;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.2s ease;
	margin-top: auto;
}

.add-to-cart-btn-de2d1a7e:hover {
	background: #f57c00;
	color: #ffffff;
	border-color: #f57c00;
}

/* Media Queries */
@media (max-width: 1024px) {
	.featured-products-grid-de2d1a7e {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.featured-products-grid-de2d1a7e {
		grid-template-columns: repeat(2, 1fr) !important;
	}
	.widget-header-de2d1a7e {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}
}

@media (max-width: 480px) {
	.featured-products-grid-de2d1a7e {
		grid-template-columns: 1fr !important;
	}
}
