.checkout-closed-panel {
    display: none;
    max-width: 560px;
    margin: 40px auto 60px;
    padding: 48px 36px 40px;
    background: #fff;
    border: 1px solid #e0d5c8;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(111, 78, 55, 0.1);
    text-align: center;
}

body.checkout-store-closed .checkout-closed-panel {
    display: block;
}

body.checkout-store-closed #checkout-active-content {
    display: none;
}

.checkout-closed-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f5ede6 0%, #ece6e1 100%);
    border-radius: 50%;
    color: #6f4e37;
    box-shadow: inset 0 0 0 1px rgba(111, 78, 55, 0.08);
}

.checkout-closed-icon svg {
    width: 44px;
    height: 44px;
}

.checkout-closed-headline {
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #6f4e37;
    line-height: 1.35;
}

.checkout-closed-submessage {
    margin: 0 auto 28px;
    max-width: 420px;
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #5c4030;
}

.checkout-closed-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 14px 28px;
    border-radius: 100px;
    background: #12110F;
    color: #fff;
    font-family: 'Tajawal', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(18, 17, 15, 0.15);
}

.checkout-closed-back:hover {
    background: #2b2825;
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .checkout-closed-panel {
        margin: 24px 16px 48px;
        padding: 36px 24px 32px;
    }

    .checkout-closed-headline {
        font-size: 1.65rem;
    }
}
