/**
 * FSP Promotional Banners Styles
 * Promo banner sections and grids
 *
 * @package Free_Style_Products
 */

/* ==========================================================================
   Promotional Banners Section
   ========================================================================== */

.promo-section {
    background-color: var(--hw-dark);
    padding: 40px 0;
}

.promo-banner {
    display: block;
    border-radius: var(--hw-radius-lg);
    overflow: hidden;
    transition: var(--hw-transition);
    margin-bottom: 30px;
}

.promo-banner:last-child {
    margin-bottom: 0;
}

.promo-banner:hover {
    transform: translateY(-5px);
    box-shadow: var(--hw-shadow-lg);
}

.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Full-width promo banner */
.promo-full {
    margin-bottom: 30px;
}

.promo-full .promo-banner {
    margin-bottom: 0;
}

/* Two-column promo layout */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-grid .promo-banner {
    margin-bottom: 0;
}

/* Promo Banner Spacing */
.promo-collection,
.promo-decorations {
    margin-top: 30px;
}

/* ==========================================================================
   Wholesale CTA Banner
   ========================================================================== */

.wholesale-cta-banner {
    position: relative;
    margin-top: 40px;
    margin-bottom: 10px;
    border-radius: var(--hw-radius-lg);
    overflow: hidden;
    background: var(--hw-dark-secondary);
    border: 1px solid var(--hw-gray);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(44, 198, 77, 0.08);
}

.wholesale-cta-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 60px;
}

.wholesale-cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--hw-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.wholesale-cta-desc {
    color: var(--hw-gray-lighter);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.wholesale-cta-btn {
    background: linear-gradient(135deg, var(--hw-primary) 0%, var(--hw-primary-dark) 100%);
    border: none;
    color: var(--hw-dark);
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--hw-radius);
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: var(--hw-transition);
    text-transform: uppercase;
}

.wholesale-cta-btn:hover,
.wholesale-cta-btn:focus {
    background: linear-gradient(135deg, var(--hw-primary-light) 0%, var(--hw-primary) 100%);
    color: var(--hw-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(44, 198, 77, 0.4);
}

.wholesale-cta-trustpoints {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 0;
    margin: 28px 0 0;
}

.wholesale-cta-trustpoints li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--hw-gray-lighter);
    font-size: 0.9rem;
    font-weight: 500;
}

.wholesale-cta-trustpoints svg {
    color: var(--hw-primary);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 767.98px) {
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-section {
        padding: 30px 0;
    }

    .wholesale-cta-card {
        padding: 50px 24px;
    }

    .wholesale-cta-title {
        font-size: 1.6rem;
    }

    .wholesale-cta-desc {
        font-size: 0.95rem;
    }

    .wholesale-cta-trustpoints {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}
