.product-slider-wrapper-38575740 {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.swiper-container-38575740 {
	width: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
}

.ps-slider-img-38575740 {
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Products Grid */
.ps-products-container-38575740 {
	width: 100%;
	padding: 0 15px;
}

.ps-section-title-38575740 {
	text-align: center;
	margin-bottom: 30px;
	font-family: inherit;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
}

.ps-grid-38575740 {
	display: grid;
	gap: 20px;
}

.ps-grid-item-38575740 {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: box-shadow 0.3s ease;
}

.ps-grid-item-38575740:hover {
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.ps-item-img-38575740 {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ps-item-img-38575740 img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.ps-item-content-38575740 {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	text-align: center;
}

.ps-title-38575740 {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 600;
}

.ps-price-38575740 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}

.ps-buy-btn-38575740 {
	margin-top: auto;
	display: inline-block;
	padding: 10px 20px;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: bold;
	border-radius: 4px;
	transition: opacity 0.3s;
}

.ps-buy-btn-38575740:hover {
	opacity: 0.85;
	color: #fff;
}

@media (max-width: 768px) {
	.ps-grid-38575740 {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

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