/* Main Container */
.caffia-categories-carousel {
    padding-top: 100px;
    padding-bottom: 100px;
    overflow: hidden;
}

/* Tab Navigation */
.category-tabs {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.category-tab {
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    padding: 10px 0;
    cursor: pointer;
}
@media screen and (max-width:700px){
    .category-tab{
        font-size: 18px !important;
    }
}
.category-tab.active {
    border-bottom: 4px solid #d50032;
    color: #000;
}

.category-tab:hover {
    color: #d50032;
}

/* Tab Content */
.category-tab-content {
    display: none;
}

.category-tab-content.active {
    display: block;
}

/* Swiper Container */
.category-content .swiper-container {
    width: 100%;
    overflow: visible;
    padding: 10px 0;
}

.category-content .swiper-wrapper {
    display: flex;
}

.category-content  .swiper-slide {
    height: auto;
}

/* Category Card */
.category-item {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.category-item a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Category Image */
.category-image {
    overflow: hidden;
    position: relative;
    padding-bottom: 100%; /* Square aspect ratio */
}

.category-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.05);
}

/* Category Title and Arrow */
.category-title-wrapper {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
}

.category-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    flex-grow: 1;
}

.category-arrow {
    color: #d50032;
    font-size: 16px;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #f8f8f8;
}

.category-item:hover .category-arrow {
    transform: translateX(5px);
    background-color: #d50032;
    color: #fff;
}
.category-content{
    clip-path: inset(-100vw -100vw -100vw -17px); 
}
/* Responsive Styles */
@media (max-width: 991px) {
    .caffia-categories-carousel {
        padding-top: 0px;
        padding-bottom: 60px;
    }
    
    .category-tab {
        font-size: 16px;
    }
    
    .category-title {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .caffia-categories-carousel {
        padding-top: 0px;
        padding-bottom: 40px;
    }
    
    .category-tabs {
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .category-tab {
        font-size: 14px;
        padding: 8px 0;
    }
}

@media (max-width: 576px) {
    .category-tabs {
        gap: 10px;
    }
    
    .category-tab {
        font-size: 13px;
    }
}
