/* ===== Carousel العلامات التجارية ===== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.16);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #128C7E;
    color: #fff;
    transform: scale(1.10);
    box-shadow: 0 6px 24px rgba(37,211,102,0.20);
}

.brands-section {
    padding: 48px 0 32px 0;
    background: #fff;
    direction: rtl;
} 
.brands-title {
    text-align: center;
    color: #2d2d2d;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: 0.5px;
    font-family: inherit;
} 
.brands-title .underline {
    display: block;
    width: 44px;
    height: 4px;
    background: #f2b200;
    margin: 8px auto 0 auto;
    border-radius: 2px;
} 
.brands-carousel-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
} 

.brands-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.98);
    color: #222;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, background 0.2s, box-shadow 0.2s, color 0.2s, border 0.2s;
    font-size: 1.5rem;
    border: 2px solid transparent;
} 
.brands-arrow:focus,
.brands-arrow:hover {
    background: #fffbe9;
    color: #f2b200;
    opacity: 1;
    border-color: #f2b200;
    box-shadow: 0 6px 18px rgba(242,178,0,0.08);
} 
.brands-arrow.brands-arrow-right {
    right: 8px;
} 
.brands-arrow.brands-arrow-left {
    left: 8px;
} 
.brands-carousel-container:hover .brands-arrow {
    opacity: 1;
} 

.brands-section[dir="rtl"] .brands-arrow.brands-arrow-right {
    right: 8px;
    left: auto;
} 
.brands-section[dir="rtl"] .brands-arrow.brands-arrow-left {
    left: 8px;
    right: auto;
} 
@media (max-width: 768px) {
    .brands-arrow {
        display: none;
    } 
} 
@media (max-width: 1200px) {
    .brands-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    } 
} 

.brands-carousel {
    display: flex;
    flex-direction: row;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
} 
.brands-carousel::-webkit-scrollbar {
    display: none;
} 
.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    max-width: 90px;
    flex: 0 0 80px;
} 
.brand-logo {
    height: 90px;
    width: auto;
    margin-bottom: 7px;
    object-fit: contain;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 6px rgba(0,0,0,0.04);
    padding: 4px 10px;
} 
.brand-label {
    display: none !important;
    font-size: 13px;
    color: #2d2d2d;
    text-align: center;
    margin-top: 2px;
    font-weight: 500;
    white-space: nowrap;
} 
.brands-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
} 
.brands-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: background 0.3s;
    cursor: pointer;
} 
.brands-dot.active {
    background: #f2b200;
} 
@media (max-width: 1200px) {
    .brands-carousel {
        gap: 20px;
    } 
} 
@media (max-width: 992px) {
    .brands-carousel {
        gap: 14px;
    } 
    .brand-block {
        min-width: 70px;
        max-width: 80px;
        flex-basis: 70px;
    } 
} 
@media (max-width: 768px) {
    .brands-carousel {
        gap: 10px;
    } 
    .brand-block {
        min-width: 60px;
        max-width: 70px;
        flex-basis: 60px;
    } 
} 
