.synergybiz-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.synergybiz-carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.synergybiz-carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}

.synergybiz-carousel-slide {
    flex: 0 0 25%;
    padding: 0 10px;
    box-sizing: border-box;
}

.synergybiz-business-card {
    display: block;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 320px;
    overflow: hidden;
}

.synergybiz-business-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.synergybiz-business-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.synergybiz-business-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #fff;
    margin: auto;
    display: block;
    padding: 0;
    box-sizing: border-box;
}
.synergybiz-business-card:hover .synergybiz-business-image img {
    transform: scale(1.05);
}

.synergybiz-business-placeholder {
    color: #dee2e6;
}

.synergybiz-business-content {
    padding: 20px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.synergybiz-business-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    color: #212529;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.synergybiz-business-trade {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 4px 0;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.synergybiz-business-region {
    font-size: 13px;
    color: #adb5bd;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.synergybiz-carousel-nav {
    /* ...existing styles... */
    background: #093454;   /* Your brand blue, or any dark color */
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border: none;
    opacity: 0.95;
    transition: all 0.25s;
    z-index: 20;
}
.synergybiz-carousel-nav:hover {
    background: #0d274a;
    color: #ffd700;
    opacity: 1;
    transform: scale(1.12);
}

.synergybiz-carousel-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.synergybiz-carousel-prev {
    left: 0 !important;
}
.synergybiz-carousel-next {
    right: 0 !important;
}

.synergybiz-carousel-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

.synergybiz-carousel-nav:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #495057;
    transform: translateY(-50%) scale(1);
}

@media (max-width: 768px) {
    .synergybiz-carousel-slide {
        flex: 0 0 50%;
    }
    
    .synergybiz-carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .synergybiz-carousel-prev {
        left: -20px;
    }
    
    .synergybiz-carousel-next {
        right: -20px;
    }
    
    .synergybiz-business-title {
        font-size: 16px;
    }
    
    .synergybiz-business-content {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .synergybiz-carousel-slide {
        flex: 0 0 100%;
    }
    
    .synergybiz-carousel-container {
        padding: 20px 40px;
    }
    
    .synergybiz-carousel-prev {
        left: 0;
    }
    
    .synergybiz-carousel-next {
        right: 0;
    }
    
    .synergybiz-business-card {
        height: 300px;
    }
    
    .synergybiz-business-image {
        height: 160px;
    }
    
    .synergybiz-business-content {
        height: 140px;
        padding: 16px;
    }
}