:root{
    --principal:#2d5f2e;
    --secundario:#ff8c42;
    --fondo:#f4f6f4;
    --blanco:#fff;
    --gris:#6b6b6b;
    --borde:#dce4dc;
}

/* BODY */

body{
    margin:0;
    padding:40px 20px;
    background:var(--fondo);
    font-family:'Roboto',sans-serif;
}

/* CONTENEDOR */

.encargo-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* CARD PRODUCTO */

.producto-card{
    background:var(--blanco);
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.producto-imagen{
    width:100%;
    height:420px;
    object-fit:cover;
}

.producto-info{
    padding:30px;
}

.producto-info span{
    background:rgba(45,95,46,0.1);
    color:var(--principal);
    padding:8px 14px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.producto-info h1{
    margin-top:18px;
    font-size:40px;
    color:#222;
}

.producto-precio{
    font-size:32px;
    color:var(--secundario);
    font-weight:bold;
    margin:15px 0;
}

.producto-desc{
    color:var(--gris);
    line-height:1.7;
}

/* FORM */

.form-card{
    background:var(--blanco);
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.form-card h2{
    font-size:35px;
    color:var(--principal);
    margin-bottom:10px;
}

.form-card p{
    color:var(--gris);
    margin-bottom:30px;
}

.encargo-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

.input-group label{
    margin-bottom:8px;
    font-weight:600;
    color:#333;
}

.input-group input,
.input-group textarea{
    padding:15px;
    border-radius:12px;
    border:1px solid var(--borde);
    font-size:15px;
    outline:none;
    transition:0.3s;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:var(--principal);
    box-shadow:0 0 0 4px rgba(45,95,46,0.1);
}

.input-group textarea{
    resize:none;
    min-height:120px;
}

/* RESUMEN */

.resumen{
    background:#f8faf8;
    border:1px solid var(--borde);
    border-radius:16px;
    padding:20px;
}

.resumen-item{
    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    color:#444;
}

.resumen-total{
    display:flex;
    justify-content:space-between;
    font-size:22px;
    font-weight:bold;
    margin-top:15px;
    color:var(--principal);
}

/* BOTÓN */

.btn-confirmar{
    background:var(--principal);
    color:white;
    border:none;
    padding:18px;
    border-radius:14px;
    font-size:17px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.btn-confirmar:hover{
    background:#234b24;
    transform:translateY(-2px);
}

/* VOLVER */

.btn-volver{
    display:inline-block;
    margin-bottom:25px;
    color:var(--principal);
    text-decoration:none;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:900px){

    .encargo-wrapper{
        grid-template-columns:1fr;
    }

    .producto-imagen{
        height:300px;
    }

    .producto-info h1{
        font-size:32px;
    }

    .form-card{
        padding:30px 20px;
    }

}