.cea-categories-swiper {
    position: relative;
    padding: 20px 0 60px;
}

.category-slide {
    height: auto;
}

.category-item {
    background: #fff;
    
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all .3s ease;
    height: 100%;
}



.category-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    height: 100%;
}

.category-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.category-icon .icon-text {
    font-size: 40px;
}

.category-icon svg,
.category-icon i {
    font-size: 430px;
    color: #fff;
}



.category-title {
    font-size: 30px !important;
    font-weight: normal;
    color: #0c1326;
    text-align: center;
    margin: 0 0 20px;
    transition: color .3s ease;
}

.category-item:hover .category-title {
    color: #b99780;
}

.category-image {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 0px;
    overflow: hidden;
    margin-top: auto;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}



/* Swiper Controls */
.cea-cat-next,
.cea-cat-prev {
    background: #b99780;
    color: #fff !important;
    width: 40px;
    height: 40px;
}

.cea-cat-next:after,
.cea-cat-prev:after {
    font-size: 16px !important;
    font-weight: bold;
}

.cea-cat-next:hover,
.cea-cat-prev:hover {
    background: #0c1326;
}

.cea-cat-pagination {
    bottom: 10px !important;
}

.cea-cat-pagination .swiper-pagination-bullet {
    background: #b99780;
    opacity: 0.5;
}

.cea-cat-pagination .swiper-pagination-bullet-active {
    background: #b99780;
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon .icon-text {
        font-size: 30px;
    }
    
    .category-title {
        font-size: 18px;
    }
    
    .category-image {
        height: 150px;
    }
}