/* ========== HOT RECOMMEND (3-col top section) ========== */
.rvfvdb-recommend-content-hot {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 14px 12px 8px;
    padding: 14px;
    background: var(--c-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--c-border);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.rvfvdb-recommend-content-hot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--g-sunset);
}

.rvfvdb-recommend-content-hot::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06), transparent 70%);
    pointer-events: none;
}

.rvfvdb-recommend-content-hot img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.rvfvdb-recommend-content-hot a:hover img {
    transform: scale(1.06);
}

/* ========== RECOMMEND ITEMS (legacy) ========== */
.recommend-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    margin: 15px 0;
    position: relative;
}

.recommend-item a {
    align-items: center;
    justify-self: center;
    text-decoration: none;
}

.recommend-item img {
    width: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.recommend-item-info {
    display: flex;
    flex-direction: column;
    padding: 10px;
    flex-wrap: wrap;
    position: relative;
}

.recommend-item-info h3 {
    color: var(--c-text);
    font-size: 1rem;
    margin: 0 10px;
    font-weight: 700;
}

.recommend-item-info p {
    display: flex;
    color: var(--c-text-2);
    font-size: 0.82rem;
    margin: 8px 10px;
    font-weight: 500;
}

.recommend-item-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.recommend-item-btn {
    display: flex;
    width: 100%;
    height: 34px;
    background: var(--g-sunset);
    border-radius: var(--radius-sm);
    right: 0;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
}

.recommend-item-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(255, 107, 53, 0.45);
    filter: brightness(1.1);
}

.recommend-item-btn img {
    width: 28px;
    height: 16px;
}
