/* ═══════════════════════════════════════
   Logixpress Brand Slider
   ═══════════════════════════════════════ */

.lxp-brand-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lxp-brand-swiper {
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

/* ── Card ── */
.lxp-brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.lxp-brand-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

a.lxp-brand-card:hover {
    color: inherit;
}

/* ── Image ── */
.lxp-brand-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.lxp-brand-image img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lxp-brand-card:hover .lxp-brand-image img {
    transform: scale(1.05);
}

/* ── Title ── */
.lxp-brand-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 6px;
    color: #1a1a2e;
}

/* ── Description ── */
.lxp-brand-desc {
    font-size: 13px;
    line-height: 1.5;
    color: #666;
    margin: 0 0 12px;
}

/* ── Badge ── */
.lxp-brand-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(248, 92, 0, 0.08);
    color: #F85C00;
    white-space: nowrap;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ── Navigation Arrows ── */
.lxp-brand-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
    z-index: 2;
    flex-shrink: 0;
}

.lxp-brand-nav svg {
    width: 18px;
    height: 18px;
    fill: #F85C00;
    transition: fill 0.3s ease;
}

.lxp-brand-nav:hover {
    background: #F85C00;
    border-color: #F85C00;
}

.lxp-brand-nav:hover svg {
    fill: #fff;
}

.lxp-brand-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}

/* ── Swiper slide height ── */
.lxp-brand-slider-wrap .swiper-slide {
    height: auto;
}

.lxp-brand-slider-wrap .swiper-wrapper {
    align-items: stretch;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .lxp-brand-slider-wrap {
        gap: 8px;
    }

    .lxp-brand-nav {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .lxp-brand-nav svg {
        width: 14px;
        height: 14px;
    }

    .lxp-brand-title {
        font-size: 14px;
    }

    .lxp-brand-desc {
        font-size: 12px;
    }

    .lxp-brand-badge {
        font-size: 11px;
        padding: 4px 10px;
    }
}
