:root{
--verde:#0A3720;
--fondo:#F5F5E8;
--verde-boton:#b4cfb6;
  --color-rosaSuave: #F9E4E4;
  --rosa: #BA6D80;
  --color-rosaDark:#BA6D80;
  --color-fondo: #F5F5E8;
  --color-verdeSuave: #E9FFEA;
  --color-verdeDark: #0A3720;
  --color-verdeSlightDark: #334E40;
}

body{
background:var(--fondo);
font-family:'Quicksand',sans-serif;
}

/* PRODUCTOS */

.productos{

max-width:1100px;
margin:auto;

padding:80px 20px;

}


.container-tienda h1{
    font-size: 52px;
    color:var(--color-verdeDark);
}
.producto{

display:grid;
grid-template-columns:180px 1fr;

gap:40px;

align-items:center;

margin-bottom:60px;

transition:transform .4s ease, box-shadow .4s ease;

}
.producto-bottom{

display:flex;

align-items:center;

justify-content:space-between;

gap:20px;

}

.producto:hover{

transform:translateY(-6px);

}

.producto.verde h2,
.producto.rosa p,
.producto.verde .precio,
.producto.verde .feature-number{
color:var(--verde);
}

.producto.rosa h2,
.producto.rosa p,
.producto.rosa .precio,
.producto.rosa .feature-number{
color:var(--rosa);
}

.producto-img{

width:205px;
height:300px;

object-fit:cover;

}

.producto-head{
    height: 20px;
display:flex;
justify-content:space-between;
align-items:center;


}

.producto-head h2{
font-family:'Playfair Display',serif;
font-size:32px;
color:var(--verde);
}

.precio{
font-weight:600;
font-size: 24px;
color:var(--verde);
}

.precio.rosa{
color:var(--rosa);
}

.descripcion{

font-size:18px;
max-width:500px;
margin-bottom:20px;

}

.features{

display:flex;
gap:30px;
font-size:22px;
margin-bottom:20px;

}

.features img{
    max-height: 15px;
}

.producto.rosa .features-1 svg{
   
color:var(--color-rosaDark);
}

.producto.verde .features-1 svg{
color:var(--verde);
}

.icon{
fill:currentColor;
stroke:currentColor;
width:28px;
height:28px;
}
.features-1 svg{
width:25px;
height:25px;
fill:currentColor;
stroke:currentColor;
}




.features-1{
display:flex;
align-items:center;
gap:10px;
}

.feature-text{
display:flex;
flex-direction:column;
line-height:1;
}

.producto.rosa .feature-label{
    color:var(--rosa);
}

.producto.verde .feature-label{
    color:var(--verde);
}


.feature-number{
font-weight:600;
font-size:18px;
}

.feature-label{
font-size:16px;
}

.btn-comprar{

background:var(--verde-boton);
color: var(--color-verdeDark);
border:none;
font-family: 'Quicksand';
font-weight: 600;
padding:10px 20px;
border-radius:20px;

cursor:pointer;

}

.btn-comprar:hover{
    background:var(--color-verdeDark);
color: var(--verde-boton);

}

.btn-comprar.rosa{
background:#E7B3B3;
color: var(--color-rosaDark);
}


.btn-comprar.rosa:hover{
background:var(--color-rosaDark);
color: #E7B3B3;
}

.divider{

height:2px;
background:var(--verde);

opacity:.3;

margin:50px 0;

}


/* RESPONSIVE */

@media (max-width:768px){



.tienda-hero h1{
font-family:'Playfair Display',serif;
font-size:26px;}

.tienda-hero{
height:40vh;
padding:0 20px;
 background-size: cover;
  background-position: center;
}


.producto{
grid-template-columns:1fr;
text-align:center;
}

.producto-img{
margin:auto;

}
.producto-bottom{
flex-direction:column;
align-items:center;


}
.producto-head{
flex-direction:column;
height: 116px;
gap: 0 10px;
margin:0;
}

.precio{
font-size: 20px;
}

.features{
justify-content:center;
}
.btn-comprar{
    padding:6px 20px;
}

}