/* Compiled from 000.scss - avoids SCSS compilation on servers without sassc/libsass */
.s_franchise_carousel {
    background-color: #f8f9fa;
    position: relative;
}
.s_franchise_carousel .franchise-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}
.s_franchise_carousel .franchise-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}
.s_franchise_carousel .franchise-card {
    flex: 0 0 calc(25% - 15px);
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}
.s_franchise_carousel .franchise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.s_franchise_carousel .franchise-card .franchise-logo-wrapper {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}
.s_franchise_carousel .franchise-card .franchise-logo-wrapper img.franchise-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.s_franchise_carousel .franchise-card .franchise-name {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-top: 16px;
    margin-bottom: 8px;
    line-height: 1.4;
}
.s_franchise_carousel .franchise-card .franchise-description {
    font-size: 14px;
    line-height: 1.6;
    color: #6c757d;
    max-height: 3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 16px;
}
.s_franchise_carousel .franchise-card .franchise-investment-box {
    padding: 12px 16px;
    background: linear-gradient(135deg, #fff8e6 0%, #fff4d6 100%);
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}
.s_franchise_carousel .franchise-card .franchise-investment-box .text-muted {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}
.s_franchise_carousel .franchise-card .franchise-investment-box .franchise-investment {
    font-size: 20px;
    font-weight: 700;
    color: #f59e0b;
    margin: 0;
}
.s_franchise_carousel .carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #495057;
}
.s_franchise_carousel .carousel-control:hover:not(.disabled) {
    background: #007bff;
    border-color: #007bff;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}
.s_franchise_carousel .carousel-control.prev {
    left: 0;
}
.s_franchise_carousel .carousel-control.next {
    right: 0;
}
.s_franchise_carousel .carousel-control.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}
.s_franchise_carousel .franchise-carousel-loading {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.s_franchise_carousel .franchise-carousel-empty {
    text-align: center;
    padding: 60px 20px;
}
.s_franchise_carousel .franchise-carousel-empty .fa {
    font-size: 48px;
    color: #dee2e6;
    margin-bottom: 16px;
}
.s_franchise_carousel .franchise-carousel-empty h4 {
    color: #6c757d;
    margin-bottom: 8px;
}
.s_franchise_carousel .franchise-carousel-empty p {
    color: #adb5bd;
}
@media (max-width: 1199px) {
    .s_franchise_carousel .franchise-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}
@media (max-width: 767px) {
    .s_franchise_carousel .franchise-card {
        flex: 0 0 calc(50% - 10px);
    }
    .s_franchise_carousel .franchise-carousel-wrapper {
        padding: 0 40px;
    }
    .s_franchise_carousel .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}
@media (max-width: 575px) {
    .s_franchise_carousel .franchise-card {
        flex: 0 0 100%;
    }
    .s_franchise_carousel .franchise-carousel-wrapper {
        padding: 0 35px;
    }
    .s_franchise_carousel .carousel-control {
        width: 36px;
        height: 36px;
    }
    .s_franchise_carousel .carousel-control.prev {
        left: -5px;
    }
    .s_franchise_carousel .carousel-control.next {
        right: -5px;
    }
}
