        :root {
            --gold-light: #FFF5E0;
            --gold-main: #FFD700;
            --gold-dark: #D4AF37;
            --gold-darker: #B8860B;
            --gray-light: #F5F5F5;
            --gray-main: #E0E0E0;
            --gray-dark: #888;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

        /* Блок поиска и фильтров */

        .search-box {
            display: flex;
            align-items: center;
            background: white;
            border-radius: 8px;
            border-bottom-right-radius: 0;
            border: 2px solid;
            border-top: 0;
            border-image: linear-gradient(to right, #ffb700, #9a5800) 47% 0%;
            overflow: hidden;
        }

        .search-box input {
            flex: 1;
            border: none;
            padding: 14px 16px;
            font-size: 16px;
            outline: none;
        }

        .search-box button {
            background: linear-gradient(to right, #ffb700, #9a5800) 47% 0%;
            border: none;
            padding: 14px 20px;
            cursor: pointer;
            transition: var(--transition);
            color: black;
            font-weight: bold;
        }

        .search-box button:hover {
            background: var(--gold-dark);
        }
        

        /* Список новостей */
        .news-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .news-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .news-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .news-image {
            height: 200px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .news-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-item:hover .news-image img {
            transform: scale(1.05);
        }

        .news-category {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--gold-dark);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .news-content {
            padding: 25px;
        }

        .news-date {
            color: var(--gray-dark);
            font-size: 14px;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .news-title {
            font-size: 20px;
            font-weight: 700;
            margin: 15px 0;
            color: #222;
            line-height: 1.3;
        }

        .news-description {
            color: #555;
            margin-bottom: 25px;
            line-height: 1.6;
            font-size: 16px;
        }

        .read-more {
            display: inline-block;
            background: linear-gradient(to right, var(--gold-main), var(--gold-dark));
            color: black;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
        }

        .read-more:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
        }
@media (min-width: 730px){
    .news-list{
        margin-left: 40px;
        margin-right: 40px;
    }
}
.filter-container {
            padding: 30px;
        }



        .search-section {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .search-box {
            flex: 1;
            min-width: 300px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 16px 20px 16px 50px;
            border: none;
            border-radius: 50px;
            background: #f8f7f3;
            font-size: 1rem;
            color: #555;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            box-shadow: 0 4px 15px rgba(192, 160, 80, 0.2);
        }

        .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #c0a050;
            font-size: 1.2rem;
        }

        .filter-toggle {
            background: linear-gradient(45deg, #d4b468, #c0a050);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 16px 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 15px rgba(192, 160, 80, 0.3);
            transition: all 0.3s ease;
        }

        .filter-toggle:hover {
            background: linear-gradient(45deg, #c0a050, #b8943a);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(192, 160, 80, 0.4);
        }

        .filter-toggle i {
            transition: transform 0.3s ease;
        }

        .filters-section {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            background: #faf9f5;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .filters-section.visible {
            max-height: 800px;
            opacity: 1;
        }

        .filter-category {
            margin-bottom: 15px;
        }

        .filter-category h3 {
            color: #c0a050;
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(192, 160, 80, 0.2);
        }

        .filter-options {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .filter-option {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .filter-option input {
            width: 18px;
            height: 18px;
            accent-color: #c0a050;
            cursor: pointer;
        }

        .filter-option label {
            cursor: pointer;
            color: #555;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .filter-option:hover label {
            color: #c0a050;
        }

        .price-range {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .price-slider {
            width: 100%;
            height: 8px;
            background: #e5e0d6;
            border-radius: 4px;
            outline: none;
            -webkit-appearance: none;
        }

        .price-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #c0a050;
            cursor: pointer;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .price-values {
            display: flex;
            justify-content: space-between;
            color: #777;
            font-size: 0.9rem;
        }

        .buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }

        .btn {
            padding: 14px 35px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-apply {
            background: linear-gradient(45deg, #d4b468, #c0a050);
            color: white;
            box-shadow: 0 4px 15px rgba(192, 160, 80, 0.3);
        }

        .btn-apply:hover {
            background: linear-gradient(45deg, #c0a050, #b8943a);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(192, 160, 80, 0.4);
        }

        .btn-reset {
            background: transparent;
            border: 2px solid #d4b468;
            color: #c0a050;
        }

        .btn-reset:hover {
            background: rgba(192, 160, 80, 0.05);
        }

        @media (max-width: 768px) {

            

            
            .filter-toggle {
                width: 100%;
                justify-content: center;
            }
            
            .buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .filter-container {
                padding: 20px 15px;
            }
            
            .filters-section {
                padding: 15px;
            }
        }


.blog-btn-height{
    max-height: 80px;
}

.loading-indicator {
    margin: 20px 0;
    font-size: 1.2em;
    color: var(--primary);
}

.loading-indicator i {
    margin-right: 10px;
}