﻿        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #ffffff;
            color: #222222;
            line-height: 1.5;
        }

        .container {
            max-width: 1350px; /* Limita el ancho mÃ¡ximo para pantallas grandes */
            margin: 0 auto;    /* Centra el contenedor perfectamente */
            padding: 0 50px;   /* Da el respiro exacto a los lados derecho e izquierdo */
            width: 100%;
        }

        .contact-strip {
            background: #000000;
            color: #ffffff;
            font-size: 0.82rem;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1410;
        }

        .contact-strip .container {
            min-height: 34px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 22px;
        }

        .contact-strip a {
            color: #ffffff;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            opacity: 0.94;
            transition: opacity 0.2s ease;
        }

        .contact-strip a:hover {
            opacity: 1;
        }

        /* HEADER SUPERIOR (barra de utilidades) */
        .top-bar {
            background-color: #f8f8f8;
            border-bottom: 1px solid #e5e5e5;
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .admin-mode-strip {
            background: #1f1f1f;
            color: #ffffff;
            font-size: 0.82rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
            position: fixed;
            top: 34px;
            left: 0;
            right: 0;
            z-index: 1405;
        }

        .admin-mode-strip .container {
            min-height: 34px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }

        body.is-admin-mode .header-main-container {
            top: 68px;
        }

        body.is-admin-mode .emptyDiv {
            margin-top: 140px;
        }

        .admin-mode-strip a {
            color: #ffffff;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.26);
            border-radius: 999px;
            min-height: 26px;
            padding: 0 10px;
            display: inline-flex;
            align-items: center;
            font-weight: 500;
        }

        .admin-mode-strip a:hover {
            background: rgba(255, 255, 255, 0.12);
        }

        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-links {
            display: flex;
            gap: 30px;
        }

        .top-links a {
            color: #666666;
            text-decoration: none;
            transition: color 0.2s;
        }

        .top-links a:hover {
            color: #C00000;
        }

        .user-links {
            display: flex;
            gap: 20px;
        }

        .user-links a {
            color: #666666;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .user-links a i {
            font-size: 0.9rem;
        }

        /* HEADER PRINCIPAL */
       /* =========================================
           MAIN HEADER (Estilo Minimalista)
           ========================================= */
      /* =========================================
           MAIN HEADER (Estilo Minimalista)
           ========================================= */
        .header-main-container {
            background-color: #ffffff;
            padding-top: 10px;
            position: fixed;
            top: 34px;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1300;
            border-bottom: 1px solid #e5e5e5;
            /* Eliminamos el padding general para controlarlo por secciones */
        }

        .emptyDiv {
            margin-top: 106px;
        }

        .flyout-hidden {
            visibility: hidden;
        }

        .header-main-container .container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 28px;
        }

        .header-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            padding: 22px 0; /* MÃ¡s aire arriba y abajo del logo */
            width: 100%;
        }

        .left-section {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .header-search {
            flex: 1;
            max-width: 720px;
            min-width: 280px;
            display: block;
            position: relative;
            opacity: 0;
            visibility: hidden;
            transform: translateY(4px);
            pointer-events: none;
            transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
        }

        body.header-scrolled .header-search {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
            transition-delay: 0s;
        }

        body.header-scrolled .header-main-container {
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }

        .header-search-form {
            display: flex;
            align-items: center;
            background-color: #ffffff;
            border: 1px solid #b3b3b3;
            border-radius: 18px;
            overflow: hidden;
            height: 64px;
        }

        .header-search-form input {
            border: none;
            outline: none;
            background: transparent;
            padding: 0 24px;
            width: 100%;
            font-size: 0.95rem;
            color: #333333;
        }

        .header-search-form input::placeholder {
            color: #555555;
        }

        .header-search-form button {
            border: none;
            background: transparent;
            color: #222222;
            width: 72px;
            height: 64px;
            cursor: pointer;
            font-size: 1.1rem;
        }

        .header-search-suggestions {
            position: absolute;
            left: 0;
            right: 0;
            top: calc(100% + 8px);
            background: #ffffff;
            border: 1px solid #e1e1e1;
            border-radius: 12px;
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
            overflow: hidden;
            z-index: 1600;
            max-height: 320px;
            overflow-y: auto;
        }

        .header-search-suggestion {
            width: 100%;
            border: 0;
            background: #fff;
            text-align: left;
            padding: 10px 12px;
            cursor: pointer;
            display: grid;
            grid-template-columns: 46px minmax(0, 1fr);
            align-items: center;
            gap: 10px;
        }

        .header-search-suggestion-thumb {
            width: 46px;
            height: 46px;
            border-radius: 8px;
            object-fit: cover;
            border: 1px solid #ececec;
            background: #f8f8f8;
        }

        .header-search-suggestion-body {
            display: grid;
            gap: 2px;
            min-width: 0;
        }

        .header-search-suggestion + .header-search-suggestion {
            border-top: 1px solid #f0f0f0;
        }

        .header-search-suggestion.is-active,
        .header-search-suggestion:hover {
            background: #f8f8f8;
        }

        .header-search-suggestion-title {
            color: #151515;
            font-size: 0.95rem;
            font-weight: 600;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .header-search-suggestion-meta {
            color: #666;
            font-size: 0.81rem;
            line-height: 1.3;
        }

        /* ... MantÃ©n el resto de tu CSS (logo, menu-toggle, right-section) tal cual estÃ¡ ... */
        .logo {
            display: flex;
            align-items: center;
            gap: 6px;
            line-height: 0;
        }

        .logo h1 {
            font-size: 1.6rem; /* Un tamaño más sutil y corporativo */
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #000000;
            margin: 0;
            line-height: 1;
        }

        .logo span {
            color: #C00000;
        }

        .logo img {
            height: 36px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .logo .logo-mark,
        .logo .logo-wordmark {
            height: 36px;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .logo .logo-mark {
            max-width: 52px;
        }

        .logo .logo-wordmark {
            max-width: 190px;
        }

        .menu-toggle {
            background: none;
            border: none;
            font-family: 'Roboto', sans-serif;
            font-size: 1.1rem;
            color: #444444;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            height: 36px;
            padding: 0 2px;
            cursor: pointer;
            transition: color 0.2s;
        }

        .menu-toggle i {
            font-size: 1.3rem;
            color: #000000;
            line-height: 1;
            display: block;
        }

        .menu-toggle:hover {
            color: #C00000;
        }

        .right-section {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .header-action {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333333;
            font-size: 1rem;
            font-weight: 400;
            gap: 8px;
            transition: color 0.2s;
        }

        .header-action i {
            font-size: 1.3rem;
            color: #333333;
        }

        .header-action:hover, .header-action:hover i {
            color: #C00000;
        }

        .lang-select img {
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.2);
        }

        .lang-select i {
            font-size: 0.8rem;
            color: #666;
            margin-left: 2px;
        }

        .cart-count {
            background-color: transparent;
            color: #333333;
            font-size: 1rem;
        }

        /* =========================================
           MENÃš DE NAVEGACIÃ“N (Gris Claro)
           ========================================= */
        .catalog-nav-section {
            background-color: #f4f4f4;
            border-bottom: 1px solid #e5e5e5;
        }

        .nav-bar {
            background-color: transparent;
            border-bottom: none;
        }

        .nav-bar .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 80px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 40px;
            min-height: 72px;
        }

        .nav-menu .spacer {
            flex-grow: 1; /* Empuja los enlaces finales hacia la derecha */
        }

        .nav-menu li {
            position: relative; /* Necesario para que el mega menÃº se posicione bien */
        }

        .nav-menu li > a {
            display: flex;
            align-items: center;
            padding: 24px 4px;
            color: #444444;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s ease;
            position: relative;
        }

        .nav-menu li > a i {
            margin-left: 5px;
            font-size: 0.8rem;
            color: #888888;
        }

        .nav-menu li > a:hover {
            color: #000000;
        }

        /* LÃ­nea roja al hacer hover */
        .nav-menu li > a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #C00000;
            transition: width 0.3s ease;
        }

        .nav-menu li > a:hover::after {
            width: 100%;
        }

        .promo-ticker-shell {
            width: 100%;
            padding: 0;
            margin: 0;
        }

        .promo-ticker {
            min-height: 36px;
            display: flex;
            align-items: center;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            border-radius: 0;
            background: linear-gradient(92deg, #1a1a1a 0%, #2a2a2a 45%, #4a0f16 100%);
            box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 8px 18px rgba(0, 0, 0, 0.18);
        }

        .promo-ticker::before,
        .promo-ticker::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 40px;
            z-index: 1;
            pointer-events: none;
        }

        .promo-ticker::before {
            left: 0;
            background: linear-gradient(90deg, rgba(26, 26, 26, 1), rgba(26, 26, 26, 0));
        }

        .promo-ticker::after {
            right: 0;
            background: linear-gradient(270deg, rgba(74, 15, 22, 1), rgba(74, 15, 22, 0));
        }

        .promo-ticker-track {
            display: inline-flex;
            align-items: center;
            gap: 18px;
            color: #f2f2f2;
            font-size: 0.96rem;
            font-weight: 600;
            letter-spacing: 0.55px;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.32);
            padding: 2px 0;
            padding-left: 100%;
            animation: promoTickerMove 38s linear infinite;
        }

        .promo-ticker-track span {
            display: inline-flex;
            align-items: center;
            min-height: auto;
            padding: 0;
            border-radius: 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            animation: promoTickerPulse 2.8s ease-in-out infinite;
        }

        .promo-ticker-track .promo-separator {
            min-height: auto;
            padding: 0;
            border-radius: 0;
            background: transparent;
            border: 0;
            box-shadow: none;
            color: #d94a55;
            font-size: 0.9rem;
            font-weight: 600;
        }

        @keyframes promoTickerMove {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        @keyframes promoTickerPulse {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-1px);
            }
        }

        /* =========================================
           MEGA MENÃš ADAPTADO AL NUEVO ESTILO
           ========================================= */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            border-top: 3px solid #C00000;
            padding: 40px;
            width: 650px;
            display: none;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            z-index: 100;
            border-radius: 0 0 8px 8px;
        }

        .nav-menu li:hover .mega-menu {
            display: grid;
        }

        .mega-menu-column h4 {
            color: #000000;
            margin-bottom: 15px;
            font-size: 1rem;
            border-bottom: 1px solid #eaeaea;
            padding-bottom: 8px;
            font-weight: 500;
        }

        .mega-menu-column ul {
            list-style: none;
            padding: 0;
        }

        .mega-menu-column ul li {
            margin-bottom: 10px;
        }

        .mega-menu-column ul li a {
            color: #555555;
            padding: 0;
            font-size: 0.9rem;
            font-weight: 400;
            display: inline-block;
        }

        .mega-menu-column ul li a::after {
            display: none; /* Quitamos la lÃ­nea roja del hover en los sub-enlaces */
        }

        .mega-menu-column ul li a:hover {
            color: #C00000;
            transform: translateX(5px); /* PequeÃ±o efecto dinÃ¡mico al pasar el mouse */
        }

        /* FOOTER */
        .footer {
            background-color: #070707;
            color: #ffffff;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-col h4 {
            color: #ffffff;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }

        .footer-col p {
            color: #b3b3b3;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #999999;
            text-decoration: none;
            transition: color 0.2s;
            font-size: 0.9rem;
        }

        .footer-col ul li a:hover {
            color: #C00000;
        }

        .footer-contact-list {
            list-style: none;
            display: grid;
            gap: 10px;
            margin-top: 14px;
        }

        .footer-contact-list li {
            color: #b3b3b3;
            font-size: 0.9rem;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.5;
        }

        .footer-contact-list i {
            color: #d8d8d8;
            margin-top: 2px;
        }

        .footer-social {
            display: grid;
            gap: 10px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #d0d0d0;
            text-decoration: none;
            font-size: 0.92rem;
            transition: color 0.2s ease, transform 0.2s ease;
            width: fit-content;
        }

        .social-link i {
            width: 18px;
            text-align: center;
            font-size: 1rem;
            color: #ffffff;
        }

        .social-link:hover {
            color: #ffffff;
            transform: translateX(2px);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid #1f1f1f;
            color: #999999;
            font-size: 0.85rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: #999999;
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-bottom-links a:hover {
            color: #ffffff;
        }

        .whatsapp-float {
            position: fixed;
            right: 18px;
            bottom: 20px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: #25D366;
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.8rem;
            box-shadow: 0 10px 24px rgba(0,0,0,0.2);
            z-index: 2000;
        }

        .whatsapp-float:hover {
            color: #ffffff;
            background-color: #1fb85a;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .header-main-container .container {
                padding: 0 30px;
            }
            .header-wrapper {
                gap: 18px;
                padding: 16px 0;
            }
            .left-section {
                gap: 12px;
            }
            .right-section {
                gap: 18px;
            }
            .logo h1 {
                font-size: 1.35rem;
            }
            .logo img {
                height: 32px;
            }
            .logo .logo-mark {
                max-width: 46px;
            }
            .logo .logo-wordmark {
                max-width: 168px;
            }
            .menu-toggle {
                font-size: 1rem;
                height: 32px;
            }
            .header-search {
                max-width: 540px;
            }
            .header-search-form {
                height: 52px;
            }
            .header-search-form input {
                font-size: 0.95rem;
                padding: 0 18px;
            }
            .header-search-form button {
                height: 52px;
                width: 56px;
                font-size: 1rem;
            }
            .nav-bar .container {
                padding: 0 30px;
            }
            .nav-menu {
                gap: 24px;
                min-height: 60px;
            }
            .nav-menu li > a {
                padding: 18px 2px;
                font-size: 0.9rem;
            }
            .section-header h3 {
                font-size: 1.55rem;
            }
            .deal-content {
                padding: 24px;
            }
            .quick-grid {
                gap: 20px;
            }
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .trust-building {
                grid-template-columns: 1fr;
                gap: 26px;
            }
            .trust-building__desc {
                max-width: none;
            }
            .video-header {
                font-size: 1.6rem;
            }
            .trust-building__video {
                aspect-ratio: 16/9;
                width: 100%;
                margin-inline: auto;
            }
            .contact-consult-card {
                flex-direction: column;
                align-items: stretch;
            }
            .contact-consult-actions {
                justify-content: flex-start;
                min-width: 0;
                width: 100%;
            }
            .contact-input {
                max-width: none;
            }
            .brands-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .hero-section .container {
                flex-direction: column;
                text-align: center;
            }
            .services-layout {
                grid-template-columns: 1fr;
            }
            .innovation-hub {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .innovation-intro {
                padding-right: 0;
                max-width: none;
            }
            .services-shell {
                padding: 0;
            }
            .innovation-stage {
                min-height: 290px;
            }
            .innovation-pane {
                grid-template-columns: 1fr;
            }
            .innovation-pane-copy {
                padding: 18px 18px 12px;
            }
            .innovation-pane-visual {
                min-height: 180px;
                align-items: flex-start;
            }
            .innovation-visual-shell {
                width: 100%;
            }
            .location-contact-grid {
                grid-template-columns: 1fr;
            }
            .office-map-frame {
                min-height: 320px;
            }
            .services-glance {
                margin-top: 12px;
            }
            .services-panel {
                padding: 0;
                border-left: 0;
                border-top: 1px solid #ececec;
                padding-top: 16px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .contact-strip {
                display: none;
            }

            .admin-mode-strip {
                top: 0;
            }

            .header-main-container {
                top: 0;
            }

            .emptyDiv {
                margin-top: 72px;
            }

            body.is-admin-mode .header-main-container {
                top: 34px;
            }

            body.is-admin-mode .emptyDiv {
                margin-top: 106px;
            }

            .header-wrapper {
                gap: 14px;
            }

            .header-search {
                min-width: 0;
                max-width: 48vw;
            }

            .header-search-form {
                height: 48px;
            }

            .header-search-form input {
                font-size: 0.9rem;
                padding: 0 14px;
            }

            .header-search-form button {
                width: 50px;
                height: 48px;
                font-size: 0.95rem;
            }

            .right-section {
                gap: 12px;
                min-width: max-content;
            }

            .header-action {
                min-width: 28px;
                justify-content: center;
            }

            .header-action i {
                font-size: 1.22rem;
            }
        }

        @media (max-width: 768px) {
            .top-bar {
                display: none;
            }

            .contact-strip {
                display: none;
            }

            .admin-mode-strip .container {
                min-height: 32px;
                padding: 0 14px;
            }

            .admin-mode-strip {
                font-size: 0.76rem;
                top: 0;
            }

            .admin-mode-strip a {
                min-height: 24px;
                padding: 0 8px;
                font-size: 0.74rem;
            }

            body.is-admin-mode .header-main-container {
                top: 32px;
            }

            body.is-admin-mode .emptyDiv {
                margin-top: 110px;
            }
            .container {
                padding: 0 20px;
            }
            .header-main-container {
                top: 0;
                padding-top: 6px;
            }
            .header-main-container .container {
                padding: 0 18px;
            }
            .nav-bar .container {
                padding: 0 12px;
            }
            .nav-bar {
                display: none;
            }
            .catalog-nav-section {
                display: none;
            }
            .emptyDiv {
                margin-top: 78px;
            }
            .header-wrapper {
                gap: 16px;
                padding: 12px 0;
                flex-wrap: nowrap;
                justify-content: initial;
                align-items: center;
                min-height: 46px;
                display: grid;
                grid-template-columns: auto auto 1fr auto;
                column-gap: 12px;
            }
            .left-section {
                order: 1;
                gap: 18px;
                align-items: center;
                flex-shrink: 0;
                width: auto;
                min-width: 0;
                display: flex;
                margin-right: 0;
                grid-column: 1;
            }
            body.header-scrolled .left-section {
                display: flex; /* Mantenemos logo y menu visibles incluso al bajar */
            }
            .logo {
                display: inline-flex;
                align-items: center;
            }
            .logo img {
                height: 26px;
                width: auto;
                object-fit: contain;
                display: block;
            }
            .logo .logo-mark {
                max-width: 38px;
            }
            .logo .logo-wordmark {
                max-width: 140px;
                display: none;
            }
            /* Ocultamos el texto H1 ahora que usaremos logo imagen */
            .logo h1 {
                display: none;
            }
            .menu-toggle {
                font-size: 0;
                gap: 0;
                height: 26px;
                padding: 0;
            }
            .menu-toggle i {
                font-size: 1.45rem;
            }
            .right-section {
                order: 3;
                gap: 14px;
                flex-shrink: 0;
                margin-left: 0;
                display: flex !important;
                align-items: center;
                min-width: max-content;
                grid-column: 4;
                visibility: visible !important;
                opacity: 1 !important;
            }
            .header-search {
                order: 2; /* Centramos el icono de busqueda cuando aparece */
                flex: 0 0 auto;
                margin: 0;
                margin-left: 0;
                margin-right: 0;
                max-width: none;
                opacity: 1;
                visibility: visible;
                width: auto;
                transform: none;
                pointer-events: auto;
                transition: none;
                display: none;
                grid-column: 2;
            }
            body.header-scrolled .header-search {
                display: none;
            }
            .header-search-form {
                height: 42px;
                border-radius: 12px;
                background-color: transparent;
                border: none;
            }
            .header-search-form input {
                display: none; /* Oculta todo el input de texto en móvil */
            }
            .header-search-form button {
                width: 42px;
                height: 42px;
                font-size: 1.45rem; /* Tamaño de lupa igual al icono hamburguesa */
                color: #444444;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center; /* Centra lupa para mayor separación visual */
            }
            .header-action .cart-text,
            .header-action .cart-count {
                display: none;
            }
            .header-action {
                gap: 0;
                min-width: 30px;
                min-height: 30px;
                justify-content: center;
            }
            .header-action i {
                font-size: 1.55rem;
            }
            .nav-menu {
                flex-wrap: nowrap;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                gap: 18px;
                min-height: 56px;
                scrollbar-width: none;
            }
            .nav-menu::-webkit-scrollbar {
                display: none;
            }
            .nav-menu .spacer {
                display: none;
            }
            .nav-menu li {
                flex: 0 0 auto;
            }
            .nav-menu li > a {
                padding: 16px 2px;
                font-size: 0.9rem;
            }
            .hero-section {
                min-height: auto;
                padding: 18px 0;
            }
            .hero-overlay-box {
                max-width: 100%;
                padding: 26px 20px;
                border-radius: 10px;
            }
            .hero-overlay-box h2 {
                font-size: 1.55rem;
                margin-bottom: 20px;
            }
            .hero-search-box {
                margin-bottom: 14px;
            }
            .hero-search-box input {
                font-size: 0.95rem;
                padding: 14px 14px;
            }
            .hero-search-box button {
                padding: 0 16px;
                font-size: 1.05rem;
            }
            .hero-overlay-box .search-hint {
                font-size: 0.82rem;
            }
            .recommended-section,
            .deals-section {
                padding: 40px 0;
            }
            .services-innovation-section {
                padding: 34px 0;
            }
            .innovation-intro h3 {
                font-size: 1.42rem;
            }
            .innovation-intro p {
                font-size: 0.82rem;
                margin-bottom: 12px;
            }
            .innovation-mini-stats {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 8px;
            }
            .innovation-mini-stats strong {
                font-size: 0.9rem;
            }
            .innovation-mini-stats span {
                font-size: 0.66rem;
            }
            .innovation-nav {
                grid-template-columns: repeat(3, minmax(0, 1fr));
                max-width: 100%;
                margin: 0 auto 12px;
                align-items: center;
            }
            .innovation-tab {
                min-width: 0;
                text-align: center;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                font-size: 0.76rem;
                padding: 9px 8px;
            }
            .innovation-stage {
                min-height: 276px;
            }
            .innovation-pane {
                grid-template-columns: 1fr;
            }
            .innovation-pane-visual {
                min-height: 172px;
            }
            .innovation-pane-visual i {
                font-size: 1.35rem;
            }
            .location-contact-section {
                padding: 34px 0;
            }
            .location-contact-shell {
                padding: 0;
                border-radius: 0;
            }
            .location-contact-head h3 {
                font-size: 1.28rem;
            }
            .location-contact-head p {
                font-size: 0.82rem;
            }
            .location-points {
                gap: 8px;
            }
            .location-point {
                font-size: 0.74rem;
            }
            .secure-field-row {
                grid-template-columns: 1fr;
            }
            .office-map-frame {
                min-height: 260px;
            }
            .map-live-dot {
                font-size: 0.68rem;
                padding: 4px 8px;
            }
            .secure-contact-card {
                padding: 0;
            }
            .secure-contact-card h4 {
                font-size: 1rem;
            }
            .secure-contact-card p {
                font-size: 0.78rem;
            }
            .services-shell {
                padding: 0;
                border-radius: 0;
            }
            .services-head {
                margin-bottom: 14px;
            }
            .services-head h3 {
                font-size: 1.36rem;
            }
            .innovation-mini-stats {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
            .innovation-showcase {
                padding: 10px;
            }
            .innovation-nav {
                gap: 6px;
            }
            .innovation-tab {
                font-size: 0.68rem;
                padding: 8px 6px;
            }
            .innovation-pane-copy {
                padding: 12px;
            }
            .innovation-pane-copy h4 {
                font-size: 0.86rem;
            }
            .innovation-pane-copy p {
                font-size: 0.72rem;
            }
            .services-head p {
                font-size: 0.84rem;
            }
            .glance-chip {
                font-size: 0.72rem;
                padding: 6px 10px;
            }
            .services-cards {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .service-card {
                padding: 8px 0 8px 12px;
            }
            .service-card h4 {
                font-size: 0.9rem;
            }
            .service-card p {
                font-size: 0.8rem;
            }
            .services-panel {
                padding: 12px 0 0;
                border-top: 1px solid #ececec;
                border-left: 0;
            }
            .services-panel h4 {
                font-size: 1rem;
            }
            .services-panel p {
                font-size: 0.8rem;
            }
            .metric-value {
                font-size: 0.9rem;
            }
            .why-choose-section {
                padding: 30px 0;
            }
            .video-header {
                font-size: 1.36rem;
                margin-bottom: 6px;
            }
            .video-description {
                font-size: 0.82rem;
                margin-bottom: 10px;
            }
            .video-control-btn {
                font-size: 0.84rem;
                padding: 10px 8px;
                gap: 8px;
            }
            .video-control-btn img {
                width: 18px;
                height: 18px;
            }
            .video-control-icon {
                width: 18px;
                height: 18px;
                font-size: 0.62rem;
            }
            .video-title {
                font-size: 0.83rem;
            }
            .trust-building__video {
                min-height: 240px;
                width: 100%;
                max-width: 100%;
            }
            .contact-consult-section {
                padding: 0 0 40px;
            }
            .contact-consult-card {
                padding: 14px;
                gap: 14px;
            }
            .contact-consult-left {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                min-width: 0;
            }
            .contact-consult-badge {
                width: 100%;
                text-align: center;
                padding-right: 46px;
            }
            .contact-consult-icon {
                right: 10px;
            }
            .contact-consult-actions {
                width: 100%;
                flex-direction: column;
                align-items: stretch;
                gap: 10px;
            }
            .contact-input,
            .contact-btn {
                width: 100%;
                max-width: none;
                min-width: 0;
            }
            .quick-actions,
            .brands-section {
                padding: 30px 0;
            }
            .section-header {
                flex-wrap: wrap;
                align-items: flex-start;
                gap: 8px;
            }
            .section-header h3 {
                font-size: 1.35rem;
            }
            .section-header a {
                font-size: 0.9rem;
            }
            .products-grid {
                display: flex;
                gap: 12px;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                padding-bottom: 6px;
            }
            .products-grid::-webkit-scrollbar {
                display: none;
            }
            .products-grid .product-card {
                flex: 0 0 84%;
                max-width: 84%;
                scroll-snap-align: start;
            }
            .recommended-carousel-wrap .products-grid {
                padding: 0 56px 6px;
            }
            .recommended-mobile-controls {
                display: flex;
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                transform: translateY(-50%);
                margin-top: 0;
                justify-content: space-between;
                align-items: center;
                gap: 0;
                padding: 0 8px;
                pointer-events: none;
            }
            .recommended-mobile-controls .recommended-mobile-btn {
                pointer-events: auto;
            }
            .quick-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .deals-grid {
                grid-template-columns: 1fr;
            }
            .deal-card {
                flex-direction: column;
            }
            .deal-image {
                width: 100%;
                height: 130px;
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px 22px;
                margin-bottom: 30px;
            }
            .footer {
                padding: 44px 0 18px;
            }
            .footer-col h4 {
                margin-bottom: 14px;
            }
            .footer-contact-list {
                margin-top: 10px;
                gap: 8px;
            }
            .footer-bottom {
                align-items: flex-start;
                gap: 10px;
            }
        }

        @media (max-width: 640px) {
            .footer {
                padding: 34px 0 14px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 18px;
                margin-bottom: 20px;
            }
            .footer-col h4 {
                font-size: 1rem;
                margin-bottom: 10px;
            }
            .footer-col p,
            .footer-col ul li a,
            .footer-contact-list li,
            .social-link {
                font-size: 0.86rem;
            }
            .footer-contact-list li {
                line-height: 1.4;
            }
            .footer-social {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px 14px;
            }
            .social-link {
                width: 100%;
            }
            .footer-bottom {
                padding-top: 14px;
                gap: 8px;
            }
            .footer-bottom p {
                margin: 0;
            }
            .footer-bottom-links {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 6px 10px;
            }
            .footer-bottom-links a {
                font-size: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .services-shell {
                padding: 16px;
            }
            .location-contact-shell {
                padding: 0;
            }
            .location-contact-head h3 {
                font-size: 1.13rem;
            }
            .location-contact-head p {
                font-size: 0.76rem;
            }
            .location-point {
                width: 100%;
            }
            .secure-contact-form input,
            .secure-contact-form textarea {
                font-size: 0.8rem;
            }
            .secure-submit {
                width: 100%;
                justify-self: stretch;
            }
            .services-head h3 {
                font-size: 1.2rem;
            }
            .services-head p {
                font-size: 0.78rem;
            }
            .services-kicker {
                font-size: 0.7rem;
            }
            .services-panel {
                padding: 14px;
            }
            .services-metrics {
                grid-template-columns: 1fr;
            }
            .video-header {
                font-size: 1.2rem;
            }
            .video-description {
                font-size: 0.78rem;
            }
            .video-control-btn {
                font-size: 0.78rem;
                padding: 9px 4px;
            }
            .trust-building {
                gap: 14px;
            }
            .trust-building__video {
                min-height: 0;
                aspect-ratio: 16/9;
            }
            .header-main-container .container {
                padding: 0 10px;
            }
            .right-section {
                gap: 8px;
            }
            .hero-overlay-box h2 {
                font-size: 1.35rem;
            }
            .quick-grid,
            .brands-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .footer-bottom-links {
                grid-template-columns: 1fr;
            }
            .emptyDiv {
                margin-top: 76px;
            }
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.55rem;
                right: 12px;
                bottom: 14px;
            }
        }

        @media (max-width: 480px) {
            .header-wrapper {
                justify-content: initial;
                gap: 6px;
                column-gap: 10px;
            }

            .left-section {
                gap: 14px;
                min-width: 0;
                margin-right: 0;
            }

            .right-section {
                display: flex !important;
                align-items: center;
                gap: 6px;
                margin-left: auto;
                min-width: max-content;
            }

            .header-action {
                min-width: 28px;
                min-height: 28px;
                justify-content: center;
            }

            .header-search {
                display: none !important;
            }

            body.header-scrolled .header-search {
                display: none !important;
                margin: 0 !important;
            }
        }

        @media (max-width: 360px) {
            html, body {
                overflow-x: hidden;
            }
            .container {
                padding: 0 10px;
            }
            .header-main-container .container {
                padding: 0 8px;
            }
            .emptyDiv {
                margin-top: 72px;
            }
            .header-wrapper {
                gap: 6px;
                padding: 10px 0;
                min-height: 40px;
            }
            .left-section {
                width: auto;
                min-width: 40px;
                gap: 6px;
            }
            .menu-toggle i {
                font-size: 1.25rem;
            }
            .right-section {
                gap: 6px;
            }
            .header-action i {
                font-size: 1.22rem;
            }
            .header-search-form {
                height: 36px;
                border-radius: 10px;
            }
            .header-search-form input {
                font-size: 0.74rem;
                padding: 0 8px;
            }
            .header-search-form button {
                width: 32px;
                height: 36px;
                font-size: 0.85rem;
            }

            .hero-section {
                padding: 12px 0;
            }
            .hero-overlay-box {
                padding: 16px 12px;
            }
            .hero-overlay-box h2 {
                font-size: 1.08rem;
                margin-bottom: 12px;
            }
            .hero-search-box input {
                font-size: 0.82rem;
                padding: 10px 10px;
            }
            .hero-search-box button {
                font-size: 0.9rem;
                padding: 0 12px;
            }

            .recommended-section,
            .contact-consult-section,
            .why-choose-section,
            .services-innovation-section,
            .location-contact-section,
            .quick-actions,
            .brands-section {
                padding-top: 24px;
                padding-bottom: 24px;
            }
            .section-header h3 {
                font-size: 1.12rem;
            }
            .section-header a {
                font-size: 0.8rem;
            }

            .products-grid {
                gap: 10px;
            }
            .products-grid .product-card {
                flex: 0 0 88%;
                max-width: 88%;
            }
            .product-info {
                padding: 12px;
            }
            .product-info h4 {
                font-size: 0.92rem;
                line-height: 1.3;
            }
            .product-sku {
                font-size: 0.74rem;
            }
            .product-price {
                font-size: 0.92rem;
                margin-bottom: 10px;
            }
            .btn-small {
                padding: 7px 10px;
                font-size: 0.78rem;
            }
            .recommended-mobile-btn {
                width: 38px;
                height: 38px;
            }

            .contact-consult-card {
                padding: 10px;
                gap: 10px;
            }
            .contact-consult-text h4 {
                font-size: 0.95rem;
            }
            .contact-consult-text p {
                font-size: 0.8rem;
            }
            .contact-consult-badge {
                font-size: 0.78rem;
                padding: 10px 40px 10px 12px;
            }

            .video-header,
            .location-contact-head h3,
            .innovation-intro h3 {
                font-size: 1.06rem;
                line-height: 1.25;
            }
            .video-description,
            .location-contact-head p,
            .innovation-intro p,
            .secure-contact-card p {
                font-size: 0.76rem;
                line-height: 1.45;
            }

            .innovation-showcase {
                padding: 8px;
            }
            .innovation-tab {
                font-size: 0.75rem;
                padding: 8px;
            }
            .innovation-stage {
                min-height: 200px;
            }
            .innovation-pane-copy {
                padding: 10px;
            }

            .location-points {
                gap: 4px;
            }
            .location-point {
                font-size: 0.7rem;
            }
            .office-map-frame {
                min-height: 220px;
            }
            .map-live-dot {
                font-size: 0.62rem;
                padding: 3px 7px;
                top: 8px;
                left: 8px;
            }
            .secure-contact-form {
                gap: 8px;
            }
            .secure-contact-form input,
            .secure-contact-form textarea {
                font-size: 0.76rem;
                padding: 8px 10px;
            }

            .quick-grid,
            .brands-grid,
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .footer {
                padding: 28px 0 12px;
            }
            .footer-col h4 {
                font-size: 0.98rem;
            }
            .footer-col ul li a,
            .footer-col p,
            .footer-contact-list li,
            .social-link {
                font-size: 0.82rem;
            }
            .footer-bottom {
                font-size: 0.78rem;
                gap: 8px;
            }
        }


.products-page {
    padding: 24px 0 50px;
    background-color: #ffffff;
}

main#sections-root > section:not(.hero-section) {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

/* HEADER RESPONSIVE STABILIZER (REFERENCE-LIKE LAYOUT) */
@media (max-width: 768px) {
    .header-main-container .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .header-wrapper {
        display: grid !important;
        grid-template-columns: auto minmax(140px, 1fr) auto;
        align-items: center;
        column-gap: 10px;
        row-gap: 0;
        width: 100%;
    }

    .left-section {
        grid-column: 1;
        display: inline-flex !important;
        align-items: center;
        gap: 10px !important;
        min-width: 0;
        margin: 0 !important;
    }

    .logo .logo-wordmark {
        display: none !important;
    }

    .logo .logo-mark {
        max-width: 34px !important;
    }

    .menu-toggle {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 28px;
        min-height: 28px;
    }

    .header-search,
    body.header-scrolled .header-search {
        grid-column: 2;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        margin: 0 !important;
    }

    .header-search-form {
        height: 40px !important;
        border-radius: 12px !important;
        border: 1px solid #cfd4dc !important;
        background: #ffffff !important;
        overflow: hidden;
    }

    .header-search-form input {
        display: block !important;
        font-size: 0.9rem !important;
        padding: 0 12px !important;
    }

    .header-search-form button {
        width: 40px !important;
        height: 40px !important;
        justify-content: center !important;
        font-size: 1rem !important;
    }

    .right-section {
        grid-column: 3;
        display: inline-flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 10px !important;
        min-width: max-content;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-action {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 30px;
        min-height: 30px;
    }

    .header-action .cart-text,
    .header-action .cart-count {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .header-main-container .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .header-wrapper {
        grid-template-columns: auto minmax(110px, 1fr) auto;
        column-gap: 8px;
    }

    .left-section {
        gap: 8px !important;
    }

    .header-search-form {
        height: 36px !important;
    }

    .header-search-form input {
        font-size: 0.84rem !important;
        padding: 0 10px !important;
    }

    .header-search-form button {
        width: 36px !important;
        height: 36px !important;
    }

    .right-section {
        gap: 8px !important;
    }

    .header-action i {
        font-size: 1.2rem !important;
    }
}

/* GLOBAL HEADER SAFE MODE (HIGH PRIORITY) */
@media (max-width: 520px) {
    .header-main-container .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .header-wrapper {
        display: grid !important;
        grid-template-columns: auto auto 1fr auto;
        align-items: center;
        column-gap: 10px;
        row-gap: 0;
        width: 100%;
    }

    .left-section {
        grid-column: 1;
        display: flex !important;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .header-search {
        grid-column: 2;
        display: none !important;
        margin: 0 !important;
    }

    body.header-scrolled .header-search {
        display: none !important;
    }

    .right-section {
        grid-column: 4;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        gap: 6px !important;
        min-width: max-content;
        margin-left: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-action {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        min-width: 28px;
        min-height: 28px;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .header-action i {
        font-size: 1.24rem !important;
    }

    .logo .logo-wordmark {
        display: none !important;
    }

    .logo .logo-mark {
        max-width: 34px !important;
    }

    .header-action .cart-text,
    .header-action .cart-count {
        display: none !important;
    }
}

.cookie-consent {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1700;
}

.cookie-consent-inner {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dfe3ea;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(16, 24, 40, 0.18);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cookie-consent-copy strong {
    display: block;
    margin-bottom: 2px;
    color: #171717;
}

.cookie-consent-copy p {
    margin: 0;
    color: #50545c;
    font-size: .88rem;
}

.cookie-consent-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #d1d6de;
    background: #fff;
    color: #2f2f2f;
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-primary {
    background: #1f1f1f;
    border-color: #1f1f1f;
    color: #fff;
}

.cookie-btn-primary:hover {
    background: #111;
}

@media (max-width: 740px) {
    .cookie-consent-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        justify-content: center;
    }
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.products-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-filters-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    height: 46px;
    padding: 0 20px;
    border-radius: 24px;
    border: 1px solid #6f6f6f;
    background: #ffffff;
    color: #222222;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
}

.products-toolbar h1 {
    font-size: 2rem;
    margin: 0;
}

.products-search {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.products-search input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 0.95rem;
}

.products-search button {
    height: 44px;
    border: 1px solid #1f1f1f;
    background: #1f1f1f;
    color: #fff;
    padding: 0 16px;
    border-radius: 8px;
    cursor: pointer;
}

.products-active-filter {
    font-size: 0.95rem;
    color: #555;
}

.products-active-filter span {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    margin-left: 6px;
    font-weight: 600;
}

.products-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 34px;
    align-items: start;
}

.products-sidebar {
    background-color: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    position: sticky;
    top: 132px;
}

.products-sidebar-head {
    display: none;
}

.products-sidebar-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #8a8a8a;
    background: #ffffff;
    color: #2e2e2e;
    font-size: 1rem;
    cursor: pointer;
}

.products-filters-overlay {
    display: none;
}

.products-filter-block + .products-filter-block {
    border-top: 1px solid #ececec;
    margin-top: 16px;
    padding-top: 16px;
}

.products-filter-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.products-filter-apply,
.products-filter-reset {
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 12px;
    text-decoration: none;
    font-size: 0.92rem;
}

.products-filter-apply {
    border: 1px solid #1f1f1f;
    background: #1f1f1f;
    color: #fff;
    cursor: pointer;
}

.products-filter-reset {
    border: 1px solid #c8c8c8;
    color: #333;
    background: #fff;
}

.products-filter-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.products-check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
    color: #303030;
    font-size: 1rem;
}

.products-check input {
    width: 20px;
    height: 20px;
    accent-color: #0b57d0;
    margin-right: 8px;
}

.products-check span {
    color: #777777;
}

.products-results {
    min-width: 0;
}

.products-results-count {
    margin: 0 0 14px;
    color: #666;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
}

.products-item-card {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 10px 10px 14px;
    position: relative;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.products-item-card[data-detail-url] {
    cursor: pointer;
}

.products-item-card[data-detail-url]:focus-visible {
    outline: 3px solid rgba(192, 0, 0, 0.16);
    outline-offset: 2px;
}

.products-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: rgba(255, 255, 255, 0.92);
    color: #7f2020;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border: 0;
}

.products-item-image {
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 12px;
    background-color: #f3f3f3;
    height: 154px;
}

.products-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-item-link {
    color: inherit;
    text-decoration: none;
    display: block;
}

.products-item-title-link:hover {
    color: #C00000;
}

.products-item-card h3 {
    font-size: 0.96rem;
    line-height: 1.35;
    margin: 0;
    color: #171717;
    min-height: 40px;
}

.products-sku {
    color: #5a5a5a;
    margin: 0;
    font-size: 0.81rem;
}

.products-meta-line {
    color: #575757;
    margin: 0;
    font-size: 0.77rem;
}

.products-stock-pill {
    align-self: flex-start;
    margin-top: 2px;
    font-size: 0.76rem;
    font-weight: 600;
    border-radius: 0;
    padding: 0;
    border: 0;
}

.products-stock-pill.is-in {
    color: #187145;
    background: transparent;
}

.products-stock-pill.is-out {
    color: #9d2424;
    background: transparent;
}

.products-save {
    margin: 0 0 6px;
    font-size: 0.84rem;
    color: #17863c;
}

.products-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.products-price-row strong {
    font-size: 1.3rem;
    line-height: 1;
    color: #141414;
}

.products-price-row span {
    color: #777777;
    text-decoration: line-through;
}

.products-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #1f1f1f;
    background-color: #1f1f1f;
    color: #ffffff;
    text-decoration: none;
    line-height: 1;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0 14px;
}

.products-detail-btn {
    height: 36px;
    border-radius: 999px;
    border: 1px solid #d7dce5;
    color: #2f2f2f;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0 12px;
}

.products-card-actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
}

.products-card-actions .products-add-btn {
    height: 36px;
}

.products-add-btn--active {
    background-color: #e1251b;
    border-color: #e1251b;
    color: #ffffff;
}

@media (max-width: 1200px) {
    .products-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .products-layout {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(360px, 90vw);
        height: 100vh;
        background-color: #ffffff;
        border-radius: 0;
        border: 0;
        z-index: 1510;
        box-shadow: 0 10px 34px rgba(0,0,0,0.18);
        transform: translateX(-102%);
        transition: transform 0.24s ease;
        overflow-y: auto;
        top: 0;
        padding: 14px 14px 20px;
        box-sizing: border-box;
    }

    .products-sidebar form {
        padding: 0 2px 12px;
    }

    .products-sidebar-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-bottom: 1px solid #ececec;
        padding: 0 2px 12px;
        margin-bottom: 14px;
    }

    .products-filter-block + .products-filter-block {
        margin-top: 14px;
        padding-top: 14px;
    }

    .products-filter-title {
        font-size: 1.16rem;
        margin-bottom: 8px;
    }

    .products-check {
        margin-bottom: 10px;
        font-size: 0.95rem;
    }

    .products-filter-actions {
        gap: 8px;
        margin-top: 14px;
        flex-wrap: wrap;
    }

    .products-filter-apply,
    .products-filter-reset {
        min-width: 132px;
        flex: 1 1 132px;
    }

    .products-sidebar-head h2 {
        margin: 0;
        font-size: 1.3rem;
        color: #232323;
    }

    .products-filters-toggle {
        display: inline-flex;
    }

    .products-filters-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1500;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    body.products-filters-open {
        overflow: hidden;
    }

    body.products-filters-open .products-sidebar {
        transform: translateX(0);
    }

    body.products-filters-open .products-filters-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .products-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) and (min-width: 641px) {
    .products-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-item-card {
        padding: 10px 10px 12px;
    }
}

@media (max-width: 640px) {
    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .products-toolbar h1 {
        font-size: 1.5rem;
    }

    .products-search {
        width: 100%;
    }

    .products-search input {
        font-size: 0.9rem;
    }

    .products-sidebar {
        left: 50%;
        right: auto;
        top: auto;
        bottom: 0;
        width: min(560px, 100vw);
        max-height: 82vh;
        height: auto;
        border-radius: 16px 16px 0 0;
        padding: 12px 14px 18px;
        transform: translate(-50%, 102%);
    }

    body.products-filters-open .products-sidebar {
        transform: translate(-50%, 0);
    }

    .products-sidebar form {
        padding: 0 2px 10px;
    }

    .products-sidebar-head {
        position: sticky;
        top: 0;
        background: #ffffff;
        z-index: 2;
        padding-top: 2px;
    }

    .products-sidebar-head h2 {
        font-size: 1.15rem;
    }

    .products-filter-title {
        font-size: 1.04rem;
    }

    .products-check {
        font-size: 0.9rem;
    }

    .products-filters-overlay {
        background: rgba(0,0,0,0.5);
    }

    .products-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px 10px;
    }

    .products-item-card {
        padding: 8px 8px 12px;
        border-radius: 10px;
    }

    .products-badge {
        top: 8px;
        left: 8px;
        font-size: 0.72rem;
        padding: 4px 8px;
        border-radius: 6px;
    }

    .products-item-image {
        height: 112px;
        margin: 0 0 8px;
    }

    .products-item-card h3 {
        font-size: 0.82rem;
        min-height: 36px;
        margin-bottom: 4px;
    }

    .products-sku {
        font-size: 0.74rem;
        margin-bottom: 6px;
    }

    .products-save {
        font-size: 0.72rem;
        margin-bottom: 4px;
    }

    .products-price-row {
        margin-bottom: 8px;
        gap: 6px;
    }

    .products-price-row strong {
        font-size: 1.18rem;
    }

    .products-price-row span {
        font-size: 0.72rem;
    }

    .products-add-btn {
        height: 32px;
        font-size: 0.76rem;
        border-radius: 999px;
    }

    .products-detail-btn {
        height: 32px;
        font-size: 0.74rem;
        border-radius: 999px;
        padding: 0 9px;
    }

    .products-toolbar {
        align-items: stretch;
    }

    .products-toolbar-actions {
        justify-content: space-between;
    }

    .products-active-filter {
        font-size: 0.95rem;
    }

    .products-filters-toggle {
        font-size: 0.95rem;
        height: 42px;
        padding: 0 14px;
    }
}

.products-page .products-sidebar,
.products-page .products-item-card {
    box-shadow: none !important;
}

.products-page .products-item-card:hover {
    transform: none !important;
    box-shadow: 0 0 0 1px #e8ecf2, 0 8px 14px rgba(16, 24, 40, 0.05) !important;
    border-color: #edf1f6;
    background-color: #fff;
}

.products-page .products-item-card[data-detail-url]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(192, 0, 0, 0.16), 0 8px 14px rgba(16, 24, 40, 0.05) !important;
    background-color: #fff;
}

.products-page .products-add-btn:hover,
.products-page .products-detail-btn:hover {
    transform: none;
    box-shadow: none;
}

.products-page .products-add-btn:hover {
    background: #111;
    border-color: #111;
}

@media (max-width: 420px) {
    .products-cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-item-image {
        height: 98px;
    }
}

/* HAMBURGER DRAWER MENU */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1490;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(560px, 92vw);
    background-color: #ffffff;
    border-right: 1px solid #dbdbdb;
    z-index: 1500;
    transform: translateX(-101%);
    transition: transform 0.26s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-head {
    min-height: 92px;
    border-bottom: 1px solid #ececec;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.mobile-menu-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.mobile-menu-logo img {
    height: 34px;
    width: auto;
    display: block;
    max-width: 190px;
}

.mobile-menu-close {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #868686;
    background-color: #ffffff;
    color: #333333;
    font-size: 1.25rem;
    cursor: pointer;
}

.mobile-menu-body {
    padding: 14px 20px 24px;
    overflow-y: auto;
}

.mobile-menu-section {
    border-bottom: 1px solid #ececec;
    padding: 12px 0;
}

.mobile-menu-section h3 {
    margin: 0;
    font-size: 1.9rem;
    color: #2a2a2a;
    font-weight: 600;
}

.mobile-menu-section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.mobile-menu-view-all {
    color: #0f4fbf;
    text-decoration: none;
    font-size: 1.9rem;
    font-weight: 500;
}

.mobile-menu-links {
    margin-top: 8px;
}

.mobile-menu-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 62px;
    font-size: 1.2rem;
    color: #2b2b2b;
    text-decoration: none;
    border-bottom: 1px solid #ececec;
}

.mobile-link-icon {
    width: 20px;
    text-align: center;
    color: #2f2f2f;
    font-size: 0.98rem;
}

.mobile-menu-links a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #8a8a8a;
    font-size: 1rem;
    margin-left: auto;
}

.mobile-menu-links a:last-child {
    border-bottom: 0;
}

.mobile-menu-links--single a {
    min-height: 58px;
}

.mobile-menu-section--footer {
    margin-top: auto;
}

body.menu-open {
    overflow: hidden;
}

body.menu-open .mobile-menu-overlay {
    opacity: 1;
    visibility: visible;
}

body.menu-open .mobile-menu-panel {
    transform: translateX(0);
}

@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .promo-ticker {
        min-height: 32px;
    }

    .promo-ticker-track {
        font-size: 0.88rem;
        gap: 14px;
        padding: 1px 0;
    }

    .promo-ticker-track span {
        min-height: auto;
        padding: 0;
    }
}

/* INNOVATION SECTION ELEGANT FIX */
.services-innovation-section .container {
    max-width: 1280px;
}

.services-innovation-section .innovation-hub {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.services-innovation-section .innovation-intro {
    max-width: 100%;
}

.services-innovation-section .innovation-intro h3 {
    font-size: 1.62rem;
    line-height: 1.22;
}

.services-innovation-section .innovation-intro p {
    font-size: 0.92rem;
    line-height: 1.62;
}

.services-innovation-section .innovation-showcase {
    border: 1px solid #e3e6ec;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(16, 24, 40, 0.07);
    padding: 16px;
}

.services-innovation-section .innovation-nav {
    gap: 8px;
    margin-bottom: 12px;
}

.services-innovation-section .innovation-tab {
    min-height: 42px;
    border-radius: 10px;
    font-size: 0.8rem;
}

.services-innovation-section .innovation-stage {
    min-height: 342px;
    border-radius: 12px;
    border: 1px solid #21242c;
}

.services-innovation-section .innovation-pane {
    grid-template-columns: 1fr 1fr;
}

.services-innovation-section .innovation-pane-copy {
    padding: 20px 20px 18px;
    gap: 10px;
}

.services-innovation-section .innovation-pane-copy h4 {
    font-size: 1.08rem;
    line-height: 1.32;
}

.services-innovation-section .innovation-pane-copy p {
    font-size: 0.84rem;
}

.services-innovation-section .innovation-pane-visual {
    padding: 14px;
    align-items: center;
}

.services-innovation-section .innovation-pane-visual::before {
    background: radial-gradient(circle at 84% 15%, rgba(192, 0, 0, 0.22) 0%, rgba(192, 0, 0, 0) 50%);
}

.services-innovation-section .innovation-visual-shell {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.services-innovation-section .innovation-visual-list li {
    font-size: 0.74rem;
    line-height: 1.35;
}

.services-innovation-section .innovation-pane-visual > i {
    right: 14px;
    bottom: 12px;
    font-size: 1.55rem;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 980px) {
    .services-innovation-section .innovation-hub {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-innovation-section .innovation-intro {
        max-width: none;
    }

    .services-innovation-section .innovation-stage {
        min-height: 0;
        background: transparent;
        border: 0;
        overflow: visible;
    }

    .services-innovation-section .innovation-pane {
        position: relative;
        display: none;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        grid-template-columns: 1fr;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid #1f2229;
        background: #141820;
    }

    .services-innovation-section .innovation-pane.is-active {
        display: grid;
    }

    .services-innovation-section .innovation-pane-copy {
        padding: 16px 16px 12px;
    }

    .services-innovation-section .innovation-pane-visual {
        min-height: 168px;
        padding: 12px;
    }

    .services-innovation-section .innovation-visual-shell {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .services-innovation-section .innovation-nav {
        grid-template-columns: 1fr;
    }

    .services-innovation-section .innovation-tab {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .services-innovation-section .innovation-mini-stats {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .services-innovation-section .innovation-mini-stats div {
        border-top: 0;
        border-left: 2px solid #eceff4;
        padding-top: 0;
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-panel {
        width: 100vw;
    }

    .mobile-menu-head {
        min-height: 78px;
        padding: 0 14px;
    }

    .mobile-menu-close {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .mobile-menu-logo img {
        height: 30px;
        max-width: 165px;
    }

    .mobile-menu-body {
        padding: 8px 14px 20px;
    }

    .mobile-menu-section h3,
    .mobile-menu-view-all {
        font-size: 1.2rem;
    }

    .mobile-menu-links a {
        min-height: 54px;
        font-size: 1.06rem;
    }
}

/* MENU TOGGLE VISIBILITY */
.menu-toggle {
    display: inline-flex;
}

/* CATALOG PAGE */
.catalog-page {
    padding: 34px 0 60px;
    background-color: #f7f8fa;
}

.catalog-hero-shell {
    background: #ffffff;
    border: 1px solid #e4e6ea;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 18px;
}

.catalog-hero {
    margin-bottom: 14px;
}

.catalog-hero h1 {
    margin: 0 0 8px;
    font-size: 2rem;
    color: #1f1f1f;
}

.catalog-hero p {
    margin: 0;
    color: #5b5b5b;
    max-width: 860px;
}

.catalog-hero-kpis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.catalog-hero-kpis article {
    border: 1px solid #e8eaef;
    border-radius: 12px;
    background: #fafbfd;
    padding: 12px;
    display: grid;
    gap: 4px;
}

.catalog-hero-kpis span {
    font-size: 0.8rem;
    color: #626262;
}

.catalog-hero-kpis strong {
    font-size: 1.12rem;
    color: #191919;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.catalog-card {
    background-color: #ffffff;
    border: 1px solid #e4e6ea;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.catalog-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.catalog-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
    background-color: #C00000;
    border-radius: 999px;
    padding: 4px 10px;
}

.catalog-brand {
    font-size: 0.78rem;
    color: #4f4f4f;
    border: 1px solid #d7d7d7;
    border-radius: 999px;
    padding: 4px 10px;
}

.catalog-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.32;
    color: #202020;
}

.catalog-context {
    margin: 0;
    color: #4f4f4f;
    font-size: 0.82rem;
    line-height: 1.4;
}

.catalog-card p {
    margin: 0;
    color: #5d5d5d;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 44px;
}

.catalog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.82rem;
    color: #6b6b6b;
}

.catalog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.catalog-download-btn {
    margin-top: auto;
    height: 42px;
    border-radius: 22px;
    border: 1px solid #222222;
    color: #222222;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.catalog-download-btn:hover {
    border-color: #C00000;
    color: #ffffff;
    background-color: #C00000;
}

.catalog-empty {
    background-color: #ffffff;
    border: 1px dashed #d2d6dc;
    border-radius: 14px;
    padding: 40px 18px;
    text-align: center;
}

.catalog-empty i {
    font-size: 2rem;
    color: #C00000;
    margin-bottom: 10px;
}

.catalog-empty h2 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.catalog-empty p {
    margin: 0;
    color: #616161;
}

@media (max-width: 1100px) {
    .catalog-hero-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .catalog-page {
        padding: 20px 0 40px;
    }

    .catalog-hero h1 {
        font-size: 1.45rem;
    }

    .catalog-hero-shell {
        padding: 14px;
        border-radius: 12px;
    }

    .catalog-hero-kpis {
        grid-template-columns: 1fr;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .catalog-card {
        padding: 12px;
    }
}

/* BLOG PAGE */
.blog-page {
    padding: 34px 0 56px;
    background-color: #f6f7f9;
}

.blog-hero {
    margin-bottom: 20px;
}

.blog-kicker {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C00000;
    font-weight: 700;
    margin-bottom: 8px;
}

.blog-hero h1 {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.2;
    color: #1e1e1e;
}

.blog-hero p {
    margin: 0;
    max-width: 900px;
    color: #575757;
    line-height: 1.6;
}

.blog-featured {
    margin-bottom: 18px;
}

.blog-featured-card {
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background-color: #ffffff;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
}

.blog-featured-copy {
    padding: 20px;
}

.blog-tag {
    display: inline-block;
    background: #faecec;
    color: #8f1111;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.blog-featured-copy h2 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    line-height: 1.28;
}

.blog-featured-copy p {
    margin: 0 0 10px;
    color: #565656;
}

.blog-featured-copy ul {
    margin: 0;
    padding-left: 18px;
    color: #3f3f3f;
}

.blog-featured-copy li {
    margin-bottom: 5px;
}

.blog-featured-media img {
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
    display: block;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.blog-card {
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background-color: #ffffff;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-card-category {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
    background-color: #222222;
    border-radius: 999px;
    padding: 4px 8px;
}

.blog-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.34;
    color: #202020;
}

.blog-card p {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.9rem;
    line-height: 1.52;
}

.blog-card-meta {
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #eceff3;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.78rem;
    color: #6f6f6f;
}

@media (max-width: 1050px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .blog-page {
        padding: 20px 0 36px;
    }

    .blog-hero h1 {
        font-size: 1.45rem;
    }

    .blog-featured-copy {
        padding: 14px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT PAGE */
.about-page {
    padding: 34px 0 56px;
    background-color: #f6f7f9;
}

.about-hero {
    margin-bottom: 22px;
}

.about-kicker {
    display: inline-block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C00000;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-hero h1 {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.2;
}

.about-hero p {
    margin: 0;
    max-width: 900px;
    color: #5a5a5a;
}

.about-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.about-summary-card {
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #fff;
    padding: 14px;
}

.about-summary-card i {
    color: #C00000;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.about-summary-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.about-summary-card p {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.9rem;
}

.about-story {
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #fff;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    margin-bottom: 16px;
    overflow: hidden;
}

.about-story-copy {
    padding: 18px;
}

.about-story-copy h2 {
    margin: 0 0 10px;
    font-size: 1.4rem;
}

.about-story-copy p {
    margin: 0 0 10px;
    color: #555;
    line-height: 1.56;
}

.about-story-stats {
    background: linear-gradient(180deg, #1b1b1b 0%, #2c2c2c 100%);
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-story-stats div {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 10px;
}

.about-story-stats strong {
    display: block;
    font-size: 1.1rem;
    color: #ffffff;
}

.about-story-stats span {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.78);
}

.about-values {
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #fff;
    padding: 16px;
    margin-bottom: 16px;
}

.about-values h2 {
    margin: 0 0 12px;
    font-size: 1.3rem;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.about-values-grid article {
    border: 1px solid #eceff3;
    border-radius: 10px;
    padding: 12px;
}

.about-values-grid h4 {
    margin: 0 0 6px;
    font-size: 0.98rem;
}

.about-values-grid h4 i {
    color: #C00000;
    margin-right: 6px;
}

.about-values-grid p {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.88rem;
}

.about-cta {
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e4e7ec;
    padding: 18px;
    text-align: center;
}

.about-cta h3 {
    margin: 0 0 8px;
}

.about-cta p {
    margin: 0 0 12px;
    color: #5a5a5a;
}

@media (max-width: 980px) {
    .about-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-story {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .about-page {
        padding: 20px 0 36px;
    }

    .about-hero h1 {
        font-size: 1.45rem;
    }

    .about-summary-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}

/* PREMIUM OVERRIDES: ABOUT / SERVICES / BLOG */
.about-hero-premium {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 18px;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    background: linear-gradient(125deg, #ffffff 0%, #f8f9fb 100%);
    padding: 20px;
}

.about-hero-copy h1 {
    letter-spacing: -0.4px;
}

.about-hero-copy p {
    line-height: 1.65;
}

.about-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.about-hero-chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid #e1e4ea;
    background: #fff;
    font-size: 0.78rem;
    color: #2e2e2e;
}

.about-hero-chips i {
    color: #C00000;
}

.about-hero-panel {
    border-radius: 14px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2b2b2b 100%);
    color: #fff;
    padding: 16px;
    display: grid;
    gap: 12px;
}

.about-hero-panel strong {
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f0f0f0;
}

.about-hero-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.about-hero-panel li {
    display: grid;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    padding: 9px 10px;
}

.about-hero-panel li span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
}

.about-hero-panel li b {
    font-size: 0.86rem;
    font-weight: 600;
}

.about-hero-panel a {
    color: #fff;
    text-decoration: none;
    font-size: 0.84rem;
    font-weight: 600;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.about-kpi-grid {
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.about-kpi-grid article {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    padding: 14px;
    display: grid;
    gap: 6px;
}

.about-kpi-grid strong {
    font-size: 1.4rem;
    color: #171717;
    line-height: 1;
}

.about-kpi-grid span {
    color: #5e5e5e;
    font-size: 0.82rem;
    line-height: 1.45;
}

.about-story-premium {
    border-radius: 16px;
}

.about-values-premium {
    border-radius: 16px;
}

.about-cta-premium {
    border-radius: 16px;
    background: linear-gradient(120deg, #ffffff 0%, #f3f4f7 100%);
}

.about-cta-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-secondary {
    border: 1px solid #1f1f1f;
    color: #1f1f1f;
    text-decoration: none;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #1f1f1f;
    color: #fff;
}

.services-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.services-premium-card {
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    padding: 15px;
    display: grid;
    gap: 10px;
}

.services-premium-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.services-premium-head i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #faecec;
    color: #9a0f0f;
}

.services-premium-head h3 {
    margin: 0;
    font-size: 1.02rem;
}

.services-premium-card p {
    margin: 0;
    color: #555;
    line-height: 1.55;
    font-size: 0.9rem;
}

.services-premium-card ul {
    margin: 0;
    padding-left: 18px;
    color: #3e3e3e;
    display: grid;
    gap: 5px;
    font-size: 0.85rem;
}

.services-flow-premium {
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    padding: 16px;
    margin-bottom: 16px;
}

.services-flow-premium h2 {
    margin: 0 0 12px;
    font-size: 1.24rem;
}

.services-flow-lane {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.services-flow-lane article {
    border: 1px solid #eceff3;
    border-radius: 12px;
    padding: 12px;
}

.services-flow-lane span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #1f1f1f;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.services-flow-lane h4 {
    margin: 0 0 6px;
    font-size: 0.95rem;
}

.services-flow-lane p {
    margin: 0;
    font-size: 0.82rem;
    color: #5c5c5c;
    line-height: 1.45;
}

.services-result-panel {
    border-radius: 14px;
    border: 1px solid #e4e7ec;
    background: linear-gradient(120deg, #191919 0%, #2c2c2c 100%);
    color: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.services-result-panel h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}

.services-result-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
}

.services-result-panel .btn-secondary {
    border-color: rgba(255, 255, 255, 0.52);
    color: #fff;
}

.services-result-panel .btn-secondary:hover {
    background: #fff;
    color: #1f1f1f;
}

.blog-editorial {
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
}

.blog-highlights {
    display: grid;
    gap: 10px;
}

.blog-highlights article {
    border: 1px solid #e4e7ec;
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.blog-highlights h3 {
    margin: 6px 0 6px;
    font-size: 1rem;
    line-height: 1.3;
}

.blog-highlights p {
    margin: 0;
    color: #5e5e5e;
    font-size: 0.86rem;
    line-height: 1.5;
}

.blog-newsletter {
    margin-top: 16px;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.blog-newsletter h3 {
    margin: 0 0 6px;
    font-size: 1.08rem;
}

.blog-newsletter p {
    margin: 0;
    color: #5a5a5a;
    font-size: 0.88rem;
}

.blog-newsletter form {
    display: flex;
    gap: 8px;
    min-width: 320px;
}

.blog-newsletter input {
    flex: 1;
    min-width: 0;
    height: 40px;
    border: 1px solid #d8dbe1;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 0.88rem;
}

.blog-newsletter button {
    height: 40px;
    border: 0;
    border-radius: 10px;
    padding: 0 14px;
    background: #1f1f1f;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.blog-newsletter button:hover {
    background: #C00000;
}

@media (max-width: 1100px) {
    .about-hero-premium {
        grid-template-columns: 1fr;
    }

    .about-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-premium-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-flow-lane {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-result-panel,
    .blog-newsletter {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-editorial {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .about-hero-premium,
    .services-flow-premium,
    .services-result-panel,
    .blog-newsletter {
        padding: 12px;
        border-radius: 12px;
    }

    .about-kpi-grid,
    .services-premium-grid,
    .services-flow-lane {
        grid-template-columns: 1fr;
    }

    .blog-newsletter form {
        min-width: 0;
        width: 100%;
        flex-direction: column;
    }

    .blog-newsletter button,
    .blog-newsletter input {
        width: 100%;
    }
}

/* GLOBAL PREMIUM POLISH */
.section-header h3,
.catalog-hero h1,
.products-toolbar h1,
.blog-hero h1,
.about-hero h1 {
    letter-spacing: -0.35px;
}

.section-header h3::after,
.catalog-hero h1::after,
.products-toolbar h1::after {
    content: "";
    display: block;
    width: 62px;
    height: 3px;
    margin-top: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #C00000 0%, #f07d7d 100%);
}

.btn-primary,
.products-add-btn,
.catalog-download-btn,
.contact-btn,
.secure-submit,
.blog-newsletter button {
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary:hover,
.products-add-btn:hover,
.catalog-download-btn:hover,
.contact-btn:hover,
.secure-submit:hover,
.blog-newsletter button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.product-card,
.products-item-card,
.catalog-card,
.blog-card,
.blog-featured-card,
.about-summary-card,
.about-values-grid article,
.services-premium-card,
.services-flow-lane article,
.quick-item,
.brand-item,
.deal-content,
.contact-consult-card,
.about-kpi-grid article {
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.product-card:hover,
.products-item-card:hover,
.catalog-card:hover,
.blog-card:hover,
.blog-featured-card:hover,
.about-summary-card:hover,
.about-values-grid article:hover,
.services-premium-card:hover,
.services-flow-lane article:hover,
.quick-item:hover,
.brand-item:hover,
.deal-content:hover,
.contact-consult-card:hover,
.about-kpi-grid article:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
    border-color: #d8dde5;
}

.quick-item {
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    padding: 18px 14px;
}

.brand-item {
    border-radius: 10px;
    background: #fff;
}

.products-sidebar,
.products-item-card,
.catalog-card,
.blog-card,
.about-summary-card,
.about-values,
.services-flow-premium,
.services-result-panel,
.blog-newsletter,
.about-hero-premium,
.about-story,
.blog-featured-card,
.blog-highlights article {
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
}

.products-search input,
.products-search button,
.contact-input,
.secure-contact-form input,
.secure-contact-form textarea,
.blog-newsletter input,
.header-search-form input {
    transition: border-color .2s ease, box-shadow .2s ease;
}

.products-search input:focus,
.contact-input:focus,
.secure-contact-form input:focus,
.secure-contact-form textarea:focus,
.blog-newsletter input:focus,
.header-search-form input:focus {
    border-color: #C00000;
    box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.08);
}

.products-results-count,
.catalog-hero p,
.blog-hero p,
.about-hero p {
    color: #4c4c4c;
}

@media (max-width: 900px) {
    .quick-item {
        padding: 14px 12px;
    }

    .section-header h3::after,
    .catalog-hero h1::after,
    .products-toolbar h1::after {
        margin-top: 6px;
        width: 52px;
    }
}

/* PRODUCT DETAIL PREMIUM */
.product-detail-page {
    padding: 26px 0 44px;
    background: linear-gradient(180deg, #f6f7f9 0%, #ffffff 42%);
}

.product-detail-container {
    display: grid;
    gap: 20px;
}

.product-detail-empty {
    max-width: 720px;
    margin: 0 auto;
}

.detail-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    font-size: 0.9rem;
    color: #666;
}

.detail-breadcrumb a {
    color: #4e4e4e;
    text-decoration: none;
}

.detail-breadcrumb a:hover {
    color: #C00000;
}

.detail-breadcrumb strong {
    color: #1a1a1a;
}

.detail-shell {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) 1.1fr;
    gap: 20px;
}

.detail-gallery-card,
.detail-info-card {
    background: #ffffff;
    border: 1px solid #e8ebef;
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.06);
}

.detail-main-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eceff3;
    background: #f9fafb;
    height: clamp(300px, 40vw, 470px);
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-thumbs {
    margin-top: 12px;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(68px, 1fr));
}

.detail-thumb {
    border: 1px solid #e5e7eb;
    border-radius: 9px;
    overflow: hidden;
    height: 68px;
    background: #fbfbfb;
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info-card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.detail-info-card h1 {
    font-size: clamp(1.35rem, 1.8vw, 1.9rem);
    line-height: 1.2;
    color: #171717;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.detail-meta span {
    font-size: 0.83rem;
    color: #5b5b5b;
    border: 1px solid #eceef1;
    border-radius: 999px;
    padding: 5px 10px;
    background: #f8f9fb;
}

.detail-price-row strong {
    font-size: 2rem;
}

.detail-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.detail-stock.is-in {
    color: #0f7a3e;
}

.detail-stock.is-out {
    color: #a62020;
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px;
    font-size: 0.9rem;
    color: #424242;
}

.detail-description {
    border-top: 1px solid #eceff3;
    padding-top: 12px;
}

.detail-description h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #202020;
}

.detail-description p {
    color: #494949;
    line-height: 1.6;
}

.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-actions .products-filter-reset,
.detail-actions .products-add-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.detail-related-block {
    margin-top: 10px;
}

.detail-related-grid {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.detail-related-card {
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
    display: grid;
}

.detail-related-image {
    display: block;
    background: #f8f9fb;
    border-bottom: 1px solid #eceff3;
    aspect-ratio: 4 / 3;
}

.detail-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-related-body {
    padding: 12px;
    display: grid;
    gap: 7px;
}

.detail-related-body h4 {
    font-size: 0.95rem;
    line-height: 1.3;
}

.detail-related-body h4 a {
    color: #1d1d1d;
    text-decoration: none;
}

.detail-related-body h4 a:hover {
    color: #C00000;
}

.detail-section-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-rail-controls {
    display: none;
    align-items: center;
    gap: 6px;
}

.detail-rail-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #dfe3ea;
    border-radius: 999px;
    background: #fff;
    color: #2a2a2a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

.detail-rail-btn:hover {
    border-color: #C00000;
    color: #C00000;
    transform: translateY(-1px);
}

@media (max-width: 1180px) {
    .detail-shell {
        grid-template-columns: 1fr;
    }

    .detail-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .product-detail-page {
        padding-top: 18px;
    }

    .detail-mobile-rail .detail-related-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .detail-mobile-rail .detail-related-grid::-webkit-scrollbar {
        display: none;
    }

    .detail-mobile-rail .detail-related-card {
        flex: 0 0 min(82vw, 340px);
        scroll-snap-align: start;
    }

    .detail-rail-controls {
        display: none;
    }

    .detail-main-image {
        height: 300px;
    }
}

@media (max-width: 560px) {
    .detail-mobile-rail .detail-related-card {
        flex-basis: 86vw;
    }

    .section-header {
        gap: 10px;
        align-items: flex-start;
    }

    .detail-section-actions {
        width: 100%;
        justify-content: space-between;
    }

    .detail-actions .products-filter-reset,
    .detail-actions .products-add-btn {
        width: 100%;
    }

    .detail-gallery-card,
    .detail-info-card {
        padding: 14px;
        border-radius: 12px;
    }
}

/* CART PAGE */
.cart-page {
    padding: 28px 0 44px;
    background: #ffffff;
}

.cart-page-header {
    display: grid;
    gap: 10px;
}

.cart-page-header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.cart-page-header h1 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    color: #191919;
    margin: 0;
}

.cart-page-header h1 span {
    font-size: 1.05rem;
    font-weight: 500;
    color: #5f5f5f;
}

.cart-page-header p {
    margin: 0;
    color: #5a5a5a;
}

.cart-share-btn {
    border: 1px solid #cfd4dc;
    background: #fff;
    color: #2f2f2f;
    border-radius: 999px;
    min-height: 38px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
}

.cart-share-btn:hover {
    background: #f6f8fb;
}

.cart-shipping-alert {
    min-height: 48px;
    border: 1px solid #e2e6ec;
    border-radius: 10px;
    background: #eef2f7;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    color: #2d3a4d;
}

.cart-shipping-alert i {
    font-size: 1rem;
    color: #5f6d81;
}

.cart-shipping-alert p {
    margin: 0;
    font-size: .92rem;
}

.cart-shipping-alert a {
    color: #1d4f93;
    text-decoration: none;
}

.cart-layout {
    margin-top: 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 18px;
}

.cart-items-shell,
.cart-summary-shell {
    background: #fff;
    border: 1px solid #e1e4ea;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
}

.cart-items-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.cart-items-head h2,
.cart-summary-shell h2 {
    font-size: 1.12rem;
    color: #252525;
    margin: 0;
}

.cart-clear-btn,
.cart-remove-btn {
    border: 1px solid #dedede;
    background: #fff;
    color: #444;
    border-radius: 8px;
    padding: 7px 10px;
    cursor: pointer;
}

.cart-clear-btn:hover,
.cart-remove-btn:hover {
    border-color: #1f1f1f;
    color: #1f1f1f;
}

.cart-items-list {
    display: grid;
    gap: 10px;
}

.cart-item {
    border: 1px solid #e5e8ee;
    border-radius: 12px;
    padding: 12px;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
}

.cart-item-image {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    overflow: hidden;
    background: #f2f2f2;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-body h3 {
    font-size: 1rem;
    color: #1e1e1e;
    margin: 0 0 6px;
    line-height: 1.3;
}

.cart-item-meta {
    margin: 0 0 4px;
    color: #5a5a5a;
    font-size: 0.86rem;
}

.cart-item-qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    margin-top: 10px;
    border: 1px solid #d9dee7;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
}

.cart-qty-btn {
    width: 38px;
    height: 34px;
    border: 0;
    border-right: 1px solid #e3e7ee;
    background: #fff;
    cursor: pointer;
    font-size: 1rem;
}

.cart-qty-input {
    width: 52px;
    height: 34px;
    border: 0;
    text-align: center;
    font-weight: 600;
}

.cart-item-qty .cart-qty-btn:last-child {
    border-right: 0;
    border-left: 1px solid #e3e7ee;
}

.cart-item-right {
    display: grid;
    gap: 10px;
    justify-items: end;
    min-width: 94px;
}

.cart-item-total {
    color: #1b1b1b;
    font-size: 1.8rem;
    line-height: 1;
}

.cart-summary-shell {
    align-self: start;
    position: sticky;
    top: 100px;
    display: grid;
    gap: 12px;
}

.cart-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #3f3f3f;
    font-size: 1rem;
}

.cart-summary-total-line {
    margin-top: 2px;
    padding-top: 12px;
    border-top: 1px solid #e6e6e6;
    font-size: 1.12rem;
}

.cart-summary-total-line strong {
    font-size: 1.85rem;
    line-height: 1;
}

.cart-summary-note {
    font-size: 0.86rem;
    color: #575757;
    line-height: 1.45;
}

.cart-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #5a5a5a;
    font-size: .9rem;
}

.cart-consent input {
    margin-top: 2px;
}

.cart-order-btn {
    width: 100%;
    gap: 8px;
    min-height: 46px;
    border-radius: 999px;
    background: #e1251b;
    border-color: #e1251b;
}

.cart-order-btn i {
    font-size: 1.08rem;
}

.cart-continue-link {
    width: 100%;
    justify-content: center;
    text-decoration: none;
}

.cart-empty {
    border: 1px dashed #dbe1eb;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    display: grid;
    gap: 8px;
    justify-items: center;
}

.cart-empty[hidden],
.cart-items-list[hidden] {
    display: none !important;
}

.cart-empty i {
    font-size: 1.5rem;
    color: #c4c9d2;
}

.cart-error {
    border: 1px solid #f0cccc;
    background: #fff5f5;
    color: #7b1f1f;
    border-radius: 10px;
    padding: 12px;
}

@media (max-width: 980px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary-shell {
        position: static;
    }
}

@media (max-width: 640px) {
    .cart-page {
        padding: 22px 0 34px;
    }

    .cart-page-header-main {
        align-items: flex-start;
    }

    .cart-share-btn {
        width: 100%;
        justify-content: center;
    }

    .cart-shipping-alert {
        align-items: flex-start;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cart-item-image {
        width: 100%;
        height: 170px;
    }

    .cart-item-right {
        justify-items: start;
    }

    .cart-summary-total-line strong {
        font-size: 1.55rem;
    }
}

.tech-blog-page {
    padding: 42px 0 62px;
    background: #f7f8fb;
}

.tech-blog-hero {
    margin-bottom: 24px;
}

.tech-blog-kicker {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fdecef;
    color: #a81f33;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.tech-blog-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(1.55rem, 2.4vw, 2.2rem);
    line-height: 1.2;
    color: #1f1f1f;
}

.tech-blog-hero p {
    margin: 0;
    color: #5a5a5a;
    max-width: 860px;
}

.tech-blog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.tech-blog-toolbar {
    display: none;
    margin: 0 0 12px;
}

.tech-blog-categories-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid #dfc8cf;
    background: #ffffff;
    color: #7f1f2f;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
}

.tech-blog-sidebar-head {
    display: block;
}

.tech-blog-sidebar-close {
    display: none;
}

.tech-blog-sidebar {
    position: sticky;
    top: 98px;
    border: 1px solid #e7e8ef;
    border-radius: 12px;
    background: #fff;
    padding: 12px;
}

.tech-blog-sidebar h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #1f1f1f;
}

.tech-blog-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.tech-blog-sidebar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid transparent;
    color: #41444b;
    text-decoration: none;
    font-size: .88rem;
}

.tech-blog-sidebar a:hover,
.tech-blog-sidebar a.is-active {
    background: #fff3f6;
    border-color: #f0d6dd;
    color: #8e1528;
}

.tech-blog-sidebar a span {
    font-size: .78rem;
    color: #7a7f89;
}

.tech-blog-content {
    min-width: 0;
}

.tech-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.tech-blog-card {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    border: 1px solid transparent;
    border-radius: 14px;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tech-blog-card:hover,
.tech-blog-card:focus-within,
.tech-blog-card:active {
    background: #ffffff;
    border-color: #e7e8ef;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.tech-blog-thumb {
    display: block;
    height: 200px;
    background: #efefef;
    border: 1px solid #e7e8ef;
    border-radius: 12px;
    overflow: hidden;
}

.tech-blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tech-blog-body {
    padding: 12px 14px;
    display: grid;
    align-content: center;
    min-width: 0;
    width: 100%;
    text-align: left;
}

.tech-blog-machine {
    margin: 0 0 6px;
    color: #a81f33;
    font-size: .8rem;
    font-weight: 600;
}

.tech-blog-body h2 {
    margin: 0 0 8px;
    font-size: 1rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tech-blog-body h2 a {
    color: #1f1f1f;
    text-decoration: none;
}

.tech-blog-body h2 a:hover {
    color: #9d132a;
}

.tech-blog-part {
    margin: 0 0 8px;
    color: #585b63;
    font-size: .84rem;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tech-blog-summary {
    margin: 0 0 12px;
    color: #4e5058;
    font-size: .88rem;
    line-height: 1.48;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tech-blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: .82rem;
    color: #747984;
    width: 100%;
    min-width: 0;
}

.tech-blog-meta span,
.tech-blog-meta a,
.tech-blog-machine {
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: left;
}

.tech-blog-meta a {
    color: #9d132a;
    text-decoration: none;
    font-weight: 600;
}

.tech-blog-empty {
    background: #fff;
    border: 1px solid #e5e7ef;
    border-radius: 12px;
    padding: 18px;
    color: #4e5560;
    margin-bottom: 20px;
}

.tech-blog-empty h1 {
    margin: 0 0 10px;
    color: #1f1f1f;
}

.tech-blog-empty a {
    color: #9d132a;
    text-decoration: none;
    font-weight: 600;
}

.tech-blog-cta {
    margin-top: 22px;
    padding: 16px;
    border: 1px solid #ead6db;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff 0%, #fff5f7 100%);
}

.tech-blog-cta h3 {
    margin: 0 0 6px;
    color: #1f1f1f;
}

.tech-blog-cta p {
    margin: 0 0 12px;
    color: #5d5f67;
}

.tech-blog-cta a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #a81f33;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.tech-blog-sidebar-overlay {
    display: none;
}

.tech-blog-detail-page {
    background: #ffffff;
    padding: 42px 0 62px;
}

.tech-blog-detail {
    display: grid;
    gap: 18px;
}

.tech-blog-detail-hero {
    display: block;
    padding: 0 0 14px;
    border-bottom: 1px solid #eceff4;
}

.tech-blog-detail-copy {
    min-width: 0;
    display: flow-root;
}

.tech-blog-detail-image-float {
    float: none;
    width: min(300px, 100%);
    max-width: 300px;
    margin: 0 auto 16px;
    border-radius: 12px;
    overflow: hidden;
    background: #efefef;
    border: 1px solid #e8e9f0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    display: block;
}

.tech-blog-detail-image-float img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
    background: #f3f3f3;
}

.tech-blog-detail-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 2.2vw, 2.1rem);
    line-height: 1.2;
    color: #1f1f1f;
}

.tech-blog-detail-summary {
    margin: 0 0 12px;
    color: #4e525b;
    line-height: 1.6;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tech-blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f3f5f9;
    color: #4a4e56;
    font-size: .82rem;
}

.tech-blog-section {
    padding: 12px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.tech-blog-section h2 {
    margin: 0 0 8px;
    font-size: 1.15rem;
    color: #1f1f1f;
}

.tech-blog-section-content {
    color: #4c4f58;
    line-height: 1.67;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: pre-wrap;
}

.tech-blog-section-content p {
    margin: 0 0 10px;
}

.tech-blog-section-content a,
.tech-blog-section-content span,
.tech-blog-section-content strong,
.tech-blog-section-content em {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.tech-blog-detail-footer {
    padding-top: 6px;
}

.tech-blog-detail-footer a {
    color: #9d132a;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 980px) {
    .tech-blog-toolbar {
        display: flex;
    }

    .tech-blog-layout {
        grid-template-columns: 1fr;
    }

    .tech-blog-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: min(340px, 90vw);
        height: 100vh;
        border-radius: 0;
        border: 0;
        z-index: 1510;
        box-shadow: 0 10px 34px rgba(0,0,0,0.18);
        transform: translateX(-102%);
        transition: transform 0.24s ease;
        overflow-y: auto;
        padding-top: 10px;
        top: 0;
    }

    .tech-blog-sidebar-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-bottom: 1px solid #ececec;
        padding: 0 4px 12px;
        margin-bottom: 10px;
    }

    .tech-blog-sidebar-head h3 {
        margin: 0;
    }

    .tech-blog-sidebar-close {
        display: inline-flex;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #dbdde4;
        background: #ffffff;
        color: #3a3d46;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .tech-blog-sidebar-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.42);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        z-index: 1500;
        transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .tech-blog-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .tech-blog-thumb {
        height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px;
        background: #f3f3f3;
    }

    .tech-blog-thumb img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
    }

    .tech-blog-detail-image-float {
        width: min(300px, 100%);
        max-width: 300px;
        float: none;
        margin: 0 auto 14px;
    }

    body.tech-blog-categories-open {
        overflow: hidden;
    }

    body.tech-blog-categories-open .tech-blog-sidebar {
        transform: translateX(0);
    }

    body.tech-blog-categories-open .tech-blog-sidebar-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

@media (max-width: 640px) {
    .tech-blog-page,
    .tech-blog-detail-page {
        padding-top: 26px;
        padding-bottom: 36px;
        overflow-x: hidden;
    }

    .tech-blog-page .container,
    .tech-blog-detail-page .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .tech-blog-sidebar {
        padding: 10px;
    }

    .tech-blog-sidebar ul {
        gap: 5px;
    }

    .tech-blog-sidebar a {
        min-height: 32px;
        font-size: .84rem;
        padding: 0 8px;
    }

    .tech-blog-card {
        grid-template-columns: 1fr;
        padding: 10px 10px 12px;
        gap: 8px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .tech-blog-thumb {
        width: 100%;
        max-width: none;
        margin: 0;
        height: 190px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        background: #f3f3f3;
    }

    .tech-blog-thumb img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        object-position: center;
        display: block;
    }

    .tech-blog-detail-image-float {
        float: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 14px;
        border-radius: 12px;
        overflow: hidden;
        display: block;
    }

    .tech-blog-detail-image-float img {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
        display: block;
        background: #f3f3f3;
    }

    .tech-blog-body,
    .tech-blog-section,
    .tech-blog-detail-hero {
        padding: 10px 12px;
        min-width: 0;
        max-width: 100%;
    }

    .tech-blog-body {
        gap: 6px;
    }

    .tech-blog-body h2,
    .tech-blog-part,
    .tech-blog-summary,
    .tech-blog-machine,
    .tech-blog-meta,
    .tech-blog-meta span,
    .tech-blog-meta a {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        text-align: left;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .tech-blog-content {
        padding: 0 4px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
    }

    .tech-blog-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .tech-blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}
