/* Estilo para el fondo */

body {
    background-color: blanchedalmond;
    font-family: Montserrat;
}

/* Estilo para el banding */

.brand {
    display: flex;
    justify-content: center;
}

.brand img{
    width: 15%;
    height: auto;
}

/* Estilo para las tarjetas */

.card {
    flex: 1 1 260px;   /* Se ajusta al espacio */
    max-width: 270px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin: 20px 0;
    font-family: "Montserrat";
}

.card_img {
    width: 150px;
    display: block;
    margin: 0 auto 15px;
}

.card_title {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 5px;
}

.card_price {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card_list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.card_list li {
    font-size: 15px;
    margin: 3px 0;
}

.btn_agregar {
    width: 100%;
    background: #ff2d2d;
    border: none;
    padding: 12px 0;
    color: white;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
    margin-left: 0%;
}

.btn_agregar:hover {
    background: #e02525;
}

/* Estilo para el menu */

.menu {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 80%;
    margin: auto;
    align-items: flex-start; 
}

.item{
    font-size: 1.5rem;
}

.inputs_text {
    border-color: 0;
}

.el_pedido {
    margin-top: 40px;
    padding: 20px 0;
    font-family: 'Montserrat';
    color: #2c2c2c;
    margin: 0% 5%;
}

/* TITULO */
.el_pedido h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* LISTA DEL CARRITO */
#cartList li {
    list-style: none;
    font-size: 15px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#cartList li span {
    font-weight: 600;
}

/* BOTÓN ELIMINAR (X) */
.remove-btn {
    background: red;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: white; /* rojo similar al de la imagen */
}

/* TOTAL */
#total {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 700;
}

/* INPUTS NOMBRE CLIENTE */
.inputs_text_1 {
    width: 100%;
    max-width: 60%;
    background: #ffffff;
    border: none;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    outline: none;
}

/* INPUTS DOMICILIO */
.inputs_text_2 {
    width: 90%;
    padding: 0% 10% 0% 0%;
    max-width: 90%;
    background: #ffffff;
    border: none;
    padding: 12px 15px;
    font-size: 15px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    outline: none;
}

/* BOTÓN WHATSAPP */
.btn_whats {
    margin-top: 20px;
    background: #25D366;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    align-self: flex-start;
}

.btn_whats:hover {
    background-color: #ed1a1a;
}

.sect_inputs {
    margin: 0% 5%;
}

.copy {
    margin: 5% 5%;
    font-weight: 700;
    color: #2c2c2c;
}