.breadcrumb-list {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none;
    margin: 0 auto !important;
    padding: 10px 0 !important;
    border-top: 1px solid #e2e5e8 !important;
    border-bottom: 1px solid #e2e5e8 !important;
    gap: 100px !important; /* Увеличенное расстояние между элементами */
    max-width: 90% !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    text-align: center !important;
}

.breadcrumb-list li {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #333;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-list li:not(:first-child)::before {
    content: "|"; /* Разделитель | */
    margin: 0 20px !important; /* Увеличенный отступ для разделителя */
    color: #bbb;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: stretch;
    height: 100%; /* Растягивает до границ */
    transform: translateY(2px); /* Тонкая настройка выравнивания */
}

.breadcrumb-list li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
	    letter-spacing: 1px;
}

.breadcrumb-list li a:hover {
    color: #d4a373;
}

.breadcrumb-list li.active {
    font-weight: bold;
    color: #d4a373;
}
.newsletter-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    max-width: 400px;
    margin: 20px 0;
}

.newsletter-form h4 {
    margin-top: 0;
    color: #333;
}

.newsletter-form p {
    color: #666;
    margin-bottom: 15px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.newsletter-form button {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background: #005a87;
}

.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.info {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}
.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.info {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .breadcrumb-list {
        gap: 30px !important; /* Меньшее расстояние */
        padding: 15px 0 !important;
    }
    .breadcrumb-list li {
        font-size: 14px;
    }
    .breadcrumb-list li:not(:first-child)::before {
        margin: 0 12px !important;
        font-size: 14px;
        transform: translateY(1px);
    }
}

@media (max-width: 576px) {
    .breadcrumb-list {
        gap: 20px !important;
        padding: 10px 0 !important;
    }
    .breadcrumb-list li {
        font-size: 12px;
    }
    .breadcrumb-list li:not(:first-child)::before {
        margin: 0 10px !important;
        font-size: 12px;
        transform: translateY(0.5px);
    }
}