/**
 * Bigpixel_GiftsCategoryPopup — shared styles
 * Covers: category popup overlay + checkout banner
 */

/* ─────────────────────────────────────────────────────────
   1. CATEGORY POPUP — overlay
───────────────────────────────────────────────────────── */
.gifts-popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

/* Inner card */
.gifts-popup-card {
    background: #fff;
    border-radius: 8px;
    max-width: 520px;
    width: 92%;
    padding: 40px 36px 32px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}

/* Close × button */
.gifts-popup-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

/* Warning icon wrapper */
.gifts-popup-icon {
    margin-bottom: 16px;
}

/* Message paragraphs */
.gifts-popup-message {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.gifts-popup-message--secondary {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Agree / dismiss button */
.gifts-popup-btn {
    background: #F07B2D;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 1px;
}

.gifts-popup-btn:hover {
    background: #d96a1e;
}

/* ─────────────────────────────────────────────────────────
   2. CHECKOUT BANNER
───────────────────────────────────────────────────────── */
.gifts-checkout-banner {
    background: #F07B2D;
    color: #fff;
    width: 100%;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* Inner wrapper — icon + text side by side, both truly centered */
.gifts-checkout-banner__inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Warning icon column — flex container so SVG has no baseline gap */
.gifts-checkout-banner__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    align-self: center;
    line-height: 0;
}

/* Remove inline baseline gap on the SVG itself */
.gifts-checkout-banner__icon svg {
    display: block;
    flex-shrink: 0;
}

/* Text column — reset all inherited theme paragraph styles */
.gifts-checkout-banner__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    text-align: left;
}

/* Aggressively reset theme p margin/line-height overrides */
.gifts-checkout-banner__body p.gifts-checkout-banner__msg,
.gifts-checkout-banner p.gifts-checkout-banner__msg {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.5 !important;
    letter-spacing: normal !important;
    font-size: 18px !important;
    color: #fff !important;
}

.gifts-checkout-banner p.gifts-checkout-banner__msg + p.gifts-checkout-banner__msg {
    margin-top: 6px !important;
}
