/* ═══════════════════════════════════════════════════════════════════════════
   PREMIUM DIVIDER LINE
   ═══════════════════════════════════════════════════════════════════════════ */
.productsDividerWrapper {
                display: flex;
                justify-content: center;
                align-items: center;
    padding: clamp(20px, 3vw, 32px) clamp(20px, 5vw, 60px);
}

.productsDividerLine {
    width: 100%;
    max-width: 280px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 102, 255, 0.08) 15%,
        rgba(0, 102, 255, 0.18) 35%,
        rgba(0, 102, 255, 0.25) 50%,
        rgba(0, 102, 255, 0.18) 65%,
        rgba(0, 102, 255, 0.08) 85%,
        transparent 100%
    );
    border-radius: 4px;
                position: relative;
}

.productsDividerLine::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANGUAGES SECTION - Premium Carousel Design 2025
   ═══════════════════════════════════════════════════════════════════════════ */
.productsLanguagesWrapper {
    text-align: center;
    padding-top: clamp(8px, 1.5vw, 14px);
    padding-bottom: clamp(28px, 4vw, 40px);
}

.productsLanguagesText {
    font-family: 'DM Sans', sans-serif;
    font-size: 19px;
    font-weight: 400;
    color: #374151;
    line-height: 1.7;
    letter-spacing: 0.2px;
    max-width: 920px;
    margin: 0 auto clamp(20px, 3vw, 32px) auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLAGS CAROUSEL - Premium UI/UX with Arrows
   ═══════════════════════════════════════════════════════════════════════════ */
.flagsCarouselContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 2vw, 24px);
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(10px, 2vw, 20px);
                    position: relative;
}

/* Arrow Buttons - Premium Glass Design */
.flagsCarouselArrow {
    flex-shrink: 0;
    width: clamp(42px, 5vw, 52px);
    height: clamp(42px, 5vw, 52px);
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
    box-shadow: 
        0 4px 16px rgba(0, 60, 120, 0.1),
        0 2px 6px rgba(0, 60, 120, 0.06),
        inset 0 1px 0 rgba(255,255,255,1),
        inset 0 -1px 0 rgba(0,0,0,0.03);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.flagsCarouselArrow::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 40%, rgba(0, 102, 204, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.flagsCarouselArrow svg {
    width: clamp(20px, 2.5vw, 26px);
    height: clamp(20px, 2.5vw, 26px);
    stroke: #1e3a5f;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.flagsCarouselArrow:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(240,248,255,0.98) 100%);
    box-shadow: 
        0 8px 28px rgba(0, 102, 204, 0.18),
        0 4px 12px rgba(0, 60, 120, 0.08),
        inset 0 1px 0 rgba(255,255,255,1);
}

.flagsCarouselArrow:hover::before {
    opacity: 1;
}

.flagsCarouselArrow:hover svg {
    stroke: #0066cc;
    transform: scale(1.1);
}

.flagsCarouselArrow:active {
    transform: scale(0.96);
    box-shadow: 
        0 2px 8px rgba(0, 60, 120, 0.12),
        inset 0 2px 4px rgba(0,0,0,0.04);
}

.flagsCarouselArrow--prev:hover svg {
    transform: scale(1.1) translateX(-2px);
}

.flagsCarouselArrow--next:hover svg {
    transform: scale(1.1) translateX(2px);
}

/* Viewport - Masked Container */
.flagsCarouselViewport {
    flex: 1;
    max-width: 860px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    padding: 12px 0;
}

/* Subtle edge fade effect */
.flagsCarouselViewport::before,
.flagsCarouselViewport::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 5;
    pointer-events: none;
}

.flagsCarouselViewport::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}

.flagsCarouselViewport::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,0.9) 0%, transparent 100%);
}

/* Track - Contains all flags */
.flagsCarouselTrack {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 22px);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
    padding: 4px 0;
    transform: translateX(0);
}

/* Flag Images - Premium Style */
.flagsCarouselTrack img {
    width: clamp(42px, 4.5vw, 52px);
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    border-radius: 6px;
    filter: saturate(1) brightness(1);
    opacity: 1;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.flagsCarouselTrack img:hover {
    transform: translateY(-5px) scale(1.12);
    filter: saturate(1.15) brightness(1.02);
    box-shadow: 
        0 12px 28px rgba(0, 102, 204, 0.18),
        0 4px 8px rgba(0,0,0,0.08);
    z-index: 10;
    position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLAGS CAROUSEL - Responsive Design (Premium Mobile UI/UX)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 900px) {
    .flagsCarouselContainer {
        gap: 16px;
    }
    
    .flagsCarouselViewport {
        max-width: 680px;
    }
    
    .flagsCarouselTrack img {
        width: clamp(38px, 5vw, 46px);
    }
}

/* Mobile - Premium Centered Design */
@media (max-width: 767px) {
    .productsDividerWrapper {
        padding: 28px 16px;
    }
    
    .productWrapper {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    .productsDividerLine {
        width: 200px;
        max-width: 200px;
        min-width: 200px;
    }
    
    .productsDividerLine::before {
        width: 10px;
        height: 10px;
    }
    
    .productsLanguagesWrapper {
        padding: 0 12px;
        padding-top: 0;
        padding-bottom: 28px;
    }
    
    .productsLanguagesText {
        font-size: 18px;
        line-height: 1.6;
        padding: 0 8px;
        margin-bottom: 20px;
    }
    
    .flagsCarouselContainer {
        gap: 10px;
        padding: 0 10px;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .flagsCarouselArrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .flagsCarouselArrow svg {
        width: 20px;
        height: 20px;
    }
    
    .flagsCarouselViewport {
        max-width: calc(100% - 108px);
        border-radius: 12px;
        overflow: hidden;
        padding: 8px 0;
    }
    
    .flagsCarouselViewport::before,
    .flagsCarouselViewport::after {
        width: 20px;
    }
    
    .flagsCarouselTrack {
        gap: 14px;
    }
    
    .flagsCarouselTrack img {
        width: 50px;
        border-radius: 5px;
    }
    
    .flagsCarouselTrack img:hover {
        transform: translateY(-3px) scale(1.08);
    }
}

/* Small Mobile - Extra clarity */
@media (max-width: 480px) {
    .productsLanguagesText {
        font-size: 18px;
        line-height: 1.55;
        padding: 0 4px;
    }
    
    .flagsCarouselContainer {
        gap: 8px;
        max-width: 100%;
        padding: 0 6px;
        box-sizing: border-box;
    }
    
    .flagsCarouselArrow {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
    
    .flagsCarouselArrow svg {
        width: 20px;
        height: 20px;
    }
    
    .flagsCarouselViewport {
        max-width: calc(100% - 100px);
        overflow: hidden;
    }
    
    .flagsCarouselTrack {
        gap: 14px;
    }
    
    .flagsCarouselTrack img {
        width: 48px;
        border-radius: 5px;
    }
            }
        
