:root {
    --brand-green: #24a148;
    --brand-green-hover: #1e8a3d;
    --brand-green-light: #e8f5e9;
    --brand-yellow: #ffd600;
    --brand-yellow-hover: #ffea00;
    --bg-light: #f5f7fa;
    --text-main: #2b2b2b;
    --text-muted: #7a7a7a;
    --radius-xl: 24px;
    --radius-lg: 16px;
}



body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    letter-spacing: -0.01em;
}
.text-brand-green {
    color: var(--brand-green);
}

/* Кнопка "В корзину" как у маркетплейсов */
.btn-market-buy {
    background-color: var(--brand-yellow);
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-market-buy:hover {
    background-color: var(--brand-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
}
.btn-market-buy-success {
    background-color: var(--brand-green);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.btn-market-buy-success:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--bg-light);
}

/* Header Modern */
.navbar-modern {
    background: white;
    padding: 16px 0;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.search-container {
    position: relative;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.search-container:focus-within {
    border-color: var(--brand-green);
    background: white;
    box-shadow: 0 0 0 4px rgba(36, 161, 72, 0.1);
}
.search-input {
    background: transparent;
    border: none;
    padding: 12px 20px;
    width: 100%;
    outline: none;
}
.catalog-wrapper {
    position: relative;
}
.catalog-btn {
    background: var(--brand-green);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
}
.catalog-btn:active {
    opacity: 0.8;
}



/* Выпадающее меню каталога */
.catalog-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    width: 280px;
    padding: 12px;
    transform: translateY(10px);
    transition: all 0.2s ease-out;
    z-index: 1100;
}
.catalog-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.catalog-item {
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
    font-weight: 500;
}
.catalog-item:hover {
    background: var(--brand-green-light);
    color: var(--brand-green);
}
.catalog-item-icon {
    font-size: 1.2rem;
}



/* Product Card Marketplace Style */
.market-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 12px;
    transition: all 0.3s;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.market-card:hover {
    box-shadow: 0 0 15px 5px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.card-img-wrap {
    aspect-ratio: 1/1;
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
}
.card-img-wrap img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    max-height: 286px;
    object-fit: cover;
}
.price-current {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}
.price-old {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.product-title {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-main);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.8em;
}

/* Категории */
.category-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid transparent;
    height: 100%;
}
.category-card:hover {
    background: white;
    border-color: var(--brand-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

/* Story/Category Circles */
.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    border: 2px solid var(--brand-green);
    margin-bottom: 10px;
}
.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}
.category-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

/* Footer from original (kept) */
footer {
    background: #222;
    color: #ccc;
    padding: 60px 0 20px;
}
footer h5 { color: #fff; margin-bottom: 20px; }
footer a { color: #ccc; text-decoration: none; }
footer a:hover { color: var(--brand-green); }
.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.section-title {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--brand-green);
}

.blog-mini-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-light);
    text-decoration: none;
    color: inherit;
    display: block;
    transition: 0.3s;
}
.blog-mini-card:hover {
    background: #edf2f7;
    color: inherit;
}

.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}
.hero-badge {
    background: var(--brand-green-light);
    color: var(--brand-green);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 20px;
}
.btn-brand-primary {
    background: var(--brand-green);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-brand-primary:hover {
    background: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(36, 161, 72, 0.2);
}
.btn-brand-yellow {
    background: var(--brand-yellow);
    color: var(--bs-heading-color);
    border: none;
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 700;
    transition: all 0.3s;
}
.btn-brand-yellow:hover {
    background: var(--brand-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(36, 161, 72, 0.2);
}



/* Category Page Styles */
.breadcrumb {
    font-size: 0.85rem;
    margin: 20px 0;
}
.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.filter-section {
    margin-bottom: 30px;
}
.filter-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 15px;
    display: block;
}
.filter-check {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}
.filter-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--brand-green);
}
.sort-select {
    border: none;
    font-weight: 600;
    color: var(--text-main);
    outline: none;
    cursor: pointer;
    background: transparent;
}

/* Product Page Styles */
.breadcrumb {
    font-size: 0.85rem;
    margin: 20px 0;
}
.breadcrumb-item a {
    color: var(--text-muted);
    text-decoration: none;
}

.product-gallery-main {
    aspect-ratio: 1/1;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    margin-bottom: 15px;
}
.product-gallery-main img {
    border-radius: var(--radius-xl);
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.thumb-list {
    display: flex;
    gap: 10px;
}
.thumb-item {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}
.thumb-item.active {
    border-color: var(--brand-green);
}

.purchase-card {
    border: 1px solid #eee;
    border-radius: var(--radius-xl);
    padding: 30px;
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}
.price-big {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.price-old-big {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.btn-buy-large {
    background-color: var(--brand-yellow);
    color: #000;
    border: none;
    border-radius: 16px;
    padding: 10px;
    font-weight: 800;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 20px;
    transition: all 0.2s;
}
.btn-buy-large:hover {
    background-color: var(--brand-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.4);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}
.spec-label { color: var(--text-muted); }
.spec-value { font-weight: 500; }

.rating-badge {
    background: #fff8e1;
    color: #ffa000;
    padding: 4px 10px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}




.article-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    text-decoration: none;
    color: inherit;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    color: inherit;
}

.article-img-wrap {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #ddd;
}

.article-body {
    padding: 24px;
    flex-grow: 1;
}

.article-tag {
    display: inline-block;
    background: var(--brand-green-light);
    color: var(--brand-green);
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    padding: 16px 24px;
    border-top: 1px solid #f8f8f8;
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    justify-content: space-between;
}




.main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.article-content h2 {
    font-weight: 800;
    margin-top: 40px;
    margin-bottom: 20px;
}

.quote-box {
    background: var(--brand-green-light);
    padding: 30px;
    border-radius: 20px;
    border-left: 6px solid var(--brand-green);
    margin: 40px 0;
    font-style: italic;
    font-weight: 500;
}

.author-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 24px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.author-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #24a148;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.btn-share {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: 0.2s;
}

.btn-share:hover {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
}





/* Cart Specific Styles */
.cart-container {
    margin-top: 40px;
    margin-bottom: 80px;
}
.cart-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cart-item:last-child {
    border-bottom: none;
}
.cart-item-img {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-right: 20px;
}
.cart-item-img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.cart-item-info {
    flex-grow: 1;
}
.cart-item-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-main);
    text-decoration: none;
}
.cart-item-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Quantity Controls */
.qty-control {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 4px;
    margin: 0 30px;
}
.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: 0.2s;
}
.qty-btn:hover {
    background: #eee;
}
.qty-val {
    padding: 0 15px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.cart-item-price {
    text-align: right;
    min-width: 120px;
}
.price-now {
    font-weight: 800;
    font-size: 1.2rem;
}
.price-was {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Summary Sidebar */
.summary-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
.summary-total {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 20px;
    font-weight: 800;
    font-size: 1.5rem;
}

.btn-checkout {
    background: var(--brand-yellow);
    color: black;
    border: none;
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: all 0.2s;
}
.btn-checkout:hover {
    background: var(--brand-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.3);
}

.delivery-pill {
    background: var(--brand-green-light);
    color: var(--brand-green);
    padding: 12px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}


.profile-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}
.nav-pills-custom .nav-link {
    color: var(--text-main);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.2s;
}

.nav-pills-custom .nav-link.active {
    background-color: var(--brand-green-light);
    color: var(--brand-green);
}

.nav-pills-custom .nav-link:hover:not(.active) {
    background-color: #f0f0f0;
}

.avatar-circle {
    width: 80px;
    height: 80px;
    background: var(--brand-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.bonus-badge {
    background: linear-gradient(135deg, #ffd600 0%, #ffab00 100%);
    color: #000;
    padding: 20px;
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-item {
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}

.order-item:hover {
    border-color: var(--brand-green);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-delivered { background: #e8f5e9; color: #2e7d32; }
.status-processing { background: #fff3e0; color: #ef6c00; }

.order-thumb {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.order-thumb img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 8px;
}




.checkout-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--brand-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-right: 12px;
}

.form-label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 12px;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    background: #fafafa;
}

.form-control:focus {
    border-color: var(--brand-green);
    box-shadow: 0 0 0 4px var(--brand-green-light);
    background: white;
}
.form-check-input:checked {
    background-color: var(--brand-green);
    border-color: var(--brand-green);
}

.method-card {
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
    height: 100%;
}

.method-card.active {
    border-color: var(--brand-green);
    background: var(--brand-green-light);
}

.summary-sticky {
    position: sticky;
    top: 24px;
}

.btn-confirm {
    background: var(--brand-yellow);
    color: black;
    border: none;
    width: 100%;
    padding: 18px;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-confirm:hover {
    background: var(--brand-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 214, 0, 0.3);
}

.order-mini-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-mini-img {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.order-mini-img img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
}



.auth-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: none;
}
.btn-success {
    background-color: var(--brand-green);
    border: none;
    padding: 12px;
    font-weight: 700;
}

.btn-success:hover {
    background-color: var(--brand-green-hover);
}


[x-cloak] { display: none !important; }

.catalog-dropdown {
    position: absolute;
}


.spinner-wrap {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,255,255,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}
.spinner-wrap_bord {
    width: 3rem;
    height: 3rem;
}



.hover-bg-light:hover { background-color: #f8f9fa; }
.last-child-no-border:last-child { border-bottom: 0 !important; }
.z-3 { z-index: 1050; }




.status-badge {
    background: var(--brand-green-light);
    color: var(--brand-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.product-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.product-item:last-child {
    border-bottom: none;
}

.product-img {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}
.product-img img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    border-top: 2px solid #f1f1f1;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 1.25rem;
    font-weight: 800;
}

.btn-outline-custom {
    border: 2px solid #eee;
    border-radius: 12px;
    font-weight: 600;
    color: #666;
    transition: 0.2s;
}

.btn-outline-custom:hover {
    background: #f8f9fa;
    border-color: #ddd;
}
/* Обновленный таймлайн через список */
.timeline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 25px;
    border-left: 2px solid var(--brand-green); /* Активная линия по умолчанию */
}

.timeline-item:last-child {
    border-left: 2px solid transparent; /* У последнего нет линии вниз */
    padding-bottom: 0;
}

/* Маркер (точка) */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px; /* Центрирование по линии 2px: (12/2) + (2/2) = 7 */
    top: 4px;
    width: 12px;
    height: 12px;
    background: var(--brand-green);
    border-radius: 50%;
    z-index: 1;
}

/* Стили для неактивных/пройденных этапов */
.timeline-item.inactive {
    border-left-color: #dee2e6;
}

.timeline-item.inactive::before {
    background: #dee2e6;
}

.timeline-item.current::before {
    box-shadow: 0 0 0 4px var(--brand-green-light);
}
