/* ── Inline bonus block (product page step-by-step) ─────── */
.gp-bonus-inline-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: #e8f4fd;
    border: 1.5px solid #1a8fd1;
    border-radius: 6px;
    padding: 10px 14px;
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #0d5f8f;
    line-height: 1.4;
}

.gp-bonus-inline-block__left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gp-bonus-inline-block__icon {
    font-size: 26px;
    color: #1a8fd1;
    flex-shrink: 0;
    line-height: 1;
}

.gp-bonus-inline-block__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.gp-bonus-inline-block__label {
    font-weight: 700;
    font-size: 15px;
    color: #0d5f8f;
}

.gp-bonus-inline-block__text {
    font-size: 13px;
    color: #1a6a99;
}

.gp-bonus-inline-block__amount {
    font-weight: 700;
    font-size: 18px;
    color: #0d5f8f;
    white-space: nowrap;
}

/* ── Mini cart rows ──────────────────────────────────────── */
.gp-mini-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 18px !important;
    padding-bottom: 0 !important;
}

.gp-mini-row strong {
    font-weight: 700;
}

.gp-bonus-mini-amount {
    color: #1a8fd1;
    font-weight: 700;
}

/* ── Cart bottom block ───────────────────────────────────── */
.gp-bonus-cart-row {
    margin-top: 15px;
    margin-bottom: 15px;
}

.gp-bonus-cart-block {
    width: 100%;
    box-sizing: border-box;
}

/* CLAIM NOW button */
/* Base: cart block button (compact, pill style) */
.gp-bonus-apply-btn {
    background: #1a8fd1 !important;
    border: none !important;
    border-radius: 15px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    padding: 8px 20px !important;
    cursor: pointer;
    color: #fff !important;
    white-space: nowrap;
    font-family: inherit;
    line-height: 1.5 !important;
    height: auto !important;
    box-shadow: none !important;
    flex-shrink: 0;
    transition: background 0.15s, filter 0.15s;
    letter-spacing: 0.5px;
}

.gp-bonus-apply-btn:hover {
    background: #2ba3e8 !important;
}

/* Product page button — match theme's "Sell This Device" style */
.gp-bonus-inline-block:not(.gp-bonus-cart-block) .gp-bonus-apply-btn {
    background-color: #0996dc !important;
}

.gp-bonus-inline-block:not(.gp-bonus-cart-block) .gp-bonus-apply-btn:hover {
    background-color: #0a7fbd !important;
}

.gp-bonus-apply-btn:disabled {
    cursor: wait;
}

.gp-bonus-cart-block {
    margin-top: 25px;
    margin-bottom: 15px !important;
}

@media (max-width: 991px) {
  .gp-bonus-cart-block {
    margin-top: 15px;
  }
}


/* Smooth amount fade-in after CLAIM NOW */
@keyframes gpBonusFadeIn {
    from { opacity: 0; transform: translateY(-3px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gp-bonus-inline-block__amount.gp-bonus-amount--animated {
    animation: gpBonusFadeIn 0.3s ease-out;
}

/* Subtle press feedback */
.gp-bonus-apply-btn {
    transition: background 0.15s, background-color 0.15s, transform 0.1s;
}

.gp-bonus-apply-btn:active {
    transform: scale(0.95);
}