body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.shop-by-category {
    padding: 20px;
    text-align: center;
}

.shop-by-category h2 {
    margin-bottom: 20px;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
}

.swiper-slide p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.swiper-button-next, .swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet-active {
    background: #000;
}