
        .swiper-container.product-slider {
            width: 100%;
            padding: 20px 0;
        }
        .swiper-slide {
            text-align: center;
            font-size: 16px;
            background: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid #ddd;
            padding: 20px;
            box-sizing: border-box;
            width: 250px;
        }
        .swiper-slide .product-image {
            max-width: 100%;
            height: auto;
        }
        .product-title {
            font-weight: bold;
            margin: 10px 0;
        }
        .product-price {
            font-size: 16px;
            font-weight: bold;
            color: #000;
            margin-bottom: 10px;
        }
        .add-to-cart {
            background-color: #000;
            color: #fff;
            padding: 8px 16px;
            text-decoration: none;
            font-size: 14px;
            margin-top: 10px;
        }
        .add-to-cart:hover {
            background-color: #333;
        }
        .swiper-button-next,
        .swiper-button-prev {
            color: #000;
        }
    