:root {
    --sa-nav-muted: #eef0f2;
    --sa-dark: #2a2f36;
    --sa-green: #79a92f;
}

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

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

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

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

.sa-menu {
    gap: 0.2rem;
}

.sa-menu .nav-link {
    color: #454a50;
    font-weight: 100;
    border-radius: 12px;
    padding: 0.62rem 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-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: #fff;
    border: 1px solid #d9dde3;
    border-radius: 18px;
    overflow: hidden;
}

.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.8rem;
    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: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 .hero-box {
    background: #e6ecf3;
}

.sa-home-page .hero-media {
    min-height: 260px;
    overflow: hidden;
    border-radius: 1rem;
}

.sa-home-page .hero-video {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    border-radius: 0;
}

.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: #0d6efd;
    color: #0d6efd;
    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: #fff;
    border: 1px solid #d9dde3;
    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.9rem;
    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.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

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

.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 {
    scrollbar-width: thin;
}

.sa-faq-page .faq-tabs .nav-link {
    background: #fff;
    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 {
    background: #2a2f36;
    border-color: #2a2f36;
    color: #fff;
}

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

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

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

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

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

.sa-faq-page .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-product-page .product-page-card {
    background: #fff;
    border: 1px solid #d9dde3;
    border-radius: 20px;
}

.sa-product-page .product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    font-size: 0.88rem;
    color: #6b7280;
}

.sa-product-page .product-breadcrumb a {
    color: #4b5563;
    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;
    border: 1px solid #dbe1e8;
    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;
}

.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-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;
}

.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;
    }
}
