.product-card-8227 {
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.3s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card-8227:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image-8227 {
	position: relative;
	width: 100%;
	display: block;
}

.product-image-wrapper-8227 {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1; /* Default aspect ratio, can be overridden by Elementor controls */
	overflow: hidden;
}

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

.product-card-8227:hover .product-image-wrapper-8227 img {
	transform: scale(1.05);
}

.product-favorite-8227 {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
	z-index: 10;
}

.product-favorite-8227:hover {
	background: #fff;
}

.product-content-8227 {
	padding: 15px;
	text-align: center;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.product-title-8227 {
	margin: 0 0 10px;
	font-size: 1.2em;
	font-weight: 600;
	word-wrap: break-word;
}

.product-price-8227 {
	font-size: 1.1em;
	color: #61CE70; /* Elementor Accent Default */
	font-weight: bold;
	margin-top: auto;
	margin-bottom: 15px;
}

.product-button-wrapper-8227 {
	margin-top: 10px;
}

.product-button-8227 {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	background-color: #61CE70;
	color: #fff;
	width: auto;
}