:root {
    --sa-nav-muted: #eef0f2;
    --sa-dark: #2a2f36;
    --sa-green: #79a92f;
    --bs-primary: #395792;
    --bs-primary-rgb: 57, 87, 146;
}

body {
    font-family: "Manrope", sans-serif;
}

.sa-home-page nav[aria-label="breadcrumb"] .breadcrumb,
.sa-catalog-page nav[aria-label="breadcrumb"] .breadcrumb,
.sa-faq-page nav[aria-label="breadcrumb"] .breadcrumb,
.sa-contacts-page nav[aria-label="breadcrumb"] .breadcrumb,
nav[aria-label="breadcrumb"] .breadcrumb {
    background: var(--bs-light);
    border-radius: 1rem;
    padding: 0.55rem 0.9rem;
}

nav[aria-label="breadcrumb"] .breadcrumb a {
    color: #111827;
}

nav[aria-label="breadcrumb"] .breadcrumb-item.active {
    color: #4b5563;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #6b7280;
}

.btn-primary {
    --bs-btn-bg: #395792;
    --bs-btn-border-color: #395792;
    --bs-btn-hover-bg: #314b7d;
    --bs-btn-hover-border-color: #314b7d;
    --bs-btn-active-bg: #2a406c;
    --bs-btn-active-border-color: #2a406c;
    --bs-btn-disabled-bg: #395792;
    --bs-btn-disabled-border-color: #395792;
}

.btn-outline-secondary {
    --bs-btn-color: #395792;
    --bs-btn-border-color: #395792;
    --bs-btn-hover-bg: #395792;
    --bs-btn-hover-border-color: #395792;
    --bs-btn-active-bg: #2a406c;
    --bs-btn-active-border-color: #2a406c;
    --bs-btn-disabled-color: #395792;
    --bs-btn-disabled-border-color: #395792;
}

.sa-navbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.sa-brand img {
    height: 34px;
    width: auto;
    display: block;
}

.sa-navbar-toggler {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 12px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    box-shadow: none;
}

.sa-navbar-toggler:focus,
.sa-navbar-toggler:focus-visible {
    box-shadow: none;
}

.sa-navbar-toggler-line {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.sa-navbar-toggler[aria-expanded="true"] .sa-navbar-toggler-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sa-navbar-toggler[aria-expanded="true"] .sa-navbar-toggler-line:nth-child(2) {
    opacity: 0;
}

.sa-navbar-toggler[aria-expanded="true"] .sa-navbar-toggler-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.sa-menu-wrap {
    background: var(--sa-nav-muted);
    border-radius: 16px;
    padding: 0 0.6rem;
}

.sa-menu {
    gap: 0.2rem;
}

.sa-menu .nav-link {
    color: #454a50;
    font-weight: 100;
    border-radius: 12px;
    padding: 0.45rem 1rem;
    white-space: nowrap;
}

.sa-menu .nav-link:hover,
.sa-menu .nav-link:focus {
    color: #111827;
    background: #dfe3e7;
}

.sa-action {
    height: 38px;
    border-radius: 16px;
    border: 0;
    padding: 0 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.sa-action-lang {
    background: var(--sa-nav-muted);
    color: var(--sa-dark);
    font-weight: 100;
}

.sa-action-login {
    background: var(--sa-dark);
    color: #fff;
    font-weight: 100;
}

.sa-action-cart {
    position: relative;
    width: 38px;
    padding: 0;
    background: var(--bs-primary);
    color: #fff;
}

.sa-action-cart-mobile {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

.sa-cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    padding: 0 4px;
    border: 2px solid #fff;
}

@media (max-width: 1199.98px) {
    .sa-menu-wrap {
        margin-top: 0.8rem;
    }

    .sa-actions {
        margin-top: 0.8rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .sa-action {
        height: 36px;
        border-radius: 12px;
        padding: 0 0.75rem;
    }

    .sa-action-cart {
        width: 36px;
    }
}

.sa-home-page .category-tile {
    background: #fff;
    border: 1px solid #d9dde3;
    border-radius: 18px;
    padding: 1.1rem;
}

.sa-home-page .category-thumb {
    width: 112px;
    height: 84px;
    background: #f3f4f6;
    border-radius: 14px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #6b7280;
    font-weight: 700;
}

.sa-home-page .category-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sa-home-page .category-title {
    font-size: 1.45rem;
    line-height: 1.2;
}

.sa-home-page .category-name {
    font-size: 1.18rem;
    font-weight: 600;
    margin: 0 0 0.85rem;
}

.sa-home-page .category-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    background: #eef0f3;
    color: #111827;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    text-decoration: none;
}

.sa-home-page .category-cta--sm {
    font-size: 0.85rem;
    white-space: nowrap;
}

.sa-home-page .category-cta-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    line-height: 1;
}

.sa-home-page .category-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sa-home-page .category-stack-item {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    border: 2px solid #fff;
    background: #eef0f3;
    margin-left: -0.5rem;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 0.72rem;
    font-weight: 700;
}

.sa-home-page .category-stack-item:first-child {
    margin-left: 0;
}

.sa-home-page .category-stack-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-home-page .product-tile {
    background: #f3f4f6;
    border-radius: 18px;
    overflow: hidden;
}

@media (max-width: 767.98px) {
    .sa-home-page .home-products-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
    }

    .sa-home-page .home-products-slider > [class*="col-"] {
        flex: 0 0 82%;
        max-width: 82%;
        scroll-snap-align: start;
    }
}

.sa-home-page .product-media {
    height: 180px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 700;
    overflow: hidden;
}

.sa-home-page .product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.sa-home-page .product-media-link,
.sa-catalog-page .product-media-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.sa-home-page .product-media-link img,
.sa-catalog-page .product-media-link img {
    transform: scale(1);
    transition: transform 0.2s ease;
}

.sa-home-page .product-media-link:hover img,
.sa-catalog-page .product-media-link:hover img {
    transform: scale(1.04);
}

.sa-home-page .product-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.4rem;
}

.sa-home-page .product-summary {
    color: #6b7280;
    font-size: 0.94rem;
    line-height: 1.45;
    margin-bottom: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sa-home-page .product-brand {
    color: #6b7280;
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sa-home-page .product-title-link,
.sa-catalog-page .product-title-link {
    color: #111827;
    text-decoration: none;
}

.sa-home-page .product-title-link:hover,
.sa-catalog-page .product-title-link:hover {
    text-decoration: underline;
}

.sa-home-page .product-brand-link,
.sa-catalog-page .product-brand-link {
    color: inherit;
    text-decoration: none;
}

.sa-home-page .product-brand-link:hover,
.sa-catalog-page .product-brand-link:hover {
    text-decoration: underline;
}

.sa-home-page .product-price {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.sa-home-page .product-price-vat,
.sa-catalog-page .product-price-vat {
    color: #8b9099;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

.sa-home-page .product-add-btn,
.sa-catalog-page .product-add-btn {
    border: 0;
    border-radius: 10px;
    background: #cfd4dc;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0.62rem 1rem;
    transition: background-color 0.15s ease;
}

.sa-home-page .product-add-btn {
    background: #e7ecf3;
    font-size: 0.95rem;
}

.sa-home-page .product-add-btn:hover,
.sa-home-page .product-add-btn:focus,
.sa-catalog-page .product-add-btn:hover,
.sa-catalog-page .product-add-btn:focus {
    background: #bfc6d0;
}

.sa-home-page .home-article-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f0f2f5;
    border-radius: 14px;
    padding: 1rem 1.05rem;
}

.sa-home-page .home-article-media {
    width: 104px;
    height: 104px;
    border-radius: 12px;
    overflow: hidden;
    background: #d8dde4;
    color: #374151;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sa-home-page .home-article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sa-home-page .home-article-content {
    flex: 1 1 auto;
    min-width: 0;
}

.sa-home-page .home-article-title {
    font-size: 1.1rem;
    margin: 0 0 0.6rem;
    font-weight: 700;
}

.sa-home-page .home-article-title-link {
    color: #1f2937;
    text-decoration: none;
}

.sa-home-page .home-article-title-link:hover {
    color: #111827;
}

.sa-home-page .home-article-meta {
    color: #374151;
    background: #bfc6d0;
    display: inline-flex;
    align-items: center;
    font-size: 0.82rem;
    line-height: 1.25;
    margin: 0;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.03em;
}

.sa-home-page .home-review-card {
    background: #f4f6f8;
    border: 1px solid #dfe3e8;
    border-radius: 20px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.sa-home-page .home-review-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #e3e7ec;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sa-home-page .home-review-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sa-home-page .home-review-body {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
}

.sa-home-page .home-review-author {
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 0.55rem;
    color: #111827;
}

.sa-home-page .home-review-text {
    color: #374151;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sa-home-page .home-review-stars {
    display: inline-flex;
    gap: 0.14rem;
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    line-height: 1;
}

.sa-home-page .home-review-stars span {
    color: #c3c9d2;
}

.sa-home-page .home-review-stars span.is-on {
    color: #1f2937;
}

.sa-home-page .home-review-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    color: #4b5563;
}

.sa-home-page .home-review-product {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sa-home-page .home-review-product-link {
    color: #1f2937;
    text-decoration: none;
}

.sa-home-page .home-review-product-link:hover {
    color: #111827;
    text-decoration: underline;
}

.sa-home-page .home-review-date {
    font-size: 0.95rem;
    white-space: nowrap;
}

.sa-home-page .home-review-recommend {
    margin-top: 0.7rem;
    font-size: 0.92rem;
    font-weight: 600;
}

.sa-home-page .home-review-recommend.is-positive {
    color: #0f766e;
}

.sa-home-page .home-review-recommend.is-neutral {
    color: #4b5563;
}

@media (max-width: 1199.98px) {
    .sa-home-page .home-article-title {
        font-size: 1.1rem;
    }

    .sa-home-page .home-article-meta {
        font-size: 0.76rem;
    }

    .sa-home-page .home-review-author {
        font-size: 1.02rem;
    }

    .sa-home-page .home-review-text {
        font-size: 0.96rem;
        -webkit-line-clamp: 5;
    }
}

@media (max-width: 575.98px) {
    .sa-home-page .home-article-card {
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .sa-home-page .home-article-media {
        width: 82px;
        height: 82px;
    }

    .sa-home-page .home-article-title {
        font-size: 1rem;
    }

    .sa-home-page .home-article-meta {
        font-size: 0.72rem;
    }

    .sa-home-page .home-review-card {
        padding: 0.85rem;
    }

    .sa-home-page .home-review-author {
        font-size: 1rem;
    }

    .sa-home-page .home-review-text {
        font-size: 0.93rem;
        margin-bottom: 0.7rem;
    }

    .sa-home-page .home-review-stars {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }

    .sa-home-page .home-review-product,
    .sa-home-page .home-review-date {
        font-size: 0.88rem;
    }

    .sa-home-page .home-review-recommend {
        font-size: 0.86rem;
    }
}

.sa-home-page .hero-box {
    background: #e6ecf3;
    overflow: hidden;
}

.sa-home-page .hero-content {
    min-height: 540px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sa-home-page .hero-eyebrow {
    display: inline-flex;
    align-self: flex-start;
    background: #fff;
    color: #4b5563;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.sa-home-page .hero-title {
    font-weight: 800;
}

.sa-home-page .hero-lead {
    max-width: 700px;
}

.sa-home-page .hero-media {
    min-height: 540px;
    overflow: hidden;
    border-radius: 0;
}

.sa-home-page .hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    border-radius: 0;
    display: block;
}

@media (max-width: 991.98px) {
    .sa-home-page .hero-content {
        min-height: auto;
    }

    .sa-home-page .hero-media {
        min-height: 320px;
    }

    .sa-home-page .hero-image {
        object-position: center bottom;
    }
}

.sa-catalog-page .catalog-panel {
    background: #fff;
    border: 1px solid #d9dde3;
    border-radius: 18px;
}

.sa-catalog-page .catalog-filter-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b7280;
    margin-bottom: 0.45rem;
}

.sa-catalog-page .catalog-cat-link {
    display: inline-flex;
    width: 100%;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    padding: 0.44rem 0.62rem;
    margin-bottom: 0.44rem;
    text-decoration: none;
    color: #111827;
    font-size: 0.92rem;
}

.sa-catalog-page .catalog-cat-link:hover {
    background: #f4f6f9;
}

.sa-catalog-page .catalog-cat-link.active {
    border-color: #395792;
    color: #395792;
    background: #eff6ff;
}

.sa-catalog-page .catalog-subcats {
    margin: 0 0 0.6rem 0.65rem;
}

.sa-catalog-page .catalog-subcats .catalog-cat-link {
    font-size: 0.86rem;
    margin-bottom: 0.35rem;
}

.sa-catalog-page .product-tile {
    background: #f3f4f6;
    border-radius: 18px;
    overflow: hidden;
}

.sa-catalog-page .product-media {
    height: 180px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 700;
    overflow: hidden;
}

.sa-catalog-page .product-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.sa-catalog-page .product-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 0.4rem;
}

.sa-catalog-page .product-summary {
    color: #6b7280;
    font-size: 0.94rem;
    line-height: 1.45;
    margin-bottom: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sa-catalog-page .product-brand {
    color: #6b7280;
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sa-catalog-page .product-price {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.sa-home-page .product-stock-out,
.sa-catalog-page .product-stock-out {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid #f0bcbc;
    background: #fff0f0;
    color: #a32525;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.24rem 0.5rem;
    white-space: nowrap;
}

.sa-catalog-page .product-add-btn {
    background: #e7ecf3;
    font-size: 0.95rem;
}

.sa-catalog-page .catalog-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 999px;
    background: #eef0f3;
    color: #111827;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    text-decoration: none;
    font-size: 0.86rem;
    white-space: nowrap;
}

.sa-catalog-page .catalog-cta-dot {
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1;
}

.sa-brands-page .brand-card {
    background: #fff;
    border: 1px solid #d9dde3;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
}

.sa-brands-page .brand-media {
    height: 150px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 700;
}

.sa-brands-page .brand-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.sa-faq-page .faq-hero {
    background: #e7ecf3;
    border: 1px solid #d1d8e3;
    border-radius: 1rem;
}

.sa-faq-page .faq-tabs,
.sa-home-page .home-faq .faq-tabs {
    scrollbar-width: thin;
}

.sa-faq-page .faq-tabs .nav-link,
.sa-home-page .home-faq .faq-tabs .nav-link {
    background: transparent;
    border: 1px solid #d9dde3;
    border-radius: 999px;
    color: #2a2f36;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.5rem 0.95rem;
}

.sa-faq-page .faq-tabs .nav-link.active,
.sa-home-page .home-faq .faq-tabs .nav-link.active {
    background: #e7ecf3;
    border: 0;
    color: #2a2f36;
}

.sa-home-page .home-faq .faq-tabs {
    gap: 0.75rem;
}

.sa-home-page .home-faq .faq-tabs .nav-item {
    flex: 0 0 auto;
}

.sa-home-page .home-faq .faq-tabs .nav-link {
    min-width: 220px;
    min-height: 132px;
    border-radius: 24px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    text-align: center;
    padding: 1rem 1.15rem;
    white-space: normal;
}

.sa-home-page .home-faq .faq-tabs .nav-link.active {
    background: #e7ecf3;
    border: 0;
    color: #2a2f36;
}

.sa-home-page .home-faq .faq-tab-image {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.sa-home-page .home-faq .faq-tab-fallback {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #e2e8f0;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sa-home-page .home-faq .faq-tab-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
}

@media (max-width: 767.98px) {
    .sa-home-page .home-faq .faq-tabs .nav-link {
        min-width: 180px;
        min-height: 116px;
    }

    .sa-home-page .home-faq .faq-tab-image,
    .sa-home-page .home-faq .faq-tab-fallback {
        width: 50px;
        height: 50px;
    }
}

.sa-faq-page .faq-panel,
.sa-home-page .home-faq .faq-panel {
    background: #fff;
    border: 0;
    border-radius: 1rem;
}

.sa-faq-page .faq-accordion .accordion-item,
.sa-home-page .home-faq .faq-accordion .accordion-item {
    border: 0;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0;
}

.sa-faq-page .faq-accordion .accordion-item:last-child,
.sa-home-page .home-faq .faq-accordion .accordion-item:last-child {
    border-bottom: 0;
}

.sa-faq-page .faq-accordion .accordion-button,
.sa-home-page .home-faq .faq-accordion .accordion-button {
    padding: 1rem 1.25rem;
    font-weight: 600;
    box-shadow: none;
}

.sa-faq-page .faq-accordion .accordion-button:not(.collapsed),
.sa-home-page .home-faq .faq-accordion .accordion-button:not(.collapsed) {
    color: #111827;
    background: #f8fafc;
}

.sa-faq-page .faq-accordion .accordion-body,
.sa-home-page .home-faq .faq-accordion .accordion-body {
    color: #4b5563;
    line-height: 1.6;
}

.sa-contacts-page .contacts-hero {
    background: #e7ecf3;
    border: 1px solid #d1d8e3;
    border-radius: 1rem;
}

.sa-contacts-page .contacts-card {
    background: #fff;
    border: 1px solid #d9dde3;
    border-radius: 1rem;
}

.sa-contacts-page .contacts-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #6b7280;
}

.sa-contacts-page .contacts-value {
    color: #111827;
    font-size: 0.98rem;
    line-height: 1.45;
    font-weight: 600;
}

.sa-contacts-page .contacts-value a {
    color: #111827;
    text-decoration: none;
}

.sa-contacts-page .contacts-value a:hover {
    text-decoration: underline;
}

.sa-insurance-page .insurance-hero {
    background: #e7ecf3;
    border: 1px solid #d1d8e3;
    border-radius: 1rem;
}

.sa-insurance-page .insurance-card {
    background: #fff;
    border: 1px solid #d9dde3;
    border-radius: 1rem;
}

.sa-insurance-page .insurance-section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    color: #6b7280;
}

.sa-insurance-page .insurance-hint {
    line-height: 1.5;
}

.sa-product-page .product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: #6b7280;
    background: var(--bs-light);
    border-radius: 1rem;
    padding: 0.55rem 0.9rem;
}

.sa-product-page .product-breadcrumb a {
    color: #111827;
    text-decoration: none;
}

.sa-product-page .product-breadcrumb a:hover {
    text-decoration: underline;
}

.sa-product-page .product-media-main {
    min-height: 420px;
    border-radius: 18px;
    background: #f3f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.sa-product-page .product-media-main img {
    max-height: 380px;
    width: 100%;
    object-fit: contain;
}

.sa-product-page .product-thumb {
    width: 86px;
    height: 86px;
    border-radius: 12px;
    border: 1px solid #d9dde3;
    overflow: hidden;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.sa-product-page .product-thumb:hover {
    border-color: #99a2b1;
}

.sa-product-page .product-thumb:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.25);
}

.sa-product-page .product-thumb.is-active {
    border-color: #99a2b1;
    box-shadow: 0 0 0 2px rgba(153, 162, 177, 0.2);
}

.sa-product-page .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sa-product-page .product-brand-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #eef2f7;
    border-radius: 999px;
    padding: 0.28rem 0.7rem;
    color: #4b5563;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.sa-product-page .product-title-main {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 800;
}

.sa-product-page .product-summary-main {
    color: #5b6472;
    font-size: 1.03rem;
    line-height: 1.55;
}

.sa-product-page .product-buy-card {
    border: 1px solid #d9dde3;
    border-radius: 16px;
    background: #f8fafc;
    padding: 1rem;
}

.sa-product-page .product-price-main {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.sa-product-page .product-meta-grid {
    display: grid;
    gap: 0.8rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sa-product-page .product-meta-item {
    border: 1px solid #e3e7ed;
    border-radius: 12px;
    background: #fff;
    padding: 0.65rem 0.75rem;
}

.sa-product-page .product-meta-label {
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.15rem;
    font-weight: 700;
}

.sa-product-page .product-meta-value {
    font-size: 0.93rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
}

.sa-product-page .product-availability {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.22rem 0.62rem;
    border: 1px solid transparent;
    font-size: 0.83rem;
    line-height: 1.2;
}

.sa-product-page .product-availability.availability-in {
    color: #0f6f33;
    background: #ebf9ef;
    border-color: #bde5c8;
}

.sa-product-page .product-availability.availability-low {
    color: #9b5e00;
    background: #fff5e5;
    border-color: #f2d59f;
}

.sa-product-page .product-availability.availability-out {
    color: #a32525;
    background: #fff0f0;
    border-color: #f0bcbc;
}

.sa-product-page .product-availability.availability-neutral {
    color: #374151;
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.sa-product-page .product-section-card {
    border: 1px solid #d9dde3;
    border-radius: 16px;
    background: #fff;
    padding: 1.1rem;
    height: 100%;
}

.sa-product-page .product-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.sa-product-page .product-description-content {
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.7;
    word-break: break-word;
}

.sa-product-page .product-description-content > *:first-child {
    margin-top: 0;
}

.sa-product-page .product-description-content > *:last-child {
    margin-bottom: 0;
}

.sa-product-page .product-description-content p,
.sa-product-page .product-description-content ul,
.sa-product-page .product-description-content ol,
.sa-product-page .product-description-content blockquote,
.sa-product-page .product-description-content table {
    margin-bottom: 0.9rem;
}

.sa-product-page .product-description-content h1,
.sa-product-page .product-description-content h2,
.sa-product-page .product-description-content h3,
.sa-product-page .product-description-content h4,
.sa-product-page .product-description-content h5,
.sa-product-page .product-description-content h6 {
    color: #111827;
    font-weight: 700;
    line-height: 1.35;
    margin: 1.1rem 0 0.55rem;
}

.sa-product-page .product-description-content ul,
.sa-product-page .product-description-content ol {
    padding-left: 1.25rem;
}

.sa-product-page .product-description-content li + li {
    margin-top: 0.25rem;
}

.sa-product-page .product-description-content a {
    color: #395792;
    text-decoration: underline;
}

.sa-product-page .product-description-content blockquote {
    margin-left: 0;
    padding: 0.45rem 0.85rem;
    border-left: 3px solid #d9dde3;
    background: #f8fafc;
    border-radius: 0.35rem;
}

.sa-product-page .product-description-content table {
    width: 100%;
    border-collapse: collapse;
}

.sa-product-page .product-description-content table th,
.sa-product-page .product-description-content table td {
    border: 1px solid #e3e7ed;
    padding: 0.45rem 0.55rem;
    vertical-align: top;
}

.checkout-address-field[readonly] {
    background-color: #eef2f6;
    border-color: #cfd8e4;
    color: #5d6675;
    box-shadow: none;
    cursor: not-allowed;
}

.sa-footer {
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.sa-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 2.4rem;
}

.sa-footer-logo img {
    width: 186px;
    max-width: 100%;
    height: auto;
    display: block;
}

.sa-footer-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
}

.sa-footer-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.sa-footer-list li {
    margin-top: 0.5rem;
    color: #1f2937;
    font-size: 0.93rem;
    line-height: 1.45;
}

.sa-footer-list li:first-child {
    margin-top: 0;
}

.sa-footer-payments {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.sa-footer-payments img {
    width: 58px;
    height: 40px;
    display: block;
}

.sa-footer-list a {
    color: #1f2937;
    text-decoration: none;
}

.sa-footer-list a:hover {
    text-decoration: underline;
}

.sa-footer-list-muted li,
.sa-footer-list-muted a {
    color: #4b5563;
}

.sa-footer-sep {
    margin: 2rem 0 1.4rem;
    border-color: #e5e7eb;
    opacity: 1;
}

.sa-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem 1.5rem;
    color: #6b7280;
    font-size: 0.86rem;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .sa-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
