/* =============================================
   HERO CAROUSEL — Businesses locaux
   Ajoute à la fin de ton style.css ou dev.css
   ============================================= */

/* Hero layout */
.min-vh-hero {
    min-height: calc(100vh - 72px);
    padding: 60px 0;
}

/* ── CAROUSEL WRAPPER ── */
.hero-carousel-col {
    padding-left: 40px;
}

.hero-carousel-wrapper {
    display: flex;
    gap: 16px;
    height: 480px;
    overflow: hidden;
    position: relative;
    /* Fondu haut/bas */
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%);
}

/* ── COLUMNS ── */
.biz-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

/* Colonne gauche : défile vers le haut */
.biz-column-left {
    animation: scrollUp 18s linear infinite;
}

/* Colonne droite : défile vers le bas */
.biz-column-right {
    animation: scrollDown 22s linear infinite;
    margin-top: -80px; /* décalage visuel */
}

/* Pause au hover */
.hero-carousel-wrapper:hover .biz-column-left,
.hero-carousel-wrapper:hover .biz-column-right {
    animation-play-state: paused;
}

/* ── BIZ CARD ── */
.biz-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #F0F0F0;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}

.biz-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
}

.biz-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.biz-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.biz-category {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.biz-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.biz-location {
    font-size: 12px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 3px;
}

.biz-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

/* ── ANIMATIONS ── */
@keyframes scrollUp {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-33.333%); }
}

@keyframes scrollDown {
    0%   { transform: translateY(-33.333%); }
    100% { transform: translateY(0); }
}

/* ── HERO BUTTONS ── */
.besoin-btn-orange {
    background-color: #C04B11;
    border-color: #C04B11;
    color: #fff;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.2s;
}
.besoin-btn-orange:hover {
    background-color: #C04B11;
    border-color: #C04B11;
    color: #fff;
    transform: translateY(-2px);
}

.besoin-btn-outline {
    background: transparent;
    color: #C04B11;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.2s;
}
.besoin-btn-outline:hover {
    background: #C04B11;
    color: #fff;
    transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
    .hero-carousel-wrapper {
        display: none;
    }
    .min-vh-hero {
        min-height: auto;
        padding: 40px 0;
    }
}