/* ================================================================
   Plantsky — Plant Pages Styles (Dark Theme)
   Catalog, Plant Detail, Instructions
   ================================================================ */

/* ── Page Title ───────────────────────────────────────────────── */
.page-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-heading);
}

/* ── Catalog Layout ───────────────────────────────────────────── */
.catalog-section {
    padding-top: 2rem;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    align-items: flex-start;
}

/* ── Search Input ─────────────────────────────────────────────── */
.search-input {
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    color: var(--text-color);
    transition: all var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--wasabi);
    box-shadow: 0 0 0 3px rgba(128, 144, 118, 0.2);
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-bar {
    margin-bottom: 1.5rem;
}

/* ── Filter Panel ─────────────────────────────────────────────── */
.filter-panel {
    position: sticky;
    top: calc(var(--nav-height) + 1rem);
}

.filter-toggle-btn {
    display: none;
    width: 100%;
    padding: 0.65rem 1rem;
    background: var(--glass-bg);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-fast);
    margin-bottom: 0.75rem;
    backdrop-filter: blur(8px);
}

.filter-toggle-btn:hover {
    border-color: var(--wasabi);
}

.filter-panel-body {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.filter-group {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.filter-group-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 0.65rem;
    font-family: 'Nunito', sans-serif;
}

.filter-checkbox,
.filter-radio {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--text-color);
    transition: color var(--transition-fast);
}

.filter-checkbox:hover,
.filter-radio:hover {
    color: var(--khaki);
}

.filter-checkbox input,
.filter-radio input {
    width: 16px;
    height: 16px;
    accent-color: var(--wasabi);
    cursor: pointer;
    flex-shrink: 0;
}

.filter-checkbox-label,
.filter-radio-label {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.filter-icon {
    font-size: 1rem;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.tag-filter-btn {
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0.7;
}

.tag-filter-btn:hover,
.tag-filter-btn.active {
    opacity: 1;
    transform: translateY(-1px);
}

.filter-select {
    width: 100%;
    padding: 0.45rem 0.65rem;
    font-family: 'Nunito', sans-serif;
    font-size: 0.85rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--glass-bg);
    color: var(--text-color);
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--wasabi);
}

/* ── Results ──────────────────────────────────────────────────── */
.catalog-results {
    min-width: 0;
}

.results-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ── Plants Grid ──────────────────────────────────────────────── */
.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* ── Products Scroll ──────────────────────────────────────────── */
.products-scroll {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.products-scroll::-webkit-scrollbar {
    height: 6px;
}

.products-scroll::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.products-scroll>* {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 260px;
}

/* ── Section Footer ───────────────────────────────────────────── */
.section-footer {
    text-align: center;
    margin-top: 2rem;
}

.section-title-month {
    color: var(--wasabi);
    font-size: 0.75em;
}

.empty-message {
    text-align: center;
    color: var(--text-muted);
    padding: 2rem;
    font-style: italic;
}

/* ── Pagination ───────────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 2rem;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.65rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-color);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.pagination-btn:hover {
    background: var(--wasabi);
    color: var(--noir);
    border-color: var(--wasabi);
}

.pagination-btn.active {
    background: var(--wasabi);
    color: var(--noir);
    border-color: var(--wasabi);
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   PLANT DETAIL PAGE
   ══════════════════════════════════════════════════════════════ */

.plant-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: flex-end;
    background-color: var(--emerald);
    overflow: hidden;
}

/* ── Carousel ─────────────────────────────────────────────────── */
.carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.carousel-slide.active .carousel-img {
    transform: scale(1);
}

/* ── Nav buttons ─────────────────────────────────────────────── */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(13, 21, 18, 0.45);
    border: 1.5px solid rgba(232, 228, 220, 0.3);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
    background: rgba(128, 144, 118, 0.6);
    border-color: var(--wasabi);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

/* ── Dots ────────────────────────────────────────────────────── */
.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 5;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.carousel-dot.active {
    background: var(--khaki);
    transform: scale(1.35);
}

/* ── No-image fallback ───────────────────────────────────────── */
.plant-hero-no-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--noir-dark, #071009) 100%);
}

.plant-hero-icon {
    font-size: 5rem;
    opacity: 0.18;
}



/* Botanical ornament — единый фон через весь контент, без разрывов */
.plant-content,
.plant-conditions-section,
.plant-description-section,
.seed-buy-section,
.plant-encouragement-section {
    position: relative;
}

.plant-conditions-section>.container,
.plant-description-section>.container,
.plant-encouragement-section>.container,
.seed-buy-section>.container {
    position: relative;
    z-index: 1;
}

.plant-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 21, 18, 0.3) 0%, rgba(13, 21, 18, 0.85) 100%);
}

.plant-hero-content {
    position: relative;
    z-index: 2;
    padding: 3rem 1.25rem 2rem;
    color: #fff;
}

.plant-hero-title {
    color: var(--khaki);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.plant-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.plant-hero-category {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(232, 228, 220, 0.85);
    background: rgba(128, 144, 118, 0.25);
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(4px);
}

.plant-hero-time {
    font-size: 0.85rem;
    color: rgba(232, 228, 220, 0.7);
    font-weight: 600;
}

/* ── Plant Content Grid ───────────────────────────────────────── */
.plant-content {
    padding: 2rem 0;
}

.plant-content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

/* ── Step Card ────────────────────────────────────────────────── */
.step-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    padding: 2rem 2rem 2rem 4.5rem;
    margin-bottom: 1.5rem;
}

.step-number-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.25rem;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--wasabi), var(--emerald));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-value {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
}

.step-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-heading);
}

.step-content {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-content p {
    margin-bottom: 0.75rem;
}

.step-image {
    margin: 1rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.step-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Tip/Mistake Block headers ────────────────────────────────── */
.tip-block-header {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--khaki);
    margin-bottom: 0.3rem;
}

.tip-block-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-color);
}

.mistake-block-header {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--error-red);
    margin-bottom: 0.3rem;
}

.mistake-block-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    color: var(--text-color);
}

/* ── Sidebar ──────────────────────────────────────────────────── */
.plant-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 40px);
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    padding: 1.25rem;
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-heading);
}

.sidebar-products {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-product-card {
    display: flex;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.sidebar-product-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-product-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--noir-light);
}

.sidebar-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-product-placeholder {
    width: 60px !important;
    height: 60px !important;
}

.sidebar-product-info {
    flex: 1;
    min-width: 0;
}

.sidebar-product-title {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    margin-bottom: 0.15rem;
    line-height: 1.3;
}

.sidebar-product-title:hover {
    color: var(--khaki);
}

.sidebar-product-price {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--khaki);
    margin-bottom: 0.35rem;
}

.sidebar-product-buttons {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.sidebar-empty {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    padding: 1rem 0;
}

.sidebar-print-btn {
    margin-top: 1rem;
}

/* ── Seed Buy Block ──────────────────────────────────────────── */
.seed-buy-section {
    padding: 1rem 0 0;
}

.seed-buy-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
}

.seed-buy-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.seed-buy-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seed-buy-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.seed-buy-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--olive, var(--wasabi));
}

.seed-buy-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cream, var(--khaki));
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seed-buy-buttons {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .seed-buy-card {
        flex-wrap: wrap;
    }

    .seed-buy-buttons {
        width: 100%;
    }

    .seed-buy-buttons .btn {
        flex: 1;
    }
}

/* ── Plant Description Block ─────────────────────────────────── */
.plant-description-section {
    padding: 1rem 0 0;
}

.plant-description-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.plant-description-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.plant-description-heading {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--cream, var(--khaki));
}

.plant-description-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
}

.plant-description-text p:last-child {
    margin-bottom: 0;
}

/* ── Germination Conditions Block ────────────────────────────── */
.plant-conditions-section {
    padding: 1.5rem 0 0;
}

.conditions-heading {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    color: var(--cream, var(--khaki));
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.condition-item {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.condition-item-wide {
    grid-column: 1 / -1;
    justify-self: start;
    width: max-content;
    max-width: 100%;
}

.condition-icon {
    color: var(--olive, var(--wasabi));
    opacity: 0.7;
    line-height: 1;
}

.condition-icon svg {
    width: 22px;
    height: 22px;
}

.condition-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
}

.condition-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Hero Leaf Animation ──────────────────────────────────────── */
.leaf-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.leaf-animation .leaf {
    position: absolute;
    top: -30px;
    width: 20px;
    height: 20px;
    opacity: 0;
    background: rgba(248, 215, 148, 0.1);
    border-radius: 0 50% 50% 50%;
    transform: rotate(45deg);
    animation: heroLeafFall linear infinite;
}

.leaf:nth-child(1) {
    left: 8%;
    animation-duration: 10s;
    animation-delay: 0s;
    width: 14px;
    height: 14px;
}

.leaf:nth-child(2) {
    left: 22%;
    animation-duration: 13s;
    animation-delay: 1.5s;
    width: 18px;
    height: 18px;
}

.leaf:nth-child(3) {
    left: 38%;
    animation-duration: 11s;
    animation-delay: 3s;
    width: 12px;
    height: 12px;
}

.leaf:nth-child(4) {
    left: 52%;
    animation-duration: 14s;
    animation-delay: 0.5s;
}

.leaf:nth-child(5) {
    left: 65%;
    animation-duration: 12s;
    animation-delay: 2.5s;
    width: 16px;
    height: 16px;
}

.leaf:nth-child(6) {
    left: 78%;
    animation-duration: 15s;
    animation-delay: 4s;
    width: 14px;
    height: 14px;
}

.leaf:nth-child(7) {
    left: 90%;
    animation-duration: 11s;
    animation-delay: 1s;
    width: 10px;
    height: 10px;
}

.leaf:nth-child(8) {
    left: 15%;
    animation-duration: 13s;
    animation-delay: 5s;
}

.leaf:nth-child(9) {
    left: 45%;
    animation-duration: 14s;
    animation-delay: 3.5s;
    width: 16px;
    height: 16px;
}

.leaf:nth-child(10) {
    left: 72%;
    animation-duration: 12s;
    animation-delay: 6s;
    width: 12px;
    height: 12px;
}

@keyframes heroLeafFall {
    0% {
        top: -30px;
        opacity: 0;
        transform: rotate(45deg) translateX(0);
    }

    10% {
        opacity: 0.4;
    }

    50% {
        transform: rotate(180deg) translateX(60px);
    }

    90% {
        opacity: 0.2;
    }

    100% {
        top: 110%;
        opacity: 0;
        transform: rotate(360deg) translateX(-30px);
    }
}

.parallax-hero {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .parallax-hero {
        background-attachment: scroll;
    }
}

/* ── Encouragement Section ────────────────────────────────────── */
.plant-encouragement-section {
    padding: 2rem 0 3rem;
}

.encouragement-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.encouragement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 78, 54, 0.15) 0%, rgba(232, 213, 181, 0.05) 100%);
    pointer-events: none;
}

.encouragement-card:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
}

.encouragement-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: encouragePulse 3s ease-in-out infinite;
}

@keyframes encouragePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.encouragement-title {
    font-size: 1.6rem;
    color: var(--cream);
    margin-bottom: 0.75rem;
}

.encouragement-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto 1rem;
    opacity: 0.85;
}

.encouragement-emoji {
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    opacity: 0.7;
}

.plant-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--emerald);
    overflow: hidden;
}

/* ── Plant Intro Block (before steps) ────────────────────────── */
.plant-intro-block {
    position: relative;
    margin-bottom: 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(128, 144, 118, 0.35);
    background: linear-gradient(135deg,
            rgba(40, 65, 57, 0.55) 0%,
            rgba(13, 21, 18, 0.7) 60%,
            rgba(40, 65, 57, 0.4) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(128, 144, 118, 0.1);
    animation: introFadeIn 0.6s ease-out both;
}

@keyframes introFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ambient glow */
.plant-intro-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 340px;
    height: 180px;
    background: radial-gradient(ellipse at center,
            rgba(128, 144, 118, 0.22) 0%,
            transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.plant-intro-inner {
    position: relative;
    z-index: 1;
    padding: 1.75rem 2rem 1.5rem;
}

/* Header row */
.plant-intro-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.plant-intro-icon {
    font-size: 2.4rem;
    line-height: 1;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(128, 144, 118, 0.5));
    animation: introIconPulse 4s ease-in-out infinite;
}

@keyframes introIconPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.12) rotate(-4deg);
    }
}

.plant-intro-headline {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.plant-intro-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wasabi);
    opacity: 0.85;
}

.plant-intro-title {
    font-family: 'Strogo', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--khaki);
    margin: 0;
    line-height: 1.2;
}

/* Description quote */
.plant-intro-quote {
    position: relative;
    margin: 0 0 1.25rem;
    padding: 0.75rem 1rem 0.75rem 1.5rem;
    border-left: 3px solid rgba(128, 144, 118, 0.5);
    background: rgba(13, 21, 18, 0.3);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.plant-intro-quote-mark {
    position: absolute;
    top: -0.5rem;
    left: 0.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--wasabi);
    opacity: 0.35;
    pointer-events: none;
    user-select: none;
}

.plant-intro-quote-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(232, 228, 220, 0.85);
}

.plant-intro-quote-text p {
    margin-bottom: 0.5rem;
}

.plant-intro-quote-text p:last-child {
    margin-bottom: 0;
}

/* Stats row */
.plant-intro-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.1rem;
    background: rgba(13, 21, 18, 0.35);
    border-radius: var(--radius-md);
    border: 1px solid rgba(128, 144, 118, 0.2);
    margin-bottom: 1.1rem;
}

.plant-intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
    min-width: 80px;
}

.plant-intro-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--khaki);
    line-height: 1;
}

.plant-intro-stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--text-muted);
    text-align: center;
}

.plant-intro-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(128, 144, 118, 0.25);
    flex-shrink: 0;
}

/* CTA text */
.plant-intro-cta {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(232, 228, 220, 0.65);
    font-style: italic;
    text-align: center;
}

@media (max-width: 600px) {
    .plant-intro-inner {
        padding: 1.25rem 1.1rem 1rem;
    }

    .plant-intro-title {
        font-size: 1.2rem;
    }

    .plant-intro-icon {
        font-size: 1.8rem;
    }

    .plant-intro-stat-divider {
        display: none;
    }

    .plant-intro-stats {
        gap: 0.5rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .plant-content-grid {
        grid-template-columns: 1fr;
    }

    .plant-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .filter-toggle-btn {
        display: block;
    }

    .filter-panel-body {
        display: none;
    }

    .filter-panel-body.show {
        display: block;
    }

    .filter-panel {
        position: static;
    }

    .plant-hero-title {
        font-size: 1.75rem;
    }

    .plants-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1rem;
    }

    .step-card {
        padding: 1.5rem 1.25rem 1.5rem 3.5rem;
    }

    .step-number-badge {
        width: 36px;
        height: 36px;
        top: 1.25rem;
        left: 0.85rem;
    }

    .step-number-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .plants-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 1.5rem;
    }
}

/* ── Plant page body wrapper — единый паттерн без разрывов ────── */
.plant-page-body {
    position: relative;
    overflow: hidden;
}

.plant-page-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url('/images/botanical-pattern.svg');
    background-size: 1200px auto;
    background-repeat: repeat-y;
    background-position: center top;
    opacity: 0.6;
}

.plant-page-body>* {
    position: relative;
    z-index: 1;
}