/* Стилове за модалния прозорец за споделяне */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.share-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow: hidden;
}

.share-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.share-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-modal-close:hover {
    background: #e9ecef;
    color: #333;
}

.share-modal-body {
    padding: 10px 0;
}

.share-option {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.share-option:hover {
    background-color: #f8f9fa;
}

.share-option:last-child {
    border-bottom: none;
}

.share-option i {
    font-size: 18px;
    width: 24px;
    margin-right: 12px;
    color: #666;
}

.share-option .fa-facebook-f {
    color: #1877f2;
}

.share-option .fa-viber {
    color: #665cac;
}

.share-option .fa-facebook-messenger {
    color: #00b2ff;
}

.share-option .fa-copy {
    color: #6c757d;
}

.share-option span {
    font-size: 16px;
    color: #333;
}

/* Mobile стилове за устройства под 768px */
@media (max-width: 767px) {
    .share-modal {
        padding: 10px;
        align-items: flex-end;
    }

    .share-modal-content {
        width: 100%;
        max-width: none;
        border-radius: 16px 16px 0 0;
        max-height: 80vh;
        margin-bottom: 0;
    }

    .share-modal-header {
        padding: 16px 20px;
    }

    .share-modal-header h3 {
        font-size: 16px;
    }

    .share-modal-close {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .share-modal-body {
        padding: 5px 0 15px 0;
    }

    .share-option {
        padding: 16px 20px;
        min-height: 56px;
    }

    .share-option i {
        font-size: 20px;
        width: 28px;
        margin-right: 16px;
    }

    .share-option span {
        font-size: 17px;
        font-weight: 500;
    }

    /* По-голямо hover състояние за mobile */
    .share-option:active {
        background-color: #e9ecef;
        transform: scale(0.98);
    }
}