:root {
    --acm-blue: #395b8f;
    --acm-blue-dark: #213a62;
    --acm-gold: #d6bd43;
    --acm-ink: #17223b;
    --acm-muted: #657086;
    --acm-border: #dce3ec;
    --acm-surface: #f6f8fb;
    --acm-white: #fff;
    --acm-radius: 16px;
    --acm-shadow: 0 12px 36px rgba(23, 34, 59, .10);
}

.acm-catalogue,
.acm-cart { max-width: 1240px; margin: 0 auto; padding: clamp(32px, 5vw, 72px) 20px; color: var(--acm-ink); }
.acm-catalogue *, .acm-cart * { box-sizing: border-box; }
.acm-eyebrow { display: inline-block; color: var(--acm-blue); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.acm-catalogue__intro, .acm-cart__header { max-width: 800px; margin-bottom: 32px; }
.acm-catalogue__intro h1, .acm-cart__header h1 { margin: 8px 0 12px; color: var(--acm-ink); font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.04em; }
.acm-catalogue__intro p, .acm-cart__header p { color: var(--acm-muted); font-size: 1.08rem; line-height: 1.65; }
.acm-catalogue__filters { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(220px, .7fr) auto; gap: 14px; align-items: end; padding: 18px; margin-bottom: 30px; border: 1px solid var(--acm-border); border-radius: var(--acm-radius); background: var(--acm-surface); }
.acm-catalogue label, .acm-order-form label, .acm-cart-item__quantity { display: grid; gap: 7px; color: var(--acm-ink); font-size: .9rem; font-weight: 700; }
.acm-catalogue input, .acm-catalogue select, .acm-order-form input, .acm-order-form select, .acm-order-form textarea, .acm-cart-item__quantity input { width: 100%; min-height: 46px; padding: 10px 12px; border: 1px solid #bec8d6; border-radius: 10px; background: var(--acm-white); color: var(--acm-ink); font: inherit; }
.acm-catalogue input:focus, .acm-catalogue select:focus, .acm-order-form input:focus, .acm-order-form select:focus, .acm-order-form textarea:focus { border-color: var(--acm-blue); outline: 3px solid rgba(57, 91, 143, .18); }
.acm-product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.acm-product-card { overflow: hidden; border: 1px solid var(--acm-border); border-radius: var(--acm-radius); background: var(--acm-white); box-shadow: 0 4px 18px rgba(23, 34, 59, .05); transition: transform .2s ease, box-shadow .2s ease; }
.acm-product-card:hover { transform: translateY(-4px); box-shadow: var(--acm-shadow); }
.acm-product-card__media { display: grid; height: 230px; place-items: center; overflow: hidden; background: #f8fafc; }
.acm-product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px; }
.acm-product-card__placeholder { display: grid; width: 90px; height: 72px; place-items: center; border-radius: 45% 55% 52% 48%; background: var(--acm-blue); color: #fff; font-size: 1.4rem; font-weight: 800; }
.acm-product-card__body { padding: 18px; }
.acm-product-card h2 { min-height: 48px; margin: 10px 0; font-size: 1.02rem; line-height: 1.4; }
.acm-product-card h2 a { color: var(--acm-ink); text-decoration: none; }
.acm-product-card__packaging { min-height: 40px; margin: 0 0 14px; color: var(--acm-muted); font-size: .88rem; }
.acm-product-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px solid var(--acm-border); padding-top: 15px; }
.acm-product-card__footer > strong { color: var(--acm-blue-dark); font-size: 1.14rem; }
.acm-button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; border: 0; border-radius: 10px; padding: 10px 16px; background: var(--acm-blue); color: #fff !important; font-weight: 800; text-decoration: none !important; cursor: pointer; transition: background .18s ease, transform .18s ease; }
.acm-icon { width: 18px; height: 18px; flex: 0 0 18px; margin-right: 7px; stroke-linecap: round; stroke-linejoin: round; }
.acm-button:hover { background: var(--acm-blue-dark); transform: translateY(-1px); }
.acm-button:focus-visible { outline: 3px solid var(--acm-gold); outline-offset: 3px; }
.acm-button:disabled { cursor: not-allowed; opacity: .55; transform: none; }
.acm-button--secondary { background: var(--acm-ink); }
.acm-button--large { min-height: 52px; padding: 13px 22px; font-size: 1rem; }
.acm-status { display: inline-flex; align-items: center; border-radius: 999px; padding: 5px 9px; background: #e8f7ef; color: #17643b; font-size: .73rem; font-weight: 800; }
.acm-status--on_request { background: #fff6d8; color: #795d00; }
.acm-status--temporarily_unavailable, .acm-status--unavailable { background: #fce8e8; color: #8d2525; }
.acm-pagination { display: flex; justify-content: center; gap: 7px; margin: 36px 0; }
.acm-pagination .page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid var(--acm-border); border-radius: 9px; color: var(--acm-ink); text-decoration: none; }
.acm-pagination .current { border-color: var(--acm-blue); background: var(--acm-blue); color: #fff; }
.acm-empty-state { padding: clamp(42px, 8vw, 90px) 24px; border: 1px dashed #aeb9c8; border-radius: var(--acm-radius); background: var(--acm-surface); text-align: center; }
.acm-empty-state h2 { margin-top: 0; }
.acm-faq { max-width: 860px; margin: 64px auto 0; }
.acm-faq details { margin: 10px 0; border: 1px solid var(--acm-border); border-radius: 12px; background: #fff; padding: 16px 18px; }
.acm-faq summary { cursor: pointer; color: var(--acm-ink); font-weight: 800; }
.acm-faq details p { margin: 12px 0 0; color: var(--acm-muted); line-height: 1.65; }
.acm-cart__layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; align-items: start; }
.acm-cart__items { display: grid; gap: 12px; }
.acm-cart-item { display: grid; grid-template-columns: 86px minmax(0, 1fr) 90px 110px 36px; gap: 15px; align-items: center; border: 1px solid var(--acm-border); border-radius: 14px; padding: 14px; background: #fff; }
.acm-cart-item__image { display: grid; width: 86px; height: 76px; place-items: center; overflow: hidden; border-radius: 10px; background: var(--acm-surface); color: var(--acm-blue); font-weight: 800; }
.acm-cart-item__image img { width: 100%; height: 100%; object-fit: contain; }
.acm-cart-item__content h2 { margin: 0 0 4px; font-size: 1rem; }
.acm-cart-item__content h2 a { color: var(--acm-ink); text-decoration: none; }
.acm-cart-item__content p { margin: 0 0 5px; color: var(--acm-muted); font-size: .82rem; }
.acm-cart-item__subtotal { text-align: right; }
.acm-remove-from-cart { display: grid; width: 34px; height: 34px; place-items: center; border: 0; border-radius: 50%; background: #fce8e8; color: #8d2525; font-size: 1.3rem; cursor: pointer; }
.acm-cart__summary { position: sticky; top: 100px; border-radius: var(--acm-radius); padding: 22px; background: var(--acm-ink); color: #fff; box-shadow: var(--acm-shadow); }
.acm-cart__summary h2 { margin-top: 0; color: #fff; }
.acm-cart__total { display: flex; justify-content: space-between; gap: 15px; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); padding: 16px 0; }
.acm-order-form { margin-top: 36px; border: 1px solid var(--acm-border); border-radius: var(--acm-radius); padding: clamp(20px, 4vw, 34px); background: var(--acm-surface); }
.acm-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.acm-form-grid__full { grid-column: 1 / -1; }
.acm-consent { grid-template-columns: 20px 1fr !important; align-items: start; margin: 20px 0; font-weight: 400 !important; line-height: 1.5; }
.acm-consent input { width: 18px; min-height: 18px; margin-top: 2px; }
.acm-honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.acm-alert { margin-bottom: 24px; border-radius: 12px; padding: 16px 18px; }
.acm-alert--success { border: 1px solid #8bd2ac; background: #e8f7ef; color: #174e32; }
.acm-alert--error { border: 1px solid #e6a2a2; background: #fce8e8; color: #7d2020; }
.acm-toast { position: fixed; z-index: 999999; right: 22px; bottom: 22px; max-width: min(420px, calc(100vw - 44px)); border-radius: 12px; padding: 14px 18px; background: var(--acm-ink); color: #fff; box-shadow: var(--acm-shadow); font-weight: 700; }
.acm-toast--error { background: #8d2525; }
.acm-single-product { margin-top: 28px; border-top: 1px solid var(--acm-border); padding-top: 24px; }
.acm-single-product__facts { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; color: var(--acm-muted); }
.acm-single-product__price { margin: 18px 0; color: var(--acm-blue-dark); font-size: 1.8rem; font-weight: 900; }
.acm-single-product__price small { display: block; color: var(--acm-muted); font-size: .82rem; font-weight: 500; }
.acm-single-product__notice { color: var(--acm-muted); font-size: .88rem; }
.acm-legal-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding: 18px max(20px, calc((100vw - 1240px)/2)); background: #15243e; color: #d9e2ef; font-size: .82rem; }
.acm-legal-bar > div, .acm-legal-bar nav { display: flex; flex-wrap: wrap; gap: 14px; }
.acm-legal-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.acm-floating-cart { display: none; }
.acm-floating-cart:hover { background: var(--acm-blue-dark); transform: translateY(-1px); }
.acm-floating-cart:focus-visible { outline: 3px solid var(--acm-gold); outline-offset: 3px; }
.elex-raq-view-quote-dropdown-btn { display: none !important; }
.acm-cart-menu-item > a { display: inline-flex !important; align-items: center; gap: 7px; }
.acm-cart-menu-item > a::before { width: 18px; height: 18px; flex: 0 0 18px; background: currentColor; content: ""; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='5' y='4' width='14' height='17' rx='2'/%3E%3Cpath d='M9 4.5V3h6v1.5M9 10h6M9 14h6M9 18h4'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Crect x='5' y='4' width='14' height='17' rx='2'/%3E%3Cpath d='M9 4.5V3h6v1.5M9 10h6M9 14h6M9 18h4'/%3E%3C/svg%3E") center/contain no-repeat; }
.acm-menu-cart { position: relative; display: inline-grid; width: 44px; height: 44px; place-items: center; border-radius: 50%; background: var(--acm-blue); color: #fff !important; }
.acm-menu-cart svg { width: 23px; height: 23px; stroke-linecap: round; stroke-linejoin: round; }
.acm-menu-cart__badge { position: absolute; top: -4px; right: -4px; display: grid; min-width: 19px; height: 19px; place-items: center; border: 2px solid #fff; border-radius: 999px; padding: 0 4px; background: var(--acm-gold); color: var(--acm-ink); font-size: 10px; font-weight: 900; }
.acm-restyle-enabled header.elementor-location-header { display: none !important; }
.acm-restyle-enabled footer.elementor-location-footer { background: #213a62; }
.acm-restyle-enabled footer.elementor-location-footer > .elementor-section:first-child { padding-top: 30px !important; padding-bottom: 30px !important; }
.home.acm-restyle-enabled { background: #fff; }
.home.acm-restyle-enabled .elementor-invisible { visibility: visible !important; opacity: 1 !important; animation: none !important; }
.home.acm-restyle-enabled .elementor-element-1ce617c { padding: 66px 20px 50px !important; background: linear-gradient(180deg, #f4f7fb, #fff); }
.home.acm-restyle-enabled .elementor-element-1ce617c .elementor-heading-title { color: var(--acm-ink); }
.home.acm-restyle-enabled .elementor-element-1ce617c .elementor-element-a4dab75,
.home.acm-restyle-enabled .elementor-element-1ce617c .elementor-element-39a23a9 { display: none; }
.home.acm-restyle-enabled .elementor-element-03ef089 { padding: 38px 20px 64px !important; }
.home.acm-restyle-enabled .elementor-button { min-height: 46px; border-radius: 10px !important; font-weight: 800; }
.acm-home-solutions { max-width: 1240px; margin: 0 auto; padding: clamp(54px, 7vw, 96px) 20px; color: var(--acm-ink); }
.acm-home-solutions__heading { max-width: 820px; margin: 0 auto 34px; text-align: center; }
.acm-home-solutions__heading h2, .acm-home-faq h2 { margin: 9px 0 14px; color: var(--acm-ink); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -.035em; }
.acm-home-solutions__heading p { color: var(--acm-muted); font-size: 1.08rem; line-height: 1.7; }
.acm-home-solutions__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.acm-home-solution { display: flex; min-height: 260px; flex-direction: column; align-items: flex-start; border: 1px solid var(--acm-border); border-radius: 18px; padding: 24px; background: #fff; color: var(--acm-ink) !important; box-shadow: 0 5px 20px rgba(23,34,59,.06); text-decoration: none !important; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.acm-home-solution:hover { transform: translateY(-5px); border-color: #aebbd0; box-shadow: var(--acm-shadow); }
.acm-home-solution__icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 28px; border-radius: 12px; background: #eaf0f8; color: var(--acm-blue); font-size: 1.3rem; font-weight: 900; }
.acm-home-solution strong { display: block; margin-bottom: 10px; font-size: 1.18rem; }
.acm-home-solution > span:not(.acm-home-solution__icon) { color: var(--acm-muted); line-height: 1.55; }
.acm-home-solution em { margin-top: auto; padding-top: 20px; color: var(--acm-blue); font-style: normal; font-weight: 800; }
.acm-home-solution--medical { background: var(--acm-blue-dark); color: #fff !important; }
.acm-home-solution--medical .acm-home-solution__icon { background: rgba(255,255,255,.12); color: var(--acm-gold); }
.acm-home-solution--medical > span:not(.acm-home-solution__icon) { color: #d9e2ef; }
.acm-home-solution--medical em { color: #fff; }
.acm-home-solutions__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 32px 0 68px; }
.acm-home-faq { max-width: 880px; margin: 0 auto; scroll-margin-top: 120px; }
.acm-home-faq details { margin: 10px 0; border: 1px solid var(--acm-border); border-radius: 13px; padding: 17px 19px; background: var(--acm-surface); }
.acm-home-faq summary { cursor: pointer; font-weight: 800; }
.acm-home-faq p { margin: 12px 0 0; color: var(--acm-muted); line-height: 1.65; }
.acm-home-reviews { padding: clamp(58px, 8vw, 96px) max(20px, calc((100vw - 1240px)/2)); background: var(--acm-surface); color: var(--acm-ink); }
.acm-home-reviews__heading { max-width: 720px; margin-bottom: 31px; }
.acm-home-reviews__heading h2 { margin: 8px 0 0; color: var(--acm-blue-dark); font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.05; letter-spacing: -.045em; text-wrap: balance; }
.acm-home-reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 17px; }
.acm-home-reviews blockquote { display: flex; min-height: 255px; flex-direction: column; margin: 0; border: 1px solid var(--acm-border); border-radius: 19px; padding: 24px; background: #fff; box-shadow: 0 7px 25px rgba(20,43,75,.05); }
.acm-home-reviews blockquote > div { color: #b28b16; font-size: .84rem; letter-spacing: .15em; }
.acm-home-reviews blockquote p { margin: 20px 0 28px; color: #3e4e64; line-height: 1.68; }
.acm-home-reviews blockquote footer { display: grid; margin-top: auto; }
.acm-home-reviews blockquote footer strong { color: var(--acm-blue-dark); }
.acm-home-reviews blockquote footer span { margin-top: 2px; color: var(--acm-muted); font-size: .78rem; }

@media (max-width: 1050px) { .acm-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px) {
    .acm-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .acm-catalogue__filters, .acm-cart__layout, .acm-form-grid { grid-template-columns: 1fr; }
    .acm-cart__summary { position: static; }
    .acm-cart-item { grid-template-columns: 72px minmax(0, 1fr) 36px; }
    .acm-cart-item__image { width: 72px; height: 68px; }
    .acm-cart-item__quantity { grid-column: 2; width: 90px; }
    .acm-cart-item__subtotal { grid-column: 2; text-align: left; }
    .acm-remove-from-cart { grid-column: 3; grid-row: 1; }
    .acm-form-grid__full { grid-column: auto; }
    .acm-home-solutions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .acm-home-reviews__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .acm-restyle-enabled header.elementor-location-header .elementor-widget-image img { max-height: 50px !important; }
    .home.acm-restyle-enabled .elementor-element-973658f,
    .home.acm-restyle-enabled .elementor-element-b9cbf69,
    .home.acm-restyle-enabled .elementor-element-b9cbf69 .swiper-slide { height: 560px !important; min-height: 560px !important; }
    .home.acm-restyle-enabled .elementor-element-b9cbf69 .elementor-background-overlay { background: linear-gradient(180deg, rgba(10,29,55,.44), rgba(10,29,55,.82)) !important; opacity: 1 !important; }
    .home.acm-restyle-enabled .elementor-element-b9cbf69 .swiper-slide-contents { width: 100%; padding: 22px; text-align: left; }
    .home.acm-restyle-enabled .elementor-element-b9cbf69 .elementor-slide-heading { font-size: clamp(2rem, 10vw, 3rem); line-height: 1.05; }
    .home.acm-restyle-enabled .elementor-element-34f7408 { padding: 48px 18px 36px !important; }
}
@media (max-width: 520px) {
    .acm-product-grid { grid-template-columns: 1fr; }
    .acm-product-card__media { height: 260px; }
    .acm-legal-bar { flex-direction: column; }
    .acm-floating-cart { right: 14px; bottom: 14px; }
    .acm-catalogue, .acm-cart { padding-right: 15px; padding-left: 15px; }
    .acm-catalogue__filters, .acm-order-form { padding: 16px; }
    .acm-button { width: 100%; min-height: 48px; }
    .acm-product-card__footer { align-items: stretch; flex-direction: column; }
    .acm-product-card__footer > strong { text-align: center; }
    .acm-home-solutions { padding: 52px 15px; }
    .acm-home-solutions__grid { grid-template-columns: 1fr; }
    .acm-home-solution { min-height: 230px; }
    .acm-home-solutions__actions { align-items: stretch; flex-direction: column; margin-bottom: 52px; }
    .acm-home-reviews { padding-right: 15px; padding-left: 15px; }
    .acm-home-reviews__grid { grid-template-columns: 1fr; }
    .acm-home-reviews blockquote { min-height: 220px; }
    .acm-legal-bar nav { flex-direction: column; }
    .acm-floating-cart { max-width: calc(100vw - 28px); min-height: 50px; }
}
@media (prefers-reduced-motion: reduce) { .acm-product-card, .acm-button { transition: none; } }

/* ACM33 1.1 — storefront, mobile navigation and site-wide visual system */
:root {
    --acm-blue: #31517f;
    --acm-blue-dark: #142b4b;
    --acm-blue-soft: #e9f0f8;
    --acm-accent: #6f8db8;
    --acm-ink: #13233b;
    --acm-muted: #627087;
    --acm-border: #dbe3ed;
    --acm-surface: #f5f8fb;
    --acm-radius: 20px;
    --acm-shadow: 0 18px 50px rgba(20, 43, 75, .11);
}

html { scroll-behavior: smooth; }
html,
body.acm-restyle-enabled { max-width: 100%; overflow-x: clip; }
body.acm-mobile-menu-open { overflow: hidden; }
.acm-restyle-enabled:not(.home) #page_caption { background: linear-gradient(135deg, #edf3f9, #f9fbfd) !important; }
.acm-restyle-enabled:not(.home) #page_caption h1 { color: var(--acm-blue-dark) !important; }
.acm-catalogue-page #page_caption,
.acm-cart-page #page_caption { display: none !important; }
.acm-restyle-enabled footer.elementor-location-footer { display: none !important; }
.acm-restyle-enabled .elex-rqst-mini-qote-list-wrap,
.acm-restyle-enabled #elex-rqst-float-minicart-icon,
.acm-restyle-enabled .elex-raq-view-quote-dropdown-btn { display: none !important; }
.mobx-holder .mobx-close { position: fixed !important; top: max(14px, env(safe-area-inset-top)) !important; right: 14px !important; left: auto !important; transform: none !important; }
.acm-restyle-enabled .elementor-popup-modal .dialog-widget-content { max-width: calc(100vw - 28px); border-radius: 18px; box-shadow: 0 28px 80px rgba(5,16,31,.35); }
.acm-restyle-enabled .elementor-popup-modal .dialog-close-button { position: absolute !important; z-index: 10; width: 42px !important; height: 42px !important; right: 8px !important; top: 8px !important; display: grid !important; place-items: center; overflow: visible !important; border-radius: 50%; background: rgba(255,255,255,.96); color: var(--acm-blue-dark) !important; box-shadow: 0 6px 22px rgba(5,16,31,.22); opacity: 1 !important; }
.acm-restyle-enabled .elementor-popup-modal .dialog-close-button i { display: none !important; }
.acm-restyle-enabled .elementor-popup-modal .dialog-close-button::after { font-family: Arial, sans-serif; font-size: 27px; font-weight: 400; line-height: 1; content: "×"; }

#elementor-popup-modal-5856 { display: none !important; }
.acm-mobile-nav-shell { display: none; }

.acm-site-header { position: sticky; z-index: 99990; top: 0; width: 100%; border-bottom: 1px solid rgba(20,43,75,.09); background: rgba(255,255,255,.96); box-shadow: 0 8px 28px rgba(20,43,75,.065); backdrop-filter: blur(16px); }
.admin-bar .acm-site-header { top: 32px; }
.acm-site-header__inner { display: flex; width: min(100% - 36px, 1340px); min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; margin: 0 auto; }
.acm-site-header__logo { display: inline-flex; width: 142px; flex: 0 0 142px; align-items: center; }
.acm-site-header__logo-image { display: block; width: auto; max-width: 142px; height: auto; max-height: 57px; object-fit: contain; }
.acm-site-header__wordmark { color: var(--acm-blue-dark); font-size: 1.45rem; font-weight: 900; }
.acm-site-header__nav { display: flex; min-width: 0; align-items: center; justify-content: center; gap: clamp(5px, .8vw, 13px); }
.acm-site-header__nav a { position: relative; flex: 0 0 auto; padding: 29px 5px 26px; color: #293951; font-size: clamp(.72rem, .72vw, .81rem); font-weight: 780; line-height: 1.1; text-align: center; text-decoration: none !important; white-space: nowrap; }
.acm-site-header__nav a::after { position: absolute; height: 2px; right: 50%; bottom: 19px; left: 50%; border-radius: 2px; background: var(--acm-blue); content: ""; transition: right .2s ease, left .2s ease; }
.acm-site-header__nav a:hover::after,
.acm-site-header__nav a:focus-visible::after { right: 6px; left: 6px; }
.acm-site-header__nav a.is-featured { color: var(--acm-blue); }
.acm-site-header__actions { display: flex; flex: 0 0 auto; align-items: center; gap: 9px; }
.acm-site-header__phone { display: grid; padding: 6px 4px; color: var(--acm-blue-dark) !important; line-height: 1.1; text-decoration: none !important; }
.acm-site-header__phone span { color: var(--acm-muted); font-size: .65rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.acm-site-header__phone strong { margin-top: 4px; font-size: .86rem; }
.acm-site-header__cart,
.acm-site-header__toggle { display: inline-flex; height: 46px; align-items: center; justify-content: center; border: 0; border-radius: 13px; background: var(--acm-blue-soft); color: var(--acm-blue-dark) !important; cursor: pointer; text-decoration: none !important; }
.acm-site-header__cart { position: relative; width: 46px; }
.acm-site-header__cart svg,
.acm-site-header__toggle svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.acm-site-header__cart .acm-cart-count { position: absolute; top: -5px; right: -5px; background: var(--acm-blue-dark); color: #fff; }
.acm-site-header__toggle { display: none; gap: 7px; padding: 0 13px; background: var(--acm-blue-dark); color: #fff !important; font-size: .78rem; font-weight: 850; }

.acm-home-hero { position: relative; display: grid; box-sizing: border-box; width: 100vw; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: clamp(36px, 6vw, 86px); overflow: hidden; align-items: center; min-height: min(720px, calc(100vh - 78px)); margin-left: calc(50% - 50vw); padding: clamp(70px, 9vw, 130px) max(24px, calc((100vw - 1240px)/2)); background: linear-gradient(128deg, #102642 0%, #1b3d66 54%, #315e8d 100%); color: #fff; }
.acm-home-hero::before,
.acm-home-hero::after { position: absolute; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; content: ""; pointer-events: none; }
.acm-home-hero::before { width: 460px; height: 460px; right: -180px; top: -240px; box-shadow: 0 0 0 75px rgba(255,255,255,.025), 0 0 0 150px rgba(255,255,255,.018); }
.acm-home-hero::after { width: 300px; height: 300px; left: -220px; bottom: -190px; box-shadow: 0 0 0 70px rgba(255,255,255,.018); }
.acm-home-hero__content,
.acm-home-hero__process { position: relative; z-index: 1; }
.acm-home-hero__content { max-width: 790px; }
.acm-home-hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; color: #cedcf0; font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.acm-home-hero__eyebrow::before { width: 28px; height: 2px; border-radius: 2px; background: #91b1d9; content: ""; }
.acm-home-hero h1 { max-width: 760px; margin: 19px 0 23px; color: #fff; font-size: clamp(3rem, 5vw, 4.9rem); line-height: .98; overflow-wrap: normal; hyphens: none; letter-spacing: -.052em; text-wrap: balance; word-break: normal; }
.acm-home-hero__content > p { max-width: 700px; margin: 0; color: #d9e5f3; font-size: clamp(1.04rem, 1.55vw, 1.28rem); line-height: 1.68; }
.acm-home-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 34px; }
.acm-home-hero .acm-button--light { background: #fff; color: var(--acm-blue-dark) !important; box-shadow: 0 12px 32px rgba(5,17,31,.2); }
.acm-home-hero .acm-button--light .acm-icon { margin: 0 0 0 8px; fill: none; stroke: currentColor; }
.acm-home-hero__contact { color: #fff !important; font-weight: 850; text-decoration-color: rgba(255,255,255,.5) !important; text-decoration-thickness: 1px !important; text-underline-offset: 5px; }
.acm-home-hero__trust { display: flex; flex-wrap: wrap; gap: 10px 21px; margin: 38px 0 0; padding: 0; list-style: none; }
.acm-home-hero__trust li { position: relative; padding-left: 20px; color: #cbd9e9; font-size: .86rem; font-weight: 700; }
.acm-home-hero__trust li::before { position: absolute; width: 8px; height: 8px; left: 0; top: .42em; border: 2px solid #bad0e9; border-radius: 50%; content: ""; }
.acm-home-hero__process { border: 1px solid rgba(255,255,255,.17); border-radius: 25px; padding: clamp(25px, 3vw, 38px); background: rgba(255,255,255,.09); box-shadow: 0 26px 70px rgba(5,17,31,.18); backdrop-filter: blur(10px); }
.acm-home-hero__process-label { display: block; color: #b9cce3; font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.acm-home-hero__process > strong { display: block; margin: 10px 0 25px; color: #fff; font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.2; }
.acm-home-hero__process ol { display: grid; gap: 0; margin: 0 0 23px; padding: 0; list-style: none; }
.acm-home-hero__process li { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 13px; align-items: center; border-top: 1px solid rgba(255,255,255,.13); padding: 14px 0; color: #e5edf7; }
.acm-home-hero__process li b { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.13); color: #fff; font-size: .72rem; }
.acm-home-hero__process a { color: #fff !important; font-weight: 850; text-decoration: none !important; }

.acm-product-page { width: min(100% - 40px, 1220px); margin: 0 auto; padding: 28px 0 clamp(70px, 8vw, 110px); color: var(--acm-ink); }
.acm-breadcrumbs { display: flex; overflow: hidden; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 26px; color: var(--acm-muted); font-size: .78rem; }
.acm-breadcrumbs a { color: var(--acm-blue); font-weight: 750; text-decoration: none !important; }
.acm-breadcrumbs [aria-current="page"] { overflow: hidden; max-width: 45ch; text-overflow: ellipsis; white-space: nowrap; }
.acm-product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr); gap: clamp(34px, 6vw, 78px); align-items: center; border: 1px solid var(--acm-border); border-radius: 28px; padding: clamp(24px, 4vw, 52px); background: #fff; box-shadow: 0 20px 60px rgba(20,43,75,.09); }
.acm-product-detail__media { display: grid; min-height: 500px; place-items: center; overflow: hidden; border-radius: 22px; background: linear-gradient(180deg, #f8fafc, #eef3f8); }
.acm-product-detail__media img { display: block; width: 100%; height: 100%; max-height: 560px; padding: clamp(20px, 4vw, 45px); object-fit: contain; }
.acm-product-detail__category { display: inline-flex; border-radius: 999px; padding: 7px 11px; background: var(--acm-blue-soft); color: var(--acm-blue-dark) !important; font-size: .74rem; font-weight: 850; text-decoration: none !important; }
.acm-product-detail h1 { margin: 15px 0 17px; color: var(--acm-blue-dark); font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.02; letter-spacing: -.05em; text-wrap: balance; }
.acm-product-detail__lead { margin: 0 0 22px; color: var(--acm-muted); font-size: 1.05rem; line-height: 1.7; }
.acm-product-detail__facts { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 14px; border-top: 1px solid var(--acm-border); border-bottom: 1px solid var(--acm-border); padding: 17px 0; color: var(--acm-muted); font-size: .83rem; }
.acm-product-detail__price { margin: 24px 0 18px; color: var(--acm-blue-dark); font-size: 2rem; font-weight: 900; }
.acm-product-detail__price small { display: block; margin-top: 3px; color: var(--acm-muted); font-size: .73rem; font-weight: 550; }
.acm-product-detail__notice { max-width: 520px; margin: 13px 0 0; color: var(--acm-muted); font-size: .8rem; line-height: 1.55; }
.acm-product-description { display: grid; grid-template-columns: minmax(190px, .32fr) minmax(0, .68fr); gap: clamp(28px, 6vw, 90px); margin: clamp(54px, 8vw, 96px) 0; border-top: 1px solid var(--acm-border); padding-top: clamp(38px, 6vw, 68px); }
.acm-product-description h2,
.acm-product-local h2,
.acm-related-products h2 { margin: 8px 0 0; color: var(--acm-blue-dark); font-size: clamp(1.85rem, 3.5vw, 2.8rem); line-height: 1.08; letter-spacing: -.04em; }
.acm-product-description > div:last-child { color: var(--acm-muted); line-height: 1.75; }
.acm-product-description > div:last-child > :first-child { margin-top: 0; }
.acm-product-local { display: grid; grid-template-columns: minmax(220px, .8fr) minmax(280px, 1fr) auto; gap: clamp(25px, 5vw, 65px); align-items: center; border-radius: 24px; padding: clamp(28px, 5vw, 48px); background: var(--acm-blue-dark); color: #fff; }
.acm-product-local .acm-eyebrow { color: #b8cde5; }
.acm-product-local h2 { color: #fff; }
.acm-product-local p { margin: 0; color: #d5e0ed; line-height: 1.7; }
.acm-product-local .acm-button { background: #fff; color: var(--acm-blue-dark) !important; white-space: nowrap; }
.acm-product-faq { max-width: 880px; margin: clamp(58px, 8vw, 92px) auto 0; }
.acm-product-faq h2 { margin: 8px 0 25px; color: var(--acm-blue-dark); font-size: clamp(1.85rem, 3.5vw, 2.8rem); line-height: 1.08; letter-spacing: -.04em; }
.acm-product-faq details { margin: 10px 0; border: 1px solid var(--acm-border); border-radius: 14px; padding: 17px 19px; background: #fff; }
.acm-product-faq summary { cursor: pointer; color: var(--acm-ink); font-weight: 850; }
.acm-product-faq p { margin: 12px 0 0; color: var(--acm-muted); line-height: 1.65; }
.acm-related-products { margin-top: clamp(58px, 8vw, 96px); }
.acm-related-products__heading { margin-bottom: 27px; }
.acm-related-products__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 17px; }
.acm-related-product { display: flex; min-width: 0; flex-direction: column; gap: 8px; border: 1px solid var(--acm-border); border-radius: 17px; padding: 13px 13px 17px; background: #fff; color: var(--acm-ink) !important; text-decoration: none !important; transition: transform .18s ease, box-shadow .18s ease; }
.acm-related-product:hover { transform: translateY(-4px); box-shadow: 0 15px 38px rgba(20,43,75,.1); }
.acm-related-product__image { display: grid; height: 190px; place-items: center; overflow: hidden; border-radius: 12px; background: #f5f8fb; color: var(--acm-blue); font-weight: 850; }
.acm-related-product__image img { width: 100%; height: 100%; padding: 12px; object-fit: contain; }
.acm-related-product strong { padding: 4px 4px 0; font-size: .93rem; line-height: 1.4; }
.acm-related-product > span:last-child { padding: 0 4px; color: var(--acm-blue-dark); font-size: .95rem; font-weight: 900; }

.acm-catalogue-page { background: var(--acm-surface); }
.acm-catalogue { max-width: 1280px; padding-top: clamp(24px, 4vw, 52px); }
.acm-catalogue__hero { overflow: hidden; position: relative; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); gap: clamp(28px, 5vw, 70px); align-items: end; margin-bottom: 24px; border-radius: 28px; padding: clamp(32px, 5vw, 66px); background: linear-gradient(135deg, #132b4c 0%, #315581 68%, #476b96 100%); color: #fff; box-shadow: 0 22px 60px rgba(20, 43, 75, .18); }
.acm-catalogue__hero::after { position: absolute; width: 360px; height: 360px; right: -150px; top: -190px; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; box-shadow: 0 0 0 56px rgba(255,255,255,.035), 0 0 0 112px rgba(255,255,255,.025); content: ""; }
.acm-catalogue__intro { position: relative; z-index: 1; max-width: 780px; margin: 0; }
.acm-catalogue__hero .acm-eyebrow { color: #d4e2f3; }
.acm-catalogue__intro h1 { max-width: 760px; margin: 12px 0 18px; color: #fff; font-size: clamp(2.35rem, 5vw, 4.65rem); line-height: .98; letter-spacing: -.05em; text-wrap: balance; }
.acm-catalogue__intro p { max-width: 720px; margin: 0; color: #e3ebf5; font-size: clamp(1rem, 1.4vw, 1.16rem); line-height: 1.68; }
.acm-catalogue__process { position: relative; z-index: 1; display: grid; gap: 9px; }
.acm-catalogue__process span { display: flex; min-height: 48px; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 10px 13px; background: rgba(255,255,255,.08); color: #f5f8fc; font-size: .9rem; font-weight: 700; backdrop-filter: blur(5px); }
.acm-catalogue__process b { display: grid; width: 27px; height: 27px; flex: 0 0 27px; place-items: center; border-radius: 50%; background: #fff; color: var(--acm-blue-dark); font-size: .75rem; }

.acm-catalogue__navigation { margin-bottom: 18px; border: 1px solid var(--acm-border); border-radius: 22px; padding: 18px; background: #fff; box-shadow: 0 8px 30px rgba(20,43,75,.055); }
.acm-category-shortcuts { display: flex; overflow-x: auto; align-items: center; gap: 8px; padding: 0 0 15px; scrollbar-width: thin; }
.acm-category-shortcuts__label { flex: 0 0 auto; margin-right: 4px; color: var(--acm-muted); font-size: .76rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.acm-category-shortcuts a { flex: 0 0 auto; border: 1px solid var(--acm-border); border-radius: 999px; padding: 9px 14px; background: #fff; color: var(--acm-ink); font-size: .84rem; font-weight: 800; text-decoration: none !important; transition: border-color .18s ease, background .18s ease, color .18s ease; }
.acm-category-shortcuts a:hover,
.acm-category-shortcuts a.is-active { border-color: var(--acm-blue); background: var(--acm-blue); color: #fff; }
.acm-catalogue__filters { grid-template-columns: minmax(260px, 1.25fr) minmax(230px, .8fr) auto; margin: 0; border: 0; border-top: 1px solid var(--acm-border); border-radius: 0; padding: 17px 0 0; background: transparent; }
.acm-search-field { position: relative; display: block; }
.acm-search-field svg { position: absolute; z-index: 1; width: 19px; height: 19px; left: 14px; top: 50%; fill: none; stroke: var(--acm-muted); stroke-width: 2; transform: translateY(-50%); }
.acm-search-field input { padding-left: 43px; }
.acm-catalogue input,
.acm-catalogue select { min-height: 50px; border-color: #c9d3df; border-radius: 12px; }
.acm-catalogue__results { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 22px 2px 16px; }
.acm-catalogue__results p { margin: 0; color: var(--acm-ink); font-weight: 900; }
.acm-catalogue__results a { color: var(--acm-blue); font-size: .88rem; font-weight: 800; text-underline-offset: 3px; }

.acm-product-grid { gap: 20px; }
.acm-product-card { display: flex; min-width: 0; flex-direction: column; border-color: #d9e2ec; border-radius: 21px; box-shadow: 0 5px 22px rgba(20,43,75,.055); }
.acm-product-card__media { height: 238px; background: linear-gradient(180deg, #fff, #f7f9fc); }
.acm-product-card__media img { padding: 18px; transition: transform .28s ease; }
.acm-product-card:hover .acm-product-card__media img { transform: scale(1.035); }
.acm-product-card__body { display: flex; min-height: 235px; flex: 1; flex-direction: column; padding: 18px; }
.acm-product-card h2 { min-height: auto; margin: 12px 0 8px; font-size: 1.02rem; line-height: 1.42; }
.acm-product-card__packaging { min-height: 0; margin-bottom: 18px; }
.acm-product-card__footer { margin-top: auto; align-items: flex-end; }
.acm-product-card__price { display: grid; gap: 2px; }
.acm-product-card__price small { color: var(--acm-muted); font-size: .68rem; line-height: 1.2; }
.acm-product-card__price strong { color: var(--acm-blue-dark); font-size: 1.18rem; }
.acm-button { border-radius: 12px; background: var(--acm-blue); box-shadow: 0 6px 16px rgba(49,81,127,.16); }
.acm-button--secondary { background: var(--acm-blue-dark); }
.acm-button:focus-visible,
.acm-floating-cart:focus-visible { outline-color: #8eabd1; }
.acm-faq { margin-top: 76px; border-radius: 26px; padding: clamp(26px, 5vw, 48px); background: #fff; box-shadow: 0 8px 32px rgba(20,43,75,.06); }
.acm-faq h2 { margin: 8px 0 24px; color: var(--acm-blue-dark); font-size: clamp(1.8rem, 3vw, 2.5rem); }

.acm-floating-cart { z-index: 9997; gap: 7px; padding: 11px 14px 11px 17px; background: var(--acm-blue-dark); box-shadow: 0 14px 38px rgba(20,43,75,.28); }
.acm-floating-cart__count,
.acm-cart-count,
.acm-mobile-nav__badge { display: grid; min-width: 21px; height: 21px; place-items: center; border-radius: 999px; padding: 0 5px; background: #fff; color: var(--acm-blue-dark); font-size: 10px; font-weight: 900; }
.acm-floating-cart__count.is-empty,
.acm-cart-count.is-empty,
.acm-mobile-nav__badge.is-empty { display: none; }

.acm-site-footer { position: relative; z-index: 2; padding: 58px max(22px, calc((100vw - 1240px)/2)) 0; background: #102540; color: #dbe5f1; }
.acm-site-footer__grid { display: grid; grid-template-columns: 1.1fr 1.25fr .85fr .9fr; gap: clamp(28px, 4vw, 58px); }
.acm-site-footer section { display: flex; min-width: 0; flex-direction: column; align-items: flex-start; gap: 10px; }
.acm-site-footer section > strong { margin-bottom: 5px; color: #fff; font-size: .95rem; }
.acm-site-footer__brand { font-size: 1.32rem !important; letter-spacing: -.02em; }
.acm-site-footer p { margin: 0; color: #bfcbd9; line-height: 1.6; }
.acm-site-footer a { color: #e8eff8; text-decoration: none; text-underline-offset: 4px; }
.acm-site-footer a:hover { color: #fff; text-decoration: underline; }
.acm-site-footer__address { display: flex; align-items: flex-start; gap: 10px; margin-top: 8px; }
.acm-site-footer__address svg { width: 21px; height: 21px; flex: 0 0 21px; fill: none; stroke: #9bb4d3; stroke-width: 1.8; }
.acm-site-footer__hours { width: 100%; margin: 0; }
.acm-site-footer__hours div { display: grid; grid-template-columns: 112px minmax(0, 1fr); gap: 9px; border-bottom: 1px solid rgba(255,255,255,.09); padding: 8px 0; }
.acm-site-footer__hours dt { color: #fff; font-weight: 700; }
.acm-site-footer__hours dd { margin: 0; color: #bdcada; }
.acm-site-footer nav { display: grid; gap: 9px; }
.acm-site-footer__social { display: flex; flex-wrap: wrap; gap: 13px; padding-top: 6px; }
.acm-site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0 20px; color: #9eb0c5; font-size: .78rem; }

.acm-standard-page { background: #f7f9fc; }
.acm-standard-page #page_caption { display: none !important; }
.acm-standard-page #page_caption::after { position: absolute; width: 300px; height: 300px; right: -100px; top: -185px; border: 1px solid rgba(49,81,127,.11); border-radius: 50%; box-shadow: 0 0 0 48px rgba(49,81,127,.025), 0 0 0 96px rgba(49,81,127,.018); content: ""; }
.acm-standard-page #page_caption .page_title_wrapper { position: relative; z-index: 1; width: min(100%, 1180px); margin: 0 auto; }
.acm-standard-page #page_caption h1 { margin: 0 !important; color: var(--acm-blue-dark) !important; font-size: clamp(2.35rem, 5vw, 4.3rem) !important; line-height: 1 !important; letter-spacing: -.05em; text-wrap: balance; }
.acm-page-hero { position: relative; box-sizing: border-box; width: 100vw; overflow: hidden; margin: 0 0 clamp(36px, 5vw, 70px) calc(50% - 50vw); padding: clamp(56px, 7vw, 90px) max(20px, calc((100vw - 1180px)/2)); background: linear-gradient(135deg, #e7eff8 0%, #f7f9fc 72%); }
.acm-page-hero::after { position: absolute; width: 310px; height: 310px; right: -95px; top: -190px; border: 1px solid rgba(49,81,127,.11); border-radius: 50%; box-shadow: 0 0 0 52px rgba(49,81,127,.027), 0 0 0 104px rgba(49,81,127,.018); content: ""; }
.acm-page-hero > div { position: relative; z-index: 1; }
.acm-page-hero h1 { max-width: 900px; margin: 11px 0 0; color: var(--acm-blue-dark); font-size: clamp(2.45rem, 5.4vw, 4.7rem); line-height: 1; overflow-wrap: normal; hyphens: none; letter-spacing: -.052em; text-wrap: balance; word-break: normal; }
.acm-standard-page #page_content_wrapper { width: min(100% - 36px, 1180px) !important; max-width: 1180px !important; margin: 0 auto !important; padding: clamp(42px, 6vw, 82px) 0 !important; }
.acm-standard-page #page_content_wrapper .inner,
.acm-standard-page #page_content_wrapper .inner_wrapper { width: 100% !important; max-width: none !important; }
.acm-standard-page #page_content_wrapper .sidebar_content.full_width { width: 100% !important; }
.acm-standard-page .elementor-widget-text-editor { color: var(--acm-muted); font-size: 1rem; line-height: 1.75; }
.acm-standard-page .elementor-heading-title { color: var(--acm-blue-dark); letter-spacing: -.025em; text-wrap: balance; }
.acm-standard-page .elementor-section:not(.elementor-inner-section) { overflow: hidden; border-radius: 22px; }
.acm-standard-page .elementor-widget-image img { border-radius: 18px; }
.acm-standard-page .elementor-button { min-height: 48px; border-radius: 12px !important; padding: 13px 19px !important; font-weight: 850; box-shadow: 0 8px 22px rgba(20,43,75,.12); transition: transform .18s ease, box-shadow .18s ease; }
.acm-standard-page .elementor-button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(20,43,75,.17); }

@media (max-width: 1180px) {
    .admin-bar .acm-site-header { top: 32px; }
    .acm-site-header__inner { min-height: 72px; }
    .acm-site-header__logo { width: 132px; flex-basis: 132px; }
    .acm-site-header__logo-image { max-width: 132px; max-height: 52px; }
    .acm-site-header__nav,
    .acm-site-header__phone { display: none; }
    .acm-site-header__toggle { display: inline-flex; }
    .acm-mobile-nav-shell { position: fixed; z-index: 1000000; inset: 0; display: block; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .24s ease, visibility .24s ease; }
    .acm-mobile-nav-shell.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
    .acm-mobile-nav__overlay { position: absolute; inset: 0; border: 0; padding: 0; background: rgba(7,18,34,.58); cursor: pointer; backdrop-filter: blur(3px); }
    .acm-mobile-nav { position: absolute; z-index: 1; width: min(88vw, 380px); height: 100dvh; right: 0; top: 0; display: flex; flex-direction: column; overflow-y: auto; padding: max(20px, env(safe-area-inset-top)) 20px max(22px, env(safe-area-inset-bottom)); background: #fff; box-shadow: -24px 0 70px rgba(10,28,50,.24); transform: translateX(102%); transition: transform .3s cubic-bezier(.22,.75,.26,1); }
    .acm-mobile-nav-shell.is-open .acm-mobile-nav { transform: translateX(0); }
    .acm-mobile-nav__top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
    .acm-mobile-nav__eyebrow { color: var(--acm-muted); font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
    .acm-mobile-nav__close { display: grid; width: 44px; height: 44px; place-items: center; border: 1px solid var(--acm-border); border-radius: 50%; background: #fff; color: var(--acm-blue-dark); cursor: pointer; }
    .acm-mobile-nav__close svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2; }
    .acm-mobile-nav__links { display: grid; }
    .acm-mobile-nav__links > a { display: flex; min-height: 51px; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid #e6ebf1; padding: 11px 3px; color: var(--acm-ink); font-size: 1rem; font-weight: 760; text-decoration: none !important; }
    .acm-mobile-nav__links > a > svg { width: 19px; height: 19px; fill: none; stroke: #8290a3; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
    .acm-mobile-nav__links > a.is-featured { margin: 7px 0; border: 0; border-radius: 13px; padding: 12px 14px; background: var(--acm-blue-soft); color: var(--acm-blue-dark); }
    .acm-mobile-nav__shop-categories { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 7px; margin: -1px 0 9px; }
    .acm-mobile-nav__shop-categories a { overflow: hidden; border-radius: 10px; padding: 9px 10px; background: #f5f7fa; color: #42536a; font-size: .73rem; font-weight: 750; text-align: center; text-decoration: none !important; text-overflow: ellipsis; white-space: nowrap; }
    .acm-mobile-nav__links > a.is-order { margin-top: 15px; border: 0; border-radius: 13px; padding: 13px 15px; background: var(--acm-blue-dark); color: #fff; }
    .acm-mobile-nav__badge { background: #fff; color: var(--acm-blue-dark); }
    .acm-mobile-nav__contact { display: grid; gap: 4px; margin-top: auto; border-radius: 15px; padding: 17px; background: var(--acm-surface); }
    .acm-mobile-nav__contact span { color: var(--acm-muted); font-size: .77rem; font-weight: 800; }
    .acm-mobile-nav__contact a { color: var(--acm-blue-dark); font-size: 1.14rem; font-weight: 900; text-decoration: none; }
    .acm-mobile-nav__contact small { color: var(--acm-muted); }
    .acm-home-hero { grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 34px; min-height: auto; padding-top: 86px; padding-bottom: 86px; }
    .acm-product-detail { grid-template-columns: minmax(0, 1fr) minmax(310px, .85fr); }
    .acm-product-detail__media { min-height: 410px; }
    .acm-product-local { grid-template-columns: 1fr 1fr; }
    .acm-product-local .acm-button { justify-self: start; }
    .acm-related-products__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .acm-catalogue__hero { grid-template-columns: 1fr; }
    .acm-catalogue__process { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .acm-catalogue__process span { align-items: flex-start; flex-direction: column; }
    .acm-site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .admin-bar .acm-site-header { top: 46px; }
    .acm-site-header__inner { width: calc(100% - 28px); min-height: 68px; gap: 14px; }
    .acm-site-header__logo { width: 116px; flex-basis: 116px; }
    .acm-site-header__logo-image { max-width: 116px; max-height: 48px; }
    .acm-site-header__actions { gap: 7px; }
    .acm-site-header__cart { width: 44px; height: 44px; }
    .acm-site-header__toggle { width: 44px; height: 44px; padding: 0; }
    .acm-site-header__toggle span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
    .acm-home-hero { grid-template-columns: 1fr; gap: 36px; padding: 64px 20px 48px; }
    .acm-home-hero h1 { margin-top: 15px; font-size: clamp(2.65rem, 13vw, 4.1rem); }
    .acm-home-hero__content > p { font-size: 1rem; }
    .acm-home-hero__actions { align-items: stretch; flex-direction: column; gap: 15px; margin-top: 28px; }
    .acm-home-hero__actions .acm-button { width: 100%; }
    .acm-home-hero__contact { align-self: center; padding: 7px; }
    .acm-home-hero__trust { display: grid; gap: 9px; margin-top: 29px; }
    .acm-home-hero__process { border-radius: 20px; padding: 23px 20px; }
    .acm-page-hero { margin-bottom: 34px; padding: 46px 20px 50px; }
    .acm-page-hero h1 { font-size: clamp(2.45rem, 12vw, 3.6rem); }
    .acm-standard-page #page_content_wrapper { width: calc(100% - 28px) !important; padding: 36px 0 54px !important; }
    .acm-standard-page .elementor-section:not(.elementor-inner-section) { border-radius: 17px; }
    .acm-product-page { width: calc(100% - 28px); padding-top: 19px; }
    .acm-product-detail { grid-template-columns: 1fr; gap: 26px; border-radius: 21px; padding: 16px 16px 25px; }
    .acm-product-detail__media { min-height: 310px; border-radius: 16px; }
    .acm-product-detail h1 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
    .acm-product-detail .acm-button { width: 100%; }
    .acm-product-description { grid-template-columns: 1fr; gap: 22px; margin: 54px 2px; padding-top: 38px; }
    .acm-product-local { grid-template-columns: 1fr; gap: 20px; border-radius: 20px; padding: 26px 21px; }
    .acm-product-local .acm-button { width: 100%; }
    .acm-related-products__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
    .acm-related-product__image { height: 150px; }
    .acm-related-product { padding: 9px 9px 14px; }
    .acm-catalogue { padding: 18px 14px 50px; }
    .acm-catalogue__hero { gap: 26px; margin-bottom: 14px; border-radius: 22px; padding: 29px 22px 23px; }
    .acm-catalogue__hero::after { width: 240px; height: 240px; right: -130px; top: -120px; }
    .acm-catalogue__intro h1 { margin: 10px 0 14px; font-size: clamp(2.18rem, 12vw, 3.15rem); }
    .acm-catalogue__intro p { font-size: .96rem; line-height: 1.6; }
    .acm-catalogue__process { grid-template-columns: 1fr; gap: 7px; }
    .acm-catalogue__process span { min-height: 42px; flex-direction: row; align-items: center; padding: 7px 10px; font-size: .82rem; }
    .acm-catalogue__navigation { border-radius: 18px; padding: 14px; }
    .acm-category-shortcuts { margin-right: -14px; padding-right: 14px; }
    .acm-category-shortcuts__label { display: none; }
    .acm-catalogue__filters { grid-template-columns: 1fr; gap: 12px; }
    .acm-catalogue__filters .acm-button { width: 100%; }
    .acm-catalogue__results { margin-top: 19px; }
    .acm-product-grid { gap: 15px; }
    .acm-product-card__media { height: 218px; }
    .acm-product-card__body { min-height: 0; }
    .acm-product-card__footer { align-items: center; flex-direction: row; }
    .acm-product-card__footer .acm-button { width: auto; min-height: 46px; }
    .acm-product-card__footer > strong { text-align: left; }
    .acm-faq { margin-top: 50px; border-radius: 20px; padding: 23px 18px; }
    .acm-floating-cart { display: none; }
    .acm-site-footer { padding: 42px 20px 0; }
    .acm-site-footer__grid { grid-template-columns: 1fr; gap: 31px; }
    .acm-site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 4px; margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .acm-mobile-nav-shell,
    .acm-mobile-nav,
    .acm-product-card__media img,
    .acm-site-header__nav a::after,
    .acm-standard-page .elementor-button { transition: none; }
}

/* ACM33 1.3 — fullscreen photographic hero and lightweight motion system */
.home.acm-restyle-enabled .acm-site-header {
    position: fixed;
    border-bottom-color: rgba(255,255,255,.16);
    background: linear-gradient(180deg, rgba(7,20,37,.48), rgba(7,20,37,0));
    box-shadow: none;
    backdrop-filter: none;
    transition: border-color .28s ease, background .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.home.acm-restyle-enabled .acm-site-header.is-scrolled {
    border-bottom-color: #dbe3ed;
    background: #fff;
    box-shadow: 0 10px 32px rgba(15,37,66,.14);
    backdrop-filter: none;
}
.home .acm-site-header__logo-image { filter: drop-shadow(0 2px 10px rgba(0,0,0,.3)); }
.home .acm-site-header__nav a,
.home .acm-site-header__phone,
.home .acm-site-header__phone span { color: #fff !important; text-shadow: 0 1px 12px rgba(0,0,0,.26); }
.home .acm-site-header__nav a::after { background: #fff; }
.home .acm-site-header__cart,
.home .acm-site-header__toggle { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.13); color: #fff !important; backdrop-filter: blur(10px); }
.home .acm-site-header.is-scrolled .acm-site-header__nav a,
.home .acm-site-header.is-scrolled .acm-site-header__phone { color: #293951 !important; text-shadow: none; }
.home .acm-site-header.is-scrolled .acm-site-header__phone span { color: var(--acm-muted) !important; text-shadow: none; }
.home .acm-site-header.is-scrolled .acm-site-header__nav a::after { background: var(--acm-blue); }
.home .acm-site-header.is-scrolled .acm-site-header__cart,
.home .acm-site-header.is-scrolled .acm-site-header__toggle { border-color: transparent; background: var(--acm-blue-soft); color: var(--acm-blue-dark) !important; backdrop-filter: none; }

.home .acm-home-hero {
    position: relative;
    display: block;
    width: 100vw;
    min-height: 100vh;
    min-height: 100svh;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 0;
    background: #0c2038;
    isolation: isolate;
}
.home .acm-home-hero::before,
.home .acm-home-hero::after { display: none; }
.acm-home-hero__slides,
.acm-home-hero__slide,
.acm-home-hero__image,
.acm-home-hero__shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.acm-home-hero__slide { z-index: 0; display: grid; align-items: center; opacity: 0; pointer-events: none; transition: opacity 1s cubic-bezier(.22,.61,.36,1); }
.acm-home-hero__slide.is-active { z-index: 1; opacity: 1; pointer-events: auto; }
.acm-home-hero__image { display: block; max-width: none; object-fit: cover; object-position: center; transform: scale(1.02); }
.acm-home-hero__slide.is-active .acm-home-hero__image { animation: acm-ken-burns 9s ease-out both; }
.acm-home-hero__slide:nth-child(2n) .acm-home-hero__image { transform-origin: 72% 45%; }
.acm-home-hero__slide:nth-child(3n) .acm-home-hero__image { transform-origin: 28% 48%; }
.acm-home-hero__shade { background: linear-gradient(90deg, rgba(5,18,34,.86) 0%, rgba(8,25,46,.68) 42%, rgba(8,25,46,.28) 70%, rgba(7,19,34,.38) 100%), linear-gradient(180deg, rgba(5,15,29,.28), rgba(5,15,29,.38)); }
.acm-home-hero__content { z-index: 2; box-sizing: border-box; width: min(100% - 48px, 1340px); max-width: none; margin: 0 auto; padding: 116px min(40%, 520px) 150px 0; }
.acm-home-hero__eyebrow { color: #e1eaf5; }
.acm-home-hero__eyebrow::before { background: #fff; }
.acm-home-hero__content > h1,
.acm-home-hero__content > .acm-home-hero__title { max-width: 790px; margin: 20px 0 34px; color: #fff; font-size: clamp(3.35rem, 6vw, 6.25rem); font-weight: 650; line-height: .93; letter-spacing: -.058em; text-wrap: balance; text-shadow: 0 4px 30px rgba(0,0,0,.2); }
.acm-home-hero__primary { display: inline-flex; min-height: 54px; align-items: center; gap: 14px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; padding: 13px 20px 13px 23px; background: rgba(255,255,255,.96); color: #152b48 !important; box-shadow: 0 14px 38px rgba(0,0,0,.18); font-weight: 850; text-decoration: none !important; transition: gap .2s ease, transform .2s ease, background .2s ease; }
.acm-home-hero__primary:hover { gap: 19px; background: #fff; transform: translateY(-2px); }
.acm-home-hero__primary svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.acm-home-hero__process { position: absolute; z-index: 3; width: min(340px, 27vw); right: max(24px, calc((100vw - 1340px)/2)); top: 50%; border-color: rgba(255,255,255,.24); background: rgba(9,28,51,.52); box-shadow: 0 28px 70px rgba(0,0,0,.2); transform: translateY(-42%); backdrop-filter: blur(14px); }
.acm-home-hero__controls { position: absolute; z-index: 4; right: max(24px, calc((100vw - 1340px)/2)); bottom: 30px; display: flex; align-items: center; gap: 11px; }
.acm-home-hero__arrow,
.acm-home-hero__dots button { display: grid; place-items: center; border: 0; padding: 0; background: transparent; color: #fff; cursor: pointer; }
.acm-home-hero__arrow { width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.34); border-radius: 50%; background: rgba(7,22,40,.28); backdrop-filter: blur(8px); }
.acm-home-hero__arrow svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.acm-home-hero__dots { display: flex; align-items: center; gap: 5px; }
.acm-home-hero__dots button { width: 28px; height: 34px; }
.acm-home-hero__dots span { width: 7px; height: 7px; border-radius: 999px; background: rgba(255,255,255,.55); transition: width .25s ease, background .25s ease; }
.acm-home-hero__dots button[aria-current="true"] span { width: 25px; background: #fff; }
.acm-home-hero__scroll { position: absolute; z-index: 4; left: max(24px, calc((100vw - 1340px)/2)); bottom: 32px; display: inline-flex; align-items: center; gap: 9px; color: #fff !important; font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-decoration: none !important; text-transform: uppercase; }
.acm-home-hero__scroll svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; animation: acm-scroll-hint 1.8s ease-in-out infinite; }

.acm-motion-ready [data-acm-reveal],
.acm-motion-ready .home .elementor-section { opacity: 0; transform: translateY(34px); transition: opacity .65s ease var(--acm-reveal-delay, 0ms), transform .65s cubic-bezier(.22,.61,.36,1) var(--acm-reveal-delay, 0ms); }
.acm-motion-ready [data-acm-reveal].is-visible,
.acm-motion-ready .home .elementor-section.is-visible { opacity: 1; transform: translateY(0); }

@keyframes acm-ken-burns {
    from { transform: scale(1.02) translate3d(0, 0, 0); }
    to { transform: scale(1.115) translate3d(-1.2%, -.8%, 0); }
}
@keyframes acm-scroll-hint {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}

@media (max-width: 1180px) {
    .acm-home-hero__content { padding-right: min(39%, 410px); }
    .acm-home-hero__content > h1,
    .acm-home-hero__content > .acm-home-hero__title { font-size: clamp(3.2rem, 7vw, 5.4rem); }
    .acm-home-hero__process { width: min(320px, 32vw); right: 22px; }
}

@media (max-width: 760px) {
    .home.acm-restyle-enabled .acm-site-header__inner { min-height: 76px; }
    .home .acm-site-header__logo-image { max-height: 49px; }
    .home .acm-home-hero { min-height: max(700px, 100svh); }
    .acm-home-hero__shade { background: linear-gradient(180deg, rgba(5,17,32,.55) 0%, rgba(6,21,39,.68) 48%, rgba(5,18,34,.86) 100%); }
    .acm-home-hero__image { object-position: 58% center; }
    .acm-home-hero__slide:nth-child(2) .acm-home-hero__image { object-position: 68% center; }
    .acm-home-hero__content { width: calc(100% - 40px); padding: 112px 0 235px; align-self: center; }
    .acm-home-hero__content > h1,
    .acm-home-hero__content > .acm-home-hero__title { max-width: 10.5ch; margin: 17px 0 27px; font-size: clamp(2.75rem, 12vw, 4.2rem); line-height: .94; }
    .home.acm-restyle-enabled .acm-home-hero__content > h1 { font-size: clamp(2.75rem, 12vw, 4.2rem) !important; }
    .acm-home-hero__eyebrow { font-size: .7rem; }
    .acm-home-hero__primary { min-height: 50px; padding: 11px 17px 11px 19px; }
    .acm-home-hero__process { width: auto; max-width: none; right: 20px; bottom: 82px; left: 20px; top: auto; border-radius: 17px; padding: 15px 17px; transform: none; }
    .acm-home-hero__process-label { font-size: .62rem; }
    .acm-home-hero__process > strong { margin: 4px 0 7px; font-size: 1rem; }
    .acm-home-hero__process ol { display: none; }
    .acm-home-hero__process a { font-size: .8rem; }
    .acm-home-hero__controls { right: 18px; bottom: 24px; }
    .acm-home-hero__arrow { width: 38px; height: 38px; }
    .acm-home-hero__dots button { width: 22px; }
    .acm-home-hero__scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .home.acm-restyle-enabled .acm-site-header,
    .acm-home-hero__slide,
    .acm-home-hero__image,
    .acm-home-hero__primary,
    .acm-motion-ready [data-acm-reveal],
    .acm-motion-ready .home .elementor-section { animation: none !important; transition: none !important; }
    .acm-motion-ready [data-acm-reveal],
    .acm-motion-ready .home .elementor-section { opacity: 1; transform: none; }
    .acm-home-hero__scroll svg { animation: none; }
}
