.pm-55-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	display: flex;
}

.pm-55-track {
	display: flex;
	width: max-content;
	animation: pm-scroll 30s linear infinite;
}

.pm-55-pause-on-hover:hover .pm-55-track {
	animation-play-state: paused;
}

@keyframes pm-scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); } /* Assuming duplicates double the width */
}

.pm-55-card {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0,0,0,0.05);
	transition: transform 0.3s ease;
}

.pm-55-card:hover {
	transform: translateY(-5px);
}

.pm-55-image-wrapper {
	position: relative;
	width: 100%;
	padding-top: 100%; /* Square aspect ratio */
	overflow: hidden;
}

.pm-55-image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.pm-55-card:hover .pm-55-image-wrapper img {
	transform: scale(1.1);
}

.pm-55-sale-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #E02B20;
	color: #fff;
	padding: 4px 8px;
	font-size: 0.8rem;
	font-weight: bold;
	border-radius: 4px;
	z-index: 2;
}

.pm-55-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 1;
}

.pm-55-card:hover .pm-55-overlay {
	opacity: 1;
}

.pm-55-overlay-content {
	text-align: center;
	padding: 20px;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.pm-55-card:hover .pm-55-overlay-content {
	transform: translateY(0);
}

.pm-55-category {
	font-size: 0.8rem;
	color: #ccc;
	margin-bottom: 5px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.pm-55-category a {
	color: inherit;
	text-decoration: none;
}

.pm-55-title {
	margin: 0 0 10px;
	font-size: 1.2rem;
	font-weight: 600;
}

.pm-55-title a {
	color: #fff;
	text-decoration: none;
}

.pm-55-price {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 15px;
}

.pm-55-price del {
	opacity: 0.6;
	font-size: 0.9em;
	margin-right: 5px;
}

.pm-55-price ins {
	text-decoration: none;
}

.pm-55-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
}

.pm-55-add-to-cart {
	background: #E02B20;
	color: #fff;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
	display: inline-block;
}

.pm-55-add-to-cart:hover {
	background: #c0241b;
}

.pm-55-quick-view {
	color: #fff;
	text-decoration: underline;
	font-size: 0.9rem;
}

.pm-55-quick-view:hover {
	color: #ddd;
}
