/**
 * Public CSS
 */

/* Account request form */
.waim-account-request-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 5px;
}

.waim-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.waim-form-group {
    flex: 1;
    min-width: 250px;
    padding: 0 10px;
    margin-bottom: 15px;
}

.waim-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.waim-form-group input,
.waim-form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
}

.waim-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.waim-form-group .required {
    color: #e32;
}

.waim-submit-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-size: 16px;
}

.waim-submit-button:hover {
    background-color: #0085ba;
}

.waim-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.waim-message-container {
    padding: 15px;
    margin: 20px 0;
    border-radius: 3px;
}

.waim-message-container.waim-success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.waim-message-container.waim-error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.waim-login-link {
    margin-top: 20px;
    text-align: center;
}

/* Orders closed notice */
.waim-orders-closed-notice {
    display: flex;
    align-items: center;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}

.waim-notice-icon {
    margin-right: 20px;
    font-size: 24px;
}

.waim-notice-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.waim-notice-content p {
    margin: 5px 0;
}

/* Price display CSS */
.waim-currency-note {
    color: #888;
    font-size: 0.8em;
    font-weight: normal;
}

/* Strikethrough styles */
.woocommerce-Price-amount del {
    text-decoration: line-through;
    color: #999;
    margin-right: 5px;
}

.woocommerce-Price-amount ins {
    text-decoration: none;
    font-weight: bold;
}

/* Cart price display */
.woocommerce-cart-form .product-price .waim-currency-note,
.woocommerce-cart-form .product-subtotal .waim-currency-note {
    display: block;
}

/* Checkout price display */
.woocommerce-checkout-review-order-table .waim-currency-note {
    display: inline-block;
    margin-left: 3px;
}

/* Order details price display */
.woocommerce-table--order-details .waim-currency-note {
    display: inline-block;
    margin-left: 3px;
}

/**
 * Public CSS
 */

/* Price display styles */
.waim-currency-note {
    color: #777;
    font-size: 0.85em;
    margin-left: 5px;
}

del .woocommerce-Price-amount {
    color: #999;
    text-decoration: line-through;
    font-weight: normal;
}

ins .woocommerce-Price-amount {
    color: #0073aa;
    font-weight: bold;
    text-decoration: none;
}

/* Cart price display */
.cart_item .product-price .waim-currency-note,
.cart_item .product-subtotal .waim-currency-note {
    display: block;
    margin-top: 3px;
}

/* Order total currency note */
.order-total .waim-currency-note {
    display: inline-block;
    margin-left: 5px;
}

/* Shop Closed Layout */
.waim-closed-shop-message {
    background-color: #f8f8f8;
    border-left: 5px solid #0073aa;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.waim-notice-icon {
    margin-bottom: 20px;
}

.waim-notice-icon .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: #0073aa;
}

.waim-notice-content h2 {
    margin-top: 0;
    color: #0073aa;
    font-size: 28px;
}

.waim-notice-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}