/*FONTS*/
/* Playfair Display se carga desde Google Fonts en el <head> */
@font-face{
    font-family: 'Road Rage';
    src: url('../fonts/Road_Rage.otf') format('opentype');
}
@font-face{
    font-family: 'Moderustic';
    src: url('../fonts/static/Moderustic-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face{
    font-family: 'Aldrich';
    src: url('../fonts/Aldrich-Regular.ttf') format('truetype');
}
/*------------------*/

/*Mensaje HAsta Arriba*/
.info_menuPrincipal{
    color: #8d2f2f;
}


/*Barra principal de navegacion*/
.nav-main{
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 47%;
    background-color: rgb(24, 23, 23);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    border-radius: 8px;
    margin: 0 auto;
}
.nav-cont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 15px;
    gap: 20px;
}
.nav-brand{
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    white-space: nowrap;
    width: 25%;
    flex-shrink: 0;
}
.nav-brand img{
    width: 100%;
    display: block;
}
.nav-right{
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-links{
    display: flex;
    align-items: center;
    gap: 25px;
}
.nav-links a{
    text-decoration: none;
    color: white;
    font-size: 29px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover{
    color: #8d2f2f;
}
.nav-icons{
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-icon{
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 50%;
    font-size: 28px;
    color: white;
    transition: color 0.2s;
}
.nav-icon:hover{
    color: #8d2f2f;
}

@media (max-width: 480px){
    .nav-main{
        left: 12px;
        right: 12px;
        width: auto;
        transform: none;
    }
    .nav-cont{
        padding: 12px 20px;
        gap: 10px;
    }
    .nav-brand{
        font-size: 1.4rem;
    }
    .nav-right{
        gap: 15px;
    }
}
/*---------------------------------*/



/*Cards para el menu*/
.product-card {
    background-color: rgb(24, 23, 23);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}

.product-image {
    width: 100%;
    margin: 0 auto 15px auto;
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    text-align: center;
}

.product-name {
    font-family: 'Road Rage', cursive;
    color: #2f5f08;
    font-size: 65px;
    margin-bottom: 8px;
}

.product-description {
    font-family: 'Moderustic', sans-serif;
    font-size: 25px;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--rojo);
}

@media (max-width: 1024px) {
    .product-item {
        width: 45%;
    }
}
