/* ============================================================
   JFU FEATURES — Brands & Promotions Styles
   ============================================================ */

/* ── BRANDS CAROUSEL ─────────────────────────────────────── */

.jfu-brands-header-wrap,
.jfu-brands-footer-wrap {
    background: #fff;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    width: 100%;
}

.jfu-brands-footer-wrap {
    border-bottom: none;
    border-top: 1px solid #eee;
    background: #f9f9f9;
    padding: 20px 0;
}

.jfu-section-label {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 10px;
}

.jfu-brands-wrap {
    overflow: hidden;
    width: 100%;
    position: relative;
    /* Fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.jfu-brands-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: jfu-scroll-brands 30s linear infinite;
}

.jfu-brands-track:hover {
    animation-play-state: paused;
}

@keyframes jfu-scroll-brands {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.jfu-brand-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
}

.jfu-brand-item img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
}

.jfu-brand-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* Footer variant — slightly larger */
.jfu-brands-footer-wrap .jfu-brand-item img {
    height: 44px;
}

/* ── PROMOTIONS CAROUSEL ─────────────────────────────────── */

.jfu-promotions-section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.jfu-promotions-header {
    text-align: center;
    margin-bottom: 28px;
}

.jfu-promotions-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.jfu-promotions-header p {
    color: #666;
    font-size: 14px;
}

.jfu-promotions-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    background: #000;
    max-height: 520px;
}

.jfu-promo-track {
    position: relative;
    width: 100%;
}

.jfu-promo-slide {
    display: none;
    position: relative;
    width: 100%;
}

.jfu-promo-slide.active {
    display: block;
}

.jfu-promo-media {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.jfu-promo-instagram {
    background: #fff;
    min-height: 480px;
}

.jfu-promo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    padding: 40px 24px 20px;
}

.jfu-promo-caption h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.jfu-promo-caption p {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* Nav buttons */
.jfu-promo-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: background 0.2s;
    line-height: 1;
    padding: 0;
}

.jfu-promo-btn:hover { background: rgba(255,255,255,1); }
.jfu-promo-btn.prev  { left: 12px; }
.jfu-promo-btn.next  { right: 12px; }

/* Dots */
.jfu-promo-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.jfu-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.jfu-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ── INSTAGRAM SECTION ───────────────────────────────────── */

.jfu-instagram-section {
    margin-top: 36px;
    text-align: center;
}

.jfu-instagram-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.jfu-instagram-section h3 a {
    color: #e1306c;
    text-decoration: none;
}

.jfu-instagram-section h3 a:hover {
    text-decoration: underline;
}

/* ── MOBILE ──────────────────────────────────────────────── */

@media (max-width: 768px) {
    .jfu-promotions-carousel {
        border-radius: 10px;
        max-height: 360px;
    }
    .jfu-promo-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .jfu-promo-media {
        max-height: 340px;
    }
    .jfu-brand-item img {
        height: 30px;
    }
    .jfu-brands-track {
        gap: 24px;
        animation-duration: 20s;
    }
}
