﻿/*
Skin Name: PowerBB Bar Carousel Theme
Description: Special Horizontal Scroll Bar with Arrows & Auto-play
Version: 5.1
*/

/* 1. ضبط الحاوية الرئيسية للتصميم bar */
.theme-bar.slider-wrapper {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 45px !important;
    box-sizing: border-box !important;
    background: transparent !important;
    border: none !important;
    overflow: hidden !important;
}

/* 2. تحويل منطقة العرض لشريط أفقي */
.theme-bar .pbb-bar-carousel {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
    width: 100% !important;
    height: auto !important;
    min-height: 270px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    background: transparent !important;
    padding: 10px 0 !important;
    scrollbar-width: none; /* إخفاء شريط السكرول للـ Firefox */
}

.theme-bar .pbb-bar-carousel::-webkit-scrollbar {
    display: none; /* إخفاء شريط السكرول لـ Chrome/Safari */
}

/* 3. تنسيق بطاقات الصور */
.theme-bar .pbb-bar-carousel a,
.theme-bar .pbb-bar-carousel img,
.theme-bar .pbb-bar-carousel > a > img {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 180px !important;
    min-width: 180px !important;
    height: 260px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.theme-bar .pbb-bar-carousel a:hover img,
.theme-bar .pbb-bar-carousel img:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4) !important;
}

/* 4. تنسيق أسهم التنقل (السابق والتالي) */
.theme-bar .pbb-bar-btn {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 38px !important;
    height: 38px !important;
    background: #e74c3c !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    z-index: 99 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3) !important;
    transition: background 0.2s, transform 0.2s !important;
}

.theme-bar .pbb-bar-btn:hover {
    background: #c0392b !important;
    transform: translateY(-50%) scale(1.1) !important;
}

.theme-bar .pbb-bar-prev { left: 5px !important; }
.theme-bar .pbb-bar-next { right: 5px !important; }