



.yohggv-recomed-div {
    margin: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed rgba(102, 126, 234, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.yohggv-recomed-div:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(118, 75, 162, 0.8);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.recommend-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0px;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-image 0.3s ease;
    border: 2px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), linear-gradient(90deg, #667eea, #764ba2);
}

.recommend-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    background-image: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), linear-gradient(90deg, #764ba2, #667eea);
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.recommend-item img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.recommend-item-info{
    display: flex;
    flex-direction: column;
    padding: 15px 5px 10px;
    align-items: center;
    text-align: center;
    width: 100%;
}

.recommend-item-info h3 {
    color: #667eea;
    font-size: 1rem;
    margin: 0px 0px 8px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.recommend-item-info p {
    color: #5A5A5A;
    font-size: 0.8rem;
    margin: 0px 0px 15px;
    line-height: 1.4;
    width: 100%;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 38px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.recommend-item-btn img {
    width: 28px;
    height: 16px;
    box-shadow: none;
}

.yohggv-recommend-content{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 15px 10px;
}

.yohggv-recommend-content img {
    width: 100%;
}

.yohggv-recommend-content-hot{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px dashed rgba(102, 126, 234, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.yohggv-recommend-content-hot:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(118, 75, 162, 0.8);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.yohggv-recommend-content-hot img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}




