/* Footer Popup Banner Styles */
.fpb-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    pointer-events: none;
}

.fpb-popup.fpb-visible {
    display: flex;
}

.fpb-popup-container {
    position: relative;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
    pointer-events: auto;
}

.fpb-popup.fpb-visible .fpb-popup-container {
    transform: translateY(0);
}

.fpb-close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 28px;
    height: 28px;
    background: #333;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 1;
}

.fpb-close-btn:hover {
    background: #555;
    transform: scale(1.1);
}

.fpb-close-btn:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

.fpb-banner-image {
    display: block;
    max-width: 728px;
    width: 100%;
    height: auto;
}

.fpb-popup-container a {
    display: block;
    line-height: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fpb-popup-container {
        max-width: 100%;
        margin: 0 10px;
    }

    .fpb-banner-image {
        max-width: 100%;
    }

    .fpb-close-btn {
        top: -10px;
        right: -5px;
        width: 24px;
        height: 24px;
        font-size: 16px;
    }
}
