/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 15 2026 | 06:58:44 */
/* --- RECOMMENDATIONS SLIDER - PRO FIX --- */
.reco-section {
    margin-top: 60px !important;
    padding: 0 15px !important;
    position: relative !important;
    z-index: 100 !important; /* Fixed: Now stays in front of background */
}

.reco-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 25px !important;
}

.reco-icon { 
    width: 22px !important; 
    height: 22px !important; 
    color: #ff2e63 !important; 
    filter: drop-shadow(0 0 5px rgba(255, 46, 99, 0.4)) !important;
}

.reco-header h3 { 
    font-size: 19px !important; 
    font-weight: 800 !important; 
    letter-spacing: -0.5px !important;
    color: #fff !important; 
}

/* SLIDER CORE FIX */
.reco-slider {
    display: flex !important;
    gap: 15px !important;
    overflow-x: auto !important;
    padding-bottom: 25px !important;
    scrollbar-width: none !important;
    scroll-behavior: smooth !important;
}

.reco-slider::-webkit-scrollbar { display: none !important; }

.reco-item {
    flex: 0 0 140px !important; /* Fixed width mobile */
    display: flex !important;
    flex-direction: column !important;
}

@media (min-width: 1024px) {
    .reco-item { flex: 0 0 190px !important; }
}

/* FORCE UNIFORM POSTER HEIGHT */
.reco-poster {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 2 / 3 !important; /* Strict vertical ratio */
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: #000 !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
}

.reco-poster img { 
    width: 100% !important; 
    height: 100% !important; 
    object-fit: cover !important; /* Prevents image stretching */
    transition: transform 0.5s ease !important;
}

.reco-item:hover .reco-poster img {
    transform: scale(1.1) !important;
}

/* FIX TITLE MISALIGNMENT */
.reco-title {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important; /* Max 2 lines */
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    margin-top: 12px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #9ca3af !important;
    text-align: center !important;
    line-height: 1.4 !important;
    height: 36px !important; /* Fixed height for text area */
}

.reco-item:hover .reco-title {
    color: #fff !important;
}

/* GLASS OVERLAY ON HOVER */
.reco-overlay {
    position: absolute !important;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(155, 89, 182, 0.3) !important; /* Glassy purple */
    display: flex !important; align-items: center; justify-content: center;
    opacity: 0 !important; transition: 0.3s !important;
    backdrop-filter: blur(2px) !important;
}

.reco-item:hover .reco-overlay { opacity: 1 !important; }
.reco-overlay svg { width: 40px !important; height: 40px !important; color: #fff; }

/* DOTS INDICATOR STYLING */
.reco-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 0 !important;
}

.reco-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease !important;
}

.reco-dot.active {
    width: 20px !important; /* Stretched pill look */
    background: var(--accent) !important;
    border-radius: 10px !important;
    box-shadow: 0 0 8px var(--accent) !important;
}