/**
 * SHAMS Checkout Message Styles
 * Blue solid background with clean professional design
 */

.shams-checkout-message-wrapper {
    margin: 20px 0;
    clear: both;
}

.shams-checkout-message {
    background: #5b9bd5;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    text-align: center;
}

/* Message lines */
.shams-message-line-1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.shams-message-line-2 {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.5;
}

/* Single message styling */
.shams-checkout-message .shams-message-line-1:only-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .shams-checkout-message {
        padding: 15px 20px;
    }
    
    .shams-message-line-1 {
        font-size: 15px;
    }
    
    .shams-message-line-2 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .shams-checkout-message {
        padding: 12px 15px;
    }
    
    .shams-message-line-1 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .shams-message-line-2 {
        font-size: 12px;
    }
}

/* Ensure message is visible on all themes */
.shams-checkout-message,
.shams-checkout-message * {
    color: #ffffff !important;
}

/* Product Page Message Styles (same as checkout) */
.shams-product-message-wrapper {
    margin: 20px 0;
    clear: both;
}

.shams-product-message {
    background: #5b9bd5;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    line-height: 1.6;
    text-align: center;
}

.shams-product-message .shams-message-line-1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.shams-product-message .shams-message-line-2 {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.5;
}

.shams-product-message .shams-message-line-1:only-child {
    margin-bottom: 0;
}

.shams-product-message,
.shams-product-message * {
    color: #ffffff !important;
}

/* Responsive for product messages */
@media (max-width: 768px) {
    .shams-product-message {
        padding: 15px 20px;
    }
    
    .shams-product-message .shams-message-line-1 {
        font-size: 15px;
    }
    
    .shams-product-message .shams-message-line-2 {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .shams-product-message {
        padding: 12px 15px;
    }
    
    .shams-product-message .shams-message-line-1 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .shams-product-message .shams-message-line-2 {
        font-size: 12px;
    }
}

