.breadcrumb-nav {
    background-color: #f8f9fa;
    padding: 10px 0;
    margin-bottom: 20px;
}
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #6c757d;
    padding: 0 8px;
}
.breadcrumb-item.active {
    color: #c2c6c9;
}
.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}
.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-nav-inline {
    margin-top: 30px;
}

.breadcrumb-nav-inline .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}


.page-header {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin-top: 20px;
}

.page-header.with-header-offset {
    margin-top: 150px;
}

.payment-methods {
    padding: 80px 0;
}

.payment-documents {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.bank-details {
    padding: 80px 0;
}

.payment-cta {
    padding: 80px 0;
    background: #ececed;
}

.payment-cta h2 {
    color: #052157;
    margin-bottom: 20px;
}

.payment-cta p {
    color: #052157;
    font-size: 18px;
    margin-bottom: 30px;
}

.payment-cta .btn {
    padding: 15px 40px;
    font-size: 18px;
}

.payment-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.payment-icon.credit-card {
    color: #007bff;
}

.payment-icon.cash {
    color: #28a745;
}

.payment-icon.handshake {
    color: #ffc107;
}

.document-icon {
    font-size: 48px;
    color: #17a2b8;
}

.document-icon.invoice {
    color: #dc3545;
}

.document-icon.digital {
    color: #6f42c1;
}

.icon-wrapper {
    margin-bottom: 20px;
}

.bank-info {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bank-info h4 {
    color: #052157;
    margin-bottom: 20px;
}

.bank-info .address-info {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
}


.technical-specs {
    padding: 80px 0;
}

.specs-table {
    margin-bottom: 30px;
}

.specs-table h4 {
    color: #052157;
    margin-bottom: 20px;
    text-align: center;
}

.application-area {
    padding: 80px 0;
}

.application-item {
    padding: 30px 20px;
    height: 100%;
}

.product-advantages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.advantage-item {
    padding: 30px 20px;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #052157;
    font-size: 32px;
}

.advantage-item h5 {
    color: #052157;
    margin-bottom: 15px;
}

.product-features .badge {
    font-size: 14px;
    padding: 8px 12px;
}


.about-company {
    padding: 80px 0;
}

.production-info {
    padding: 80px 0;
}

.production-item {
    padding: 30px 20px;
    height: 100%;
}

.logistics-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.logistics-features {
    list-style: none;
    padding: 0;
}

.logistics-features li {
    padding: 10px 0;
    font-size: 16px;
}

.logistics-features i {
    margin-right: 10px;
    width: 20px;
}

.company-details {
    padding: 80px 0;
}

.feature-item h4 {
    color: #052157;
    font-size: 24px;
    margin-bottom: 5px;
}

.feature-item p {
    color: #6c757d;
    margin: 0;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #fb4f00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 24px;
}

.stat-item h3 {
    color: #052157;
    font-size: 32px;
    margin-bottom: 5px;
}

.stat-item p {
    color: #6c757d;
    margin: 0;
    font-size: 14px;
}


.products-catalog {
    padding: 80px 0;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 33, 87, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    padding: 25px;
}

.product-badges {
    margin-bottom: 15px;
}

.product-badges .badge {
    margin-right: 8px;
    font-size: 12px;
}

.product-info h3 {
    color: #052157;
    margin-bottom: 15px;
    font-size: 24px;
}

.product-info h3 a {
    color: inherit;
    text-decoration: none;
}

.product-info h3 a:hover {
    color: #fb4f00;
}

.product-description {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.product-specs {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.spec-item {
    margin-bottom: 8px;
}

.spec-label {
    font-weight: 600;
    color: #052157;
    font-size: 13px;
}

.spec-value {
    color: #6c757d;
    font-size: 13px;
}

.product-applications h5 {
    color: #052157;
    margin-bottom: 10px;
    font-size: 16px;
}

.product-applications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-applications li {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

.product-applications i {
    margin-right: 8px;
    width: 15px;
}

.common-advantages {
    padding: 80px 0;
}

.delivery-terms {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.delivery-item {
    padding: 30px 20px;
}

.delivery-icon {
    width: 70px;
    height: 70px;
    background: #fb4f00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.delivery-item h4 {
    color: #052157;
    margin-bottom: 10px;
}

.delivery-item p {
    color: #333;
    margin-bottom: 8px;
}

.delivery-advantages {
    padding: 80px 0;
}

.delivery-advantage-item {
    padding: 30px 20px;
}

.delivery-options {
    padding: 80px 0;
}

.delivery-option-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.delivery-option-card:hover {
    transform: translateY(-5px);
}

.option-icon {
    margin-bottom: 20px;
}

.delivery-option-card h4 {
    color: #052157;
    margin-bottom: 20px;
}

.option-details ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.option-details li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.option-details li:before {
    content: "\2022";
    color: #fb4f00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pickup-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pickup-details h5 {
    color: #052157;
    margin-top: 25px;
    margin-bottom: 10px;
}

.pickup-details h5:first-child {
    margin-top: 0;
}

.pickup-requirements {
    list-style: none;
    padding: 0;
}

.pickup-requirements li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.pickup-requirements li:before {
    content: "\2022";
    color: #fb4f00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.delivery-term-item {
    padding: 30px 20px;
}

.term-icon {
    margin-bottom: 20px;
}

.delivery-term-item h4 {
    color: #052157;
    margin-bottom: 20px;
}

.term-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
}

.term-list li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.term-list li:before {
    content: "\2022";
    color: #fb4f00;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.delivery-faq {
    padding: 80px 0;
    background-color: #ffffff;
}

.delivery-faq .card {
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0;
}

.delivery-faq .card-header {
    background: transparent;
    padding: 20px 0;
    border-radius: 0;
    border: none;
    border-top: 1px solid #e3e3ee;
}

.delivery-faq .btn-link {
    text-decoration: none;
    color: #052157;
    font-weight: 600;
    display: flex;
    justify-content: unset;
    align-items: center;
    width: 100%;
    text-align: left;
}

.delivery-faq .btn-link:hover {
    color: #fb4f00;
    text-decoration: none;
}

.delivery-faq .first-icon {
    margin-right: 10px;
    color: #fb4f00;
}

.delivery-faq .second-icon {
    transition: transform 0.3s ease;
}

.delivery-faq .btn-link[aria-expanded="true"] .second-icon {
    transform: rotate(180deg);
}

.delivery-faq .card-body {
    padding: 20px;
    color: #6c757d;
    line-height: 1.6;
}


.main-contacts {
    padding: 80px 0;
}

.contact-item {
    padding: 30px 20px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #052157;
    font-size: 32px;
}

.contact-item h4 {
    color: #052157;
    margin-bottom: 15px;
}

.contact-item a {
    color: #fb4f00;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: #052157;
    text-decoration: underline;
}

.contact-form {
    padding: 80px 0;
}

.contact-form-wrapper {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-option {
    text-align: center;
    padding: 25px 20px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
}

.form-option:hover {
    border-color: #fb4f00;
    box-shadow: 0 4px 15px rgba(251, 79, 0, 0.1);
}

.form-option .option-icon {
    margin-bottom: 20px;
}

.form-option h5 {
    color: #052157;
    margin-bottom: 15px;
}

.form-option p {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
}

.addresses-details {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.address-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.address-header h4 {
    color: #052157;
    margin-bottom: 20px;
    font-size: 18px;
}

.address-header i {
    margin-right: 10px;
}

.address-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

.company-requisites {
    padding: 80px 0;
}

.working-hours {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.working-schedule {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.schedule-item {
    text-align: center;
}

.schedule-icon {
    width: 60px;
    height: 60px;
    background: #fb4f00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.schedule-item h5 {
    color: #052157;
    margin-bottom: 20px;
}

.schedule-time p {
    margin-bottom: 8px;
    color: #333;
}

.cta-buttons .btn {
    margin: 0 10px 10px 0;
}

.cta-buttons i {
    margin-right: 8px;
}


.product-info-section {
    padding: 80px 0;
}

/* Ð¡Ñ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ñ„ÑƒÑ‚ÐµÑ€Ð° */
.footer .logo {
    display: block;
    margin-bottom: 20px;
}

.footer .logo img {
    max-height: 60px;
}

.footer p {
    color: #fff;
    margin-bottom: 30px;
    font-size: 18px;
}

.footer-contacts p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
}

.footer-contacts .icon {
    margin-right: 10px;
    color: #fb4f00;
    margin-top: 2px;
    min-width: 16px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}

.footer-menu a:hover {
    color: #fb4f00;
}

.footer-menu .icon {
    margin-right: 8px;
    color: #fb4f00;
}


.fun-fact .part-accordion #deliveryAccordion .card {
    border-radius: 0;
    border: none;
    border-top: 1px solid #e3e3ee;
}

.fun-fact .part-accordion #deliveryAccordion .card .card-header {
    padding: 0;
    border: none;
    background: transparent;
}

.fun-fact .part-accordion #deliveryAccordion .card .card-header h5 button {
    background: transparent;
    border: none;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #222222;
    text-decoration: none;
    padding: 22px 0;
    width: 100%;
    text-align: left;
    padding-left: 10px;
}

.fun-fact .part-accordion #deliveryAccordion .card .card-header h5 button span {
    display: inline-block;
}

.fun-fact .part-accordion #deliveryAccordion .card .card-header h5 button span.first-icon,
.fun-fact .part-accordion #deliveryAccordion .card .card-header h5 button span.second-icon {
    transform: rotate(0deg);
    transition: all 0.3s ease-in;
}

.fun-fact .part-accordion #deliveryAccordion .card .card-header h5 button span.first-icon {
    margin-right: 16px;
    color: #fb4f00;
}

.fun-fact .part-accordion #deliveryAccordion .card .card-header h5 button span.second-icon {
    margin-left: 6px;
    color: #c9c9ce;
    float: right;
}

.fun-fact .part-accordion #deliveryAccordion .card .card-header h5 button.collapsed span.first-icon,
.fun-fact .part-accordion #deliveryAccordion .card .card-header h5 button.collapsed span.second-icon {
    transform: rotate(-90deg);
}

.fun-fact .part-accordion #deliveryAccordion .card .card-body {
    padding: 0;
    font-size: 16px;
    line-height: 30px;
    color: #444444;
    margin-bottom: 30px;
}


.product-visual {
    text-align: center;
}

.product-image-container {
    margin-bottom: 30px;
}

.product-badges-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-item {
    padding: 12px 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.product-visual .btn {
    margin-bottom: 30px;
}

.badge-item.badge-primary-custom {
    background-color: #f8f9fa;
    color: #052157;
}

.badge-item.badge-warning-custom {
    background-color: #f8f9fa;
    color: #212529;
}

.badge-item.badge-success-custom {
    background-color: #f8f9fa;
    color: #495057;
}

.badge-item.badge-info-custom {
    background-color: #f8f9fa;
    color: #495057;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
}

.specs-table h4 {
    background-color: #052157;
    color: white;
    padding: 12px;
    margin: 0 0 20px 0;
    text-align: center;
    border-radius: 4px;
    font-size: 16px;
}
