

/* Start:/local/templates/furniture_red/assets/css/fonts.css?1772546144930*/
@font-face {
    font-family: "PT Sans";
    src: url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Regular.eot");
    src:
        url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Regular.eot?#iefix") format("embedded-opentype"),
        url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Regular.woff2") format("woff2"),
        url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Regular.woff") format("woff"),
        url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "PT Sans";
    src: url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Bold.eot");
    src:
        url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Bold.eot?#iefix") format("embedded-opentype"),
        url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Bold.woff2") format("woff2"),
        url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Bold.woff") format("woff"),
        url("/local/templates/furniture_red/assets/css/../fonts/pt-sans/PTSans-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* End */


/* Start:/local/templates/furniture_red/assets/css/default.css?177262680010028*/

:root {
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-text-main: #1f2937;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;
    --color-text-footer: #d1d5db;
    --color-bg-white: #ffffff;
    --color-bg-dark: #081323;
    --color-border: #e5e7eb;
    --color-border-dark: #374151;
    --container-max: 1200px;
    --header-height: 72px; 
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--color-text-main);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}
.main-header {
    background: var(--color-bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
}


.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    font-size: 18px;
    color: #4b5563;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.nav-item:hover {
    color: var(--color-primary);
}


.burger-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 2px; 
    background: #374151;
    transition: all var(--transition-normal);
    position: absolute;
    left: 0;
    transform-origin: center;
}


.burger-line:nth-child(1) { top: 0.25rem; }
.burger-line:nth-child(2) { top: 0.75rem; }
.burger-line:nth-child(3) { top: 1.25rem; }


.burger-toggle.active .burger-line:nth-child(1) {
    transform: translateY(0.5rem) rotate(45deg);
    top: 0.25rem;
}

.burger-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
    transform: translateY(-0.5rem) rotate(-45deg);
    top: 1.25rem;
}


.header-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.desktop-contacts {
    align-items: flex-end;
}

.mobile-contacts {
    display: none;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    width: 80%;
    gap: 0.5rem;
    flex-direction: column; 
}


.phone-link {
    color: var(--color-text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color var(--transition-normal);
    line-height: 1.2;
    white-space: nowrap;
}

.phone-link:hover {
    color: var(--color-primary);
}


.exchange-rate {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.euro-symbol {
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 0.2rem;
}


.cta-button.primary {
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background var(--transition-normal);
    display: inline-block;
}

.cta-button.primary:hover {
    background: var(--color-primary-hover);
}

.mobile-only-btn {
    display: none;
}

.hero-banner {
    padding: 4rem 0;
}

.main-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-border);
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
    margin-top: auto;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0 3rem 0;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1rem;
    width: 100%;
}

.footer-logo-link {
    display: block;
    margin-bottom: 1.5rem;
}

#footer-logo {
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}


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

.footer-nav li {
    margin-bottom: 0.85rem;
}

.footer-nav a, .contact-list a {
    color: var(--color-text-footer);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-nav a:hover {
    color: var(--color-primary);
}

.contact-list a:hover {
    color: #ffffff;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: var(--color-text-footer);
}

.contact-list i {
    color: var(--color-primary);
    margin-top: 4px;
    margin-right: 0.5rem; 
}

.contact-list address {
    font-style: normal;
}


.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    opacity: 0.8;
}

.social-icon:hover img {
    transform: translateY(-2px);
    opacity: 1;
}


.input-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

#subscribeEmail {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--color-border-dark);
    border-radius: 4px;
    padding: 0.75rem 1rem;
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-normal);
}

#subscribeEmail:focus {
    border-color: var(--color-primary);
}

#subscribeSend {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 40px;
    background: var(--color-primary);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

#subscribeSend:hover {
    background: var(--color-primary-hover);
}

#subscribeSend::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(45deg);
    margin-right: 2px;
}

.checkbox-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

#subscribeAgree {
    margin-top: 3px;
    accent-color: var(--color-primary);
}

.policyLink {
    color: var(--color-text-footer);
    text-decoration: underline;
}

.form-messages {
    font-size: 0.85rem;
    margin-top: 0.5rem;
    min-height: 1.5em;
}

#subscribeError { color: #ef4444; }
#subscribeSuccess { color: #10b981; }


.footer-bottom {
    border-top: 1px solid var(--color-border-dark);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    text-align: center;
}

.footer-bottom a {
    color: var(--color-text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--color-text-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}



@media (max-width: 992px) {
    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-col.about-col {
        grid-column: span 2;
    }

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


@media (max-width: 880px) {
    .burger-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: var(--color-bg-white);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        transform: translateY(-20px); 
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-item {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .mobile-only-btn {
        display: inline-block;
        margin-top: 1rem;
    }

    .desktop-contacts {
        display: none;
    }

    .mobile-contacts {
        display: flex;
    }

    .mobile-contacts .phone-link {
        font-size: 1.15rem;
    }

    .mobile-contacts .exchange-rate {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
}


@media (max-width: 576px) {
    .footer-top-grid,
    .footer-nav-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-col.about-col {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1rem; 
    }
}

.mobile-cart-link {
    display: none; 
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.mobile-cart-badge {
    background: #2563eb;
    color: white;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 700;
}

@media (max-width: 992px) {
    .header-actions {
        display: none;
    }

    .mobile-cart-link {
        display: flex;
        justify-content: center;
        background: #f8fafc;
        border-radius: 8px;
        margin-bottom: 10px;
    }
}
/* End */


/* Start:/local/templates/furniture_red/assets/css/swiper-bundle.min.css?176010117618397*/
/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:var(--swiper-navigation-top-offset,50%);width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:21px;text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:-2px;top:var(--swiper-pagination-top,auto);left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:var(--swiper-pagination-bullet-border-radius,50%);background:var(--swiper-pagination-bullet-inactive-color,#fff);opacity:var(--swiper-pagination-bullet-inactive-opacity, 1)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,.25));position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,rgba(0,0,0,.1))}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-border-radius,10px);left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active{pointer-events:auto}.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* End */


/* Start:/local/templates/furniture_red/assets/css/style.css?1786450757201271*/
:root {
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-accent-light: #7ed3f7;
    --color-accent-dark: #02519c;
    --color-text-main: #1f2937;
    --color-text-dark: #111827;
    --color-text-muted: #6b7280;
    --color-text-light: #9ca3af;
    --color-text-gray: #4b5563;
    --color-bg-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-gray: #f3f4f6;
    --color-bg-dark: #081323;
    --color-border: #e5e7eb;
    --font-main: "PT Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-secondary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --color-success: #10b981;
    --color-warning: #f59e0b;
}
.hero-pagination {
    display: none !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--color-text-main);
    overflow-x: hidden;
}
section {
    overflow-x: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.relative-z {
    position: relative;
    z-index: 2;
}
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}
.section-title {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #3b82f6);
    border-radius: 2px;
}
.section-desc {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    color: var(--color-text-gray);
    line-height: 1.8;
    margin-top: 1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 100;
}
.logo-link {
    display: flex;
    align-items: center;
}
.nav-menu {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.nav-item {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-item:hover {
    color: #2563eb;
}
.hero-banner {
    padding: 4rem 0;
}
.mobile-only-btn {
    display: none;
}
.cta-button.primary {
    background: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}
.cta-button.primary:hover {
    background: #1d4ed8;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(17 24 39 / 55%);
    z-index: 1;
}
.hero-glow {
    position: absolute;
    top: 50%;
    right: 15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 60%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
}
.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-subtitle {
    color: var(--color-accent-light);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    letter-spacing: -0.02em;
}
.hero-title .text-accent {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    background: linear-gradient(90deg, var(--color-accent-light), var(--color-primary));
    -webkit-background-clip: text;
    background-clip: text;
}
.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #d1d5db;
    margin-bottom: 2.5rem;
    max-width: 90%;
}
.hero-actions {
    display: flex;
    gap: 1.5rem;
}
.hero-btn {
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-btn.primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}
.hero-btn.primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
}
.hero-btn.outline {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}
.hero-btn.outline:hover {
    background: #ffffff;
    color: #111827;
    border-color: #ffffff;
    transform: translateY(-3px);
}
.slider-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}
.hero-showcase {
    width: 100%;
    aspect-ratio: 1/1.15;
    border-radius: 1.5rem;
    overflow: hidden;
}
.order-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.pump-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: clamp(1.5rem, 8%, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}
.pump-image-wrapper {
    width: clamp(100px, 35%, 150px);
    height: clamp(100px, 35%, 150px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(0.75rem, 4%, 1.5rem);
    position: relative;
}
.pump-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 12%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    z-index: -1;
}
.pump-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.swiper-slide-active:hover .pump-img {
    transform: scale(1.1);
}
.pump-info {
    display: flex;
    flex-direction: column;
    gap: clamp(0.15rem, 1%, 0.25rem);
}
.pump-name {
    color: #ffffff;
    font-weight: 700;
    font-size: clamp(0.95rem, 3.5%, 1.15rem);
}
.pump-type {
    color: #e5e7eb;
    font-size: clamp(0.75rem, 2.5%, 0.85rem);
}
.slider-dots {
    display: flex;
    justify-content: center;
    gap: clamp(0.4rem, 1.5%, 0.5rem);
    margin-top: clamp(1rem, 3%, 1.5rem);
    position: relative;
    z-index: 3;
}
.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}
.slider-dot.active {
    background: var(--color-primary);
    border-color: #ffffff;
    transform: scale(1.2);
}
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(40px, 10%, 44px);
    height: clamp(40px, 10%, 44px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 3;
    padding: 0;
}
.slider-arrow svg {
    width: clamp(18px, 5%, 24px);
    height: clamp(18px, 5%, 24px);
}
.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}
.slider-arrow--prev {
    left: clamp(-15px, -3%, -20px);
}
.slider-arrow--next {
    right: clamp(-15px, -3%, -20px);
}
.services-section {
    padding: 5rem 0;
    background-color: #ffffff;
}
.section-header-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}
.heading-underline {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.service-card {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent-dark) 100%);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 20px rgba(2, 81, 156, 0.15);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 30px -5px rgba(2, 81, 156, 0.4),
        0 10px 15px -5px rgba(2, 81, 156, 0.2);
}
.service-icon-box {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #ffffff;
    transition: all var(--transition-normal);
}
.service-icon-box svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.5;
}
.service-card:hover .service-icon-box {
    background: #ffffff;
    color: var(--color-accent-dark);
    transform: scale(1.05);
}
.service-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}
.service-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.service-btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    margin-top: auto;
}
.service-card:hover .service-btn {
    background: #ffffff;
    color: var(--color-accent-dark);
    border-color: #ffffff;
}
.selector-section {
    position: relative;
    background-image: url("/local/templates/furniture_red/assets/css/../images/choose-pump-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    color: #ffffff;
}
.selector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #7ecdf7b8;
    z-index: 1;
}
.selector-header {
    text-align: center;
    margin-bottom: 3rem;
}
.selector-header .section-heading {
    color: #ffffff;
    margin-bottom: 0.5rem;
}
.filter-controls {
    display: none;
    text-align: center;
    margin-bottom: 2rem;
}
.filters-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}
.filter-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal);
}
.filter-card:hover {
    transform: translateY(-5px);
}
.filter-header {
    background: var(--color-bg-gray);
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}
.filter-title {
    color: var(--color-text-main);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.filter-icon {
    color: var(--color-primary);
}
.filter-options {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: #4b5563;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
    line-height: 1.4;
    border: 1px solid transparent;
}
.filter-option:hover {
    background: #eff6ff;
    color: var(--color-primary);
}
.filter-option.active {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: var(--color-primary);
    font-weight: 600;
}
.check-circle {
    width: 16px;
    height: 16px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: block;
    flex-shrink: 0;
    position: relative;
}
.filter-option.active .check-circle {
    border-color: var(--color-primary);
    background: var(--color-primary);
    box-shadow: inset 0 0 0 3px #ffffff;
}
.search-actions {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.view-all-link a {
    color: #ffffff;
    text-decoration: underline;
    font-size: 0.8rem;
    transition: color var(--transition-normal);
}
.view-all-link a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.partners-section {
    padding: 4rem 0 6rem 0;
    background: #ffffff;
}
.partners-section .section-heading {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
}
.map-wrapper {
    width: 100%;
    height: 500px;
    background: var(--color-bg-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}
.cooperation-section {
    position: relative;
    padding: 7rem 0;
    background: url("/local/templates/furniture_red/assets/css/../images/map-russia.png") center/cover no-repeat;
    color: #ffffff;
    overflow: hidden;
}
.cooperation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.8);
    z-index: 1;
}
.cooperation-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}
.cooperation-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 3rem;
}
.cooperation-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-light);
    display: block;
}
.cooperation-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #ffffff;
}
.cooperation-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #d1d5db;
    max-width: 90%;
}
.cooperation-list {
    list-style: none;
    padding: 0;
    margin: 2.5rem 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.cooperation-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.5;
}
.cooperation-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 8px;
    height: 8px;
    background-color: var(--color-accent-light);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(126, 211, 247, 0.5);
}
.cooperation-list strong {
    color: #ffffff;
    font-weight: 600;
}
.contacts-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}
.contacts-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: stretch;
}
.contacts-map-wrapper {
    width: 100%;
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    background: #e2e8f0;
}
.contacts-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}
.contacts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: 100%;
    align-content: center;
}
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #ffffff;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all var(--transition-normal);
    height: 100%;
}
.contact-card:hover {
    transform: translateY(-5px);
    border-color: #bfdbfe;
    box-shadow: 0 12px 20px -5px rgba(37, 99, 235, 0.1);
}
.contact-icon-box {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}
.contact-icon-box svg {
    width: 20px;
    height: 20px;
}
.contact-card:hover .contact-icon-box {
    background: var(--color-primary);
    color: #ffffff;
}
.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.contact-value {
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-weight: 700;
    line-height: 1.2;
    transition: color var(--transition-normal);
}
.contact-card:hover .contact-value {
    color: var(--color-primary);
}
.about-section {
    padding: 6rem 0;
    background: #f9fafb;
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
}
.about-image-wrapper {
    position: relative;
    z-index: 1;
    padding-right: 2rem;
    height: 450px;
    width: 100%;
}
.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    display: block;
    position: relative;
    z-index: 2;
}
.about-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    opacity: 0.1;
    z-index: 1;
    transform: rotate(-3deg);
}
.about-content-card {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    margin-left: -80px;
}
.about-content-card .section-heading {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}
.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-gray);
    margin-bottom: 2.5rem;
}
.stats-section {
    position: relative;
    background-image: url("/local/templates/furniture_red/assets/css/../images/stats-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 8rem 0;
    color: #ffffff;
    overflow: hidden;
}
.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.85);
    z-index: 1;
}
.stats-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: flex-start;
}
.stats-grid > .stat-card:nth-child(even) {
    margin-top: 4rem;
}
.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition:
        transform var(--transition-normal),
        background var(--transition-normal);
}
.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
}
.stat-icon-box {
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-icon {
    max-height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}
.stat-number-wrapper {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}
.plus-sign {
    color: var(--color-primary);
    font-size: 2rem;
    margin-top: 5px;
}
.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin: 0;
}
.front-quality {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #f1f5f9 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.front-quality::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    z-index: 0;
}
.quality-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}
.certificates-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.1);
}
.certificate-img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
    cursor: pointer;
}
.certificate-img:hover {
    transform: scale(1.1);
    filter: grayscale(0%) opacity(1);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
    border-radius: 0.5rem;
}
.front-news {
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
.front-news::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    z-index: 0;
}
.news-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}
.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.news-card:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
}
.news-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--color-bg-gray) 0%, #e5e7eb 100%);
}
.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.news-card:hover .news-image {
    transform: scale(1.03);
}
.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.news-title {
    font-family: var(--font-secondary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}
.news-card:hover .news-title {
    color: var(--color-primary);
}
.news-excerpt {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--color-text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.news-link {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
    text-align: center;
    width: fit-content;
    margin-top: auto;
}
.news-link:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}
.pumps {
    padding-top: 7rem;
}
.pumps-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
}
.sidebar-wrapper {
    width: 100%;
    max-width: 300px;
    background: var(--color-white);
    border-right: 1px solid var(--color-border);
    padding: 1.5rem 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
}
.sidebar-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--color-light);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.sidebar-section {
    margin-bottom: 2.5rem;
}
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-wrapper input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--color-dark);
    transition: all 0.3s ease;
    background: var(--color-bg);
}
.search-input-wrapper input:focus {
    background: var(--color-white);
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.search-input-wrapper button {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--color-light);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}
.search-input-wrapper button:hover {
    color: var(--color-primary);
}
.category-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.cat-link {
    display: block;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: var(--color-gray);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.cat-link:hover {
    background: #f3f4f6;
    color: var(--color-text);
}
.cat-link.active {
    background: #eff6ff;
    color: var(--color-primary);
    border-left-color: var(--color-primary);
}
.filter-group {
    border-top: 1px solid #f3f4f6;
    padding: 1.25rem 0;
}
.filter-group summary {
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.filter-group summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--color-light);
    border-bottom: 2px solid var(--color-light);
    transform: rotate(45deg);
    transition: transform 0.3s;
    margin-right: 4px;
}
.filter-group[open] summary::after {
    transform: rotate(225deg);
}
.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
}
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    user-select: none;
    padding-left: 30px;
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.4;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: var(--color-white);
    border: 1px solid #d1d5db;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.custom-checkbox:hover input ~ .checkmark {
    border-color: var(--color-primary);
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.checkmark:after {
    content: " ";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.mobile-filter-toggle {
    display: none;
    width: 100%;
    padding: 1rem;
    background: #f3f4f6;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    margin-bottom: 1rem;
}
.page-wrapper {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
    align-items: flex-start;
}
.main-content {
    flex: 1;
    width: 100%;
}
.catalog-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
}
.page-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.page-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
    max-width: 800px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1rem;
}
.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}
.card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    background: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.card-image-df {
    height: 350px;
    width: 100%;
    background: #f3f4f6;
}
.card-image-df img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-dark);
    border: 1px solid var(--color-border);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    opacity: 0;
    z-index: 10;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}
.quick-view-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}
.product-card:hover .quick-view-btn {
    bottom: 20px;
    opacity: 1;
}
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--color-dark);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.card-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.product-title a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.2s;
}
.product-title a:hover {
    color: var(--color-primary);
}
.product-price {
    display: inline-flex;
    align-items: center;
    background-color: #eff6ff;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    align-self: flex-start;
    border: 1px solid rgba(37, 99, 235, 0.1);
}
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}
.stock-status {
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.stock-status.in-stock {
    color: var(--color-success);
}
.stock-status.in-stock::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
}
.stock-status.request {
    color: var(--color-warning);
}

.stock-status.out-of-stock {
    color: var(--color-danger);
}

.btn-details {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: #eff6ff;
    transition: all 0.2s;
    border: 0;
    cursor: pointer;
}
.btn-details:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    background: white;
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.modal-overlay.active .modal-container {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--color-light);
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s;
}
.modal-close:hover {
    color: var(--color-text);
}
.modal-body {
    padding: 0;
}
.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    min-height: 400px;
}
.modal-image-col {
    background: #f9fafb;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    gap: 15px;
}
.modal-image-col img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.modal-info-col {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.qv-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    width: 100%;
    justify-content: center;
    padding-bottom: 5px;
}
.qv-thumb {
    width: 60px;
    height: 60px;
    object-fit: contain;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    background: white;
    padding: 2px;
    transition: border-color 0.2s;
}
.qv-thumb.active,
.qv-thumb:hover {
    border-color: #2563eb;
}
.qv-main-image-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qv-main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.qv-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 1rem 0 0.5rem;
    color: var(--color-text);
}
.qv-subtitle {
    color: var(--color-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1.5rem;
}
.qv-details p {
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.qv-specs-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}
.qv-specs-list li {
    font-size: 0.9rem;
    color: var(--color-gray);
}
.qv-specs-list li span {
    font-weight: 600;
    color: var(--color-dark);
    margin-right: 5px;
}
.static-badge {
    display: inline-block;
}
.qv-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.primary-action {
    background: var(--color-primary);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
}
.primary-action:hover {
    background: var(--color-primary-hover);
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.cart-link {
    position: relative;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    text-decoration: none;
}
.cart-link:hover {
    color: #2563eb;
}
.cart-link svg {
    width: 26px;
    height: 26px;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #2563eb;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.cart-container {
    max-width: 1100px;
    height: 90vh;
}
.cart-content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}
.cart-items-section {
    padding: 2.5rem;
    overflow-y: auto;
    border-right: 1px solid #eee;
}
.cart-order-section {
    padding: 2.5rem;
    background: #f9fafb;
    overflow-y: auto;
}
.cart-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}
.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.cart-item-info {
    flex: 1;
}
.cart-item-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 4px;
}
.cart-item-price {
    color: #2563eb;
    font-weight: 700;
}
.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 4px;
}
.cart-qty-ctrl button {
    border: none;
    background: none;
    cursor: pointer;
    padding: 0 8px;
    font-weight: bold;
}
.cart-remove {
    color: #ef4444;
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 5px;
    display: block;
}
.order-summary-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.promo-code-wrap {
    display: flex;
    gap: 8px;
}
.promo-code-wrap input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.promo-code-wrap button {
    padding: 8px 12px;
    background: #1f2937;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.input-group label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 600;
}
.input-group input,
.input-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
}
.full-width {
    grid-column: span 2;
}
.payer-type-toggle {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}
.submit-order-btn {
    width: 100%;
    margin-top: 2rem;
    padding: 15px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
}
.payer-type-toggle {
    display: flex;
    background: #f3f4f6;
    padding: 4px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.type-label {
    flex: 1;
    cursor: pointer;
    text-align: center;
}
.type-label input {
    display: none;
}
.type-label span {
    display: block;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #6b7280;
    transition: all 0.2s;
}
.type-label input:checked + span {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.order-message {
    display: none;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
}
.order-message.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
.order-message.success {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.order-message.error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.submit-order-btn {
    position: relative;
    transition: all 0.2s ease;
}
.submit-order-btn.btn-loading {
    color: transparent !important;
    pointer-events: none;
    opacity: 0.8;
}
.submit-order-btn.btn-loading::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: btn-spin 0.8s linear infinite;
}
@keyframes btn-spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.selection-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.sidebar-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}
.sidebar-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 10px;
}
.tf-group {
    margin-bottom: 15px;
}
.tf-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 5px;
}
.tf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.tech-filter-form input[type="number"],
.tf-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.9rem;
}
.tf-checkbox {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tf-row-check {
    display: flex;
    gap: 15px;
}
.tf-separator {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}
.tf-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.tf-search-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}
.tf-reset-btn {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: underline;
}
.pump-detail-view {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
}
.pump-main-title {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 25px;
}
.charts-area {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin-bottom: 30px;
}
.chart-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chart-btn {
    padding: 10px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    text-align: center;
}
.chart-btn.active {
    background: #2563eb;
    color: white;
}
.chart-canvas-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    height: 450px;
    overflow: hidden;
}
.specs-table-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 30px;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}
.pump-table-wrapper {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.pump-results-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.pump-results-table th {
    background: #f8fafc;
    padding: 12px;
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    border-bottom: 2px solid #e2e8f0;
}
.pump-results-table td {
    padding: 12px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.results-header h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1.5rem;
}
.view-toggle {
    display: flex;
    gap: 5px;
    background: #f8fafc;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}
.view-btn {
    border: none;
    background: transparent;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    color: #94a3b8;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.view-btn.active,
.view-btn:hover {
    background: #fff;
    color: #2563eb;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.pagination-wrapper {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.pagination {
    display: flex;
    list-style: none;
    gap: 8px;
    padding: 0;
    margin: 0;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.page-link,
.page-nav {
    padding: 8px 14px;
    text-decoration: none;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: #fff;
    font-weight: 600;
}
.page-link:hover,
.page-nav:hover:not(.disabled) {
    border-color: #2563eb;
    color: #2563eb;
    background: #f8fafc;
}
.page-link.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}
.page-nav.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f8fafc;
}
.page-dots {
    padding: 0 5px;
    color: #94a3b8;
    font-weight: bold;
}

.contacts {
    display: flex;
    flex-direction: column;
}

.contacts a {
    color: #1d4ed8;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .hero-showcase {
        aspect-ratio: 1/1.1;
        min-height: 300px;
    }
    .contacts-list {
        grid-template-columns: 1fr;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    .stat-number-wrapper {
        font-size: 2rem;
    }
    .news-header .section-title {
        font-size: 2.25rem;
    }
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }
    .stats-grid > .stat-card:nth-child(even) {
        margin-top: 2rem;
    }
    .cooperation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .cooperation-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0;
        padding-bottom: 2rem;
        flex-direction: row;
        align-items: center;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .about-image-wrapper {
        padding-right: 0;
        max-width: 600px;
        margin: 0 auto;
    }
    .about-content-card {
        margin-left: 0;
        background: #ffffff;
        box-shadow: none;
        padding: 2rem;
        text-align: center;
        border: none;
        backdrop-filter: none;
    }
    .about-content-card .section-heading {
        text-align: center;
    }
    .about-decoration {
        display: none;
    }
    .filters-container {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
        margin-bottom: 20px;
    }
    .selector-section {
        background-attachment: scroll;
    }
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .pumps-wrapper {
        grid-template-columns: 1fr;
    }
    .sidebar-wrapper {
        max-width: 100%;
        padding-right: 0;
        border-right: none;
    }
    .mobile-filter-toggle {
        display: flex;
    }
    .sidebar-content {
        display: none;
        padding: 1rem;
        background: var(--color-white);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-md);
        margin-bottom: 2rem;
        animation: slideDown 0.3s ease-out forwards;
    }
    .sidebar-content.active {
        display: block;
    }
    .page-wrapper {
        flex-direction: column;
    }
    .modal-grid {
        grid-template-columns: 1fr;
    }
    .modal-image-col {
        height: 200px;
        padding: 1rem;
    }
    .modal-info-col {
        padding: 1rem 1.5rem;
    }
    .qv-title {
        font-size: 1.5rem;
    }
    .qv-specs-list {
        grid-template-columns: 1fr;
    }
    .selection-container {
        grid-template-columns: 1fr;
        padding: 20px 0;
        gap: 20px;
    }
    .charts-area {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .chart-controls {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .chart-canvas-wrapper {
        height: 350px;
    }
    .pump-main-title {
        font-size: 1.5rem;
    }
    .specs-table {
        display: block;
    }
    .specs-table tbody,
    .specs-table tr,
    .specs-table td {
        display: block;
        width: 100%;
    }
    .specs-table tr {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-bottom: 1px solid #f1f5f9;
        padding: 10px 0;
    }
    .specs-table tr:last-child {
        border-bottom: none;
    }
    .specs-table td {
        border: none;
        padding: 5px 0;
    }
    .specs-table td:nth-child(odd) {
        color: #64748b;
        font-weight: 600;
    }
    .specs-table-wrapper {
        border-radius: 8px;
    }
}
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 2rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease-in-out;
        z-index: 999;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .nav-item {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }
    .mobile-only-btn {
        display: inline-block;
        margin-top: 1rem;
    }
    .desktop-contacts {
        display: none;
    }
    .mobile-contacts {
        display: flex;
    }
    .qv-cart-controls {
        flex-direction: column;
    }
    .mobile-contacts .phone-link {
        font-size: 1.15rem;
    }
    .mobile-contacts .exchange-rate {
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }
    .hero-layout {
        grid-template-columns: 1fr;
    }
    .hero-showcase {
        aspect-ratio: 1/1.05;
        min-height: 280px;
        max-height: 380px;
    }
    .contacts-map-wrapper {
        min-height: 400px;
    }
    .contacts-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .map-wrapper {
        height: 350px;
        border-radius: var(--radius-sm);
    }
    .partners-section .section-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .front-news {
        padding: 3rem 0;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .news-header .section-title {
        font-size: 2rem;
    }
    .news-content {
        padding: 1.25rem;
    }
    .news-title {
        font-size: 1.125rem;
    }
    .section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 2rem;
    }
    .section-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .certificates-gallery {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .certificate-img {
        max-height: 100px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 2rem 1.5rem;
    }
    .pumps {
        padding-top: 5rem;
    }
    .page-title {
        font-size: 1.7rem;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .card-image {
        height: 200px;
    }
    .card-content {
        padding: 1rem;
    }
    .product-title {
        font-size: 1rem;
    }
    .qv-title {
        font-size: 1.3rem;
    }
    .qv-specs-list li {
        font-size: 0.8rem;
    }
    .modal-image-col {
        height: 180px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cart-content-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .form-row,
    .services-grid {
        grid-template-columns: 1fr;
    }
    .form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }
    .container {
        padding: 0 1rem;
    }
    .faq-trigger {
        padding: 1.25rem;
    }
    .faq-inner {
        padding: 0 1.25rem 1.5rem 1.25rem;
    }
    .faq-question {
        font-size: 1rem;
    }
    .rec-grid {
        grid-template-columns: 1fr;
    }
    .ref-grid {
        grid-template-columns: 1fr;
    }
    .ref-image-wrapper {
        height: 200px;
    }
}
@media (max-width: 576px) {
    .page-title {
        font-size: 1.5rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .card-image {
        height: 180px;
    }
    .quick-view-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .modal-container {
        max-width: 100%;
    }
    .modal-info-col {
        padding: 1rem;
    }
    .qv-title {
        font-size: 1.2rem;
    }
    .primary-action {
        width: 100%;
        justify-content: center;
    }
    .qv-actions {
        flex-direction: column;
        gap: 1rem;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
    }
    .city-link {
        font-size: 0.9rem;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-showcase {
        aspect-ratio: 1/1;
        min-height: 260px;
        max-height: 340px;
        border-radius: 1.25rem;
    }
    .pump-card {
        border-radius: 1.25rem;
        padding: clamp(1.25rem, 7%, 2rem) clamp(0.875rem, 4%, 1.5rem);
    }
    .pump-image-wrapper {
        width: clamp(90px, 32%, 130px);
        height: clamp(90px, 32%, 130px);
        margin-bottom: clamp(0.625rem, 3.5%, 1.25rem);
    }
    .pump-name {
        font-size: clamp(0.875rem, 3.2%, 1.05rem);
    }
    .pump-type {
        font-size: clamp(0.7rem, 2.3%, 0.8rem);
    }
    .slider-dots {
        gap: clamp(0.375rem, 1.3%, 0.5rem);
        margin-top: clamp(0.875rem, 2.5%, 1.25rem);
    }
    .slider-dot {
        width: clamp(7px, 2.2%, 9px);
        height: clamp(7px, 2.2%, 9px);
    }
    .cooperation-section {
        padding: 4rem 0;
    }
    .cooperation-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .cooperation-title {
        font-size: 1.5rem;
    }
    .cooperation-desc {
        max-width: 100%;
        font-size: 1rem;
    }
    .cooperation-list {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    .cooperation-list li {
        font-size: 0.95rem;
    }
    .contacts-map-wrapper {
        min-height: 300px;
    }
    .contacts-list {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .stats-grid > .stat-card:nth-child(even) {
        margin-top: 0;
    }
    .stats-section {
        padding: 4rem 0;
    }
    .docs-grid {
        grid-template-columns: 1fr;
    }
    .doc-image-box {
        height: 220px;
    }
    .news-header .section-title,
    .section-title {
        font-size: 1.75rem;
    }
    .news-title {
        font-size: 1rem;
    }
    .news-excerpt {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    .news-link {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    .news-content {
        padding: 1rem;
    }
    .section-desc {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .certificates-gallery {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    .certificate-img {
        max-height: 80px;
    }
    .pump-main-title {
        font-size: 1.25rem;
    }
    .pump-detail-view {
        padding: 15px;
    }
    .tf-row {
        grid-template-columns: 1fr;
    }
    .back-link {
        font-size: 0.8rem;
        padding: 5px;
    }
    .tab-btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}
@media (max-width: 350px) {
    .hero-showcase {
        min-height: 220px;
        aspect-ratio: 1/0.95;
        border-radius: 1rem;
    }
    .pump-card {
        border-radius: 1rem;
        padding: clamp(1rem, 6%, 1.75rem) clamp(0.75rem, 3.5%, 1.25rem);
    }
    .pump-image-wrapper {
        width: 75px;
        height: 75px;
    }
    .pump-name {
        font-size: 0.75rem;
    }
    .pump-type {
        font-size: 0.65rem;
    }
    .slider-dots {
        gap: 0.35rem;
        margin-top: 0.75rem;
    }
    .slider-dot {
        width: 6px;
        height: 6px;
    }
    .container {
        padding: 0 1rem;
    }
    .pumps {
        padding-top: 4rem;
    }
    .sidebar-wrapper {
        padding: 1rem;
    }
    .page-title {
        font-size: 1.3rem;
    }
    .card-image {
        height: 160px;
    }
    .product-title {
        font-size: 0.95rem;
    }
    .product-price {
        font-size: 1rem;
        padding: 0.3rem 0.8rem;
    }
    .modal-image-col {
        height: 150px;
        padding: 0.5rem;
    }
    .qv-specs-list li {
        font-size: 0.75rem;
    }
}
:root {
    --color-primary-dark: #02519c;
    --color-text: #1f2937;
    --color-muted: #4b5563;
    --color-white: #ffffff;
    --color-border: #e5e7eb;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --transition: 0.3s ease;
}
.section-header-wrapper {
    text-align: center;
    margin-bottom: 1.25rem;
}
.page-services-section {
    padding: 8rem 0 6rem;
    background-color: var(--color-white);
}
.services-intro-block {
    margin: 0 auto 4rem;
    color: var(--color-muted);
}
.intro-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2.5rem;
}
.intro-lead strong {
    color: var(--color-primary);
}
.intro-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}
.intro-col p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 1.05rem;
}
.intro-col strong {
    color: var(--color-text);
    font-weight: 600;
}
.services-action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 5rem;
}
.action-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.action-card:hover {
    transform: translateY(-8px);
    border-color: #bfdbfe;
    box-shadow:
        0 20px 25px -5px rgba(37, 99, 235, 0.1),
        0 10px 10px -5px rgba(37, 99, 235, 0.04);
}
.action-icon-box {
    width: 72px;
    height: 72px;
    background: #eff6ff;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition);
}
.action-icon-box svg {
    width: 32px;
    height: 32px;
}
.action-card:hover .action-icon-box {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}
.action-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    transition: color var(--transition);
}
.action-card:hover .action-title {
    color: var(--color-primary);
}
.services-contact-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-md);
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    box-shadow: 0 15px 30px rgba(2, 81, 156, 0.2);
}
.scb-text {
    max-width: 500px;
}
.scb-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.scb-text p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}
.scb-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 280px;
}
.scb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--color-white);
    color: var(--color-primary-dark);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all var(--transition);
    border: 2px solid var(--color-white);
}
.scb-btn:hover {
    background: transparent;
    color: var(--color-white);
}
.scb-btn.outline {
    background: transparent;
    color: var(--color-white);
}
.scb-btn.outline:hover {
    background: var(--color-white);
    color: var(--color-primary-dark);
}
.scb-btn svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 1024px) {
    .services-action-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-contact-banner {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
        padding: 3rem 2rem;
    }
    .scb-text {
        max-width: 100%;
    }
    .scb-actions {
        width: 100%;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .intro-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .page-services-section {
        padding: 6rem 0 4rem;
    }
    .services-contact-banner {
        padding: 2rem 1.5rem;
    }
    .scb-text h3 {
        font-size: 1.5rem;
    }
}
@media (max-width: 576px) {
    .services-action-grid {
        grid-template-columns: 1fr;
    }
    .scb-btn {
        width: 100%;
    }
    .action-card {
        padding: 2rem 1rem;
    }
    .intro-lead {
        font-size: 1.1rem;
    }
}
@media (max-width: 350px) {
    .page-services-section {
        padding: 5rem 0 3rem;
    }
    .scb-text h3 {
        font-size: 1.25rem;
    }
    .action-icon-box {
        width: 60px;
        height: 60px;
    }
    .action-icon-box svg {
        width: 28px;
        height: 28px;
    }
}
:root {
    --color-dark: #1f2937;
    --color-light: #9ca3af;
    --color-bg: #f9fafb;
    --radius-md: 8px;
}
.partners-section {
    position: relative;
    padding: 6rem 0;
    background-color: var(--color-bg);
    overflow: hidden;
    text-align: center;
    border-top: 1px solid var(--color-border);
}
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#d1d5db 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.partners-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.sub-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.partners-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}
.divider {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 1.5rem auto 2rem;
    border-radius: var(--radius-sm);
}
.partners-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-gray);
    font-weight: 400;
}
.partners-text strong {
    color: var(--color-text);
    font-weight: 600;
}
.partners-text .highlight {
    color: var(--color-primary);
    font-weight: 700;
}
.partners-action {
    margin-top: 2.5rem;
}
.btn-text-arrow {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 2px;
    transition: all var(--transition);
}
.btn-text-arrow:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.btn-text-arrow::after {
    content: " →";
    transition: margin-left var(--transition);
}
.btn-text-arrow:hover::after {
    margin-left: 8px;
}
.location-section {
    position: relative;
    width: 100%;
    height: 550px;
    background: var(--color-bg);
    padding-bottom: 5rem;
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: filter var(--transition);
}
.map-wrapper:hover iframe {
    filter: grayscale(0%);
}
.map-card {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 2.5rem;
    width: 350px;
    max-width: 90%;
    border-radius: var(--radius-md);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 10;
    border-left: 4px solid var(--color-primary);
}
.map-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.map-card-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--color-gray);
}
.map-card-row i {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-top: 4px;
    width: 20px;
    text-align: center;
}
.map-card-row address {
    font-style: normal;
    line-height: 1.5;
    font-size: 0.95rem;
}
.map-card-row a {
    color: var(--color-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.map-card-row a:hover {
    color: var(--color-primary);
}
.map-card-hours {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
}
.map-card-hours span {
    font-weight: 700;
    color: var(--color-dark);
    margin-right: 0.5rem;
}
.cities-section {
    padding: 4rem 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
}
.cities-header {
    margin-bottom: 3rem;
    text-align: left;
}
.cities-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.cities-subtitle {
    color: var(--color-muted);
    font-size: 1rem;
}
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem 2rem;
}
.city-link {
    text-decoration: none;
    color: var(--color-gray);
    font-size: 0.95rem;
    padding: 4px 0;
    display: inline-block;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}
.city-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}
@media (max-width: 1024px) {
    .location-section {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }
    .map-wrapper {
        height: 400px;
    }
    .map-card {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-bottom: 4px solid var(--color-primary);
        background: var(--color-white);
    }
    .partners-section {
        padding: 7rem 0;
    }
    .partners-title {
        font-size: 2.25rem;
    }
}
@media (max-width: 768px) {
    .partners-section {
        padding: 5rem 0;
    }
    .partners-title {
        font-size: 2rem;
    }
    .partners-text {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }
    .partners-content {
        text-align: left;
    }
    .divider {
        margin-left: 0;
    }
    .cities-section {
        padding: 3rem 0;
    }
    .cities-title {
        font-size: 1.3rem;
    }
    .map-card {
        padding: 2rem;
    }
    .map-card-title {
        font-size: 1.1rem;
    }
}
@media (max-width: 576px) {
    .partners-section {
        padding: 5rem 0;
    }
    .partners-title {
        font-size: 1.75rem;
    }
    .partners-text {
        font-size: 0.95rem;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem 1rem;
    }
    .city-link {
        font-size: 0.9rem;
    }
    .location-section {
        padding-bottom: 3rem;
    }
    .map-wrapper {
        height: 350px;
    }
    .map-card {
        padding: 1.5rem;
    }
}
@media (max-width: 350px) {
    .partners-title {
        font-size: 1.5rem;
    }
    .partners-text {
        font-size: 0.9rem;
    }
    .cities-title {
        font-size: 1.2rem;
    }
    .cities-grid {
        grid-template-columns: 1fr;
    }
    .map-card {
        padding: 1.25rem;
    }
    .map-card-title {
        font-size: 1rem;
    }
    .map-wrapper {
        height: 300px;
    }
}
:root {
    --color-danger: #ef4444;
    --radius-xl: 1.5rem;
}
.training-section {
    padding: 6rem 0;
    background: #ffffff;
}
.training-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}
.intro-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.intro-text p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.seminars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}
.seminar-card {
    background: #f9fafb;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.seminar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    border-color: #bfdbfe;
}
.seminar-card.highlight {
    background: #eff6ff;
    border-color: var(--color-primary);
}
.card-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}
.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.audience {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
}
.topics-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.topics-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray);
    font-size: 0.95rem;
}
.topics-list li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}
.card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.training-contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.contact-image {
    background: #f3f4f6;
    position: relative;
}
.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.contact-form-area {
    padding: 3rem;
}
.contact-form-area h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 10px;
}
.form-row.full {
    grid-template-columns: 1fr;
}
.modern-form input,
.modern-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #f9fafb;
}
.modern-form input:focus,
.modern-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #ffffff;
}
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
}
.privacy-link {
    font-size: 0.85rem;
    color: var(--color-light);
    text-decoration: none;
}
.privacy-link:hover {
    text-decoration: underline;
}
.contact-phone a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 700;
}
.directory-section {
    padding: 5rem 0;
    background-color: #f3f4f6;
}
.directory-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.directory-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}
.directory-subtitle {
    font-size: 1.1rem;
    color: var(--color-gray);
    max-width: 400px;
    margin: 0 auto;
}
.directory-subtitle strong {
    color: var(--color-primary);
    font-weight: 700;
}
.divider-center {
    width: 60px;
    height: 4px;
    background: var(--color-primary);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}
.directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}
.dir-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border-top: 4px solid var(--color-primary);
    height: 100%;
}
.dir-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.dir-card.service-card {
    border-top-color: var(--color-danger);
}
.dir-card.warehouse-card {
    border-top-color: var(--color-success);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}
.icon-bg {
    width: 40px;
    height: 40px;
    background: #eff6ff;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.service-card .icon-bg {
    background: #fef2f2;
    color: var(--color-danger);
}
.warehouse-card .icon-bg {
    background: #ecfdf5;
    color: var(--color-success);
}
.card-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
    line-height: 1.3;
}
.contact-listItem {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-listItem li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--color-gray);
}
.contact-listItem i {
    color: var(--color-light);
    margin-top: 4px;
    flex-shrink: 0;
}
.contact-listItem a {
    color: var(--color-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.contact-listItem a:hover {
    color: var(--color-primary);
}
.separator {
    height: 1px;
    background: var(--color-border);
    margin: 1rem 0;
}
.big-phone a {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-danger);
}
.work-hours {
    margin-top: 1.5rem;
    background: #f9fafb;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
}
.work-hours .label {
    display: block;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
}
.dir-card.full-width {
    grid-column: span 3;
}
.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}
.region-item {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}
.region-item h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}
.region-item .city {
    display: block;
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.region-item a {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.region-item .phone {
    color: var(--color-dark);
    font-weight: 600;
}
.region-item .email {
    color: var(--color-primary);
}
.wh-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}
.nav-note {
    font-size: 0.9rem;
    color: #059669;
    background: #ecfdf5;
    padding: 0.5rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
}
.alert-box {
    margin-top: 1.5rem;
    border: 1px dashed #f59e0b;
    background: #fffbeb;
    padding: 1rem;
    border-radius: 6px;
}
.alert-box strong {
    display: block;
    color: #b45309;
    margin-bottom: 0.5rem;
}
.rules-list {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    color: #78350f;
}
.wh-contacts {
    background: var(--color-dark);
    color: white;
    padding: 2rem;
    border-radius: 8px;
}
.wh-contacts h4 {
    color: var(--color-light);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.person {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
}
.person:last-child {
    border: none;
}
.person .name {
    display: block;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}
.person .phone {
    color: #60a5fa;
    text-decoration: none;
}
.main-email {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}
.main-email a {
    color: var(--color-success);
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
}
.maps-gallery-section {
    padding: 6rem 0;
    background-color: #ffffff;
    border-top: 1px solid var(--color-border);
}
.section-header.text-center {
    text-align: center;
    margin-bottom: 3.5rem;
}
.gallery-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.gallery-item {
    margin: 0;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #f9fafb;
}
.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    padding: 1rem;
    background: white;
}
.gallery-item:hover .img-wrapper img {
    transform: scale(1.05);
}
.img-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(37, 99, 235, 0.4);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    cursor: pointer;
}
.gallery-item:hover .overlay {
    opacity: 0;
}
.img-wrapper .overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gallery-item:hover .overlay i {
    transform: scale(1);
}
.gallery-item figcaption {
    padding: 1.5rem;
    text-align: center;
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
}
.gallery-item figcaption h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}
.gallery-item figcaption p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin: 0;
}
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #f3f4f6 0%, #ffffff 100%);
    position: relative;
}
.contact-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3.5rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
}
.form-header {
    margin-bottom: 3rem;
}
.section-lead {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}
.form-input {
    width: 100%;
    background: #f9fafb;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--color-dark);
    transition: all 0.3s ease;
    outline: none;
}
.form-input::placeholder {
    color: var(--color-light);
}
.form-input:hover {
    background: #ffffff;
    border-color: #d1d5db;
}
.form-input:focus {
    background: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
textarea.form-input {
    resize: vertical;
    min-height: 120px;
}
@media (max-width: 1024px) {
    .training-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .seminars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-card {
        grid-template-columns: 1fr;
    }
    .contact-image {
        height: 250px;
    }
    .contact-form-area {
        padding: 2rem;
    }
    .directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dir-card.full-width {
        grid-column: span 2;
    }
    .wh-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-2-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-layout {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .training-section {
        padding: 5rem 0;
    }
    .seminars-grid {
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
    }
    .contact-card-wrapper {
        padding: 2rem 1.5rem;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .input-group.full-width {
        grid-column: span 1;
    }
    .form-footer {
        flex-direction: column-reverse;
        gap: 1.5rem;
        align-items: stretch;
    }
    .submit-btn {
        justify-content: center;
        width: 100%;
    }
    .privacy-link {
        justify-content: center;
    }
    .directory-grid {
        display: block;
    }
    .dir-card {
        margin-bottom: 20px;
    }
    .dir-card.full-width {
        grid-column: span 1;
    }
    .regions-grid {
        grid-template-columns: 1fr;
    }
    .img-wrapper {
        aspect-ratio: 4/3;
    }
    .maps-gallery-section {
        padding: 4rem 0;
    }
}
@media (max-width: 480px) {
    .training-intro {
        gap: 1.5rem;
    }
    .intro-text h3 {
        font-size: 1.25rem;
    }
    .intro-text p {
        font-size: 1rem;
    }
    .card-icon {
        font-size: 2rem;
    }
    .card-title {
        font-size: 1.1rem;
    }
    .contact-form-area h3 {
        font-size: 1.5rem;
    }
    .directory-title {
        font-size: 1.2rem;
    }
    .directory-subtitle {
        font-size: 1rem;
    }
    .dir-card {
        padding: 1.5rem;
    }
    .card-header h3 {
        font-size: 1rem;
    }
    .contact-card-wrapper {
        padding: 1.5rem 1rem;
    }
    .submit-btn {
        padding: 0.8rem 2rem;
        font-size: 0.95rem;
    }
}
@media (max-width: 350px) {
    .training-section {
        padding: 5rem 0;
    }
    .seminar-card {
        padding: 1.5rem;
    }
    .card-icon {
        font-size: 1.75rem;
    }
    .dir-card {
        padding: 1.25rem;
    }
    .contact-form-area {
        padding: 1.25rem;
    }
}
:root {
    --color-darker: #172554;
    --radius-xl: 1.5rem;
}
.about-section {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-darker) 100%);
    color: var(--color-white);
    overflow: hidden;
}
.about-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-label {
    display: inline-block;
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.about-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--color-white);
}
.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 1.5rem;
    max-width: 600px;
}
.about-text strong {
    color: var(--color-white);
    font-weight: 600;
}
.slogan-card {
    margin-top: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 550px;
    transition: transform var(--transition);
}
.slogan-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
}
.slogan-icon {
    font-size: 2rem;
    color: var(--color-accent);
    background: rgba(37, 99, 235, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.slogan-text h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--color-light);
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.slogan-text p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.3;
}
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}
.image-circle {
    width: 260px;
    height: 260px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.3);
    z-index: 2;
    position: relative;
    padding: 2rem;
}
.image-circle img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.ring-1 {
    width: 360px;
    height: 360px;
    border-color: rgba(96, 165, 250, 0.2);
}
.ring-2 {
    width: 480px;
    height: 480px;
    border-style: dashed;
    animation: spin 60s linear infinite;
}
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
.sophisticated-section {
    padding: 6rem 0;
    background-color: var(--color-bg);
}
.split-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: start;
}
.side-anchor {
    position: relative;
    height: 100%;
}
.sticky-wrapper {
    position: sticky;
    top: 100px;
    padding-right: 2rem;
    border-right: 1px solid var(--color-border);
}
.eyebrow-text {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--color-light);
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.quality-text {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.quote-minimal {
    margin-bottom: 2.5rem;
}
.quote-line {
    width: 40px;
    height: 2px;
    background: var(--color-primary);
    margin-bottom: 1rem;
}
.quote-minimal p {
    font-style: italic;
    font-size: 1.125rem;
    color: var(--color-text);
}
.logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.logos-row img {
    height: 35px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all var(--transition);
}
.logos-row img:hover {
    opacity: 1;
    filter: grayscale(0);
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.info-card {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform var(--transition);
}
.info-card:hover {
    transform: translateY(-5px);
}
.info-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}
.highlight-card {
    grid-column: 1 / -1;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--color-primary);
}
.card-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    color: #f3f4f6;
    z-index: 0;
    opacity: 0.5;
}
.card-content {
    position: relative;
    z-index: 1;
}
.stat-row {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.big-num {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}
.stat-desc {
    font-size: 0.875rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}
.timeline-entry {
    border-left: 2px solid var(--color-border);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    margin-left: 3px;
    position: relative;
}
.timeline-entry::before {
    content: "";
    position: absolute;
    left: -5px;
    top: 5px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}
.year {
    display: block;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}
.timeline-entry p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.5;
}
.dark-card {
    background: var(--color-dark);
    color: #f9fafb;
}
.dark-card h3 {
    color: var(--color-white);
}
.dark-card p {
    color: #d1d5db;
    font-size: 0.95rem;
}
.bottom-badge {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
}
.front-partners {
    background: linear-gradient(135deg, var(--color-bg) 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
.front-partners::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    z-index: 0;
}
.partners-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}
.partners-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.partners-header .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #3b82f6 100%);
    border-radius: 2px;
}
.partners-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    z-index: 1;
}
.partners-carousel {
    display: flex;
    gap: 3rem;
    animation: scrollPartners 60s linear infinite;
    width: max-content;
    min-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}
.partners-carousel:hover {
    animation-play-state: paused;
}
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 100px;
    background: var(--color-white);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}
.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all var(--transition);
}
.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}
.carousel-overlay-left,
.carousel-overlay-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 2;
}
.carousel-overlay-left {
    left: 0;
    background: linear-gradient(to right, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 100%);
}
.carousel-overlay-right {
    right: 0;
    background: linear-gradient(to left, rgba(248, 250, 252, 1) 0%, rgba(248, 250, 252, 0) 100%);
}
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}
.carousel-btn {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.carousel-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    transform: scale(1.1);
}
.carousel-btn:active {
    transform: scale(0.95);
}
.gallery-section {
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
.gallery-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.02) 0%, transparent 70%);
    z-index: 0;
}
.gallery-header {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}
.gallery-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}
.gallery-header .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, #3b82f6 100%);
    border-radius: 2px;
}
.gallery-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
}
.gallery-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}
.gallery-item:hover::before {
    opacity: 1;
}
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}
.gallery-item.featured {
    grid-column: span 2;
    grid-row: span 2;
}
.gallery-item.medium {
    grid-column: span 2;
    grid-row: span 1;
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--color-white);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}
.gallery-caption {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}
.marquee-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-fade {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-fade.left {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}
.marquee-fade.right {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.team-section {
    padding: 6rem 0;
    background: #f9fafb;
}
.section-subtitle {
    display: block;
    margin-top: 0.5rem;
    color: var(--color-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}
.slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.slider-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.slider-track::-webkit-scrollbar {
    display: none;
}
.team-card {
    flex: 0 0 30%;
    max-width: 100%;
    scroll-snap-align: start;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    transition: all var(--transition);
}
.slider-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}
.slider-btn.prev {
    left: -1.5rem;
}
.slider-btn.next {
    right: -1.5rem;
}
.references-section {
    padding: 6rem 0;
    background: #f9fafb;
}
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.ref-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--color-border);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ref-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.ref-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.ref-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.ref-card:hover .ref-img {
    transform: scale(1.1);
}
.ref-overlay {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.ref-card:hover .ref-overlay {
    opacity: 1;
}
.cta-button.small {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.ref-card:hover .cta-button.small {
    transform: translateY(0);
}
.ref-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.ref-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}
.ref-title a {
    text-decoration: none;
    color: var(--color-text);
    transition: color 0.2s;
}
.ref-title a:hover {
    color: var(--color-primary);
}
.ref-desc {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.recommendations-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}
.rec-bg-decoration {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
    z-index: 1;
}
.rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}
.rec-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.glass-effect {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
}
.rec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px 0 rgba(31, 38, 135, 0.1);
    background: rgba(255, 255, 255, 0.85);
}
.rec-image-wrapper {
    position: relative;
    height: 180px;
    background: var(--color-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: zoom-in;
}
.rec-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s ease;
}
.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.25rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.rec-image-wrapper:hover .rec-img {
    transform: scale(1.05);
    opacity: 0.8;
}
.rec-image-wrapper:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
.rec-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.rec-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}
.rec-text {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.rec-link {
    margin-top: auto;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s;
}
.rec-link:hover {
    color: var(--color-primary-hover);
    text-decoration: underline;
}
.rec-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.rec-modal.active {
    display: flex;
    opacity: 1;
}
.rec-modal-content {
    max-width: 90%;
    max-height: 90%;
}
.rec-modal-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    background: var(--color-white);
}
.rec-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}
.rec-modal-close:hover {
    color: var(--color-primary);
}
.faq-section {
    padding: 6rem 0;
    background: var(--color-white);
}
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
}
.faq-item {
    border-bottom: 1px solid var(--color-border);
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--color-white);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}
.faq-trigger:hover {
    background: #f9fafb;
}
.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    padding-right: 1.5rem;
    line-height: 1.4;
}
.faq-icon {
    color: var(--color-light);
    transition:
        transform 0.3s ease,
        color 0.3s ease;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.faq-item.active .faq-trigger {
    background: #eff6ff;
}
.faq-item.active .faq-question {
    color: var(--color-primary);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--color-white);
}
.faq-inner {
    padding: 0 2rem 2rem 2rem;
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 1rem;
}
.faq-inner p {
    margin-bottom: 1rem;
}
.faq-inner p:last-child {
    margin-bottom: 0;
}
.faq-list {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.faq-list li {
    margin-bottom: 0.5rem;
}
.faq-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-top: 1rem;
    border: 1px solid var(--color-border);
}
.table-responsive {
    overflow-x: auto;
}
.faq-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
    font-size: 0.95rem;
}
.faq-table td {
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
}
.faq-table tr:nth-child(even) {
    background: #f9fafb;
}
.faq-table tr:hover {
    background: #f3f4f6;
}
.text-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}
.text-link:hover {
    text-decoration: underline;
}
.comparison-block {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--color-primary);
}
.mt-3 {
    margin-top: 1rem;
}
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: left;
    }
    .about-visual {
        height: auto;
        padding: 2rem 0;
    }
    .ring {
        display: none;
    }
    .about-text p {
        max-width: 100%;
    }
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .sticky-wrapper {
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--color-border);
        padding-bottom: 2rem;
        padding-right: 0;
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .gallery-bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 1.25rem;
    }
    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }
    .gallery-item.medium {
        grid-column: span 1;
    }
    .gallery-header .section-title {
        font-size: 2.25rem;
    }
    .partners-carousel {
        gap: 2rem;
        animation-duration: 70s;
    }
    .partner-logo {
        min-width: 160px;
        height: 90px;
    }
    .partner-logo img {
        max-height: 50px;
    }
    .team-card {
        flex: 0 0 calc(50% - 1rem);
    }
    .modal-grid {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
    .modal-image-col {
        grid-template-rows: auto auto;
        height: auto;
        padding: 1rem;
    }
    .qv-main-image-wrapper {
        height: 250px;
    }
    .modal-info-col {
        padding: 1.5rem;
    }
    .qv-title {
        font-size: 1.3rem;
    }
}
@media (max-width: 768px) {
    .order-form .form-grid {
        grid-template-columns: 1fr;
    }
    .cart-order-section {
        padding: 1.5rem;
    }
    .promo-code-wrap {
        flex-direction: column;
    }
    .about-section {
        padding: 5rem 0;
    }
    .about-title {
        font-size: 2.5rem;
    }
    .slogan-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }
    .info-card {
        padding: 1rem;
    }
    .front-partners {
        padding: 3rem 0;
    }
    .partners-header .section-title {
        font-size: 2rem;
    }
    .partners-carousel {
        gap: 1.5rem;
        animation-duration: 80s;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .partner-logo {
        min-width: 140px;
        height: 80px;
        padding: 0.75rem;
    }
    .partner-logo img {
        max-height: 45px;
    }
    .carousel-overlay-left,
    .carousel-overlay-right {
        width: 60px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    .gallery-section {
        padding: 3rem 0;
    }
    .gallery-bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .gallery-item.featured,
    .gallery-item.medium {
        grid-column: span 1;
    }
    .gallery-header .section-title {
        font-size: 2rem;
    }
    .gallery-caption {
        font-size: 1rem;
        padding: 1.25rem;
    }
    .slider-btn {
        display: none;
    }
    .team-card {
        flex: 0 0 50%;
    }
    .ref-grid,
    .rec-grid {
        grid-template-columns: 1fr;
    }
    .ref-image-wrapper {
        height: 200px;
    }
    .faq-trigger {
        padding: 1.25rem;
    }
    .faq-inner {
        padding: 0 1.25rem 1.5rem 1.25rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .modal-info-col {
        padding: 1rem;
    }
    .qv-specs-list {
        padding: 0.75rem;
    }
    .slider-container {
        width: 100%;
        padding: 0;
        overflow: visible;
    }
    .slider-arrow {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.15);
    }
    .slider-arrow--prev {
        left: 10px;
    }
    .slider-arrow--next {
        right: 10px;
    }
    .hero-showcase {
        min-height: 420px;
        aspect-ratio: auto;
        width: 280px;
    }
    .pump-image-wrapper {
        width: 220px !important;
        height: 220px !important;
        margin-bottom: 1.5rem;
    }
    .pump-name {
        font-size: 1.5rem;
    }
    .pump-type {
        font-size: 1rem;
    }
    .pump-card {
        padding: 2rem 1rem;
    }
    .about-title {
        font-size: 2rem;
    }
    .partners-header .section-title,
    .gallery-header .section-title {
        font-size: 1.75rem;
    }
    .partners-carousel {
        gap: 1rem;
        animation-duration: 90s;
    }
    .partner-logo {
        min-width: 120px;
        height: 70px;
        padding: 0.5rem;
    }
    .partner-logo img {
        max-height: 40px;
    }
    .carousel-overlay-left,
    .carousel-overlay-right {
        width: 40px;
    }
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
    }
    .gallery-caption {
        font-size: 0.95rem;
        padding: 1rem;
    }
    .gallery-bento-grid {
        gap: 1.25rem;
    }
    .team-card {
        flex: 0 0 100%;
    }
}
@media (max-width: 350px) {
    .about-title {
        font-size: 1.75rem;
    }
    .partner-logo {
        min-width: 100px;
        height: 60px;
    }
    .partner-logo img {
        max-height: 35px;
    }
}
.selection-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 40px 0;
    max-width: 1300px;
    margin: 0 auto;
}
.sidebar-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
}
.sidebar-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1e293b;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 10px;
}
.tf-group {
    margin-bottom: 15px;
}
.tf-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 5px;
}
.tf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.tech-filter-form input[type="number"],
.tech-filter-form input[type="text"],
.tf-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.9rem;
}
.tf-checkbox {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tf-checkbox label {
    margin: 0;
    font-weight: 400;
    color: #334155;
    cursor: pointer;
}
.tf-row-check {
    display: flex;
    gap: 15px;
}
.tf-row-check label {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 400;
    color: #334155;
}
.tf-separator {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}
.tf-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.tf-search-btn {
    width: 100%;
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.tf-search-btn:hover {
    background: #1d4ed8;
}
.tf-reset-btn {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    text-decoration: underline;
    cursor: pointer;
}
.tf-reset-btn:hover {
    color: #ef4444;
}
.pump-detail-view {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.pump-main-title {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
}
.charts-area {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    margin-bottom: 40px;
    min-height: 400px;
}
.chart-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.chart-btn {
    padding: 10px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    cursor: pointer;
    text-align: left;
    font-size: 0.9rem;
    color: #475569;
    transition: all 0.2s;
    text-decoration: none;
    display: block;
}
.chart-btn:hover,
.chart-btn.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}
.chart-canvas-wrapper {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.specs-table-wrapper {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0 8px 8px 8px;
    padding: 20px;
    margin-bottom: 30px;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
}
.specs-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
    color: #475569;
}
.specs-table td:nth-child(odd) {
    width: 25%;
    color: #64748b;
}
.specs-table td:nth-child(even) {
    width: 25%;
    color: #0f172a;
}
.specs-table tr:last-child td {
    border-bottom: none;
}
.pump-desc-container {
    margin-top: 30px;
    border-top: 1px solid #e2e8f0;
}
.desc-toggler {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
    border-radius: 0 0 8px 8px;
}
.desc-toggler:hover {
    background: #f1f5f9;
}
.desc-toggler svg {
    transition: transform 0.3s ease;
}
.desc-toggler.active svg {
    transform: rotate(180deg);
}
.desc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #fff;
}
.desc-inner {
    padding: 20px;
    line-height: 1.7;
    color: #475569;
    font-size: 0.95rem;
}
.desc-inner p {
    margin-bottom: 1rem;
}
.desc-inner ul,
.desc-inner ol {
    margin-bottom: 1rem;
    padding-left: 20px;
}
.desc-inner li {
    margin-bottom: 5px;
}
.results-list {
    width: 100%;
}
.pump-table-wrapper {
    overflow-x: auto;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}
.pump-results-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.pump-results-table th {
    background: #f8fafc;
    padding: 15px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
}
.pump-results-table td {
    padding: 15px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.95rem;
}
.pump-results-table tr:hover {
    background: #f1f5f9;
}
.pump-link {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.pump-link:hover {
    text-decoration: underline;
}
.btn-select {
    display: inline-block;
    padding: 6px 12px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-select:hover {
    background: #2563eb;
    color: #fff;
}
.no-results {
    padding: 40px;
    text-align: center;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: #64748b;
}
.back-link {
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 5px 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    transition: all 0.2s;
}
.back-link:hover {
    background: #f1f5f9;
    color: #0f172a;
}
@media (max-width: 992px) {
    .selection-container {
        grid-template-columns: 1fr;
        padding: 20px 0;
        gap: 20px;
    }
    .charts-area {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .chart-controls {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .chart-canvas-wrapper {
        height: 350px;
    }
    .pump-main-title {
        font-size: 1.5rem;
    }
    .specs-table {
        display: block;
    }
    .specs-table tbody,
    .specs-table tr,
    .specs-table td {
        display: block;
        width: 100%;
    }
    .specs-table tr {
        display: flex;
        flex-wrap: wrap;
        border-bottom: 1px solid #f1f5f9;
        padding: 10px 0;
    }
    .specs-table tr:last-child {
        border-bottom: none;
    }
    .specs-table td {
        width: 50%;
        border: none;
        padding: 5px 0;
    }
    .specs-table td:nth-child(odd) {
        color: #64748b;
        font-weight: 600;
    }
    .specs-table-wrapper {
        border-radius: 8px;
    }
}
@media (max-width: 600px) {
    .pump-detail-view {
        padding: 15px;
    }
    .pump-main-title {
        font-size: 1.25rem;
    }
    .tf-row {
        grid-template-columns: 1fr;
    }
    .back-link {
        font-size: 0.8rem;
        padding: 5px;
    }
    .pump-table-wrapper {
        border-radius: 4px;
    }
}
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 900px;
    overflow: hidden;
    display: block;
}
@media (max-width: 768px) {
    .hero-subtitle {
        margin-bottom: 0.5rem;
    }
}
.main-hero-swiper {
    width: 100%;
    height: 100%;
}
.main-hero-swiper .swiper-wrapper {
    display: flex;
    height: 100%;
}
.about-section .swiper-wrapper {
    height: unset !important;
}
.main-hero-swiper .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-banner-full {
    position: relative;
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-button-next,
.hero-button-prev {
    color: #ffffff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}
.hero-button-next:hover,
.hero-button-prev:hover {
    opacity: 1;
}
.hero-pagination .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}
.hero-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-search {
    position: relative;
    display: flex;
    align-items: center;
}
.header-search-toggle {
    background: none;
    border: none;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    padding: 0;
}
.header-search-toggle:hover,
.header-search.active .header-search-toggle {
    color: #2563eb;
}
.header-search-toggle .close-icon {
    display: none;
}
.header-search.active .header-search-toggle .search-icon {
    display: none;
}
.header-search.active .header-search-toggle .close-icon {
    display: block;
}
.header-search-form {
    position: absolute;
    right: calc(100% + 15px);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 99px;
    width: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 10;
}
.header-search.active .header-search-form {
    width: 280px;
    opacity: 1;
    visibility: visible;
}
.header-search-input {
    width: 100%;
    border: none;
    outline: none;
    padding: 10px 15px 10px 20px;
    font-size: 0.95rem;
    color: #1f2937;
    background: transparent;
}
.header-search-submit {
    background: none;
    border: none;
    padding: 8px 15px 8px 10px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-search-submit:hover {
    color: #2563eb;
}
@media (max-width: 1024px) {
    .header-search-form {
        position: fixed;
        top: 72px;
        left: 0;
        right: auto;
        width: 100% !important;
        transform: translateY(-10px);
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: 1px solid #e5e7eb;
        padding: 5px 20px;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    .header-search.active .header-search-form {
        transform: translateY(0);
    }
}

.series-catalog-section {
    padding: 3rem 0 6rem;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}
.series-header {
    margin-bottom: 3rem;
    text-align: center;
}
.series-header .page-description {
    margin: 0 auto;
}
.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.series-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.series-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1);
    border-color: #bfdbfe;
}
.series-image-wrapper {
    width: 100%;
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
}
.series-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.03);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.series-card:hover .series-image-wrapper::after {
    opacity: 1;
}
.series-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.series-card:hover .series-img {
    transform: scale(1.05);
}
.series-no-image {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f9fafb;
    border-radius: 0.5rem;
}
.series-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.series-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}
.series-card:hover .series-title {
    color: #2563eb;
}
.series-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.series-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #2563eb;
    font-size: 0.95rem;
}
.series-action svg {
    transition: transform 0.3s ease;
}
.series-card:hover .series-action svg {
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .series-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .series-image-wrapper {
        height: 180px;
    }
    .series-content {
        padding: 1.5rem;
    }
}

.series-catalog-section {
    padding: 3rem 0 6rem;
    background: #ffffff;
    min-height: calc(100vh - 200px);
}
.series-intro-section {
    background-color: #ecf6fc;
    border-radius: 1.5rem;
    padding: 3rem 4rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.series-intro-title {
    color: #255398;
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.series-intro-text {
    color: #374151;
    font-size: 1.1rem;
    line-height: 1.8;
}
.series-intro-image {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.series-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.series-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.1);
    border-color: #bfdbfe;
}
.series-image-wrapper {
    width: 100%;
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    position: relative;
}
.series-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(37, 99, 235, 0.03);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.series-card:hover .series-image-wrapper::after {
    opacity: 1;
}
.series-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.series-card:hover .series-img {
    transform: scale(1.05);
}
.series-no-image {
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #f9fafb;
    border-radius: 0.5rem;
}
.series-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.series-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    transition: color 0.2s ease;
}
.series-card:hover .series-title {
    color: #2563eb;
}
.series-desc {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.series-action {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #2563eb;
    font-size: 0.95rem;
}
.series-action svg {
    transition: transform 0.3s ease;
}
.series-card:hover .series-action svg {
    transform: translateX(5px);
}
@media (max-width: 1024px) {
    .series-intro-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 3rem;
    }
    .series-intro-image {
        min-height: 350px;
    }
}
@media (max-width: 768px) {
    .series-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    .series-image-wrapper {
        height: 180px;
    }
    .series-content {
        padding: 1.5rem;
    }
    .series-intro-section {
        padding: 2rem;
        border-radius: 1rem;
    }
    .series-intro-title {
        font-size: 2.25rem;
    }
}
@media (max-width: 480px) {
    .series-intro-section {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .series-intro-title {
        font-size: 1.75rem;
    }
    .series-intro-text {
        font-size: 1rem;
    }
    .series-intro-image {
        min-height: 200px;
    }
}

.nav-item-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}
.nav-item-trigger {
    cursor: pointer;
    display: flex;
    align-items: center;
    user-select: none;
}
.nav-item-dropdown.active .nav-item-trigger {
    color: #2563eb;
}
.nav-item-dropdown.active .nav-item-trigger svg {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    background: #ffffff;
    min-width: 240px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 0.5rem 0;
    margin-top: 15px;
}
.nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}
.dropdown-link:hover {
    background: #eff6ff;
    color: #2563eb;
    padding-left: 1.8rem;
}
@media (max-width: 768px) {
    .nav-item-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .nav-item-trigger {
        width: 100%;
        justify-content: center;
    }
    .dropdown-menu {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        box-shadow: none;
        border: none;
        background: #f9fafb;
        margin-top: 0;
        padding: 0;
        display: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        border-radius: 0;
    }
    .nav-item-dropdown.active .dropdown-menu {
        display: block;
        margin-top: 10px;
        animation: fadeIn 0.3s ease;
    }
    .dropdown-link {
        text-align: center;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid #f3f4f6;
    }
    .dropdown-link:last-child {
        border-bottom: none;
    }
    .dropdown-link:hover {
        padding-left: 1rem;
    }
}

.page-contacts {
    background: #f8fafc;
    padding-bottom: 4rem;
}
.contacts-hero {
    background: #ffffff;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}
.contacts-hero .page-title {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}
.contacts-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    max-width: 600px;
    margin: 0 auto;
}
.offices-section {
    padding: 4rem 0;
}
.office-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}
.office-card.main-office {
    border-top: 4px solid #2563eb;
}
.office-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #eff6ff;
    color: #2563eb;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
}
.office-card h2 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
}
.office-details {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.office-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}
.office-details svg {
    width: 20px;
    height: 20px;
    color: #2563eb;
    flex-shrink: 0;
    margin-top: 2px;
}
.office-details a {
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}
.office-details a:hover {
    color: #2563eb;
}
.multi-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.reps-section {
    padding: 4rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
.reps-section .section-title {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 3rem;
    width: 100%;
}
.reps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.rep-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s;
}
.rep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.rep-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.rep-region {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.25rem;
}
.rep-city {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}
.rep-contact {
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
}
.rep-contact.phone {
    color: #111827;
}
.rep-contact.email {
    color: #2563eb;
}
.rep-contact:hover {
    color: #1d4ed8;
}
.infrastructure-section {
    padding: 4rem 0;
}
.infra-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
}
.infra-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 3rem 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid #e5e7eb;
    height: 100%;
}
.infra-card.service-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    height: fit-content;
}
.infra-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.service-bg .infra-icon {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
.infra-card:not(.service-bg) .infra-icon {
    background: #eff6ff;
    color: #2563eb;
}
.infra-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.infra-card:not(.service-bg) h2 {
    color: #111827;
}
.address {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.infra-card:not(.service-bg) .address {
    color: #4b5563;
}
.hours {
    font-size: 1rem;
    color: #111827;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}
.warehouse-rules {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
}
.warehouse-rules strong {
    color: #111827;
    display: block;
    margin-bottom: 0.5rem;
}
.warehouse-rules p {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 1rem;
}
.warehouse-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}
.warehouse-contacts li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px dashed #e5e7eb;
    padding-bottom: 0.5rem;
}
.warehouse-contacts li span {
    color: #4b5563;
}
.warehouse-contacts li a {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}
.big-phone {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 1rem;
}
.email-link {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}
.service-bg .email-link {
    color: #93c5fd;
}
.infra-card:not(.service-bg) .email-link {
    color: #2563eb;
}
.gallery-2-images {
    padding: 0 0 4rem;
}
.images-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.image-box {
    border-radius: 1rem;
    overflow: hidden;
    height: 350px;
    background: #e5e7eb;
}
.image-box img {
    width: 100%;
    height: 100%;
}
.map-form-section {
    padding: 0 0 4rem;
}
.map-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}
.map-area {
    min-height: 400px;
    background: #e5e7eb;
}
.form-area {
    padding: 3.5rem;
}
.form-area h2 {
    font-size: 1.75rem;
    color: #111827;
    margin-bottom: 0.5rem;
}
.form-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.contacts-feedback-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.contacts-feedback-form .input-group.full-width {
    grid-column: span 2;
}
.contacts-feedback-form input[type="text"],
.contacts-feedback-form input[type="email"],
.contacts-feedback-form input[type="tel"],
.contacts-feedback-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    background: #f9fafb;
    transition: all 0.3s;
    outline: none;
}
.contacts-feedback-form input:focus,
.contacts-feedback-form textarea:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.privacy-group {
    margin: 0.5rem 0;
}
.submit-btn {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}
.submit-btn:hover {
    background: #1d4ed8;
}
@media (max-width: 1024px) {
    .infra-grid,
    .images-split,
    .map-form-grid {
        grid-template-columns: 1fr;
    }
    .map-form-grid {
        display: flex;
        flex-direction: column-reverse;
    }
    .map-area {
        height: 350px;
    }
}
@media (max-width: 768px) {
    .office-grid {
        grid-template-columns: 1fr;
    }
    .contacts-feedback-form {
        grid-template-columns: 1fr;
    }
    .contacts-feedback-form .input-group {
        grid-column: span 2;
    }
    .form-area {
        padding: 2rem;
    }
    .image-box {
        height: 250px;
    }
    .infra-card {
        padding: 15px;
    }
}

.header-bottom-search {
    padding-bottom: 15px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.bottom-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 99px;
    transition: all 0.3s ease;
}

.bottom-search-form:focus-within {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.bottom-search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 20px;
    font-size: 0.95rem;
    outline: none;
    color: #1f2937;
}

.bottom-search-submit {
    background: transparent;
    border: none;
    padding: 0 20px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.bottom-search-submit:hover {
    color: #2563eb;
}


@media (max-width: 1024px) {
    .header-bottom-search {
        justify-content: center;
    }
    .bottom-search-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        top: 130px !important;
    }
}

.standalone-map-section {
    padding: 0 0 4rem;
}
.map-wrapper-large {
    width: 100%;
    height: 500px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    background: #e5e7eb;
}
.map-wrapper-large iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-standalone {
    padding: 0 0 4rem;
}
.centered-form {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 1rem;
    padding: 3.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}
.centered-form h2 {
    text-align: center;
}
.centered-form .form-subtitle {
    text-align: center;
}

@media (max-width: 768px) {
    .map-wrapper-large {
        height: 350px;
    }
    .centered-form {
        padding: 2rem;
    }
}

.product-detail-page {
    padding: 2rem 0 6rem;
    background: #f8fafc;
}
.detail-back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.detail-back-link:hover {
    color: #2563eb;
}

.detail-top-card {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.detail-main-img {
    height: 400px;
    border: 1px solid #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    margin-bottom: 1rem;
}
.detail-main-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.detail-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none;
}
.detail-thumbs::-webkit-scrollbar {
    display: none;
}
.detail-thumb {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: border-color 0.2s;
    background: #fff;
    flex-shrink: 0;
}
.detail-thumb.active,
.detail-thumb:hover {
    border-color: #2563eb;
}
.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.detail-status-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
}
.detail-article {
    color: #6b7280;
    font-size: 0.95rem;
}
.detail-article strong {
    color: #111827;
}

.detail-tabs-container {
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    margin-bottom: 2rem;
}
.detail-tabs-nav {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    scrollbar-width: none;
}
.detail-tabs-nav::-webkit-scrollbar {
    display: none;
}
.detail-tab-btn {
    padding: 1.25rem 2rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1.05rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    outline: none;
}
.detail-tab-btn:hover {
    color: #111827;
    background: #f1f5f9;
}
.detail-tab-btn.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    background: #fff;
}

.detail-tab-panel {
    display: none;
    padding: 2.5rem;
    animation: fadeInTab 0.3s ease;
}
.detail-tab-panel.active {
    display: block;
}
@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
}
.text-content p {
    margin-bottom: 1rem;
}
.detail-specs-table {
    width: 100%;
    border-collapse: collapse;
}
.detail-specs-table td {
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.95rem;
}
.detail-specs-table tr:last-child td {
    border-bottom: none;
}
.detail-specs-table td:first-child {
    color: #6b7280;
    width: 40%;
    padding-right: 1rem;
}
.detail-specs-table td:last-child {
    color: #111827;
}

.files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}
.detail-file-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}
.detail-file-card:hover {
    border-color: #2563eb;
    background: #eff6ff;
}
.file-icon {
    font-size: 2rem;
}
.file-info strong {
    display: block;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}
.file-info span {
    color: #2563eb;
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    background: #000;
}
.detail-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .detail-top-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    .detail-main-img {
        height: 250px;
    }
    .detail-title {
        font-size: 1.75rem;
    }
    .detail-tab-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    .detail-tab-panel {
        padding: 1.5rem;
    }
}

html {
    scroll-behavior: smooth;
}
.docs-page-section {
    padding: 3rem 0 6rem;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
}
.docs-page-header {
    margin-bottom: 3rem;
}
.docs-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}
.docs-sidebar {
    position: sticky;
    top: 130px;
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.docs-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.doc-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    color: #4b5563;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.doc-nav-link:hover {
    background: #f3f4f6;
    color: #111827;
}
.doc-nav-link.active {
    background: #eff6ff;
    color: #2563eb;
    border-left-color: #2563eb;
}
.doc-count {
    background: #e5e7eb;
    color: #6b7280;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 1rem;
    font-weight: 700;
}
.doc-nav-link.active .doc-count {
    background: #bfdbfe;
    color: #1d4ed8;
}
.docs-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}
.doc-section-block {
    scroll-margin-top: 130px;
}
.doc-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}
.doc-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.doc-card:hover {
    transform: translateY(-4px);
    border-color: #2563eb;
    box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.1);
}
.doc-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: #ffffff;
    flex-shrink: 0;
    background: #6b7280;
}
.icon-pdf {
    background: #ef4444;
}
.icon-xls,
.icon-xlsx {
    background: #10b981;
}
.icon-doc,
.icon-docx {
    background: #3b82f6;
}
.icon-zip,
.icon-rar {
    background: #f59e0b;
}
.icon-png,
.icon-jpg,
.icon-jpeg {
    background: #8b5cf6;
}

.doc-info {
    flex-grow: 1;
    overflow: hidden;
}
.doc-name {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.25rem 0;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s;
}
.doc-card:hover .doc-name {
    color: #2563eb;
}
.doc-meta {
    font-size: 0.8rem;
    color: #6b7280;
    display: block;
}
.doc-download-btn {
    color: #9ca3af;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.doc-card:hover .doc-download-btn {
    color: #2563eb;
}

@media (max-width: 1024px) {
    .docs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .docs-sidebar {
        position: relative;
        top: 0;
        padding: 1rem;
    }
    .doc-section-block {
        scroll-margin-top: 100px;
    }
}
@media (max-width: 600px) {
    .docs-grid {
        grid-template-columns: 1fr;
    }
    .doc-card {
        padding: 1rem;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.modal-container {
    background: white;
    width: 100%;
    border-radius: 1rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.modal-overlay.active .modal-container {
    transform: translateY(0);
}
@media (max-width: 576px) {
    .modal-container {
        height: 90vh !important;
    }
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.header-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 1px solid #e5e7eb;
    padding-left: 1.5rem;
}
.header-status-text {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.3;
    font-weight: 500;
}
.anniversary-logo {
    height: 68px;
    width: 68px;
}

@media (max-width: 1124px) {
    .header-status {
        display: none;
    }
    .nav-menu {
        gap: 8px;
    }
}

.main-categories-section {
    padding: 3rem 0;
    background: #ffffff;
}
.main-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.main-cat-icon {
    width: 50px;
    height: 50px;
    color: #2563eb;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.main-cat-card:hover .main-cat-icon {
    transform: scale(1.1);
}
.main-cat-title {
    color: #111827;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    padding: 0 10px;
}

@media (max-width: 1024px) {
    .main-categories-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.about-slider-wrapper {
    position: relative;
    overflow: hidden;
}
.about-main-swiper {
    position: relative;
    padding: 2rem 0 4rem;
}
.about-main-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.4s ease;
}
.about-main-swiper .swiper-slide-active {
    opacity: 1 !important;
}
.about-nav-wrapper {
    display: flex;
    gap: 1rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.about-btn-prev,
.about-btn-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: #2563eb;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.about-btn-prev:hover,
.about-btn-next:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-2px);
}
@media (max-width: 1024px) {
    .about-main-swiper {
        padding-bottom: 5rem;
    }
    .about-nav-wrapper {
        bottom: 1rem;
    }
}

.contacts-section {
    padding: 6rem 0;
    background-color: var(--color-bg-light);
}
.contacts-map-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contacts-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.contacts-scroll-wrapper {
    max-height: 500px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-right: 15px;
}
.contact-card-v2 {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 0 !important;
    display: flex;
}
.contact-card-v2:hover {
    border-color: #bfdbfe;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.1);
}
.contact-card-v2.main {
    border-left: 4px solid #2563eb;
}
.contact-card-v2.rep {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.rep-avatar {
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
}
.contact-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}
.contact-card-address {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
}
.contact-card-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}
.contact-card-links a,
.rep-phone {
    text-decoration: none;
    color: #1f2937;
    font-weight: 600;
}
.contact-card-links a:hover,
.rep-phone:hover {
    color: #2563eb;
}

@media (max-width: 768px) {
    .contacts-map-wrapper {
        min-height: 350px;
    }
    .contact-card-v2.rep {
        flex-direction: column;
    }
}

/* --- СЕКЦИЯ КАЧЕСТВО --- */
.quality-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}
.quality-text-block {
    text-align: left;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.7;
}
.quality-text-block p {
    margin-bottom: 1.5rem;
}
.quality-highlight {
    font-weight: 800;
    color: #111827;
    font-size: 1.25rem;
    margin: 2rem 0 1.5rem;
}
.quality-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}
.quality-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.25rem;
}
.quality-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    background: #10b981;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}
.quality-list strong {
    color: #111827;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
}
.quality-actions {
    margin-top: 2rem;
}
.quality-visual {
    display: flex;
    justify-content: center;
}
.iso-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
    border: 1px solid #eff6ff;
}
.iso-badge svg {
    width: 140px;
    height: 140px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(37, 99, 235, 0.2));
}
.iso-badge span {
    font-weight: 800;
    color: #1f2937;
    font-size: 1.15rem;
    line-height: 1.4;
    text-transform: uppercase;
}

@media (max-width: 992px) {
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .quality-visual {
        order: -1;
    }
    .reps-grid {
        grid-template-columns: 1fr;
    }
}

/* --- FAQ PAGE STYLES --- */
.faq-page-wrapper {
    background: #f8fafc;
    padding-bottom: 6rem;
}
.faq-hero {
    background: #ffffff;
    padding: 4rem 0 3rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
    margin-bottom: 4rem;
}
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}
.faq-main-content {
    background: #ffffff;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.faq-sidebar {
    position: sticky;
    top: 200px;
}
.faq-form-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.faq-form-card h3 {
    font-size: 1.5rem;
    color: #111827;
    margin-bottom: 1rem;
}
.faq-form-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.faq-visual-form .form-group {
    margin-bottom: 1.25rem;
}
.faq-visual-form input,
.faq-visual-form textarea {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
}
.faq-visual-form input:focus,
.faq-visual-form textarea:focus {
    background: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.form-privacy {
    margin-bottom: 2rem;
}
.form-privacy .label-text {
    font-size: 0.85rem;
    color: #6b7280;
}
.faq-support-box {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 2.5rem;
    background: #eff6ff;
    border-radius: 1rem;
    color: #1e40af;
}
.support-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    flex-shrink: 0;
}
.support-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.8;
}
.support-link {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e3a8a;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .faq-sidebar {
        position: static;
    }
}

.faq-redirect-section {
    padding: 5rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}
.faq-redirect-card {
    max-width: 700px;
    margin: 0 auto;
}
.faq-redirect-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}
.faq-redirect-card p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.comparison-block {
    background: #f8fafc;
    padding: 1.25rem;
    border-radius: 0.5rem;
    border-left: 4px solid #2563eb;
    font-size: 0.95rem;
}
.faq-list {
    padding-left: 1.25rem;
    margin: 0;
}
.faq-list li {
    margin-bottom: 0.75rem;
}
.faq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}
.faq-table td {
    padding: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}
.text-link {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 600;
}

.faq-redirect-section {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid #f3f4f6;
    text-align: center;
}
.faq-redirect-card {
    max-width: 800px;
    margin: 0 auto;
}
.faq-redirect-card h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.faq-redirect-card p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.faq-accordion {
    border-radius: 1rem;
    overflow: hidden;
}
.faq-item {
    border-bottom: 1px solid #f3f4f6;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-inner {
    padding: 0 2.5rem 2.5rem 2.5rem;
    color: #4b5563;
    line-height: 1.8;
}
.faq-inner p {
    margin-bottom: 1rem;
}
.faq-list {
    padding-left: 1.5rem;
}
.faq-list li {
    margin-bottom: 0.75rem;
}
.faq-img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
    border: 1px solid #e5e7eb;
}
.faq-table {
    width: 100%;
    border-collapse: collapse;
    background: #f9fafb;
    border-radius: 0.5rem;
    overflow: hidden;
    margin-top: 0.5rem;
}
.faq-table td {
    padding: 1rem 1.25rem;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
}
.comparison-block {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid #2563eb;
    margin-bottom: 1.5rem;
}
.comparison-block p {
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 700;
}
.comparison-block ul {
    padding-left: 1.25rem;
    margin: 0;
}
.text-link {
    color: #2563eb;
    text-decoration: underline;
    font-weight: 700;
}
.text-link:hover {
    color: #1d4ed8;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* --- СТРАНИЦА СЕРВИСА --- */
.service-page-wrapper {
    background: #f8fafc;
    padding-bottom: 6rem;
}
.service-hero {
    background: #ffffff;
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}
.service-intro-text {
    color: #4b5563;
    font-size: 1.05rem;
}
.service-intro-text p {
    margin-bottom: 1rem;
}

.service-dashboard {
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}
.service-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-action-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: #111827;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: inherit;
}
.service-action-card:hover,
.service-action-card.active {
    border-color: #2563eb;
    background: #eff6ff;
    color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px -5px rgba(37, 99, 235, 0.1);
}
.sac-icon {
    width: 48px;
    height: 48px;
    color: #2563eb;
}

.service-tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.service-tab-content.active {
    display: block;
}

.service-text-block {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.service-text-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #111827;
}
.service-text-block h3 {
    font-size: 1.25rem;
    margin: 2rem 0 1rem;
    color: #1f2937;
}
.service-highlight-box {
    background: #eff6ff;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.service-form-wrapper {
    background: #ffffff;
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.service-form-wrapper h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Формы */
.custom-modern-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4b5563;
    margin-bottom: 0.5rem;
}
.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background: #f9fafb;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
    font-family: inherit;
}
.form-input:focus {
    border-color: #2563eb;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.radio-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.custom-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #111827;
}
.custom-radio input {
    display: none;
}
.radio-mark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}
.custom-radio input:checked + .radio-mark {
    border-color: #2563eb;
}
.custom-radio input:checked + .radio-mark::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #2563eb;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.file-upload-box {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.file-upload-box .file-input {
    position: absolute;
    font-size: 100px;
    opacity: 0;
    right: 0;
    top: 0;
    cursor: pointer;
}
.file-upload-box .file-label {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #f3f4f6;
    border: 1px dashed #9ca3af;
    border-radius: 0.5rem;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.file-upload-box:hover .file-label {
    background: #e5e7eb;
    border-color: #6b7280;
    color: #111827;
}

/* Карта и Города */
.cities-directory {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    margin-top: 2rem;
}
.cities-directory h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}
.cities-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.cities-list-grid a {
    color: #4b5563;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.cities-list-grid a:hover {
    color: #2563eb;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .service-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cities-list-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .service-grid-6 {
        grid-template-columns: 1fr;
    }
    .service-dashboard {
        margin-top: 2rem;
    }
    .cities-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .service-form-wrapper {
        padding: 1.5rem;
    }
}

.partners-map-wrapper {
    width: 100%;
    height: 600px;
    background: #e5e7eb;
    position: relative;
    z-index: 1;
}
.yandex-map-container {
    width: 100%;
    height: 100%;
}
.cities-section {
    padding: 3rem 0 5rem;
    background: #ffffff;
    position: relative;
    z-index: 2;
}
.cities-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}
.cities-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0;
}
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.city-link {
    text-decoration: none;
    color: #4b5563;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    display: block;
}
.city-link:hover,
.city-link.active {
    color: #2563eb;
    font-weight: 700;
    transform: translateX(5px);
}
@media (max-width: 768px) {
    .partners-map-wrapper {
        height: 400px;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: 1fr;
    }
}

.partners-map-wrapper {
    width: 100%;
    height: 600px;
    background: #e5e7eb;
    position: relative;
    z-index: 1;
}
.yandex-map-container {
    width: 100%;
    height: 100%;
}
.cities-section {
    padding: 3rem 0 5rem;
    background: #ffffff;
    position: relative;
    z-index: 2;
}
.cities-header {
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
}
.cities-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3a8a;
    margin: 0;
}
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}
.city-link {
    text-decoration: none;
    color: #4b5563;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    display: block;
}
.city-link:hover,
.city-link.active {
    color: #2563eb;
    font-weight: 700;
    transform: translateX(5px);
}

.city-points-layout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.partner-detail-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}
.partner-detail-card:hover {
    border-color: #2563eb;
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}
.partner-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.rep-badge {
    background: #fef2f2;
    color: #ef4444;
    border: 1px solid #fecaca;
}
.def-badge {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}
.partner-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}
.partner-rich-text {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
}
.partner-rich-text p {
    margin-bottom: 0.5rem;
}
.partner-rich-text a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}
.partner-rich-text a:hover {
    text-decoration: underline;
}
.partner-rich-text hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .partners-map-wrapper {
        height: 400px;
    }
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .city-points-layout {
        grid-template-columns: 1fr;
    }
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.city-link {
    text-decoration: none;
    color: #4b5563;
    font-size: 1rem;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}
.city-link:hover,
.city-link.active {
    color: #2563eb;
    font-weight: 700;
    transform: translateX(5px);
}

.city-has-rep {
    color: #1e3a8a;
    font-weight: 600;
}
.city-rep-icon {
    width: 14px;
    height: 14px;
    color: #ef4444;
    flex-shrink: 0;
    margin-top: -2px;
}

.custom-map-balloon .partner-rich-text::-webkit-scrollbar {
    width: 6px;
}
.custom-map-balloon .partner-rich-text::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 4px;
}
.custom-map-balloon .partner-rich-text::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 4px;
}
.custom-map-balloon .partner-rich-text::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.custom-city-select {
    position: relative;
    user-select: none;
    z-index: 50;
}
.custom-select-trigger {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a8a;
    cursor: pointer;
    transition: color 0.3s ease;
}
.custom-select-trigger:hover,
.custom-city-select.open .custom-select-trigger {
    color: #2563eb;
}
.custom-select-trigger svg {
    transition: transform 0.3s ease;
}
.custom-city-select.open .custom-select-trigger svg {
    transform: rotate(180deg);
}
.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.1);
    min-width: 280px;
    max-height: 350px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.custom-city-select.open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.custom-select-option {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
    border-bottom: 1px solid #f3f4f6;
}
.custom-select-option:last-child {
    border-bottom: none;
}
.custom-select-option:hover,
.custom-select-option.selected {
    background: #eff6ff;
    color: #2563eb;
}
.custom-select-dropdown::-webkit-scrollbar {
    width: 6px;
}
.custom-select-dropdown::-webkit-scrollbar-track {
    background: #f9fafb;
    border-radius: 0 1rem 1rem 0;
}
.custom-select-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}
.custom-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}
@media (max-width: 576px) {
    .custom-select-trigger {
        font-size: 1.35rem;
    }
    .custom-select-dropdown {
        min-width: 100%;
    }
}

.contact-card-v2 {
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-card-v2.active {
    border-color: #2563eb;
    background: #f0f7ff;
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.15);
}

#home-contacts-map {
    background: #f3f4f6;
    border-radius: 1rem;
}

.gallery-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.gallery-tab-btn {
    padding: 0.75rem 2rem;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 99px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gallery-tab-btn:hover {
    background: #e5e7eb;
    color: #111827;
}
.gallery-tab-btn.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.gallery-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}
.gallery-tab-panel.active {
    display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-article-page {
    padding: 2rem 0 6rem;
    background: #f8fafc;
}
.article-back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: #6b7280;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.article-back-link:hover {
    color: #2563eb;
}
.article-wrapper {
    background: #ffffff;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.article-header {
    padding: 3rem 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid #f3f4f6;
}
.article-date {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}
.article-gallery {
    padding: 2rem 3rem 0;
}
.article-main-image {
    width: 100%;
    height: 450px;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: 1rem;
    border: 1px solid #e5e7eb;
}
.article-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}
.article-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
}
.article-thumbs::-webkit-scrollbar {
    display: none;
}
.article-thumb {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    background: #fff;
}
.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.2s;
}
.article-thumb:hover img,
.article-thumb.active img {
    opacity: 1;
}
.article-thumb.active {
    border-color: #2563eb;
}
.article-content {
    padding: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.all-news-page {
    padding: 4rem 0 6rem;
    background: #f8fafc;
}
.news-page-header {
    text-align: center;
    margin-bottom: 4rem;
}
.news-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.news-date-badge {
    font-size: 0.85rem;
    color: #2563eb;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: block;
}

@media (max-width: 768px) {
    .article-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    .article-title {
        font-size: 1.75rem;
    }
    .article-gallery {
        padding: 1.5rem 1.5rem 0;
    }
    .article-main-image {
        height: 250px;
    }
    .article-content {
        padding: 2rem 1.5rem;
    }
}

.news-article-page {
    padding: 3rem 0 6rem;
    background: #ffffff;
}
.article-navigation {
    max-width: 900px;
    margin: 0 auto 2rem;
}
.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: 0.3s;
}
.article-back-link:hover {
    color: #2563eb;
    transform: translateX(-5px);
}

.article-container {
    max-width: 900px;
    margin: 0 auto;
}
.article-main-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.article-category-tag {
    color: #2563eb;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}
.article-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.article-meta-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: #9ca3af;
    font-weight: 600;
    font-size: 0.9rem;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-visual-block {
    margin-bottom: 4rem;
}
.article-feature-image {
    width: 100%;
    height: 500px;
    border-radius: 1.5rem;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.article-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}
.article-gallery-strip {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
}
.gallery-mini-item {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: 0.3s;
    opacity: 0.6;
}
.gallery-mini-item.active,
.gallery-mini-item:hover {
    border-color: #2563eb;
    opacity: 1;
    transform: scale(1.05);
}
.gallery-mini-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #374151;
    max-width: 750px;
    margin: 0 auto;
}
.article-body-content p {
    margin-bottom: 2rem;
}

.article-footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    justify-content: center;
}
.share-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #6b7280;
    font-weight: 700;
}
.share-links {
    display: flex;
    gap: 10px;
}
.share-icon {
    width: 40px;
    height: 40px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    cursor: pointer;
    transition: 0.3s;
}
.share-icon:hover {
    background: #2563eb;
    color: #fff;
}

@media (max-width: 768px) {
    .article-main-title {
        font-size: 2rem;
    }
    .article-feature-image {
        height: 300px;
    }
    .article-body-content {
        font-size: 1.1rem;
    }
}

.bottom-search-form,
.header-search-form {
    position: relative;
}
.live-search-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
}
.live-search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.live-search-dropdown::-webkit-scrollbar {
    width: 6px;
}
.live-search-dropdown::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}

.live-search-loading,
.live-search-empty {
    padding: 1.5rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.95rem;
    font-weight: 500;
}
.live-search-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    border-bottom: 1px solid #f3f4f6;
    text-decoration: none;
    transition: background 0.2s;
}
.live-search-item:hover {
    background: #f8fafc;
}
.live-search-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 6px;
    background: #f3f4f6;
    flex-shrink: 0;
}
.live-search-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #2563eb;
    font-weight: 800;
    margin-bottom: 3px;
    display: block;
}
.live-search-title {
    font-size: 0.95rem;
    color: #111827;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}
.live-search-all {
    display: block;
    padding: 15px;
    text-align: center;
    background: #eff6ff;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.live-search-all:hover {
    background: #dbeafe;
}

.search-result-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}
.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.1);
    border-color: #bfdbfe;
}
.search-result-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #f3f4f6;
    border-radius: 0.5rem;
    flex-shrink: 0;
    padding: 5px;
}
.search-result-type {
    font-size: 0.75rem;
    font-weight: 800;
    color: #2563eb;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
    display: block;
}
.search-result-title {
    margin: 0;
    font-size: 1.05rem;
    color: #111827;
    font-weight: 700;
    line-height: 1.4;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.selection-item-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.selection-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.sic-image {
    height: 200px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.sic-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.sic-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.sic-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #1e293b;
}
.sic-article {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 15px;
}
.sic-specs {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.sic-specs span {
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
    color: #475569;
}
.selection-item-card .btn-select {
    width: 100%;
    text-align: center;
    margin-top: auto;
}
.pagination-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.bx-pagination {
    width: 100%;
}
.bx-pagination .bx-pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.bx-pagination .bx-pagination-container ul {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.bx-pagination .bx-pagination-container li {
    display: inline-flex;
    margin: 0;
    padding: 0;
}
.bx-pagination .bx-pagination-container li a,
.bx-pagination .bx-pagination-container li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.bx-pagination .bx-pagination-container li a:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}
.bx-pagination .bx-pagination-container li.bx-active span {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    cursor: default;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25);
}
.bx-pagination .bx-pagination-container li.bx-pag-prev a,
.bx-pagination .bx-pagination-container li.bx-pag-next a {
    background: #f8fafc;
    width: auto;
    padding: 0 15px;
}
.bx-pagination .bx-pagination-container li.bx-pag-prev a:hover,
.bx-pagination .bx-pagination-container li.bx-pag-next a:hover {
    background: #ffffff;
}
.bx-pagination .bx-pagination-container li.bx-pagination-dots span {
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: default;
    color: #94a3b8;
}
.bx-pagination .bx-pagination-container li.bx-pag-prev a,
.bx-pagination .bx-pagination-container li.bx-pag-next a,
.bx-pagination .bx-pagination-container ul li a {
    padding: 0;
}
.quality-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 576px) {
    .bx-pagination .bx-pagination-container {
        gap: 5px;
    }
    .bx-pagination .bx-pagination-container li a,
    .bx-pagination .bx-pagination-container li span {
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}
@media (max-width: 768px) {
    .selection-grid {
        grid-template-columns: 1fr 1fr;
    }
    .quality-actions {
        flex-direction: column;
    }
    .quality-actions .cta-button {
        font-size: 12px !important;
    }
    .modal-container {
        overflow: scroll;
    }
}
@media (max-width: 480px) {
    .selection-grid {
        grid-template-columns: 1fr;
    }
}

.main-categories-section {
    padding: 4rem 0;
    background: #ffffff;
}
.main-categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.main-cat-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.main-cat-card:hover {
    transform: translateY(-8px);
    border-color: #2563eb;
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.1);
}
.main-cat-image {
    height: 160px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
}
.main-cat-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.main-cat-card:hover .main-cat-image img {
    transform: scale(1.08);
}
.main-cat-no-img {
    font-weight: 800;
    color: #e5e7eb;
    font-size: 2rem;
}
.main-cat-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.main-cat-title {
    color: #111827;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    transition: color 0.2s;
}
.main-cat-card:hover .main-cat-title {
    color: #2563eb;
}
.main-cat-desc {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.main-cat-more {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1200px) {
    .main-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .main-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .main-categories-grid {
        grid-template-columns: 1fr;
    }
}

.configurator-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.configurator-scroll-container::-webkit-scrollbar {
    height: 6px;
}
.configurator-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}
.filters-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    min-width: min-content;
}
.filter-card {
    flex: 0 0 350px;
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
}
.filter-options {
    max-height: 250px;
    overflow-y: auto;
}
.filter-option {
    cursor: pointer;
}
.search-actions button {
    border: none;
    cursor: pointer;
}
@media (max-width: 768px) {
    .filter-card {
        flex: 0 0 85vw;
    }
}

.pagination-wrapper {
    margin-top: 50px !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
}
.pagination-wrapper .bx-pagination {
    width: 100% !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container ul {
    display: flex !important;
    gap: 8px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container li {
    display: inline-flex !important;
    margin: 0 !important;
    padding: 0 !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container li a,
.pagination-wrapper .bx-pagination .bx-pagination-container li span {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 10px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    color: #475569 !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    cursor: pointer !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    padding: 0 !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container li a:hover {
    border-color: #2563eb !important;
    color: #2563eb !important;
    background: #eff6ff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1) !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container li.bx-active span {
    background: #2563eb !important;
    border-color: #2563eb !important;
    color: #ffffff !important;
    cursor: default !important;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.25) !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-prev a,
.pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-next a,
.pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-prev span,
.pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-next span {
    background: #fff !important;
    width: auto !important;
    border: 0 !important;
    padding: 0 15px !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-prev a:hover,
.pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-next a:hover {
    background: #ffffff !important;
}
.pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pagination-dots span {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    cursor: default !important;
    color: #94a3b8 !important;
}
@media (max-width: 576px) {
    .pagination-wrapper .bx-pagination .bx-pagination-container {
        gap: 5px !important;
    }
    .pagination-wrapper .bx-pagination .bx-pagination-container li a,
    .pagination-wrapper .bx-pagination .bx-pagination-container li span {
        min-width: 36px !important;
        height: 36px !important;
        font-size: 0.85rem !important;
    }
    .pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-prev a,
    .pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-next a,
    .pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-prev span,
    .pagination-wrapper .bx-pagination .bx-pagination-container li.bx-pag-next span {
        padding: 0 !important;
    }
    .pagination-wrapper .bx-pagination .bx-pagination-container ul {
        gap: 3px !important;
    }
}

.main-categories-section {
    padding: 3rem 0;
    background: #ffffff;
}
.main-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}
.main-cat-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 180px;
    border-radius: 1rem;
    text-decoration: none;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    padding: 1rem;
}
.main-cat-card:hover {
    transform: translateY(-5px);
    background: #eff6ff;
    border-color: #bfdbfe;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1);
}
.main-cat-icon {
    width: 60px;
    height: 60px;
    color: #2563eb;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}
.main-cat-card:hover .main-cat-icon {
    transform: scale(1.1);
}
.main-cat-title {
    color: #111827;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}
.view-all-card {
    background: #eff6ff;
    border-color: #bfdbfe;
}
.view-all-card .main-cat-icon {
    color: #1d4ed8;
}
.view-all-card .main-cat-title {
    color: #1d4ed8;
}
.view-all-card:hover {
    background: #2563eb;
    border-color: #2563eb;
}
.view-all-card:hover .main-cat-icon,
.view-all-card:hover .main-cat-title {
    color: #ffffff;
}

.breadcrumb-custom-style {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 25px;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.breadcrumb-custom-style a {
    color: #2563EB;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.breadcrumb-custom-style a:hover {
    color: #1e40af;
    text-decoration: underline;
}
.breadcrumb-custom-style span.separator {
    color: #d1d5db;
    margin: 0 4px;
}
.breadcrumb-custom-style span.current {
    color: #111827;
    font-weight: 600;
}


.fixed-price-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}
.fixed-price-btn:hover {
    background-color: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
    color: #ffffff;
}
.fixed-price-btn svg {
    width: 20px;
    height: 20px;
}

.info-card-scroll{
    overflow-y: scroll;
    max-height: 21rem;
    scrollbar-color: #2563eb #ffffff;
    scrollbar-width: thin;
}

@media (max-width: 768px) {
    .fixed-price-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 18px;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .main-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .main-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .main-cat-card {
        height: 150px;
        padding: 0.75rem;
    }
    .main-cat-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 0.75rem;
    }
    .main-cat-title {
        font-size: 0.8rem;
    }
    .fixed-price-btn-text
    {
        display: none;
    }
    .doc-name
    {
        font-size: 0.7rem;
    }
}

/* End */
/* /local/templates/furniture_red/assets/css/fonts.css?1772546144930 */
/* /local/templates/furniture_red/assets/css/default.css?177262680010028 */
/* /local/templates/furniture_red/assets/css/swiper-bundle.min.css?176010117618397 */
/* /local/templates/furniture_red/assets/css/style.css?1786450757201271 */
