/**
 * Plugin: 🔐 Roy Ballantine Pro Coding 365: Pacific Product Restriction
 * Text Domain: restrict-pacific-products
 * Note: Dynamic styles (color and radius) are added via inline CSS by the PHP logic.
 */

/* Container for the login message */
.restricted-product-message {
    /* These styles are structural and do not change */
    text-align: center; 
    margin: 15px 0;
    padding: 5px 0;
}

/* Base styling for the login button link */
.restricted-product-message a.login-to-purchase-button {
    /* These styles are structural and do not change */
    display: block;
    width: 100%;
    color: #ffffff !important; /* Ensure high contrast text */
    border: none;
    padding: 10px 20px;
    line-height: 1.5;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Ensure the button looks correct on product archives (shop page) */
.woocommerce ul.products li.product .restricted-product-message a.login-to-purchase-button {
    margin-top: 10px;
}

/* 🚀 NEW STYLES for the customizable description area below the button */
.restricted-product-description {
    text-align: center; 
    margin-top: 10px; 
    font-style: italic;
    font-size: 0.9em;
    color: #555;
}