.wc-phone-auth-container.woodmart-style {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    padding: 24px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.wc-phone-auth-form .form-row {
    margin-bottom: 16px;
}

.wc-phone-auth-form label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
}

#wc-phone-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e4e8;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color .2s, box-shadow .2s;
}

#wc-phone-input:focus {
    border-color: #d4a85a; /* акцент Woodmart */
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 168, 90, .2);
}

.phone-link {
    color: #c9832d;
    font-weight: 700;
    text-decoration: none;
}
.phone-link:hover {
    color: #a86b25;
    text-decoration: underline;
}

.wc-phone-auth-btn {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    background-color: #2c3e50;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.wc-phone-auth-btn:hover {
    background-color: #1a252f;
}

/* Прогресс-бар в стиле Woodmart */
#wc-phone-auth-progress {
    height: 6px;
    background-color: #e2e4e8;
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
    position: relative;
}

#wc-phone-auth-progress::after {
    content: '';
    display: block;
    height: 100%;
    width: 0%;
    background-color: #d4a85a;
    transition: width .3s ease;
}

/* Сообщения */
.message-box {
    margin-top: 12px;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.4;
}

.message-box.success {
    color: #27ae60;
    background-color: #f0fdf4;
    border: 1px solid #d1e7ad;
}

.message-box.error {
    color: #c0392b;
    background-color: #fdf2f2;
    border: 1px solid #ebc2c2;
}
