.stock-notification-panel {
    margin: 17px 0 20px;
    padding: 20px;
    border: 1px solid #dac89f;
    background:
        linear-gradient(
            135deg,
            #fffdf8,
            #f7f0e1
        );
    box-shadow:
        0 14px 35px
        rgba(65, 48, 20, .08);
}

.stock-notification-panel[hidden] {
    display: none !important;
}

.stock-notification-panel__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #8f6d2d;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.stock-notification-panel h3 {
    margin: 0;
    color: #202020;
    font-size: 20px;
}

.stock-notification-panel > p {
    margin: 7px 0 15px;
    color: #666666;
    line-height: 1.55;
}

.stock-notification-form {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr)
        auto;
    gap: 10px;
    align-items: end;
}

.stock-notification-field {
    display: grid;
    gap: 6px;
}

.stock-notification-field span {
    color: #3a3a3a;
    font-size: 12px;
    font-weight: 900;
}

.stock-notification-field input {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding: 0 12px;
    border: 1px solid #d7cdbb;
    background: #ffffff;
    color: #202020;
    font: inherit;
}

.stock-notification-field input:focus {
    border-color: #a27b32;
    outline:
        3px solid
        rgba(162, 123, 50, .15);
}

.stock-notification-submit {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid #222222;
    background: #222222;
    color: #ffffff;
    font: inherit;
    font-weight: 950;
    cursor: pointer;
}

.stock-notification-submit:hover {
    border-color: #8f6d2d;
    background: #8f6d2d;
}

.stock-notification-consent {
    display: flex;
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 9px;
    color: #666666;
    font-size: 12px;
    line-height: 1.5;
}

.stock-notification-consent input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    flex: 0 0 auto;
    accent-color: #8f6d2d;
}

.stock-notification-consent a {
    color: #8f6d2d;
    font-weight: 900;
}

.stock-notification-message {
    display: none;
    grid-column: 1 / -1;
    padding: 11px 13px;
    border-left: 4px solid #247044;
    background: #edf8f1;
    color: #225d3a;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}

.stock-notification-message.is-visible {
    display: block;
}

.stock-notification-message.is-error {
    border-left-color: #a33a35;
    background: #fff0ef;
    color: #842c28;
}

.stock-notification-message a {
    color: inherit;
    font-weight: 950;
}

.stock-notification-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.stock-manage-page {
    min-height: 68vh;
    padding:
        clamp(30px, 6vw, 80px)
        16px;
    background:
        linear-gradient(
            180deg,
            #ffffff,
            #f5f5f5
        );
}

.stock-manage-card {
    width: min(680px, 100%);
    margin-inline: auto;
    padding: clamp(25px, 5vw, 48px);
    border: 1px solid #ded5c5;
    background: #ffffff;
    box-shadow:
        0 22px 58px
        rgba(20, 20, 20, .09);
}

.stock-manage-card__eyebrow {
    display: block;
    margin-bottom: 9px;
    color: #9b762f;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.stock-manage-card h1 {
    margin: 0 0 20px;
    color: #202020;
    font-size: clamp(29px, 5vw, 45px);
    letter-spacing: -.04em;
}

.stock-manage-product {
    display: block;
    margin: 12px 0 22px;
    color: #202020;
    font-size: 18px;
}

.stock-manage-message {
    margin: 18px 0;
    padding: 14px 16px;
    border-left: 4px solid #247044;
    background: #edf8f1;
    color: #225d3a;
    font-weight: 800;
}

.stock-manage-message.is-error {
    border-left-color: #a33a35;
    background: #fff0ef;
    color: #842c28;
}

.stock-manage-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 19px;
    border: 1px solid #202020;
    background: #202020;
    color: #ffffff !important;
    font: inherit;
    font-weight: 950;
    text-decoration: none;
    cursor: pointer;
}

.stock-manage-button.is-danger {
    border-color: #8b2d28;
    background: #8b2d28;
}

@media (max-width: 760px) {
    .stock-notification-form {
        grid-template-columns: 1fr;
    }

    .stock-notification-consent,
    .stock-notification-message {
        grid-column: auto;
    }

    .stock-notification-submit {
        width: 100%;
    }
}
