.promo-widget-container-277 {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 0; /* Removed background and shadow, adjusted padding */
}

.promo-image-wrapper-277 {
	flex: 1;
	overflow: hidden;
	border-radius: 8px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.promo-image-wrapper-277 img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease-in-out;
	object-fit: cover;
}

.promo-image-wrapper-277:hover img {
	transform: scale(1.1);
}

.promo-content-wrapper-277 {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.promo-name-277,
.regular-price-277,
.promo-price-277,
.product-name-277,
.description-277 {
	padding: 5px; /* Ensure background color is visible if set */
	display: inline-block; /* Make background fit content length */
	align-self: flex-start; /* Align left so inline-block works properly */
}

.promo-name-277 {
	font-weight: bold;
	text-transform: uppercase;
}

.pricing-wrapper-277 {
	display: flex;
	flex-direction: column;
	align-items: flex-start; /* Ensure children can be inline-block */
}

.regular-price-277 {
	text-decoration: line-through;
	opacity: 0.7;
}

.promo-price-277 {
	font-weight: bold;
	color: #e74c3c;
}

.product-name-277 {
	/* margin handled by controls */
}

.description-277 {
	/* margin handled by controls */
}

@media (max-width: 767px) {
	.promo-widget-container-277 {
		flex-direction: column;
	}
}