/* New Top Bar Design */
.top-navbar-new {
    background: linear-gradient(90deg, #b85883 0%, #c16d91 100%);
    min-height: 45px;
    display: flex;
    align-items: center;
}

.top-navbar-new .row {
    min-height: 45px;
}

/* Social Icons (Left Side) */
.topbar-social-new {
    gap: 8px;
}

.topbar-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff !important;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.topbar-social-icon:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    color: #fff !important;
}

/* Text Slider (Center) */
.topbar-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.topbar-text-slider-new {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.topbar-text-slider-new__list {
    position: relative;
    height: 45px;
}

.topbar-text-slider-new__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.topbar-text-slider-new__item.active {
    display: flex;
    opacity: 1;
}

.topbar-text-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.topbar-text-link:hover {
    color: #fff !important;
    text-decoration: none;
}

/* Slider Arrows */
.topbar-slider-arrow {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.topbar-slider-arrow:hover {
    opacity: 1;
    transform: scale(1.2);
}

.topbar-slider-arrow:focus {
    outline: none;
}

/* Language & Currency Dropdowns (Right Side) */
.topbar-dropdown-toggle {
    color: #fff !important;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.topbar-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff !important;
    text-decoration: none;
}

.topbar-dropdown-toggle i {
    font-size: 12px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .topbar-slider-wrapper {
        max-width: 100%;
    }

    .topbar-text-link {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .topbar-social-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .topbar-slider-arrow {
        font-size: 18px;
        padding: 6px;
    }

    .topbar-text-link {
        font-size: 12px;
    }
}
