/* ──────────────────────────────────────────
 * Incotec Infobar
 * ────────────────────────────────────────── */

.incotec-infobar {
    width: 100%;
    padding: 12px 24px;
    z-index: 9999;
    font-family: "Montserrat", sans-serif;
}

.incotec-infobar--sticky {
    position: sticky;
    top: 0;
}

.incotec-infobar__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.incotec-infobar__text {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.4;
}

.incotec-infobar__button {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.incotec-infobar__button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

.incotec-infobar__dismiss {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
    line-height: 0;
}

.incotec-infobar__dismiss:hover {
    color: #ffffff;
}

/* ──────────────────────────────────────────
 * Responsive
 * ────────────────────────────────────────── */

@media (max-width: 767px) {
    .incotec-infobar {
        padding: 10px 16px;
    }

    .incotec-infobar__inner {
        gap: 10px;
    }

    .incotec-infobar__text {
        font-size: 13px;
    }

    .incotec-infobar__button {
        font-size: 12px;
        padding: 5px 14px;
    }
}
