body {
    background: #fff;
  }
  
.box_base_naranja {
	background: #FC6B00;
    position: fixed;
    width: 100%;
    height: 40px;
    z-index: 1000;
}

#contacto_pedidos {
	font-family: 'Hind Siliguri', sans-serif;
	text-align: center;
	padding: 5px;
	color: white;
	font-size: 1.2em;
}

#contacto_pedidos span {
	padding-left: 10px;
	padding-right: 5px;
}
#contacto_pedidos a {
	text-decoration: none;
    color: white;
}

#contacto_pedidos b {
	letter-spacing: 2px
}

#contacto_pedidos br {
	display: none;
}

.logo {
    background: #000;
}

@media screen and (max-width: 765px){
    #contacto_pedidos {
        font-size: 1em;
    }    
    #contacto_pedidos b {
        letter-spacing: 1.5px
    }
}

@media screen and (max-width: 390px){
    #contacto_pedidos {
        font-size: 0.9em;
        padding: 10px;
    }    
    #contacto_pedidos b {
        letter-spacing: 1.2px
    }
    #contacto_pedidos span {
        padding-left: 15px;
        padding-right: 10px;
    }
}

   .post_article h2 {
    font-size: 24px;
    font-family: 'Josefin Sans', sans-serif;
    margin-top: 25px;
    text-align: center;
    color: #7a7a7a;
  }
  .post_article h2.linea {
    position: relative;
    z-index: 1;
  }
  .post_article h2.linea:before {
    border-top: 5px solid #FC6B00;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
  }
  .post_article h2.linea span {
    background: #fff;
    padding: 5px 15px;
    color: #FC6B00;
  }

  
 

.productos_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centra los productos horizontalmente */
    gap: 15px; /* Añade espacio entre los productos */
}


.producto_card {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.116);
    border-radius: 0.5rem;
    width: 100%; /* 100% en pantallas pequeñas */
    min-width: 350px;
    max-width: 32%; /* Aproximadamente un tercio del contenedor en pantallas grandes */
    margin: 15px 0px 5px 0px;
}

.etiqueta {
    position: absolute;
    top: 5px;
    left: -10px;
    background-color: black; /* Cambia el color según desees */
    color: white;
    padding: 2px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 5px;
    z-index: 10; /* Asegura que la etiqueta esté por encima de la imagen */
}
.etiqueta.nuevo{
    background-color: rgb(16, 182, 58) !important; /* Cambia el color según desees */
}
.etiqueta.oferta{
    background-color: rgb(255, 0, 0) !important; /* Cambia el color según desees */
}
.etiqueta.popular{
    background-color: #FC6B00 !important; /* Cambia el color según desees */
}

.producto_imagen {
    flex-basis: 33%;
}

.producto_imagen img {
    border-radius: 0.5rem 0 0 0.5rem; /* Esquinas superior izquierda e inferior izquierda redondeadas */
    object-fit: cover;
    width: 140px;
    height: 140px;
}


.producto_detalle {
    flex-basis: 67%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0.7rem;
}

.producto_detalle h3 {
    font-size: 1rem;
    font-weight: 600;
}

.producto_detalle p {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1rem;
    margin-bottom: 0px !important;
}

.producto_detalle .precio {
    font-size: .875rem;
    font-weight: bold;
    line-height: 1.25rem;
}

.producto_detalle .precio_viejo {
    color: white;
    font-size: .675rem;
    font-weight: normal;
    background: red;
    padding: 2px 5px;
}
#descripcion_seccion {
    color: #FC6B00;
    padding: 10px;
    text-align: center;
}

#footer {
    margin-top: 30px;
    background: #FC6B00;
    color: white;
    padding: 15px;
    text-align: center;
}