/* ══ MANDATORY HERBALIFE COMPLIANCE SPLASH ══ */
.compliance-splash-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Reduced intensity for less jarring feel */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    backdrop-filter: blur(4px); /* Subtler blur */
    -webkit-backdrop-filter: blur(4px);
    transition: opacity 0.4s ease, visibility 0.4s;

}

.compliance-splash-modal {
    background: linear-gradient(135deg, #0d2e1e 0%, #08261b 100%);
    width: 90%;
    max-width: 550px;
    padding: 50px 40px;
    border-radius: 24px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.compliance-splash-modal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.compliance-logo {
    background: #d4af37;
    color: #111;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 12px;
    margin: 0 auto 25px;
}

.compliance-splash-modal h2 {
    color: #d4af37 !important;
    font-size: 1.6rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.compliance-status {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.compliance-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.compliance-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 35px;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.compliance-btn {
    background: #d4af37;
    color: #111;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compliance-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

@media (max-width: 820px) {
    .compliance-splash-overlay {
        display: none !important;
    }
}

/* ══ MANDATORY PROMINENT IDENTIFICATION ══ */
.id-branding-prominent {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #1B6B3A;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(27, 107, 58, 0.08);
}

.id-branding-prominent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 107, 58, 0.15);
    background: #fdfdfd;
}

.id-logo-graphic {
    height: 45px;
    width: auto;
    display: block;
}

.id-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.id-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1B6B3A;
}

.id-label {
    font-size: 0.7rem;
    color: #777;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.id-contact-meta {
    font-size: 0.65rem;
    color: #999;
    font-weight: 600;
    margin-top: 2px;
}

/* Fix for sub-pages where badges were too small */
header .id-badge-tooltip {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
}

@media (max-width: 991px) {
    .id-branding-prominent {
        padding: 8px 12px;
        gap: 10px;
    }
    .id-logo-graphic {
        height: 35px;
    }
    .id-name {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .id-branding-prominent {
        border-width: 1px;
    }
    .id-info {
        display: none; /* Icon only on very small headers if needed, but we should aim for text visibility */
    }
    .id-branding-prominent::after {
        content: 'Distributor';
        font-size: 0.7rem;
        font-weight: 800;
        color: #1B6B3A;
        text-transform: uppercase;
    }
}

