/**
 * Checkout error page styles
 */

.woocommerce-error-page {
    max-width: 600px;
    margin: 2em auto;
    padding: 2em;
    background-color: #f8f8f8;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.woocommerce-message--error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1.5em;
    border-radius: 4px;
    margin-bottom: 1.5em;
    position: relative;
    border-left: 4px solid #dc3545;
}

.error-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #dc3545;
    border-radius: 50%;
    position: relative;
    margin-right: 10px;
    vertical-align: middle;
}

.error-icon:before, 
.error-icon:after {
    content: '';
    position: absolute;
    width: 14px;
    height: 2px;
    background-color: white;
    top: 11px;
    left: 5px;
}

.error-icon:before {
    transform: rotate(45deg);
}

.error-icon:after {
    transform: rotate(-45deg);
}

.woocommerce-error-page p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 1em;
}

.return-to-cart {
    margin-top: 2em;
}

.return-to-cart .button {
    background-color: #0073aa;
    color: #fff;
    padding: 0.75em 1.5em;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.return-to-cart .button:hover {
    background-color: #005177;
}

@media (max-width: 767px) {
    .woocommerce-error-page {
        margin: 1em;
        padding: 1.5em;
    }
} 