.utopia-carousel .carousel-item {
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    margin: 10px;
}

.utopia-carousel .carousel-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.utopia-carousel .carousel-item h3 {
    font-size: 20px !important;
    color: #e91672;
    margin: 10px 0;
}

.utopia-carousel .carousel-item p {
    font-size: 0.9em;
    color: #888;
}

.slick-prev, .slick-next {
    background-color: #e91672;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    z-index: 1000;
    color: white;
    font-size: 24px; /* Increase font size for better visibility */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1; /* Ensure the arrows are always visible */
    cursor: pointer;
}

.slick-prev:before, .slick-next:before {
    content: ''; /* Remove default text */
}

.slick-prev:after {
    content: '‹'; /* Left arrow symbol */
}

.slick-next:after {
    content: '›'; /* Right arrow symbol */
}

.slick-prev {
    left: -45px;
}

.slick-next {
    right: -45px;
}

/* Ensure the images are of a standard size and fit within the boxes */
.utopia-carousel .carousel-item img {
    width: 100%;
    height: 200px; /* Adjust the height as needed */
    object-fit: cover;
}

.slick-dots {
    display: none !important; /* Remove dots */
}
p {
    display: none !important;
}

/* Override default hover and focus styles */
.slick-next:focus, .slick-next:hover, .slick-prev:focus, .slick-prev:hover {
    color: white;
    outline: 0;
    background-color: #e91672;
    border: none;
}

/* Mobile-specific styles */
@media (max-width: 600px) {
    button.slick-next.slick-arrow {
    margin-right: 9px !important;
}
    
    button.slick-prev.slick-arrow {
    margin-left: 9px !important;
}
}
