.vinos-destacados {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.vinos-destacados .grilla-items {
    display: flex;
    gap: 20px;
}

.vinos-destacados .item {
    display: flex;
    flex-direction: column;
    flex-basis: 33%;
    flex-grow: 1;
    background-color: #fff;
    padding: 16px;
    box-shadow: 1px 1px 4px 0px #A6A39D80;
}

.vinos-destacados .item h5 {
    margin: 20px 0 10px;
}

.vinos-destacados .item p {
    color: #686765;
    font-size: 18px;
    line-height: 120%;
    flex-grow: 1;
}

.vinos-destacados .item .bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}

.vinos-destacados .item .precio {
    margin: 0;
    color: #A35B52;
    font-family: 'Crimson Text', serif;
    font-size: 30px;
}

.btn-wgray10-outline a {
    border: 1px solid #817364;
    color: #817364;
    padding: 14px 24px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none!important;
    display: inline-block;
}

.btn-wgray10-outline a:hover {
    color: #A6A39D;
    border-color: #A6A39D;
}

.btn-wgray10-outline a:active {
    color: #686765;
    border-color: #686765;
}

.vinos-destacados .item img {
    aspect-ratio: 8/5;
    object-fit: contain;
}

/* Mobile horizontal scroll */
@media (max-width: 1024px) {
    .vinos-destacados .grilla-items {
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    .vinos-destacados .grilla-items::-webkit-scrollbar {
        height: 4px;
    }
    
    .vinos-destacados .grilla-items::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .vinos-destacados .grilla-items::-webkit-scrollbar-thumb {
        background: #A6A39D;
        border-radius: 2px;
    }
    
    .vinos-destacados .item {
        flex: 0 0 300px;
        width: 300px;
    }
}

@media (min-width: 1025px) {
    .vinos-destacados .grilla-items {
        gap: 45px;
        justify-content: space-between;
    }
    .vinos-destacados .item {
        flex-basis: 31%;
        flex-shrink: 1;
        flex-grow: 0;
        height: unset!important;
        margin-bottom: 5px;
    }
}