/* =========================================================
   FRENCHSOGOOD - SECURE PAYMENT NAV
========================================================= */

.fsg-cart-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.fsg-secure-nav {
    position: relative;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 6px !important;

    margin: 0 !important;
    padding: 0 !important;

    list-style: none !important;
}

.fsg-secure-nav::before,
.fsg-secure-nav::after {
    content: none !important;
    display: none !important;
}

.fsg-secure-item {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    height: auto;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;

    cursor: help;

    transition:
        transform 0.22s ease,
        filter 0.22s ease;
}

.fsg-secure-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    line-height: 1;

    filter: saturate(1.1);
}

.fsg-secure-tooltip {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    transform: translateX(-50%) translateY(-6px);

    z-index: 99999;

    min-width: max-content;

    padding: 7px 11px;

    background: #ffffff;
    color: #08006b;

    border: 2px solid #08006b;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;

    opacity: 0;
    pointer-events: none;

    box-shadow: 0 8px 18px rgba(0,0,0,0.22);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.fsg-secure-tooltip::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);

    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #08006b;
}

.fsg-secure-tooltip::after {
    content: "";
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);

    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #ffffff;
}

.fsg-secure-item:hover,
.fsg-secure-item:focus {
    transform: translateY(-2px) scale(1.12);
}

.fsg-secure-item:hover .fsg-secure-tooltip,
.fsg-secure-item:focus .fsg-secure-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* =========================================================
   HEADER SCROLL
========================================================= */

.fsg-header.is-scrolled .fsg-secure-icon {
    font-size: 13px;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1100px) {
    .fsg-cart-link {
        gap: 6px !important;
    }

    .fsg-secure-nav {
        gap: 5px !important;
    }

    .fsg-secure-icon {
        font-size: 13px;
    }

    .fsg-secure-tooltip {
        font-size: 11px;
        padding: 6px 9px;
    }
}

@media (max-width: 900px) {
    .fsg-cart-link {
        gap: 8px !important;
    }

    .fsg-secure-nav {
        gap: 8px !important;
    }

    .fsg-secure-icon {
        font-size: 17px;
    }

    .fsg-secure-tooltip {
        top: calc(100% + 8px);
    }
}

@media (max-width: 560px) {
    .fsg-secure-nav {
        gap: 7px !important;
    }

    .fsg-secure-icon {
        font-size: 16px;
    }
}