:root {
    --nomma-font-sans: "Lato", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --nomma-font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    --nomma-template-yellow: #ddcd55;
    --nomma-teal: #0f6070;
    --nomma-teal-dark: #104f5d;
    --nomma-yellow: #ddcd55;
    --nomma-light: #f5f6f6;
    --nomma-light-text:#3A8B94;
    --nomma-border: #cfdadc;
    --nomma-text: #145c6c;
    --color-noma-background:#ddcd55;
}

body.nomma-catalogue {
    margin: 0;
    color: var(--nomma-text);
    background: #fff;
    font-family: var(--nomma-font-sans);
}

.nomma-catalogue code,
.nomma-catalogue kbd,
.nomma-catalogue samp,
.nomma-catalogue pre {
    font-family: var(--nomma-font-mono);
}

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

.nomma-catalogue a {
    color: inherit;
    text-decoration: none;
}

.nomma-catalogue-nav {
    position: sticky;
    z-index: 100;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.admin-bar .nomma-catalogue-nav {
    top: 32px;
}

.nomma-catalogue-logo img {
    display: block;
    width: 128px;
    height: auto;
}

.nomma-catalogue-nav__desktop {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 17px;
    font-weight: 400;
}

.nomma-catalogue-nav__desktop a,
.nomma-catalogue-nav__mobile a {
    position: relative;
    padding: 8px 0;
}

.nomma-catalogue-nav__desktop a {
    padding: 0;
}

.nomma-catalogue-nav__desktop a::after,
.nomma-catalogue-nav__mobile a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    content: '';
    transition: opacity 0.2s ease;
    opacity: 0;
    background: var(--nomma-text);
}

.nomma-catalogue-nav__desktop a::after {
    bottom: -6px;
    height: 4px;
}

.nomma-catalogue-nav__desktop a:hover::after,
.nomma-catalogue-nav__desktop a.is-current::after,
.nomma-catalogue-nav__mobile a:hover::after,
.nomma-catalogue-nav__mobile a.is-current::after {
    opacity: 1;
}

.nomma-catalogue-menu-button {
    display: none;
    width: 36px;
    padding: 5px 2px;
    border: 0;
    background: transparent;
}

.nomma-catalogue-menu-button span {
    display: block;
    height: 3px;
    margin: 5px 0;
    border-radius: 4px;
    background: var(--nomma-teal);
}

.nomma-catalogue-nav__mobile {
    display: none;
}

.nomma-catalogue-bar {
    color: #fff;
    background: var(--nomma-teal);
}

.nomma-catalogue-bar__inner {
    display: flex;
    width: min(100% - 40px, 1320px);
    min-height: 70px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nomma-catalogue-bar h1 {
    margin: 0;
    color: var(--nomma-yellow);
    font-size: clamp(18px, 2.4vw, 24px);
    font-weight: 400;
}

.nomma-condition-switch {
    display: flex;
    gap: 22px;
}

.nomma-condition-switch a,
.nomma-pill-button {
    display: inline-flex;
    min-width: 168px;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 6px 24px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-align: center;
    text-transform: uppercase;
    border: 2px solid #fff;
    border-radius: 999px;
    font-weight: 400;
}

.nomma-condition-switch a.is-active,
.nomma-condition-switch a:hover,
.nomma-pill-button {
     font-weight: 700;
    color: var(--nomma-teal);
    border-color: var(--nomma-yellow);
    background: var(--nomma-yellow);
}

.nomma-catalogue-main {
    min-height: 60vh;
    padding: clamp(42px, 6vw, 82px) 0;
}

.nomma-catalogue-container {
    width: min(100% - 40px, 1240px);
    margin: 0 auto;
}

.nomma-category-grid {
    display: grid;
    max-width: 1230px;
    margin: 0 auto;
    padding: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    background: none;
}

.nomma-category-card {
    position: relative;
    display: flex;
    min-height: 280px;
    padding: 18px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 3px 18px rgba(14, 76, 88, 0.1);
    border-radius: 10px;
    background: #fff;
      border:0;
}

.nomma-category-card:hover {
    color: var(--nomma-yellow);
    transform: translateY(-5px);
    background: #969a9b;
    box-shadow: 0 12px 30px rgba(13, 73, 85, 0.18);
}

.nomma-category-card__image {
    display: grid;
    height: 205px;
    place-items: center;
}

.nomma-category-card__image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.nomma-category-card strong {
    font-size: 17px;
    line-height: 1.3;
}

.nomma-category-card__placeholder {
    font-size: 30px;
    font-weight: 700;
}

.nomma-page-content {
    max-width: 980px;
    margin: 48px auto 0;
    line-height: 1.7;
}

.nomma-listing-layout {
    display: grid;
    align-items: start;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
}

.nomma-machine-filters {
    position: sticky;
    top: 110px;
}

.nomma-machine-filters section {
    margin-bottom: 28px;
}

.nomma-machine-filters h2 {
    margin: 0;
    border-top: 1px solid var(--nomma-teal);
    font-size: 18px;
    font-weight: 500;
}

.nomma-filter-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    text-align: left;
    border: 0;
    border-bottom: 1px solid transparent;
    background: transparent;
    font: inherit;
}

.nomma-filter-toggle::before {
    width: 14px;
    margin-right: 3px;
    content: '−';
    text-align: left;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.nomma-filter-toggle[aria-expanded='false'] {
    border-bottom-color: var(--nomma-teal);
}

.nomma-filter-toggle[aria-expanded='false']::before {
    content: '+';
}

.nomma-filter-toggle:focus-visible {
    outline: 2px solidvar(--nomma-teal);
    outline-offset: 3px;
}

.nomma-filter-panel {
    padding-top: 0;
}

.nomma-filter-panel__close,
.nomma-filter-backdrop {
    display: none;
}

.nomma-machine-filters ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nomma-machine-filters li {
    margin: 8px 0;
}

.nomma-machine-filters a {
    display: inline-block;
    padding: 2px 2px;
    font-weight: 400;
}

.nomma-machine-filters a::before {
    margin-right: 10px;
    content: '□';
    color: var(--nomma-teal);
}

.nomma-machine-filters a.is-active {
    font-weight: 800;
   
}

.nomma-machine-filters a.is-active::before {
    content: '■';
   color: var(--nomma-teal);
}

.nomma-machine-filters a:hover::before,
.nomma-machine-filters a:focus-visible::before {
    content: '■';
    color: var(--nomma-teal);
}

.nomma-machine-results__title {
    margin: 0 0 28px;
    color: var(--nomma-teal);
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.2;
    font-weight: 700;
}

.nomma-machine-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.nomma-machine-card {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 18px rgba(14, 76, 88, 0.1);
}

.nomma-machine-card:hover {
    background: #969a9b;
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(14, 76, 88, 0.18);
}

.nomma-machine-card:focus-within {
    background: #969a9b;
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(14, 76, 88, 0.18);
}

.nomma-machine-card__image {
    display: grid;
    height: 245px;
    padding: 18px;
    place-items: center;
}

.nomma-machine-card__image img {
    max-width: 100%;
    max-height: 100%;
    transition: opacity 0.2s ease;
    object-fit: contain;
}

.nomma-machine-card:hover .nomma-machine-card__image img,
.nomma-machine-card:focus-within .nomma-machine-card__image img {
    opacity: 0.68;
}

.nomma-machine-card__body {
    display: flex;
    padding: 10px 22px 24px;
    flex: 1;
    flex-direction: column;
    text-align: center;
}

.nomma-machine-card__producer {
    margin: 0 0 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.nomma-machine-card h2 {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.35;
}

.nomma-machine-card:hover h2,
.nomma-machine-card:focus-within h2 {
    color: var(--nomma-yellow);
    font-size: 22px;
    text-align: left;
}

.nomma-machine-card__prices {
    display: table;
    margin: auto auto 18px;
    padding-top: 8px;
    border-collapse: collapse;
}

.nomma-machine-card__prices p {
    display: table-row;
}

.nomma-machine-card__prices p > * {
    display: table-cell;
}

.nomma-machine-card__prices strong {
    text-align: right;
}

.nomma-machine-card__prices p > span[aria-hidden='true'] {
    padding: 0 0.2em;
    text-align: center;
}

.nomma-machine-card__prices p > span:last-child {
    text-align: left;
}

.nomma-machine-card__price--net > * {
    background: var(--nomma-yellow);
    box-shadow: none;
}

.nomma-machine-card__price--gross > * {
    padding-top: 4px;
    font-size: 13px;
}

.nomma-machine-card .nomma-pill-button {
    display: none;
    min-width: 150px;
    min-height: 38px;
    margin: auto auto 0;
    padding: 7px 25px;
    text-transform: none;
}

.nomma-machine-card:hover .nomma-pill-button,
.nomma-machine-card:focus-within .nomma-pill-button {
    display: inline-flex;
}

.nomma-machine-card:hover .nomma-machine-card__producer,
.nomma-machine-card:hover .nomma-machine-card__prices,
.nomma-machine-card:focus-within .nomma-machine-card__producer,
.nomma-machine-card:focus-within .nomma-machine-card__prices {
    display: none;
}

.nomma-pill-button:hover {
    color: #fff;
    transform: translateY(-2px);
    border-color: var(--nomma-teal);
    background: var(--nomma-teal);
}

.nomma-empty-state {
    width: 100%;
    padding: 60px 24px;
    text-align: center;
    border: 1px solid var(--nomma-border);
    border-radius: 12px;
}

.nomma-pagination ul {
    display: flex;
    margin: 40px 0 0;
    padding: 0;
    justify-content: center;
    gap: 8px;
    list-style: none;
}

.nomma-pagination a,
.nomma-pagination span {
    display: grid;
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    place-items: center;
    border: 1px solid var(--nomma-teal);
    border-radius: 999px;
}

.nomma-pagination .current {
    color: #fff;
    background: var(--nomma-teal);
}

.nomma-single-machine {
    padding-bottom: 0;
}

.nomma-product-layout {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: clamp(40px, 7vw, 90px);
}

.nomma-product-gallery {
    min-width: 0;
}

.nomma-product-gallery__main {
    display: grid;
    width: 100%;
    min-height: 520px;
    padding: 0;
    overflow: hidden;
    cursor: zoom-in;
    place-items: center;
    color: inherit;
    border: 0;
    border-left: 1px solid #eef1f1;
    background: transparent;
}

.nomma-product-gallery__main img {
    width: 100%;
    max-height: 560px;
    object-fit: contain;
}

.nomma-product-gallery__thumbs {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.nomma-gallery-thumb {
    display: grid;
    width: 100px;
    height: 74px;
    padding: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease;
    border: 2px solid transparent;
    border-radius: 7px;
    background: #fff;
    place-items: center;
}

.nomma-gallery-thumb.is-active,
.nomma-gallery-thumb:hover {
    border-color: var(--nomma-yellow);
}

.nomma-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body.nomma-gallery-lightbox-open {
    overflow: hidden;
}

.nomma-gallery-lightbox-open .nomma-product-gallery {
    z-index: 1001;
}

.nomma-gallery-lightbox[hidden] {
    display: none;
}

.nomma-gallery-lightbox {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    padding: 72px 88px;
    place-items: center;
    background: rgba(4, 30, 36, 0.92);
}

.nomma-gallery-lightbox__figure {
    display: grid;
    width: min(100%, 1280px);
    height: 100%;
    margin: 0;
    place-items: center;
}

.nomma-gallery-lightbox__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nomma-gallery-lightbox__close,
.nomma-gallery-lightbox__nav {
    position: absolute;
    display: grid;
    cursor: pointer;
    color: #fff;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 96, 112, 0.82);
    place-items: center;
}

.nomma-gallery-lightbox__nav[hidden] {
    display: none;
}

.nomma-gallery-lightbox__close {
    top: 22px;
    right: 24px;
    width: 48px;
    height: 48px;
    font-size: 36px;
    line-height: 1;
}

.nomma-gallery-lightbox__nav {
    top: 50%;
    width: 52px;
    height: 52px;
    padding: 0 0 5px;
    font-size: 44px;
    line-height: 1;
    transform: translateY(-50%);
}

.nomma-gallery-lightbox__nav--prev {
    left: 22px;
}

.nomma-gallery-lightbox__nav--next {
    right: 22px;
}

.nomma-gallery-lightbox__close:hover,
.nomma-gallery-lightbox__close:focus-visible,
.nomma-gallery-lightbox__nav:hover,
.nomma-gallery-lightbox__nav:focus-visible {
    color: var(--nomma-teal);
    background: var(--nomma-yellow);
}

.nomma-back-link {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--nomma-teal-dark) !important;
    font-weight: 600;
}

.nomma-product-eyebrow {
    margin: 0 0 6px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.nomma-product-summary h1 {
    margin: 0 0 28px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
}

.nomma-product-summary h1 span {
    box-shadow: inset 0 -12px var(--nomma-yellow);
}

.nomma-equipment-list {
    margin: 0 0 24px;
}

.nomma-equipment-list h2 {
    margin: 0 0 10px;
    font-size: 17px;
}

.nomma-equipment-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nomma-equipment-list li {
    margin: 8px 0;
}

.nomma-equipment-list li::before {
    display: inline-grid;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    content: '✓';
    color: #fff;
    border-radius: 50%;
    background: var(--nomma-teal);
    font-size: 12px;
    place-items: center;
}

.nomma-equipment-list--optional li::before {
    color: var(--nomma-teal);
    border: 1px solid #96cbc3;
    background: #fff;
}

.nomma-equipment-list--optional,
.nomma-equipment-list--optional h2,
.nomma-equipment-list--optional li {
    color: var(--nomma-light-text);
}

.nomma-price-box {
    display: grid;
    margin: 24px 0;
    padding: 20px 30px;
    align-items: baseline;
    grid-template-columns: max-content minmax(0, 1fr);
    column-gap: 16px;
    row-gap: 7px;
    color: #fff;
    border-radius: 18px;
    background: var(--nomma-teal);
}

.nomma-price-box p {
    display: contents;
    margin: 0;
}

.nomma-price-box strong {
    line-height: 1;
}

.nomma-price-box__net strong {
    font-size: clamp(26px, 2.2vw, 34px);
    font-weight: 700;
}

.nomma-price-box__gross strong {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 400;
}

.nomma-contact-card {
    display: grid;
    margin: 24px 0;
    padding: 10px 16px;
    align-items: center;
    border: 2px solid var(--nomma-teal);
    border-radius: 18px;
    grid-template-columns: 90px 1fr;
    gap: 18px;
}

.nomma-contact-card > img {
    width: 90px;
    height: 90px;
    border-radius: 4px;
    object-fit: cover;
}

.nomma-contact-card > div {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
    text-align: center;
}

.nomma-contact-card .nomma-pill-button {
    min-width: 140px;
    min-height: 32px;
    padding: 4px 18px;
    text-transform: none;
    font-size: 13px;
}

.nomma-product-details {
    border-top: 1px solid var(--nomma-teal);
}

.nomma-product-details:last-of-type {
    border-bottom: 1px solid var(--nomma-teal);
}

.nomma-product-details summary {
    display: flex;
    padding: 14px 5px;
    align-items: center;
    cursor: pointer;
    list-style: none;
    font-size: 17px;
    font-weight: 600;
}

.nomma-product-details summary::-webkit-details-marker {
    display: none;
}

.nomma-product-details summary::before {
    width: 22px;
    margin-right: 6px;
    content: '+';
    color: var(--nomma-teal-dark);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

.nomma-product-details[open] summary::before {
    content: '−';
}

.nomma-product-details > div {
    padding: 4px 8px 22px;
    line-height: 1.7;
}

.nomma-parameters-table-wrap {
    overflow-x: auto;
}

.nomma-parameters-table {
    width: 100%;
    border-collapse: collapse;
}

.nomma-parameters-table th,
.nomma-parameters-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid var(--nomma-border);
}

.nomma-parameters-table tr:nth-child(odd) {
    background: #f4f7f7;
}

.nomma-back-link--bottom {
    margin: 24px 0 0;
}

.nomma-benefits {
    display: grid;
    margin: 68px 0 0;
    padding: 15px 0;
    border: 1.5px solid var(--nomma-yellow);
    border-radius: 15px;
    grid-template-columns: repeat(4, 1fr);
}

.nomma-benefit {
    display: flex;
    min-height: 76px;
    padding: 15px 22px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    border-right: 1px solid var(--nomma-yellow);
}

.nomma-benefit:last-child {
    border-right: 0;
}

.nomma-benefit__icon {
    display: block;
    width: 55px;
    height: 41px;
    object-fit: scale-down;
}

.nomma-benefit strong {
    color: var(--nomma-teal);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
}

.nomma-related-machines {
    margin: 76px 0 0;
}

.nomma-related-machines > h2 {
    margin: 0 0 38px;
    text-align: center;
    color: var(--nomma-teal);
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.25;
}

.nomma-machine-grid--related {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.nomma-machine-grid--related .nomma-machine-card {
    min-height: 430px;
}

.nomma-machine-grid--related .nomma-machine-card__image {
    height: 210px;
}

.nomma-purchase-steps {
    display: grid;
    width: min(100% - 40px, 1240px);
    min-height: 0;
    margin: 72px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    color: var(--nomma-teal);
    background: var(--nomma-yellow);
}

.nomma-purchase-steps__inner {
    width: min(100%, 520px);
    min-height: 400px;
    margin: 0 auto;
    padding: 30px 46px 24px;
}

.nomma-purchase-steps h2 {
    margin: 0 0 24px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.nomma-purchase-steps h2 span {
    position: relative;
    z-index: 0;
    display: inline-block;
    isolation: isolate;
}

.nomma-purchase-steps h2 span::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: -4px;
    left: 0;
    height: 7px;
    content: '';
    background: #fff;
}

.nomma-purchase-steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: nomma-purchase-step;
}

.nomma-purchase-steps li {
    position: relative;
    min-height: 42px;
    margin: 0 0 24px;
    padding-left: 40px;
    font-size: 14px;
    line-height: 1.45;
    counter-increment: nomma-purchase-step;
}

.nomma-purchase-steps li:last-child {
    margin-bottom: 0;
}

.nomma-purchase-steps li::before {
    position: absolute;
    top: -3px;
    left: 0;
    content: counter(nomma-purchase-step) '.';
    font-size: 22px;
    font-weight: 500;
    line-height: 1;
}

.nomma-purchase-steps li strong {
    font-weight: 700;
}

.nomma-purchase-steps__media {
    position: relative;
    min-width: 0;
    min-height: 0;
    margin: 0;
    overflow: hidden;
}

.nomma-purchase-steps__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.nomma-catalogue-footer {
    position: relative;
    overflow: hidden;
    padding: 48px 24px;
    color: #fff;
    background: #145c6c;
 
}

.nomma-catalogue-footer::before {
    position: absolute;
    inset: 0;
    content: '';
    opacity: 1;
    pointer-events: none;
    background: var(--nomma-footer-art) center top / 800px auto no-repeat;
    transform-origin: center;
    transform: rotate(180deg) translateY(0px);
}

.nomma-catalogue-footer__inner {
    position: relative;
    display: flex;
    z-index: 1;
    width: min(100%, 1152px);
    margin: 0 auto;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}
 
.nomma-catalogue-footer__brand {
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
}

.nomma-catalogue-footer__brand > img {
    width: auto;
    max-width: 100%;
    height: 56px;
    margin-right: 40px;
    object-fit: contain;
}

.nomma-catalogue-footer__contact > strong,
.nomma-catalogue-footer__contact > p,
.nomma-catalogue-footer__bank {
    color: var(--nomma-template-yellow);
}

.nomma-catalogue-footer p {
    margin: 0;
    line-height: 1.6;
}

.nomma-catalogue-footer__contact > strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 500;
}

.nomma-catalogue-footer__contact > p,
.nomma-catalogue-footer__bank p {
    font-size: 14px;
    font-weight: 500;
}

.nomma-catalogue-footer__contact > p {
    line-height: 1.625;
}

.nomma-catalogue-socials {
    display: flex;
    margin-top: 16px;
    padding-top: 20px;
    align-items: center;
    gap: 20px;
}

.nomma-catalogue-socials a {
    display: block;
    width: 48px;
    height: 48px;
    color: #fff;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nomma-catalogue-socials a:hover {
    color: var(--nomma-template-yellow);
    transform: translateY(-2px);
}

.nomma-social-icon {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.nomma-social-icon--small {
    transform: scale(0.85);
}

.nomma-social-icon--youtube {
    transform: scale(1.6);
}

.nomma-catalogue-footer__meta {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
}

.nomma-catalogue-footer__bank-title {
    margin-bottom: 8px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}

.nomma-catalogue-footer__account {
    letter-spacing: 0.05em;
}

.nomma-catalogue-footer__bic {
    margin-top: 4px !important;
}

.nomma-catalogue-footer__legal {
    width: 100%;
    padding-top: 16px;
    color: oklch(70.4% 0.04 256.788);
    border-top: 1px solid rgba(49, 65, 88, 0.5);
    font-size: 12px;
}

.nomma-catalogue-footer__legal a {
    display: inline-block;
    margin-bottom: 12px;
    color: oklch(70.4% 0.04 256.788);
    font-size: 14px;
}

.nomma-catalogue-footer__legal a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (min-width: 640px) {
    .nomma-catalogue-nav {
        padding: 16px 24px;
    }

    .nomma-catalogue-logo img {
        width: 160px;
    }

    .nomma-catalogue-footer__brand {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .nomma-catalogue-nav {
        padding-right: 48px;
        padding-left: 48px;
    }

    .nomma-catalogue-footer__inner {
        flex-direction: row;
    }

    .nomma-catalogue-footer__brand,
    .nomma-catalogue-footer__meta {
        width: auto;
    }

    .nomma-catalogue-footer__meta {
        align-items: flex-end;
        gap: 24px;
        text-align: right;
    }

    .nomma-catalogue-footer__legal {
        border-top: 0;
    }
}

@media (min-width: 1024px) {
    .nomma-catalogue-nav__desktop {
        gap: 48px;
        font-size: 24px;
    }
}

@media (min-width: 1025px) {
    .nomma-product-gallery {
        position: sticky;
        top: 92px;
    }

    .admin-bar .nomma-product-gallery {
        top: 124px;
    }
}

@media (max-width: 1024px) {
    .nomma-machine-grid,
    .nomma-machine-grid--related {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nomma-product-layout {
        grid-template-columns: 1fr;
    }

    .nomma-product-gallery__main {
        min-height: 420px;
    }
}

@media (max-width: 782px) {
    .nomma-catalogue-main {
        padding-top: 0;
    }

    .nomma-machine-card:hover h2,
    .nomma-machine-card:focus-within h2 {
        text-align: center;
    }

    .nomma-machine-card__image {
        overflow: hidden;
    }

    .nomma-machine-card__image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .nomma-gallery-lightbox {
        padding: 64px 52px;
    }

    .nomma-gallery-lightbox__close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        font-size: 31px;
    }

    .nomma-gallery-lightbox__nav {
        width: 40px;
        height: 40px;
        font-size: 34px;
        top: 50%;
    }

    .nomma-gallery-lightbox__nav--prev {
        left: 7px;
    }

    .nomma-gallery-lightbox__nav--next {
        right: 7px;
    }

    .admin-bar .nomma-catalogue-nav {
        top: 46px;
    }

    .nomma-catalogue-nav__desktop {
        display: none;
    }

    .nomma-catalogue-menu-button {
        display: block;
    }

    .nomma-catalogue-nav__mobile {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: flex;
        padding: 24px;
        align-items: center;
        flex-direction: column;
        gap: 12px;
        transition: opacity 0.2s ease, transform 0.2s ease;
        pointer-events: none;
        opacity: 0;
        background: #fff;
        box-shadow: 0 12px 25px rgba(14, 76, 88, 0.14);
        transform: translateY(-10px);
    }

    .nomma-catalogue-nav__mobile.is-open {
        pointer-events: auto;
        opacity: 1;
        transform: translateY(0);
    }

    .nomma-catalogue-bar__inner {
        padding: 22px 0;
        align-items: center;
        flex-direction: column;
    }

    .nomma-catalogue-bar h1 {
        width: 100%;
        text-align: center;
    }

    .nomma-condition-switch {
        width: 100%;
    }

    .nomma-condition-switch a {
        min-width: 0;
        flex: 1;
    }

    .nomma-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .nomma-listing-layout {
        grid-template-columns: 1fr;
    }

    .nomma-machine-filters {
        position: sticky;
        z-index: 80;
        top: 50px;
        display: grid;
        width: calc(100% + 40px);
        margin-left: -20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        border-top: 1px solid var(--nomma-teal);
        border-bottom: 1px solid var(--nomma-teal);
        background: #fff;
    }

    .admin-bar .nomma-machine-filters {
        top: 96px;
    }

    .nomma-machine-filters section {
        min-width: 0;
        margin-bottom: 0;
    }

    .nomma-machine-filters .nomma-filter-group + .nomma-filter-group {
        border-left: 1px solid var(--nomma-teal);
    }

    .nomma-machine-filters h2 {
        position: relative;
        z-index: 4;
        border-top: 0;
        background: #fff;
    }

    .nomma-filter-toggle {
        justify-content: center;
        padding: 11px 6px;
        border-bottom: 0;
        white-space: nowrap;
        font-size: 14px;
        font-weight: 400;
    }

    .nomma-filter-toggle[aria-expanded='false'] {
        border-bottom-color: transparent;
    }

    .nomma-filter-toggle[aria-expanded='true'] {
        font-weight: 700;
    }

    .nomma-filter-panel {
        position: absolute;
        z-index: 3;
        top: 100%;
        right: 0;
        left: 0;
        padding: 8px 44px 16px 12px;
        border-bottom: 1px solid var(--nomma-teal);
        background: #fff;
        box-shadow: 0 10px 20px rgba(14, 76, 88, 0.12);
    }

    .nomma-filter-panel[hidden] {
        display: none;
    }

    .nomma-filter-panel__close {
        position: absolute;
        top: 8px;
        right: 12px;
        display: block;
        width: 28px;
        height: 28px;
        padding: 0;
        cursor: pointer;
        color: var(--nomma-teal);
        border: 0;
        background: transparent;
        font-size: 26px;
        font-weight: 400;
        line-height: 1;
    }

    .nomma-filter-backdrop:not([hidden]) {
        position: absolute;
        z-index: 2;
        top: 100%;
        left: 50%;
        display: block;
        width: 100vw;
        height: 100vh;
        padding: 0;
        cursor: default;
        border: 0;
        background: rgba(0, 0, 0, 0.34);
        transform: translateX(-50%);
    }

    .nomma-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .nomma-benefit:nth-child(2) {
        border-right: 0;
    }

    .nomma-benefit:nth-child(-n+2) {
        border-bottom: 1px solid var(--nomma-yellow);
    }

    .nomma-purchase-steps {
        grid-template-columns: 1fr;
    }

    .nomma-purchase-steps__inner {
        width: min(100%, 560px);
        padding: 36px 40px;
    }

    .nomma-purchase-steps__media {
        min-height: 360px;
    }

}

@media (min-width: 640px) and (max-width: 782px) {
    .nomma-machine-filters {
        top: 65px;
    }

    .admin-bar .nomma-machine-filters {
        top: 111px;
    }
}

@media (max-width: 560px) {
    .nomma-category-grid,
    .nomma-machine-grid,
    .nomma-machine-grid--related {
        grid-template-columns: 1fr;
    }

    .nomma-category-card {
        min-height: 250px;
    }

    .nomma-product-gallery__main {
        min-height: 300px;
        cursor: grab;
        touch-action: pan-y;
    }

    .nomma-product-gallery__main img {
        pointer-events: none;
        user-select: none;
        -webkit-user-drag: none;
    }

    .nomma-product-gallery__thumbs {
        margin-top: 8px;
        justify-content: center;
        gap: 14px;
    }

    .nomma-gallery-thumb {
        width: 8px;
        height: 8px;
        padding: 0;
        opacity: 0.55;
        transition: opacity 0.2s ease, transform 0.2s ease;
        border: 0;
        border-radius: 50%;
        background: var(--nomma-teal);
    }

    .nomma-gallery-thumb.is-active,
    .nomma-gallery-thumb:hover,
    .nomma-gallery-thumb:focus-visible {
        opacity: 1;
        background: var(--nomma-teal);
        transform: scale(1.2);
    }

    .nomma-gallery-thumb:focus-visible {
        outline: 2px solid var(--nomma-yellow);
        outline-offset: 3px;
    }

    .nomma-gallery-thumb img {
        display: none;
    }

    .nomma-price-box p {
        display: flex;
        width: 100%;
        margin: 0 0 8px;
        align-items: center;
        flex-direction: column;
        gap: 4px;
    }

    .nomma-price-box p:last-child {
        margin-bottom: 0;
    }

    .nomma-price-box {
        display: flex;
        padding: 18px;
        align-items: center;
        flex-direction: column;
        column-gap: 10px;
        text-align: center;
    }

    .nomma-price-box span {
        font-size: 13px;
    }

    .nomma-purchase-steps__inner {
        padding: 32px 24px;
    }

    .nomma-purchase-steps h2 {
        font-size: 21px;
    }

    .nomma-purchase-steps li {
        padding-left: 36px;
    }

    .nomma-purchase-steps__media {
        min-height: 270px;
    }

    .nomma-contact-card {
        grid-template-columns: 1fr;
        justify-items: center;
    }

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

    .nomma-benefit,
    .nomma-benefit:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--nomma-yellow);
    }

    .nomma-benefit:last-child {
        border-bottom: 0;
    }
}
