.prm-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
}

.prm-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.prm-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.prm-field {
    display: flex;
    flex-direction: column;
}

.prm-field-full {
    grid-column: 1 / -1;
}

.prm-field label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.prm-field label span {
    color: #c48b5a;
    font-weight: 700;
}

.prm-field input,
.prm-field textarea,
.prm-field select {
    border: 1px solid #d7dce2;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    width: 100%;
    box-sizing: border-box;
}

.prm-field-checkbox {
    justify-content: flex-end;
}

.prm-actions {
    margin-top: 24px;
}

.prm-actions button {
    background: #b88a5a;
    color: #fff;
    border: 0;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.prm-response {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 12px;
}

.prm-response.success {
    background: #e8f7ec;
    color: #206a39;
}

.prm-response.error {
    background: #fdecec;
    color: #9f1d1d;
}

@media (max-width: 767px) {
    .prm-wrapper {
        padding: 14px;
    }

    .prm-form {
        padding: 18px;
    }

    .prm-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .prm-field-full {
        grid-column: auto;
    }

    .prm-actions button {
        width: 100%;
    }
}

.prm-honeypot-wrap,
.prm-honeypot,
#prm_honeypot {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
}

.prm-form-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.prm-submit {
    appearance: none;
    border: 0;
    border-radius: 10px;
    padding: 14px 22px;
    min-height: 48px;
    background: #0f172a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 260px;
}

.prm-submit:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}

.prm-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.prm-response {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    display: none;
}

.prm-response.success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.prm-response.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}