/* =========================================================
   Wedding Core
   Forms
========================================================= */

.wc-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px;
    box-shadow:0 8px 28px rgba(0,0,0,.05);
}

.wc-form-group{
    margin-bottom:24px;
}

.wc-form-label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#374151;
}

.wc-form-row{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:24px;

    margin-bottom:24px;

}

.wc-form-row--3{

    grid-template-columns:repeat(3,minmax(0,1fr));

}

@media(max-width:992px){

.wc-form-row,
.wc-form-row--3{

grid-template-columns:1fr;

}

}

.wc-input,
.wc-select,
.wc-textarea{

    width:100%;

    height:46px;

    padding:0 15px;

    border:1px solid #d7dbe3;

    border-radius:12px;

    background:#fff;

    transition:.25s;

    font-size:15px;

    box-sizing:border-box;

}

.wc-textarea{

    height:auto;

    min-height:180px;

    padding:15px;

}

.wc-input:focus,
.wc-select:focus,
.wc-textarea:focus{

    outline:none;

    border-color:#c7a34a;

    box-shadow:0 0 0 3px rgba(199,163,74,.15);

}

/* =====================================
EDITOR
===================================== */

.wc-editor{

    margin-top:10px;

}

.wp-editor-wrap{

    border:1px solid #d7dbe3;

    border-radius:12px;

    overflow:hidden;

}

/* =====================================
IMAGE
===================================== */

.wc-image-upload{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.wedding-image-preview{

    max-width:180px;

    border-radius:12px;

}

.wc-image-actions{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

}

/* =====================================
CHECKBOX
===================================== */

.wc-checkbox{

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

    font-weight:500;

    margin-top:10px;

}

.wc-checkbox input[type="checkbox"]{

    width:18px !important;

    height:18px !important;

    min-width:18px;

    margin:0;

    appearance:auto !important;

    -webkit-appearance:checkbox !important;

    accent-color:#c7a34a;

    flex-shrink:0;

}

/* =====================================
BUTTONS
===================================== */

.wc-form-actions{

    display:flex;

    justify-content:flex-end;

    gap:12px;

    margin-top:35px;

    padding-top:25px;

    border-top:1px solid #ececec;

}