/* ── CC Back in Stock — Frontend form ── */

.cc-bis-wrap {
    margin: 20px 0 8px;
}

.cc-bis-label {
    margin: 0 0 10px;
}

.cc-bis-form {
    display: flex;
    flex-wrap: wrap;
    padding: 1px 0 0 1px;
}

.cc-bis-form input[type="email"],
.cc-bis-form button {
    box-sizing: border-box;
    margin: -1px 0 0 -1px;
}

.cc-bis-form input[type="email"] {
    flex: 99 1 200px;
    padding: 12px 14px;
    border: 1px solid #c7a17a;
    border-radius: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #30271c;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    -webkit-appearance: none;
    appearance: none;
}

.cc-bis-form input[type="email"]::placeholder {
    color: #b0a090;
}

.cc-bis-form input[type="email"]:focus {
    border-color: #30271c;
    box-shadow: inset 0 0 0 1px #30271c;
    z-index: 1;
    position: relative;
}

.cc-bis-form button {
    flex: 1 1 150px;
    background: #c7a17a;
    color: #fff;
    border: 1px solid #c7a17a;
    padding: 12px 20px;
    border-radius: 0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, border-color .2s;
    line-height: 1.4;
}

.cc-bis-form button:hover {
    background: #b08860;
    border-color: #b08860;
}

.cc-bis-form button:disabled {
    background: #d4bda0;
    border-color: #d4bda0;
    cursor: default;
}

.cc-bis-message {
    margin-top: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    display: none;
    padding: 10px 14px;
}

.cc-bis-message.success {
    display: block;
    background: #f0f7ee;
    color: #2e7d32;
    border-left: 3px solid #66bb6a;
}

.cc-bis-message.error {
    display: block;
    background: #fdf2f2;
    color: #c62828;
    border-left: 3px solid #ef9a9a;
}


