.store-status-page {
    display: flex;
    justify-content: center;
    padding: 3rem 1rem;
}

.store-status-card {
    max-width: 560px;
    width: 100%;
    background: rgba(232, 220, 212, 0.5);
    border: 1px rgba(164, 148, 180, 0.5) solid;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.store-status-card h1 {
    margin-top: 0;
    color: var(--txt-alt, #fbfcfb);
}

.store-status-intro {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
}

.store-status-offer {
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.store-status-form {
    display: grid;
    gap: 1rem;
    text-align: left;
    margin-top: 1rem;
}

.store-status-form .form-group {
    display: grid;
    gap: 0.35rem;
}

.store-status-form label {
    font-weight: 600;
    color: var(--primary-dark, #4a3f5c);
}

.store-status-form input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(164, 148, 180, 0.5);
    border-radius: 0.4rem;
    font-size: 1rem;
}

.store-status-form .button {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
    line-height: normal;
    padding: 0.7rem 1rem;
    font-size: 1.05rem;
}

.store-status-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.store-status-errors {
    border: 1px solid rgba(220, 53, 69, 0.35);
    background: rgba(220, 53, 69, 0.08);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.store-status-errors p {
    margin: 0.25rem 0;
    color: #b42318;
}

.store-status-code {
    border: 1px dashed var(--primary-dark, #4a3f5c);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.store-status-code-value {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--primary-dark, #4a3f5c);
    margin: 0.5rem 0;
}

.store-status-code-note {
    font-size: 0.9rem;
    color: #555;
}

.store-status-note {
    font-size: 0.9rem;
    color: #555;
    margin-top: 1.5rem;
}