.cc-carousel-wrapper-d6a50609 {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.cc-carousel-container {
    overflow: hidden;
    width: 100%;
}

.cc-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    width: 100%;
}

/* Category card - Premium Minimal styling to perfectly match home design */
.cc-slide-card {
    flex: 0 0 calc((100% - 48px) / 3);
    box-sizing: border-box;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.cc-slide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.cc-card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cc-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 110%; /* Elegant vertical posture/proportion */
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.cc-image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cc-slide-card:hover .cc-image-wrapper img {
    transform: scale(1.06);
}

/* Typography, buttons, and content layout matching site exactly */
.cc-card-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.cc-card-title {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #1A202C; /* Matches strong text color */
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.cc-card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #4A5568; /* Matches medium text color */
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.cc-card-btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #2B6CB0; /* Theme Accent */
    color: #2B6CB0;
    padding-bottom: 3px;
    align-self: flex-start;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cc-slide-card:hover .cc-card-btn {
    color: #1A202C;
    border-bottom-color: #1A202C;
}

/* Elegant, Minimal Arrow Controls integrated beautifully */
.cc-controls-d6a50609 {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
}

.cc-arrow {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cc-arrow svg {
    width: 20px;
    height: 20px;
    fill: #4A5568;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.cc-arrow:hover {
    background: #1A202C;
    border-color: #1A202C;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cc-arrow:hover svg {
    fill: #ffffff;
}

.cc-arrow.cc-prev:hover svg {
    transform: translateX(-2px);
}

.cc-arrow.cc-next:hover svg {
    transform: translateX(2px);
}

.cc-arrow:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background: #ffffff !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: none !important;
}

.cc-arrow:disabled svg {
    fill: #a0aec0 !important;
    transform: none !important;
}

/* Responsive Customizing */
@media (max-width: 1024px) {
    .cc-slide-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 767px) {
    .cc-carousel-wrapper-d6a50609 {
        overflow: visible;
    }
    .cc-carousel-container {
        overflow: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .cc-carousel-container::-webkit-scrollbar {
        display: none;
    }
    .cc-carousel-track {
        gap: 20px !important;
        transform: none !important;
        padding-right: 32px;
    }
    .cc-slide-card {
        flex: 0 0 82%; /* Perfectly balances and reveals the next card preview */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }
    .cc-controls-d6a50609 {
        display: none;
    }
}
