/* ============================================================
   Notify Form — Hi-fashion redesign
   Aliniat la identitatea vizuala MONDEX / dvpro.ro
   ============================================================ */

/* Reset box-sizing */
#notifyform *,
#notifyform *::before,
#notifyform *::after {
    box-sizing: border-box;
}

/* Popup container */
.hb-white-popup#notifyform {
    background: #fff;
    padding: 36px 40px 40px;
    max-width: 520px;
    width: 100%;
    border-top: 3px solid #cd9933;
    font-family: 'Work Sans', sans-serif;
}

/* Info text */
.notify-info-block {
    margin-bottom: 24px;
    width: 100%;
}

#oosn_info_text {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Row groups — layout coloana unica, fara float */
.notify-row-group {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.notify-row-group::after {
    content: none;
}

/* Label */
.notify-label {
    padding: 0;
    display: block;
    float: none;
    width: 100%;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #333;
    font-family: 'Work Sans', sans-serif;
}

/* Coloane — ignorate, acum stacked */
.notify-col-25,
.notify-col-75 {
    float: none;
    width: 100%;
    margin-top: 0;
}

/* Inputs & textarea */
input[type=text].notify-element,
textarea.notify-element {
    width: 100%;
    padding: 0 0 10px 0;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    border-radius: 0;
    background: transparent;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
    color: #222;
    outline: none;
    transition: border-color 0.25s ease;
    resize: none;
    box-shadow: none;
}

input[type=text].notify-element::placeholder,
textarea.notify-element::placeholder {
    color: #bbb;
    font-size: 13px;
}

input[type=text].notify-element:focus,
textarea.notify-element:focus {
    border-bottom-color: #cd9933;
}

textarea.notify-element {
    height: 80px;
    padding-top: 4px;
    resize: none;
    line-height: 1.5;
}

/* Submit button — identic cu btn-cart de pe produs */
.notify-button {
    background-color: #cd9933;
    color: #fff8f3;
    padding: 0 24px;
    height: 44px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    width: 100%;
    float: none;
    font-family: 'Work Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    margin-top: 8px;
}

.notify-button i.fa {
    font-size: 14px;
    opacity: 0.85;
}

.notify-button:hover {
    background-color: #b8871f;
    opacity: 1;
}

/* Status messages */
.notify_form_success { color: #2e7d32; font-size: 13px; margin-top: 12px; }
.notify_form_warning { color: #e65100; font-size: 13px; margin-top: 12px; }
.notify_form_error   { color: #c62828; font-size: 13px; margin-top: 12px; }

#msgoosn {
    margin-top: 12px;
    font-size: 13px;
    text-align: center;
}

/* Responsive */
@media (max-width: 600px) {
    .hb-white-popup#notifyform {
        padding: 28px 20px 32px;
    }
}
