.bs-12298-container {
	padding: 20px;
	border-radius: 8px;
}

.bs-12298-header {
	text-align: center;
	margin-bottom: 30px;
}

.bs-12298-main-title {
	margin-top: 0;
	margin-bottom: 10px;
}

.bs-12298-description {
	margin: 0;
}

.bs-12298-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.bs-12298-item,
.bs-12298-placeholder-item {
	background: #fff;
	padding: 15px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	overflow: hidden;
}

.bs-12298-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bs-12298-link {
	text-decoration: none;
	color: inherit;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.bs-12298-image {
	position: relative;
	margin-bottom: 15px;
	overflow: hidden;
}

.bs-12298-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: opacity 0.4s ease;
}

.bs-12298-image-primary {
	opacity: 1;
}

.bs-12298-image-secondary {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.bs-12298-item:hover .bs-12298-image-secondary {
	opacity: 1;
}

.bs-12298-item:hover .bs-12298-image-primary {
	opacity: 0;
}

.bs-12298-placeholder-image {
	background: #eee;
	width: 100%;
	margin-bottom: 15px;
}

.bs-12298-title {
	font-size: 18px;
	margin: 0 0 10px 0;
}

.bs-12298-price {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 15px;
	flex-grow: 1;
}

.bs-12298-price del {
	opacity: 0.5;
	font-weight: normal;
	font-size: 0.9em;
	margin-right: 5px;
}

.bs-12298-price ins {
	text-decoration: none;
}

.bs-12298-add-to-cart {
	margin-top: auto;
}

.bs-12298-add-to-cart .button,
.bs-12298-add-to-cart-placeholder {
	display: block;
	width: 100%;
	padding: 10px 15px;
	text-align: center;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease, color 0.3s ease;
	border: none;
	cursor: pointer;
}

.bs-12298-add-to-cart .button.loading {
	opacity: 0.7;
}

.bs-12298-add-to-cart .added_to_cart {
	display: block;
	margin-top: 10px;
	font-size: 0.9em;
}