/**
 * FT Buy Now Bar - Popup Styles
 * Version: 1.2.1
 */

/* Desktop only — hidden on tablet and mobile */
@media screen and (max-width: 1024px) {
    .ft-buy-now-popup {
        display: none !important;
    }
}

.ft-buy-now-popup {
    position: fixed;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.ft-buy-now-popup.ft-bnb-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.ft-buy-now-popup.ft-bnb-scrolling {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Top center */
.ft-buy-now-popup.ft-bnb-top,
.ft-buy-now-popup.ft-bnb-top-center {
    top: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
}

.ft-buy-now-popup.ft-bnb-top.ft-bnb-visible,
.ft-buy-now-popup.ft-bnb-top-center.ft-bnb-visible {
    transform: translateX(-50%) translateY(0);
}

/* Top left */
.ft-buy-now-popup.ft-bnb-top-left {
    top: 24px;
    left: 24px;
    transform: translateY(-20px);
}

.ft-buy-now-popup.ft-bnb-top-left.ft-bnb-visible {
    transform: translateY(0);
}

/* Top right */
.ft-buy-now-popup.ft-bnb-top-right {
    top: 24px;
    right: 24px;
    left: auto;
    transform: translateY(-20px);
}

.ft-buy-now-popup.ft-bnb-top-right.ft-bnb-visible {
    transform: translateY(0);
}

/* Middle center */
.ft-buy-now-popup.ft-bnb-middle,
.ft-buy-now-popup.ft-bnb-middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
}

.ft-buy-now-popup.ft-bnb-middle.ft-bnb-visible,
.ft-buy-now-popup.ft-bnb-middle-center.ft-bnb-visible {
    transform: translate(-50%, -50%) scale(1);
}

/* Middle left */
.ft-buy-now-popup.ft-bnb-middle-left {
    top: 50%;
    left: 24px;
    transform: translateY(-50%) translateX(-20px);
}

.ft-buy-now-popup.ft-bnb-middle-left.ft-bnb-visible {
    transform: translateY(-50%) translateX(0);
}

/* Middle right */
.ft-buy-now-popup.ft-bnb-middle-right {
    top: 50%;
    right: 24px;
    left: auto;
    transform: translateY(-50%) translateX(20px);
}

.ft-buy-now-popup.ft-bnb-middle-right.ft-bnb-visible {
    transform: translateY(-50%) translateX(0);
}

/* Bottom center */
.ft-buy-now-popup.ft-bnb-bottom,
.ft-buy-now-popup.ft-bnb-bottom-center {
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
}

.ft-buy-now-popup.ft-bnb-bottom.ft-bnb-visible,
.ft-buy-now-popup.ft-bnb-bottom-center.ft-bnb-visible {
    transform: translateX(-50%) translateY(0);
}

/* Bottom left */
.ft-buy-now-popup.ft-bnb-bottom-left {
    bottom: 24px;
    left: 24px;
    transform: translateY(20px);
}

.ft-buy-now-popup.ft-bnb-bottom-left.ft-bnb-visible {
    transform: translateY(0);
}

/* Bottom right */
.ft-buy-now-popup.ft-bnb-bottom-right {
    bottom: 24px;
    right: 24px;
    left: auto;
    transform: translateY(20px);
}

.ft-buy-now-popup.ft-bnb-bottom-right.ft-bnb-visible {
    transform: translateY(0);
}

.ft-bnb-popup-inner {
    padding: 20px 24px;
    text-align: center;
    min-width: 200px;
    max-width: 260px;
    background: rgba(255, 255, 255, 0.27);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.2px);
    -webkit-backdrop-filter: blur(9.2px);
    border: 1px solid rgba(255, 255, 255, 0.58);
}

.ft-bnb-promo-text {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #000000;
}

.ft-bnb-button {
    display: inline-block;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    line-height: 1;
    background-color: #ff5722;
    color: #ffffff;
}

.ft-bnb-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ft-bnb-button:active {
    transform: translateY(0);
}

.ft-bnb-button:focus {
    outline: 2px solid rgba(0, 0, 0, 0.15);
    outline-offset: 2px;
}

@media print {
    .ft-buy-now-popup {
        display: none !important;
    }
}
