/* ===== VISU RECOMMENDED EXPERIMENTS CARDS CSS ===== */
.vrex-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vrex-card {
    background: #ffffff;
    border: 1px solid #DEE6ED;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    cursor: pointer;
    width: 100%;
    min-height: 318px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.vrex-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ===== IMAGE FIX - COMPLETE ===== */
.vrex-thumb {
    height: 191px;
    width: 100%;
    position: relative;
    overflow: hidden;        /* ✅ Image zoom nahi hogi */
    background: #f0f9ff;    /* Fallback color */
    display: block;
    flex-shrink: 0;
}

/* .vrex-thumb img {


/* Hover effect - optional */
.vrex-card:hover .vrex-thumb img {
    transform: scale(1.05);
}

 .vrex-category-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 70px;
        z-index: 2;
        transition: transform 0.3s ease;
    }
    
    .vrex-card:hover .vrex-category-icon {
        transform: translate(-50%, -50%) scale(1.1);
    }
.vrex-thumb.no-image .vrex-icon {
    position: static;
    transform: none;
    font-size: 56px;
    color: #475569;
    opacity: 0.9;
}
/* ===== IMAGE FIX END ===== */
 .vrex-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 500;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(4px);
        z-index: 3;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.vrex-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
}
.vrex-card {
    text-decoration: none !important;
}

.vrex-card h3 {
    text-decoration: none !important;
    border-bottom: none !important;
    margin-bottom: 0;
}

.vrex-card h3::after {
    display: none !important;
}
.vrex-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vrex-body h3 {
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #0f172a;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vrex-stats {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #475569;
    gap: 14px;
}

.vrex-stats i {
    margin-right: 4px;
}

.vrex-like {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
    padding: 6px 12px;
    border-radius: 30px;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.vrex-like:hover {
    background: #f1f5f9;
}

.vrex-like i {
    color: #94a3b8;
    transition: color .2s ease;
    font-size: 15px;
}




.vrex-like.vrex-liked i {
    color: #e11d48;
}

.vrex-like.vrex-liked:hover {
    background: #ffe4e6;
}

.like-count {
    font-weight: 600;
    color: #334155;
}

.vrex-liked .like-count {
    color: #e11d48;
}

/* ===== RESPONSIVE TABLET ===== */
@media (max-width: 1024px) {
    .vrex-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 768px) {
    .vrex-grid {
        grid-template-columns: 1fr;
        padding: 0 12px;
    }
    
    .vrex-thumb {
        height: 170px;
    }
    
    .vrex-body h3 {
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .vrex-grid {
        grid-template-columns: 1fr;
        padding: 0 12px;
    }
    
    .vrex-thumb {
        height: 160px;
    }
    
    .vrex-icon {
        font-size: 44px;
    }
    
    .vrex-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.vrex-card {
    animation: fadeIn 0.5s ease forwards;
}