        .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%; }
        }