/* ========= СТРАНИЦА ПРАЙС-ЛИСТА ========= */
.price-header {
    text-align: center;
    padding: 60px 0 40px;
    background: linear-gradient(135deg, rgba(42, 125, 46, 0.1) 0%, rgba(42, 125, 46, 0.05) 100%);
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
}

.price-search-box {
    max-width: 500px;
    margin: 30px auto 0;
    position: relative;
}

.price-search-box input {
    padding: 15px 50px 15px 20px;
    border-radius: 40px;
    border: 2px solid rgba(42,125,46,0.2);
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    width: 100%;
}

.price-search-box button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    font-size: 1.2rem;
}

.price-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.price-filter-btn {
    padding: 10px 24px;
    border: 2px solid rgba(42,125,46,0.2);
    border-radius: 40px;
    background: rgba(255,255,255,0.8);
    color: #495057;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.price-filter-btn:hover {
    background: rgba(42,125,46,0.1);
    border-color: rgba(42,125,46,0.4);
    transform: translateY(-2px);
}

.price-filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.price-category {
    margin-bottom: 40px;
}

.price-category h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid rgba(42,125,46,0.2);
    font-weight: 700;
}

.price-table {
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    backdrop-filter: blur(10px);
    width: 100%;
}

.price-table th {
    background: rgba(42,125,46,0.1);
    color: var(--primary-color);
    font-weight: 700;
    padding: 15px 20px;
}

.price-table td {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    white-space: nowrap;
}

.price-note {
    font-size: 0.8rem;
    color: #6c757d;
    display: block;
}

.price-info {
    background: rgba(255,193,7,0.1);
    border-left: 4px solid #ffc107;
    padding: 25px;
    border-radius: 15px;
    margin: 40px 0;
}

.price-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 50px 0 30px;
}

.price-empty {
    text-align: center;
    padding: 60px 20px;
    background: rgba(255,255,255,0.85);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    color: #6c757d;
}

.price-empty i {
    font-size: 4rem;
    color: #dee2e6;
}