.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;

    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    display: inline-block;
}

.nav-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;

    padding: 6px 12px;
    border-radius: 8px;

    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background: rgba(255,255,255,0.08);
    color: #ffffff;
}

/* ========================= */
/* MODERN HEADER SYSTEM */
/* ========================= */

.modern-header {
    background: linear-gradient(180deg, #020617 0%, #020617ee 100%);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

/* LEFT */
.header-left img {
    height: 38px;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
    color: #e5e7eb;
}

/* CENTER NAV */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.25s ease;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #22c55e;
    transition: 0.25s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* RIGHT */
.header-right {
    display: flex;
    justify-content: flex-end;
}

.cart-pill {
    display: flex;
    align-items: center;
    gap: 8px;

    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 999px;

    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;

    transition: 0.2s ease;
}

.cart-pill:hover {
    background: rgba(255,255,255,0.1);
}
/* =========================================================
   FORCE BUTTON INTERACTION RECOVERY
========================================================= */

button,
[type="submit"],
.pharma-btn-primary,
.sf-btn-primary{
    appearance:auto !important;
    -webkit-appearance:auto !important;

    pointer-events:auto !important;
    cursor:pointer !important;

    opacity:1 !important;
    visibility:visible !important;

    position:relative !important;
    z-index:99999 !important;

    transition:all .15s ease !important;
}

button:hover,
[type="submit"]:hover,
.pharma-btn-primary:hover,
.sf-btn-primary:hover{
    transform:scale(1.01) !important;
    filter:brightness(1.03) !important;
}

button:active,
[type="submit"]:active,
.pharma-btn-primary:active,
.sf-btn-primary:active{
    transform:scale(.98) !important;
}

button *{
    pointer-events:none !important;
}
