.custom-share-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.custom-share-popup.active {
    opacity: 1;
    visibility: visible;
}

.share-popup-inner {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    position: relative;
}

.close-share-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    border: none;
    background: transparent;
    font-size: 28px;
    line-height: 1;
}

.share-social-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.share-social-list li {
    margin-bottom: 12px;
}

.share-social-list a,
.share-social-list button {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    text-decoration: none;
    background: #fff;
    color: #000;
    transition: 0.3s ease;
}

.share-social-list a:hover,
.share-social-list button:hover {
    background: #f5f5f5;
}


#advertise-message {
    margin-top: 20px;
}

#advertise-message .success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
}

#advertise-message .error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
}

.ehg-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    height: 0;
    overflow: hidden;
}

.field-error{
    color:#dc3545;
    font-size:13px;
    margin-top:6px;
    display:block;
}

.is-invalid{
    border:1px solid #dc3545 !important;
}

.success{
    background:#d4edda;
    color:#155724;
    padding:15px;
    border-radius:4px;
    margin-top:20px;
}

.error{
    background:#f8d7da;
    color:#721c24;
    padding:15px;
    border-radius:4px;
    margin-top:20px;
}