.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
}
.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;

}
.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 10px;
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: #4682B4;
    font-size: 1.1rem;
    margin: 0px 10px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.recommend-item-info p {
    display: flex;
    color: #e0e0e0;
    font-size: 0.8rem;
    margin: 10px 10px;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 35px;
    background: linear-gradient(135deg, #3a3a3a, #4682B4);
    border-radius: 20px;
    right: 0px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommend-item-btn:hover {
    background: linear-gradient(135deg, #4682B4, #3a3a3a);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}
.recommend-item-btn img {
    width: 28px;
    height: 16px;

}

.vraksp-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 10px;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    color: #e0e0e0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
    border: 1px solid rgba(70, 130, 180, 0.2);
}

.vraksp-recommend-content img {
    width: 100%;
}

.vraksp-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 20px;
    padding: 15px;
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(70, 130, 180, 0.3);
    box-sizing: border-box;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.vraksp-recommend-content-hot img {
    width: 100%;
}

.vraksp-common-recommend-title{
    display: flex;
    justify-content: space-between;
    margin: 10px;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.vraksp-common-recommend-title p {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0px;
    font-weight: bold;
}
