/* ===== HEADER BASE ===== */
.topper-new {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); /* subtle depth */
    position: relative;
    z-index: 999;
}

.top-bar-new {
    padding: 16px 0;
}

/* ===== LOGO ===== */
.top-logo-new img {
    height: 86px;
    width: auto;
    transition: 0.3s ease;
}

/* Slight hover = premium feel */
.top-logo-new img:hover {
    transform: scale(1.02);
}

/* ===== SOCIAL AREA ===== */
.top-social-new {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    /* gap: 14px; */
    margin-top: 25px;
}

/* ===== BUTTONS (UPGRADED) ===== */
.social-btn-new {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    color: #555;
    transition: all 0.25s ease;
    position: relative;
}

/* Facebook */
.social-btn-new.fb i {
    color: #1877f2;
}

/* Gmail */
.social-btn-new.gmail i {
    color: #d44638;
}

/* HOVER = CLEAN + SHARP */
.social-btn-new:hover {
    background: #f9f9f9;
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

.social-btn-new + .social-btn-new {
    position: relative;
    margin-left: 16px;
}

/* the line */
.social-btn-new + .social-btn-new::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 24px;
    background: #e5e5e5;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
    .top-bar-new {
        padding: 10px 0;
    }

    .top-logo-new img {
        height: 60px;
    }
}