/* Design system — warm commercial catalog, no blue */

:root {
    --color-bg: #f4f1ec;
    --color-surface: #ffffff;
    --color-text: #171717;
    --color-muted: #606873;
    --color-border: #e4ded6;
    --color-primary: #c51f1f;
    --color-primary-dark: #991b1b;
    --color-header: #151515;
    --color-dark: var(--color-text);
    --color-card: var(--color-surface);
    --color-accent: var(--color-primary);
    --color-accent-hover: var(--color-primary-dark);
    --color-text-muted: var(--color-muted);
    --color-available: #15803d;
    --color-unavailable: #6b7280;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(21, 21, 21, 0.05);
    --shadow-md: 0 4px 14px rgba(21, 21, 21, 0.07);
    --container: 1160px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    min-height: 100vh;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
}

a:hover {
    color: var(--color-accent-hover);
}

/* Layout */

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.site-main {
    flex: 1 1 auto;
    padding: 1.75rem 0 2.75rem;
}

/* Header */

.site-header {
    background-color: var(--color-header);
    color: #f5f5f5;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 0.75rem 1.5rem;
}

.site-header__row--brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
}

.site-header__row--nav {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
}

.site-header__row--contacts {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.site-nav a {
    color: #d4d4d4;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.92rem;
}

.site-nav a:hover {
    color: #fff;
}

.header-contact-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    min-width: 0;
}

.header-contact-links__item {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.05);
    color: #f5f5f5;
    font-weight: 500;
    font-size: 0.82rem;
    text-decoration: none;
    white-space: nowrap;
    line-height: 1.3;
    transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.header-contact-links__item:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.header-contact-links__item--primary {
    border-color: rgba(196, 30, 58, 0.55);
    background: rgba(196, 30, 58, 0.18);
    color: #fff;
    font-weight: 600;
}

.header-contact-links__item--primary:hover {
    border-color: var(--color-accent);
    background: rgba(196, 30, 58, 0.3);
    color: #fff;
}

/* Footer */

.site-footer {
    flex-shrink: 0;
    background-color: var(--color-header);
    color: #a3a3a3;
    padding: 2.25rem 0 1.5rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 2rem 1.5rem;
    align-items: start;
}

.footer-columns__site-name {
    margin: 0 0 0.5rem;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}

.footer-columns__tagline {
    margin: 0;
    color: #a3a3a3;
    line-height: 1.55;
    max-width: 18rem;
}

.footer-columns__title {
    margin: 0 0 0.75rem;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.footer-columns__list,
.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-columns__list li + li,
.footer-contact-list li + li {
    margin-top: 0.45rem;
}

.footer-columns__link,
.footer-columns__link:link,
.footer-columns__link:visited,
.footer-contact-list__link,
.footer-contact-list__link:link,
.footer-contact-list__link:visited {
    color: #d4d4d4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
}

.footer-columns__link:hover,
.footer-contact-list__link:hover {
    color: var(--color-accent);
    text-decoration: none;
}

.site-footer__copy {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #6b7280;
    font-size: 0.82rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.2;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary,
.btn-primary:visited {
    background-color: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    color: #fff;
}

.btn-secondary,
.btn-secondary:visited {
    background-color: var(--color-card);
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background-color: #faf8f5;
    border-color: #cfc8be;
    color: var(--color-text);
}

.btn-contact,
.btn-contact:visited {
    background-color: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn-contact:hover {
    background-color: #faf8f5;
    border-color: #cfc8be;
    color: var(--color-text);
}

/* Card */

.card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Hero & home page */

.home-page {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.home-block {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.home-section--flush {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.hero {
    margin: 0;
}

.hero__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.55rem, 3.8vw, 2rem);
    line-height: 1.25;
    color: var(--color-text);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.hero__subtitle {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--color-muted);
    max-width: 680px;
    line-height: 1.6;
}

.hero__text {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
    max-width: 560px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.75rem;
}

.hero__actions .btn {
    min-height: 2.75rem;
}

.home-section {
    margin: 0;
}

.home-section__title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.home-section__empty {
    margin: 0;
    color: var(--color-text-muted);
}

.home-section__more {
    margin: 1.25rem 0 0;
}

.model-chips {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 0.65rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.model-chips__item {
    display: flex;
}

.model-chips__item a,
.model-chips__item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.55rem 1rem;
    background: #faf8f5;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    line-height: 1.3;
}

.model-chips__item a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: var(--color-card);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: step;
    align-items: stretch;
}

@media (min-width: 640px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steps__item {
    counter-increment: step;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.15rem 1.1rem 2.85rem;
    position: relative;
    color: var(--color-text);
    font-weight: 400;
    font-size: 0.92rem;
    line-height: 1.5;
    min-height: 4.75rem;
    display: flex;
    align-items: center;
}

.steps__item::before {
    content: counter(step);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.35rem;
    height: 1.35rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Benefits grid (home page) */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.benefits-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
    .benefits-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid--four {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
    min-height: 5.5rem;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.35rem;
    box-shadow: var(--shadow-sm);
}

.benefit-card::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 1.75rem;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    margin-bottom: 0.85rem;
}

.benefit-card__title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.45;
}

.benefit-card__text {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--color-muted);
    line-height: 1.55;
}

/* Home request CTA */

.home-request-cta {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2.5rem;
}

.home-request-cta__content {
    flex: 1 1 auto;
    min-width: 0;
}

.home-request-cta__title {
    margin-bottom: 0.65rem;
}

.home-request-cta__text {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 640px;
}

.home-request-cta__action {
    flex: 0 0 auto;
    align-self: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: flex-end;
}

.home-request-cta__action .btn {
    min-height: 2.75rem;
}

.home-request-cta__action .btn-primary {
    min-width: 11rem;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .home-request-cta {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .home-request-cta__action {
        align-self: stretch;
        flex-direction: column;
    }

    .home-request-cta__action .btn {
        width: 100%;
        min-width: 0;
        white-space: normal;
        text-align: center;
    }
}

/* Home CTA block */

.home-cta {
    background: var(--color-header);
    border-color: transparent;
}

.home-cta__title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
}

.home-cta__text {
    margin: 0 0 1.5rem;
    color: #d4d4d4;
    font-size: 0.95rem;
    line-height: 1.55;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: center;
}

.home-cta__actions .btn {
    min-height: 2.75rem;
}

.home-cta__actions a.btn-contact,
.home-cta__actions a.btn-contact:link,
.home-cta__actions a.btn-contact:visited {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.home-cta__actions a.btn-contact:hover,
.home-cta__actions a.btn-contact:focus-visible {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

/* Catalog */

.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.catalog-layout--collection {
    grid-template-columns: minmax(0, 1fr);
}

.catalog-sidebar {
    position: sticky;
    top: 1rem;
}

.catalog-content__header {
    margin-bottom: 1.25rem;
}

.catalog-content__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 3vw, 1.75rem);
    color: var(--color-text);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.catalog-content__subtitle {
    margin: 0;
    color: var(--color-muted);
    font-weight: 400;
    max-width: 640px;
    line-height: 1.55;
}

.catalog-content__count {
    margin: 0.85rem 0 0;
    font-weight: 500;
    color: var(--color-muted);
    font-size: 0.92rem;
}

.catalog-content__description {
    margin: 0.75rem 0 0;
    color: var(--color-text-muted);
    max-width: 640px;
    line-height: 1.6;
}

.catalog-content__back {
    margin-top: 2rem;
}

.filters-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    box-shadow: var(--shadow-sm);
}

.filters-card__title {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.filters-card__fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.filters-card__field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.filters-card__label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
}

.filters-card__input,
.filters-card__select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 0.95rem;
    font-family: inherit;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #faf8f5;
    color: var(--color-text);
}

.filters-card__input:focus,
.filters-card__select:focus {
    outline: 2px solid var(--color-accent);
    outline-offset: 1px;
    border-color: var(--color-accent);
    background: var(--color-card);
}

.filters-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.filters-card__actions .btn {
    width: 100%;
    justify-content: center;
}

.filters-card__field--search,
.filters-card__field {
    overflow: visible;
}

.search-suggestions-wrap {
    position: relative;
}

.filter-autocomplete-clear {
    position: absolute;
    top: 50%;
    right: 0.55rem;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #ebe6de;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
}

.filter-autocomplete-clear:hover,
.filter-autocomplete-clear:focus {
    background: #ddd5c8;
    color: var(--color-dark);
    outline: none;
}

.search-suggestions-wrap:has(.filter-autocomplete-clear) .filters-card__input {
    padding-right: 2.2rem;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    z-index: 30;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    max-height: 18rem;
    overflow-y: auto;
    overflow-x: hidden;
}

.search-suggestions[hidden] {
    display: none;
}

.search-suggestions__empty {
    margin: 0;
    padding: 0.65rem 0.75rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    text-align: center;
}

.search-suggestions__item {
    display: block;
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: transparent;
    font-family: inherit;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    color: var(--color-text);
    box-sizing: border-box;
    line-height: 1.35;
    word-break: break-word;
}

.search-suggestions__item:last-child {
    border-bottom: none;
}

.search-suggestions__label {
    display: block;
}

.search-suggestions__subtitle {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.search-suggestions__item:hover,
.search-suggestions__item:focus {
    background: #f3efe8;
    outline: none;
}

/* Product grid & cards */

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.product-grid > .product-card {
    height: 100%;
}

@media (min-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.product-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.product-card__image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.product-card__image {
    position: relative;
    height: 220px;
    background: #ece8e2;
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.2s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.03);
}

.product-card__image--empty {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image-placeholder {
    color: var(--color-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.product-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 2;
    display: inline-block;
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.product-card__badge--yes {
    background: var(--color-available);
    color: #fff;
}

.product-card__badge--no {
    background: var(--color-unavailable);
    color: #fff;
}

.product-card__content {
    padding: 0.85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0;
}

.product-card__title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
    min-height: calc(16px * 1.3 * 3);
}

.product-card__title a {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--color-dark);
    text-decoration: none;
    overflow-wrap: anywhere;
}

.product-card__title a:hover {
    color: var(--color-accent);
}

.product-card__meta {
    display: grid;
    gap: 6px;
    margin: 0 0 0.75rem;
    flex-grow: 0;
}

.product-card__meta-row {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.35;
}

.product-card__meta-label {
    color: var(--color-muted);
    font-weight: 500;
    margin-right: 4px;
}

.product-card__meta-value {
    color: var(--color-text);
}

.text-link {
    color: var(--color-text);
    text-decoration: underline;
    text-decoration-color: var(--color-border);
    text-underline-offset: 2px;
}

.text-link:hover {
    color: var(--color-accent);
    text-decoration-color: var(--color-accent);
}

.part-price {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.part-price__currency {
    font-size: 0.85em;
    font-weight: 600;
}

.part-price--on-request {
    font-size: 0.95em;
    font-weight: 600;
    color: var(--color-text-muted);
}

.product-card__price {
    margin: 0 0 0.65rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
}

.product-card__more {
    margin-top: auto;
    padding-top: 0;
}

.product-card__actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0;
}

.product-card__more {
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 2.25rem;
    justify-content: center;
}

.catalog-empty,
.catalog-no-results {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: var(--color-text-muted);
}

.catalog-empty__title,
.catalog-no-results__title {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.catalog-empty__action {
    margin: 1.25rem 0 0;
}

.catalog-empty__reset {
    margin: 1rem 0 0;
}

.catalog-empty__reset a {
    font-size: 0.9rem;
    font-weight: 500;
}

.page-not-found {
    max-width: 32rem;
    margin: 2rem auto;
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

.page-not-found__title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    color: var(--color-dark);
}

.page-not-found__text {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
}

.page-not-found__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-card);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.pagination__link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: #faf8f5;
}

.pagination__link--current {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    font-weight: 600;
}

.pagination__link--nav {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Product detail */

.breadcrumbs,
.product-detail__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    margin: 0 0 1rem;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.breadcrumbs a,
.product-detail__breadcrumb a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs a:hover,
.product-detail__breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumbs__sep,
.product-detail__breadcrumb-sep {
    color: var(--color-border);
    user-select: none;
}

.breadcrumbs__current,
.product-detail__breadcrumb-current {
    color: var(--color-text);
    font-weight: 500;
}

.product-detail__title {
    margin: 0 0 1.5rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    color: var(--color-dark);
    font-weight: 700;
    line-height: 1.3;
}

.product-detail__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .product-detail__layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: start;
        gap: 2rem;
    }
}

.product-gallery__main {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.product-gallery__main:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.product-gallery__placeholder {
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ece8e2;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.product-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
}

.product-gallery__thumb-btn {
    display: block;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    background: none;
    cursor: pointer;
    line-height: 0;
}

.product-gallery__thumb-btn:hover {
    border-color: var(--color-border);
}

.product-gallery__thumb-btn.is-active {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px var(--color-accent);
}

.product-gallery__thumb-btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.product-gallery__thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: calc(var(--radius-sm) - 2px);
    display: block;
}

.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.product-lightbox--open {
    display: flex;
}

.product-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    cursor: pointer;
}

.product-lightbox__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 960px);
    max-height: calc(100vh - 2rem);
    margin: 0 auto;
}

.product-lightbox__figure {
    margin: 0;
    max-width: 100%;
    text-align: center;
}

.product-lightbox__image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 6rem);
    width: auto;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    background: #111;
}

.product-lightbox__counter {
    margin: 0.75rem 0 0;
    color: #fff;
    font-size: 0.95rem;
}

.product-lightbox__close,
.product-lightbox__nav {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.92);
    color: #222;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease;
}

.product-lightbox__close:hover,
.product-lightbox__nav:hover {
    background: #fff;
}

.product-lightbox__close:focus-visible,
.product-lightbox__nav:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.product-lightbox__close {
    top: -0.25rem;
    right: -0.25rem;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    font-size: 1.75rem;
    z-index: 2;
}

.product-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    font-size: 2rem;
    z-index: 2;
}

.product-lightbox__nav--prev {
    left: 0.5rem;
}

.product-lightbox__nav--next {
    right: 0.5rem;
}

body.product-lightbox-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .product-lightbox {
        padding: 0.5rem;
    }

    .product-lightbox__close {
        top: 0.25rem;
        right: 0.25rem;
    }

    .product-lightbox__nav {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.75rem;
    }

    .product-lightbox__nav--prev {
        left: 0.25rem;
    }

    .product-lightbox__nav--next {
        right: 0.25rem;
    }

    .product-lightbox__image {
        max-height: calc(100vh - 5rem);
    }

    .product-gallery__thumb {
        width: 64px;
        height: 64px;
    }
}

.product-buybox {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
    .product-buybox {
        position: sticky;
        top: 1rem;
    }
}

.product-buybox__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--color-border);
}

.product-buybox__price {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

.product-buybox__badge {
    display: inline-block;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.product-buybox__badge--yes {
    background: #e8f5ec;
    color: var(--color-available);
}

.product-buybox__badge--no {
    background: #fdecea;
    color: var(--color-unavailable);
}

.product-buybox__specs {
    margin: 0 0 1.25rem;
    padding: 0;
}

.product-buybox__spec {
    display: grid;
    grid-template-columns: 6.5rem 1fr;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--color-border);
}

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

.product-buybox__spec dt {
    margin: 0;
    color: var(--color-text-muted);
    font-weight: 500;
}

.product-buybox__spec dd {
    margin: 0;
    color: var(--color-text);
}

.product-detail__description {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.product-detail__section-title {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.product-detail__description-text {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.contact-actions {
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.contact-actions__title {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.contact-actions__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: stretch;
}

.contact-actions__buttons .btn {
    min-height: 2.75rem;
}

/* Related products */

.related-section {
    margin-top: 1rem;
}

.related-section__title {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
    color: var(--color-dark);
    font-weight: 700;
}

/* Contacts page */

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
    .contacts-layout {
        grid-template-columns: 1fr;
    }
}

.contacts-main,
.contact-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
}

.contacts-aside__intro {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.contact-list {
    margin: 0 0 1.5rem;
}

.contact-list__title {
    margin: 0 0 0.85rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.contact-list__items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fafafa;
    text-decoration: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-item:hover {
    border-color: rgba(196, 30, 58, 0.35);
    background: #fff;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.contact-item--primary {
    border-color: rgba(196, 30, 58, 0.25);
    background: rgba(196, 30, 58, 0.04);
}

.contact-item__icon {
    flex: 0 0 auto;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--color-accent);
    font-size: 1rem;
    line-height: 1;
}

.contact-item__body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.contact-item__value {
    color: var(--color-dark);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
}

.contact-item__hint {
    color: var(--color-text-muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.contact-messengers {
    margin: 0 0 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
}

.contact-messengers__title {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-dark);
}

.contact-messengers__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.contact-messengers__actions .btn {
    min-height: 2.75rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 1.25rem;
}

.contact-actions .btn {
    min-height: 2.75rem;
}

.contacts-aside {
    align-self: stretch;
}

.contacts-aside__card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contacts-aside__title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.contacts-aside__list {
    margin: 0;
    padding: 0 0 0 1.25rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.contacts-aside__list li {
    margin-bottom: 0.25rem;
}

.contacts-eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-accent);
}

.contacts-card__title {
    margin: 0 0 0.75rem;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.2;
}

.contacts-card__intro {
    margin: 0 0 1.5rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contacts-phones {
    margin: 0 0 1.5rem;
}

.contacts-phones__title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
}

.contacts-phones__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contacts-phones__list li + li {
    margin-top: 0.5rem;
}

.contacts-phones__link {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    line-height: 1.3;
}

.contacts-phones__link:hover {
    color: var(--color-accent);
}

.contacts-phone {
    display: block;
    margin: 0 0 1.5rem;
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.contacts-phone:hover {
    color: var(--color-accent);
}

.contacts-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 1.25rem;
}

.contacts-actions .btn,
.contact-actions .btn {
    min-height: 2.75rem;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 0 0 1.25rem;
}

.contacts-note {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--color-border);
    line-height: 1.55;
}

.contacts-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem 1.5rem;
    background: var(--color-dark);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    color: #e5e7eb;
}

.contacts-cta__content {
    flex: 1 1 16rem;
    min-width: 0;
}

.contacts-cta__title {
    margin: 0 0 0.45rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

.contacts-cta__text {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.55;
    font-size: 0.95rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    align-items: stretch;
    justify-content: flex-end;
    flex: 1 1 18rem;
}

.cta-actions .btn {
    min-height: 2.75rem;
}

.contacts-cta .btn-primary {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.contacts-cta .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.contacts-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
}

.contacts-cta a.btn-contact,
.contacts-cta a.btn-contact:link,
.contacts-cta a.btn-contact:visited {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.contacts-cta a.btn-contact:hover,
.contacts-cta a.btn-contact:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

/* Mobile */

@media (max-width: 900px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar {
        position: static;
    }
}

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

    .contacts-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions {
        justify-content: stretch;
    }

    .cta-actions .btn,
    .contact-messengers__actions .btn,
    .contact-actions .btn {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 8.5rem;
    }

    .hero {
        padding: 1.75rem 1.25rem;
    }

    .contact-actions__buttons .btn,
    .filters-card__actions .btn,
    .hero__actions .btn {
        flex: 1 1 auto;
        min-width: 130px;
    }

    .contact-actions__buttons,
    .filters-card__actions,
    .hero__actions {
        width: 100%;
    }

    .filters-card__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .filters-card__actions .btn {
        flex: 1 1 auto;
        width: auto;
    }
}

/* Logo: hard limits override global img { max-width: 100% } */

.site-header .site-brand,
.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex: 0 0 auto;
    max-width: max-content;
    color: #fff;
}

.site-header .site-brand:hover,
.site-brand:hover {
    color: #fff;
    opacity: 0.92;
    text-decoration: none;
}

.site-header .site-logo,
.site-logo {
    display: block !important;
    width: 90px !important;
    max-width: 90px !important;
    height: 48px !important;
    max-height: 48px !important;
    object-fit: contain !important;
    flex: 0 0 auto;
    border-radius: 6px;
}

.site-brand-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 1.1;
    color: inherit;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .site-header {
        overflow-x: clip;
    }

    .site-header .container.site-header__inner,
    .site-header__inner {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .site-header__row--brand,
    .site-header__row--contacts,
    .site-header__row--nav {
        width: 100%;
        position: static;
        grid-column: auto;
        grid-row: auto;
    }

    .site-header .site-brand,
    .site-brand {
        width: 100%;
        max-width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        position: static;
    }

    .header-contact-links {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 8px;
        position: static;
    }

    .header-contact-links__item {
        position: static;
        font-size: 0.9375rem;
        padding: 0.28rem 0.6rem;
        max-width: 100%;
        white-space: nowrap;
    }

    .site-nav {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 18px;
        position: static;
        padding-top: 0;
        border-top: none;
    }

    .site-header__row--nav {
        padding-top: 2px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-header .site-logo,
    .site-logo {
        width: 60px !important;
        max-width: 60px !important;
        height: 32px !important;
        max-height: 32px !important;
    }

    .site-brand-text {
        font-size: 1.125rem;
        white-space: normal;
    }

    .site-nav a {
        font-size: 1.125rem;
    }

    .home-block {
        padding: 1.35rem 1.15rem;
    }

    .benefit-card {
        padding: 1.25rem 1.15rem;
    }

    .catalog-content__title {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .site-brand-text {
        font-size: 1rem;
        line-height: 1.2;
    }

    .site-header .site-logo,
    .site-logo {
        width: 54px !important;
        max-width: 54px !important;
        height: 28px !important;
        max-height: 28px !important;
    }

    .header-contact-links__item {
        font-size: 0.9375rem;
        padding: 0.24rem 0.5rem;
    }

    .site-nav {
        gap: 14px;
    }

    .site-nav a {
        font-size: 1.125rem;
    }
}

/* TZ №38 — polish: filters reset, model chips */

.filters-card__actions .btn-secondary {
    background: transparent;
    color: var(--color-muted);
    border-color: var(--color-border);
    font-weight: 400;
}

.filters-card__actions .btn-secondary:hover {
    background: #faf8f5;
    color: var(--color-text);
    border-color: #cfc8be;
}

.model-chips {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.55rem;
}

.model-chips__item a,
.model-chips__item span {
    min-height: 2.5rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.88rem;
    font-weight: 400;
}

.product-grid {
    gap: 1rem;
}

.product-card__content {
    padding: 0.8rem 0.95rem 0.95rem;
}

.product-card__title {
    min-height: calc(15px * 1.3 * 3);
}

/* Site messages */

.site-messages {
    margin-bottom: 1.25rem;
}

.site-message {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
}

.site-message--success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #1b5e20;
}

.site-message--error {
    background: #ffebee;
    border: 1px solid #ef9a9a;
    color: #b71c1c;
}

/* Mobile header v3 — final override (keep last) */

@media (max-width: 768px) {
    .site-header .container.site-header__inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 14px !important;
    }

    .site-header__row--brand,
    .site-header__row--contacts,
    .site-header__row--nav {
        width: 100% !important;
        max-width: 100% !important;
        position: static !important;
        grid-column: auto !important;
        grid-row: auto !important;
    }

    .site-header .site-brand,
    .site-brand {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        position: static !important;
    }

    .header-contact-links {
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        position: static !important;
    }

    .header-contact-links__item {
        position: static !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    .site-nav {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 18px !important;
        position: static !important;
    }

    .site-header__row--nav {
        padding-top: 2px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 480px) {
    .site-header .site-logo,
    .site-logo {
        width: 54px !important;
        max-width: 54px !important;
        height: 28px !important;
        max-height: 28px !important;
    }

    .site-brand-text {
        font-size: 1rem !important;
    }

    .header-contact-links__item {
        font-size: 0.9375rem !important;
    }

    .site-nav a {
        font-size: 1.125rem !important;
    }
}
