/**
 * GBPM Checkout Price Lock Styles
 */

.gbpm-price-lock-message {
    background: #f0f9f4;
    border: 1px solid #86d4a8;
    border-radius: 4px;
    padding: 15px 20px;
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    transition: background-color 0.3s ease;
}

.gbpm-price-lock-message.gbpm-lock-updating {
    background: #fff9e6;
    border-color: #ffd966;
}

.gbpm-price-lock-message.gbpm-lock-refreshed {
    background: #fffacd;
    border-color: #ffd700;
}

.gbpm-lock-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gbpm-lock-text {
    font-size: 14px;
    color: #2c5d3f;
    line-height: 1.5;
}

.gbpm-lock-timer {
    font-size: 16px;
    font-weight: 600;
    color: #1a4d2e;
}

#gbpm-lock-countdown {
    color: #0d8540;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
}

/* Responsive design */
@media (max-width: 768px) {
    .gbpm-price-lock-message {
        padding: 12px 15px;
    }

    .gbpm-lock-text {
        font-size: 13px;
    }

    .gbpm-lock-timer {
        font-size: 15px;
    }

    #gbpm-lock-countdown {
        font-size: 16px;
    }
}
