        .blog {
            font-family: 'Montserrat', sans-serif;
            line-height: 1.8;
            color: #333;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff;
        }

        .blog h1 {
            font-size: 36px;
            font-weight: 400;
            color: #222;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 25px;
        }

        .blog h2 {
            font-size: 26px;
            font-weight: 600;
            color: #222;
            margin-top: 50px;
            margin-bottom: 25px;
            position: relative;
            padding-left: 20px;
        }

        .blog h2::before {
            content: "";
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 4px;
            background-color: #222;
        }

        .blog p {
            font-size: 17px;
            margin-bottom: 25px;
            color: #4a4a4a;
            text-align: left;
        }

        /* Блок автора */
        .blog .author-meta {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            color: #888;
            font-size: 14px;
        }

        .blog .author-meta img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .blog .author-info b {
            display: block;
            color: #333;
            font-size: 16px;
        }

        .blog .read-time {
            margin-left: auto;
            font-style: italic;
        }

        /* Изображения */
        .blog .img-container {
            margin: 45px 0;
            text-align: center;
        }

        .blog .img-container img {
            display: block;
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .blog .img-caption {
            font-size: 14px;
            color: #999;
            margin-top: 15px;
            font-style: italic;
        }

        /* Списки - исправлены двойные точки */
        .blog ul {
            padding: 0;
            margin: 30px 0;
            list-style: none !important;
        }

        .blog ul li {
            list-style-type: none !important;
            margin-bottom: 18px;
            font-size: 17px;
            color: #444;
            padding-left: 25px;
            position: relative;
        }

        .blog ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #222;
            font-weight: bold;
        }

        .blog ul li b {
            font-weight: 600;
            color: #111;
        }

        /* Цитаты */
        .blog .quote-box {
            background-color: #f9f9f9;
            padding: 35px;
            margin: 50px 0;
            border-left: 5px solid #222;
            font-style: italic;
            font-size: 18px;
            color: #555;
            position: relative;
        }

        /* Подвал статьи */
        .blog .article-footer {
            margin-top: 70px;
            padding: 40px;
            background-color: #222;
            color: #fff;
            text-align: center;
            border-radius: 4px;
        }

        .blog .article-footer strong {
            display: block;
            font-size: 22px;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .blog .article-footer p {
            color: #ccc;
            margin-bottom: 0;
            text-align: center;
        }
        .blog .gift-ideas {
            background-color: #fdf5e6;
            border-left: 4px solid #d2b48c;
            padding: 15px;
            margin: 20px 0;
        }
        .blog .gift-ideas h3 {
            color: #8B4513;
            margin-top: 0;
        }
        .blog .gift-ideas ul {
            list-style: none !important;
            padding-left: 0;
        }
        .blog .gift-ideas ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 0.5em;
        }
        .blog .gift-ideas ul li::before {
            content: '🎁';
            position: absolute;
            left: 0;
            top: 0;
        }


/* Все стили ограничены областью .blog */
.blog .toc-container {
    background: #f8fcf7;
    border-left: 4px solid #48a72b;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
}

.blog .toc-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #2d5a1b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog .toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog .toc-list li {
    margin-bottom: 8px;
}

.blog .toc-list a {
    text-decoration: none;
    color: #3d7a24;
    transition: color 0.3s;
}

.blog .toc-list a:hover {
    color: #48a72b;
    text-decoration: underline;
}

/* Стили для карточек сортов/букетов */
.blog .variety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.blog .variety-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.blog .variety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.blog .variety-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.blog .variety-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog .variety-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog .variety-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.blog .variety-desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog .variety-price-row {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog .variety-price {
    font-weight: bold;
    color: #48a72b;
    font-size: 1.1rem;
}

.blog .btn-order {
    background: #48a72b;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background 0.3s, transform 0.2s;
    border: none;
    display: inline-block;
    text-align: center;
}

.blog .btn-order:hover {
    background: #3d8c24;
    transform: scale(1.05);
}

/* Дополнительные акценты */
.blog .highlight-box {
    background: #f4faf2;
    border: 1px dashed #48a72b;
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
}

.blog .quote-box {
    border-left: 4px solid #48a72b;
    background: #f9f9f9;
    padding: 15px 20px;
    font-style: italic;
    margin: 20px 0;
}

        /* Адаптивность */
        @media (max-width: 768px) {
            .blog h1 { font-size: 28px; }
            .blog h2 { font-size: 22px; }
            .blog p, .blog ul li { font-size: 16px; }
            .blog .author-meta { flex-wrap: wrap; }
            .blog .read-time { margin-left: 0; margin-top: 10px; width: 100%; }
        }

.table-of-contents {
    border: 1px solid #e0e0e0;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.table-of-contents h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #d4a574;
    padding-bottom: 10px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.table-of-contents li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}

.table-of-contents a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: #d4a574;
    text-decoration: underline;
}


/* ============================================
   ГАЛЕРЕИ ИЗОБРАЖЕНИЙ
   ============================================ */

.blog-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
    padding: 20px;
    background-color: #fafafa;
    border-radius: 8px;
    border: 1px solid #efefef;
}

.gallery-item {
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background-color: #fff;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .blog-gallery {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
        padding: 15px;
    }
    
    .gallery-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .blog-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .gallery-item img {
        height: 150px;
    }
}


/* ============================================
   УЛУЧШЕННЫЕ СТИЛИ ДЛЯ ОСНОВНОГО КОНТЕНТА
   ============================================ */

.blog-content h2 {
    margin-top: 35px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a574;
    color: #333;
    font-size: 1.6em;
    font-weight: 600;
}

.blog-content h3 {
    margin-top: 25px;
    margin-bottom: 12px;
    color: #444;
    font-size: 1.3em;
    font-weight: 600;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
    font-size: 1em;
}

.blog-content ul {
    list-style: none;
    margin-left: 0;
    margin-bottom: 20px;
    padding-left: 0;
}

.blog-content ul li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.blog-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
    font-size: 1.1em;
}

.blog-content a {
    color: #a0522d;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.blog-content a:hover {
    color: #d4a574;
    border-bottom: 1px solid #d4a574;
}


/* ============================================
   БЛОК АВТОРА
   ============================================ */

.author-meta {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #efefef;
}

.author-meta img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
    display: block;
}

.author-info {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 8px;
}

.author-info b {
    color: #333;
    font-weight: 600;
}

.author-info span {
    color: #999;
    margin-left: 10px;
}

.read-time {
    display: inline-block;
    font-size: 0.9em;
    color: #999;
    font-style: italic;
}


/* ============================================
   ИЗОБРАЖЕНИЯ В СТАТЬЕ
   ============================================ */

.blog-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.blog-image:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.blog-image.collage {
    border: 2px solid #d4a574;
    max-width: 600px;
}


/* ============================================
   ВЫДЕЛЕНИЕ ВАЖНОГО ТЕКСТА
   ============================================ */

.blog-content strong,
.blog-content b {
    color: #333;
    font-weight: 600;
}

.blog-content em,
.blog-content i {
    color: #666;
    font-style: italic;
}


/* ============================================
   БЛОК С ВЫВОДАМИ
   ============================================ */

.blog-insights {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff5f0;
    border-left: 4px solid #d4a574;
    border-radius: 4px;
}

.blog-insights h3 {
    margin-top: 0;
    color: #333;
    border-bottom: none;
}

.blog-insights ul {
    list-style: none;
    padding-left: 0;
}

.blog-insights li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.blog-insights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4a574;
    font-weight: bold;
}


/* ============================================
   АДАПТИВНОСТЬ
   ============================================ */

@media (max-width: 768px) {
    .table-of-contents {
        padding: 15px;
        margin-bottom: 25px;
    }
    
    .table-of-contents h3 {
        font-size: 1em;
    }
    
    .blog-content h2 {
        font-size: 1.4em;
        margin-top: 25px;
    }
    
    .blog-content h3 {
        font-size: 1.15em;
    }
    
    .blog-image.collage {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .table-of-contents {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .table-of-contents li {
        margin-bottom: 6px;
        font-size: 0.95em;
    }
    
    .blog-content h2 {
        font-size: 1.3em;
        margin-top: 20px;
        margin-bottom: 12px;
    }
    
    .blog-content p {
        font-size: 0.95em;
    }
    
    .blog-gallery {
        gap: 10px;
    }
}