.price-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    font-family: Arial, sans-serif;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-popup-overlay.show {
    opacity: 1;
}

.price-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.price-popup-overlay.show .price-popup {
    transform: translate(-50%, -50%);
}

.price-popup__close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.price-popup__close:hover {
    color: #000;
    background: #f0f0f0;
}

.price-popup__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    color: var(--first-text-color);
}

.price-section {
    margin-bottom: 25px;
    padding: 20px;
    border-radius: 8px;
    background: #F1F6FB;
}

.price-section:last-child {
    margin-bottom: 0;
}

.price-section__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--first-text-color);
    padding-bottom: 5px;
}

.price-button-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.price-button-group:last-child {
    margin-bottom: 0;
}

.price-button-label {
    margin-right: 10px;
    min-width: 80px;
    color: var(--first-text-color);
}

.price-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
    min-width: 110px;
    justify-content: center;
}

.price-btn--view {
    background: var(--first-color);
    color: white;
}

.price-btn--view:hover {
    background: var(--first-hover-color);
    transform: translateY(-1px);
}

.price-btn--download {
    background: var(--second-color);
    color: white;
}

.price-btn--download:hover {
    background: #6AC04B;
    transform: translateY(-1px);
}

/* Адаптивность */
@media (max-width: 600px) {
    .price-popup {
        padding: 20px;
        width: calc(100% - 20px);
    }
    
    .price-popup__title {
        font-size: 20px;
        padding-right: 30px;
    }
    
    .price-button-group {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }
    
    .price-button-label {
        min-width: auto;
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .price-btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .price-section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .price-popup {
        padding: 15px;
    }
    
    .price-popup__title {
        font-size: 18px;
    }
    
    .price-section__title {
        font-size: 16px;
    }
}