body{
    padding: 0;
    margin: 0;
    color: var(--color-text);
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

*{
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent)  #fff ;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

a{
    text-decoration: none;
}

:root {
    --color-primary: #0b3c5d;
    --color-secondary: #f5b700;
    --color-accent: #1e40af;
    --color-text: #001f51;
    --color-menu-item: #001f51;
    --color-text-muted: #6b7280;
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fb;
    --color-border: #e5e7eb;

    --color-success: #16a34a;
    --color-warning: #f59e0b;
    --color-error: #dc2626;

    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,.1);

    --transition-base: 0.2s ease-in-out;

    --wrap-width: 1280px;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
    border-radius: 999px;
    border: 2px solid var(--color-bg-light);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-accent);
}

.btn{
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: background-color var(--transition-base), color var(--transition-base);
}

.btn:hover{
    filter: brightness(0.92);
}

.container{
    max-width: var(--wrap-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header{
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px; */
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}   

#mega-menu-wrap-header_menu {
    max-width: 100% !important; 
}

.site-header .header-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 40px;
}
.site-header .logo img{
    max-width: 200px;
}

.header-container .box{
    display: flex;
    align-items: center;
    gap: 40px;
}

/* .site-header .site-navigation ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
} */

.mega-menu-link {
    text-decoration: none;
    color: var(--color-menu-item);
    font-weight: 500;
    transition: color 0.3s ease;
}


/* .hero-slider{
    margin-top: 80px;
} */

.hero-slider .hero-slide {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero-slider .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(30, 39, 73, 0.95) 0%,
        rgba(30, 39, 73, 0.55) 40%,
        rgba(30, 39, 73, 0.2) 100%
    );
    height: 100%;
}

.hero-slider .hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-slider .hero-content {
    max-width: 38%;
    padding: 0  0 0 50px;
}

.hero-slider .hero-content h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-slider .hero-content p {
    opacity: 0.9;
    margin-bottom: 32px;
    font-size: 14px;
}

.hero-slider .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .btn-primary {
    background: #ffc400;
    color: #000;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    width: fit-content;
    text-decoration: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    width: 20px !important;
    height: 20px !important;
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,.4);
}
.swiper-pagination-bullet-active {
    background: #ffc400 !important;
}

.why-us {
    padding: 120px 20px;
    background: radial-gradient(circle, #195db1, #001f51);
    color: #fff;
}

.why-us .container {
    text-align: center;
}

.why-us-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0.8;
}

.why-us-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.why-us-text {
    max-width: 780px;
    margin: 0 auto 80px;
    font-size: 16px;
    opacity: 0.9;
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: center;
}

.why-us-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-us-card {
    background-color: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(50px);
    border-radius: 20px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.why-us-card img{
    width: 65px;
    margin-right: 10px;
}

.why-us-card h3 {
    font-size: 16px;
    margin: 0;
}

.why-us-card p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.85;
    margin: 5px 0 0 0;
}


/* .why-us-icon {
    display: inline-flex;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 1px solid #f5c542;
    color: #f5c542;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}  */

.why-us-center img {
    max-width: 330px;
    width: 100%;
    height: auto;
}

.global-network{
    text-align: center;
    padding: 80px 0;
}

.global-network-title{
    font-size: 38px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.global-network-image img{
    max-width: 100%;
    height: auto;
    margin: 70px 0 0 0;
}

.what-we-aim {
    padding: 50px 0 80px 0;
    background: #ffffff;
}

.what-we-aim-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 64px;
    letter-spacing: 1px;
}

.what-we-aim-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.aim-card {
    padding: 40px 20px 30px 20px;
    text-align: left;
    border-right: 1px solid #e5e7eb;
}

.aim-card:last-child {
    border-right: none;
}

.aim-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.aim-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
}

.aim-icon {
    width: 100px;
    height: 100px;
    color: #2563eb;
    margin-bottom: 20px;
}

.aim-icon svg {
    width: 100%;
    height: 100%;
}

.site-footer {
    background: linear-gradient(180deg, #041f4a 0%, #083b7a 100%);
    color: #ffffff;
    padding: 50px 0 10px 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-title {
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-address {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 48px;
}

.footer-address p{
    margin: 0;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.footer-contact a{
    color: #fff;
}

.footer-contact a:hover{
    opacity: 0.8;
}

.footer-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-btn {
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.footer-btn-outline {
    background: #ffffff;
    color: #0a3d80;
    font-weight: 600;
}

.footer-certificates {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.9;
}

.cert-placeholder img{
    width: 100%;
}

.cert-placeholder img:hover{
    opacity: 0.7;
}

.footer-bottom {
    font-size: 13px;
    opacity: 0.7;
    display: inline-block;
}

.footer-bottom > .link-box{
    margin: 0 0 30px 0;
}

.footer-bottom > .link-box > a{
    color: #fff;
    padding: 5px 10px;
    background: #052854;
    border-radius: 25px;
    display: inline-block;
    margin: 10px;
}

.footer-bottom > .link-box > a:hover{
    opacity: 0.5;
}

.footer-bottom > .developer{
    color: #fff;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    transition: 0.3s;
}

.footer-bottom > .developer:hover{
    opacity: 0.5;
}

.footer-bottom > .developer img{
    width: 100%;
    max-width: 18px;
}

.catalog-page {
    padding: 40px 20px 80px;
    background: #ffffff;
}

.catalog-container {
    max-width: 1280px;
    margin: 0 auto;
}

.catalog-breadcrumbs {
    font-size: 13px;
    margin-bottom: 32px;
    color: #6b7280;
}

.catalog-breadcrumbs a {
    color: #1e40af;
    text-decoration: none;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.catalog-sidebar {
    border-right: 1px solid #e5e7eb;
    padding-right: 15px;
}

.sidebar-title {
    font-size: 16px;
    margin-bottom: 16px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu > li {
    margin-bottom: 12px;
}

.sidebar-menu .has-children > span {
    font-weight: 600;
    cursor: pointer;
}

.sidebar-menu ul {
    margin-top: 8px;
    padding-left: 16px;
}

.sidebar-menu li a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: #111827;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.sidebar-menu li.active > a {
    background: #1e5bb8;
    color: #fff;
    border-left-color: #1e40af;
}

.catalog-title {
    font-size: 28px;
    margin-bottom: 32px;
}

.product-card {
    display: grid;
    grid-template-columns: 35% 1fr;
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 32px;
}

.product-card a{
    color: var(--color-text);
}

.product-card a:hover{
    color: var(--color-text-muted);
}

.products-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.products-grid > .product-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    margin-bottom: 32px;
}

.products-grid > .product-card a{
    color: var(--color-text);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.products-grid > .product-card img{
    transition: 0.3s;
}

.products-grid > .product-card img:hover{
    transform: translateY(-6px);
}

.product-image img {
    width: 100%;
    height: auto;
    transition: transform .3s ease, box-shadow .3s ease;
}

.product-image img:hover{
    transform: translateY(-6px);
}

.product-image h2 {
    font-size: 24px;
    margin: 15px 0 20px 0;
}

.product-info .product-excerpt p{
    color: #565656;
}

.al-pdf-icon{
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.product-image h2 a {
    color: var(--color-text);
}   

.product-badges {
    display: flex;
    gap: 5px;
    margin: 10px 0 20px 0;
}

/* .product-badges span {
    border: 1px solid #1e40af;
    color: #1e40af;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
} */

.product-actions {
    margin-top: 24px;
    display: flex;
    gap: 16px;
}

.product-meta a {
    color: var(--color-accent);
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 5px 0;
}

.product-meta .product-series-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}  

.product-actions .btn {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
}

.product-actions .btn-primary {
    background: #fedb89;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product-actions .btn-outline {
    border: 1px solid #d1d5db;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.product-single-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 10px;
    padding: 50px 0;
}

.product-single-image img {
    max-width: 100%;
    height: auto;
}

.product-single-image .sticky{
    position: sticky;
    top: 30px;
}

.product-docs {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.product-docs .btn{
    text-align: center;
    flex-direction: row;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-radius: 5px;
    width: 60%;
    margin-bottom: 15px;
    background-color: #001f51;
    color: #fff;;
}

.product-docs .btn img{
    width: 30px;
    height: 30px;
    margin-right: 7px;
}

.product-badges span {
    border: 1px solid #1e40af;
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 8px;
}

/*Скрываем текст и отображаем по кнопке*/
/* .product-description-wrapper {
    position: relative;
}

.product-description {
    max-height: 180px;
    transition: max-height 0.4s ease;
    overflow: hidden;
} */

.product-description.is-open {
    max-height: 2000px;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    cursor: pointer;
    color: var(--color-primary);
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.product-breadcrumbs{
    margin-bottom: 24px;
    /* margin-top: 80px; */
    background-color: #001f51;
    padding: 20px;
    color: #fff;
}

.product-breadcrumbs a{
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.product-safety-buttons a{
    background-color: #f1f1f1;
    color: #444;
    font-weight: normal;
    border-bottom: 1px solid #ccc;
    margin: 0 0 5px 0;
}

.product-safety h4{
    margin: 20px 0 10px 0;
    color: #666;
}

.product-short-description{
    width: 100%;
    margin-top: 50px;
}

.product-short-description ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    list-style: none;
    padding-left: 0;
    gap: 8px 32px;
}

.product-short-description ul li{
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.product-short-description ul li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 20px;
    background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23195db1%22%20d%3D%22M5.48%2010.089l1.583-1.464c1.854.896%203.028%201.578%205.11%203.063%203.916-4.442%206.503-6.696%2011.311-9.688l.516%201.186c-3.965%203.46-6.87%207.314-11.051%2014.814-2.579-3.038-4.301-4.974-7.469-7.911zm14.407.557c.067.443.113.893.113%201.354%200%204.962-4.038%209-9%209s-9-4.038-9-9%204.038-9%209-9c1.971%200%203.79.644%205.274%201.723.521-.446%201.052-.881%201.6-1.303-1.884-1.511-4.271-2.42-6.874-2.42-6.075%200-11%204.925-11%2011s4.925%2011%2011%2011%2011-4.925%2011-11c0-1.179-.19-2.313-.534-3.378-.528.633-1.052%201.305-1.579%202.024z%22%2F%3E%3C%2Fsvg%3E);
    background-size: cover;
    transform: translateY(-50%);
    margin-top: 1px;
}

.excerpt-more {
    color: #1f4ed8;
    font-weight: 500;
    font-size: 12px;
    text-decoration: none;
}

.excerpt-more:hover {
    opacity: 0.7;
}

.category-accordion {
    list-style: none;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 30px
}

.category-item {
    border-bottom: 1px solid #e6e6e6;
}

.category-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 500;
    color: #001634;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left; 
    cursor: pointer;
}

.category-toggle span {
    text-align: left;
}

.category-toggle .arrow {
    transition: transform .25s ease;
}

.category-item.open .arrow {
    transform: rotate(180deg);
}

.category-children {
    list-style: none;
    margin: 0 0 10px;
    padding-left: 0;
    border-left: 2px solid #1f4ed8;
    display: none;
}

.category-item.open .category-children {
    display: block;
}

.category-children li a {
    display: block;
    padding: 15px;
    font-size: 14px;
    color: #001634;
    text-decoration: none;
    text-align: left;
}

.category-children li a:hover {
    color: #1f4ed8;
}

.category-children li.active a {
    background: #1f4ed8;
    color: #fff;
    font-weight: 600;
    border-radius: 0 5px 5px 0;
}

.category-hero,
.page-hero {
    /* margin-top: 80px; */
    position: relative;
    background-color: #083b7a;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    /* min-height: 300px; */
    display: flex;
    align-items: center;
    color: #fff;
}

.category-hero-content,
.page-hero-content{
    padding: 50px 0;
}

.category-hero::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 10, 30, 0.85),
        rgba(0, 10, 30, 0.3)
    );
}

.category-hero .container,
.page-hero .container  {
    position: relative;
    z-index: 2;
}

.category-hero h1,
.page-hero h1 {
    font-size: 42px;
    margin: 10px 0;
}

.category-hero p,
.page-hero p {
    font-size: 16px;
}

.technical-tabs {
    margin: 60px 0;
}

.technical-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    border-bottom: 2px solid #08203f;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tech-tab {
    background: transparent;
    border: none;
    padding: 18px 28px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    color: #08203f;
    cursor: pointer;
    position: relative;
}

.tech-tab.active {
    background: rgb(11, 44, 93);
    color: #fff;
    border-radius: 4px 4px 0 0;
}

.tech-tab:hover:not(.active) {
    background: rgba(8,32,63,.06);
}

.tech-tab-panel {
    display: none;
    animation: fadeIn .25s ease;
}

.tech-tab-panel.active {
    display: block;
}

.tech-tab-panel h2 {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 700;
    color: #08203f;
}

@keyframes fadeIn {
    from {opacity: 0; transform: translateY(8px);}
    to {opacity: 1; transform: translateY(0);}
}

.about-section {
    padding: 80px 0;
}

.about-page .about-light {
    background: var(--color-bg-light);
}

.about-page .about-dark {
    background: #001f51;
    color: #fff;
}

.about-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--color-text);
    text-align: center;
    margin: 0 0 18px 0;
}

.about-section .title {
    text-align: left;
}

.about-section p {
    font-size: 15px;
    margin-bottom: 16px;
    color: #374151;
}

.about-page .about-dark p {
    color: rgba(255,255,255,.9);
}

.about-page .about-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-page .about-grid-2 img {
    width: 100%;
    height: auto;
    border-radius: 14px;
}

.about-page .about-text-wide {
    margin-top: 30px;
    max-width: 900px;
}

.about-page .about-text-wide p {
    font-size: 15px;
}

.about-page .about-gallery {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.about-page .about-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity .2s ease;
}

.about-page .about-gallery img:hover {
    opacity: .85;
}

.about-page .about-values p strong {
    font-weight: 700;
}

.about-page .about-iso {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
}

.about-page .about-iso p {
    font-size: 22px;
    max-width: 600px;
}

.about-page .about-iso-logos {
    display: flex;
    gap: 30px;
}

.about-page .about-iso-logos img {
    max-width: 180px;
}

.about-section .about-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    text-align: center;
}

.about-section .about-icons h3 {
    margin-bottom: 14px;
}

.about-page .about-goal {
    text-align: center;
    font-size: 16px;
    margin-bottom: 30px;
}

.about-page .about-focus {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-page .about-focus span {
    padding: 12px 28px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--color-border);
    font-weight: 600;
    font-size: 14px;
    box-shadow: var(--shadow-sm);
}

.about-page .about-repsol h3 {
    font-size: 20px;
    line-height: 1.4;
}

.about-page .about-dark h3 {
    color: #fff;
}

.about-page .about-dark ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-page .about-dark ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 15px;
}

.about-page .about-dark ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #ffc400;
}

.about-page .about-cert > div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-page .about-cert {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: center;
}

.about-page .about-cert img {
    max-width: 350px;
    margin-bottom: 16px;
}

.about-page .about-cert p {
    font-size: 18px;
    font-weight: 600;
    max-width: 500px;
    margin: 0;
}

.about-page .about-oem {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-page .about-oem img {
    max-height: 120px;
    opacity: .85;
    transition: opacity .2s ease;
}

.about-page .about-oem img:hover {
    opacity: 1;
}

.about-services-block {
    max-width: 1280px;
    margin: 100px auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-services-inner {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 420px;
}

.about-services-left {
    background: linear-gradient(
        180deg,
        #041f4a 0%,
        #072b63 100%
    );
    color: #ffffff;
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-services-left h2 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.about-services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.about-services-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: var(--color-secondary);
}

.about-services-list li {
    padding-left: 30px;
    margin-bottom: 22px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.about-services-list li:last-child {
    margin-bottom: 0;
}

.about-services-right {
    position: relative;
    overflow: hidden;
    background: url(/wp-content/uploads/2025/12/freepik_44614812ss-min.jpg);
    background-size: cover;
    background-position: center top;
    min-height: 450px;
    background-repeat: no-repeat;
}

.lobp-capacity {
    padding: 20px 0 90px 0;
    background: #ffffff;
}

.lobp-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.lobp-title {
    font-size: 26px;
    line-height: 1.45;
    font-weight: 500;
    color: #001634;
    max-width: 900px;
    margin: 0 auto 60px;
}

.lobp-title span {
    color: #1f6fe5;
    font-weight: 700;
}

.lobp-circles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.lobp-circle {
    width: 150px;
    height: 150px;
    border: 2px solid #6ea4ff;
    border-radius: 50%;
    margin-left: -20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    z-index: 1;
}

.lobp-circle:first-child {
    margin-left: 0;
}

.lobp-circle strong {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    color: #001634;
}

.lobp-circle span {
    font-size: 14px;
    margin-top: 6px;
    color: #001634;
}

.lobp-text {
    max-width: 850px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
    color: #001634;
}

.additives-section {
    padding: 20px 0;
    background: var(--color-bg);
}

.additives-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 50px;
    color: var(--color-primary);
}

.additives-table {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.additives-row {
    display: grid;
    grid-template-columns: 35% 65%;
    background: #f5f5f5;
    border-radius: 4px;
    padding: 22px 26px;
}

.additives-head {
    background: rgb(11, 44, 93);
    border-bottom: 2px solid var(--color-primary);
    padding: 20px 26px;
}

.additives-head .additives-col {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.additives-col {
    font-size: 14px;
    line-height: 1.55;
    color: var(--color-text);
}

.additives-type {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
}

.additives-purpose {
    font-weight: 400;
}

.eolcs-section {
    padding: 50px 30px;
    background: #f5f5f5;
    border-radius: 10px;
}

.eolcs-container {
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    
}

.eolcs-main-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.eolcs-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.eolcs-block {
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
}

.eolcs-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
}

.eolcs-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
    color: #374151;
}

.eolcs-grid {
    display: grid;
    gap: 40px;
}

.eolcs-grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-top: 40px;
}

.eolcs-image {
    text-align: center;
}

.eolcs-image img {
    max-width: 260px;
    width: 100%;
}

.eolcs-content {
    font-size: 14px;
}

.eolcs-list {
    padding-left: 18px;
    font-size: 14px;
}

.eolcs-list li {
    margin-bottom: 10px;
}

.eolcs-caption {
    margin-top: 10px;
    font-size: 13px;
    color: #6b7280;
}

.eolcs-note {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 5px;
    background: #0b2c5d;
    color: #fff;
    font-size: 13px;
    text-align: center;
}

.lubricants-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
}

.lubricants-main-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 30px;
}

.lubricants-header {
    background: #0b2c5d;
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
}

.lubricants-header-dark {
    margin-top: 50px;
}

.lubricants-intro {
    padding: 18px 22px;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
}

.lubricants-table {
    display: flex;
    flex-direction: column;
}

.lubricants-row {
    display: grid;
    grid-template-columns: 32% 68%;
    border-bottom: 1px solid #e5e7eb;
}

.lubricants-row:nth-child(odd) {
    background: #f9fafb;
}

.lubricants-term {
    padding: 18px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #0b2c5d;
    display: flex;
    align-items: center;
}

.lubricants-term span {
    font-weight: 400;
    font-size: 12px;
    text-transform: none;
}

.lubricants-desc {
    padding: 18px 20px;
    font-size: 13px;
    line-height: 1.6;
    color: #374151;
}

.lubricants-desc ul {
    margin: 0;
    padding-left: 16px;
}

.lubricants-desc li {
    margin-bottom: 6px;
}

.api-class-container img{
    width: 100%;
}

.api-class-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}

.api-class-subtitle {
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 40px;
}

.api-class-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.api-class-box {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.api-dark {
  background: #0b2c5d;
  color: #fff;
  border-radius: 10px;
}

.api-class-box h3 {
  margin-bottom: 12px;
  font-size: 16px;
}

.api-class-box p {
  font-size: 13px;
  line-height: 1.6;
}

.api-class-circles {
  display: flex;
  gap: 16px;
  margin: 16px 0;
}

.api-class-circles strong{
    font-size: 25px;
}

.circle {
  border: 2px solid #0b2c5d;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
}

.api-class-note {
  font-size: 12px;
}

.api-class-band {
  margin: 50px 0 20px;
  background: #0b2c5d;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  border-radius: 5px;
}

.api-class-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.api-class-table th,
.api-class-table td {
  border: 1px solid #e5e7eb;
  padding: 12px;
  font-size: 12px;
  vertical-align: top;
}

.api-class-table th {
  background: #f9fafb;
  text-transform: uppercase;
}

.tech-title-main {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 50px;
}

.tech-title {
  font-size: 18px;
  font-weight: 600;
  margin: 40px 0 10px;
}

.tech-separator {
  width: 60px;
  height: 3px;
  background: #f5b400;
  margin-bottom: 20px;
}

.tech-table-wrap {
  overflow-x: auto;
}

.tech-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  border: 1px solid #08203f;
}

.tech-table th,
.tech-table td {
  border: 1px solid #e5e5e5;
  padding: 8px 10px;
  font-size: 13px;
  text-align: center;
  vertical-align: middle;
}

.tech-table th {
  background: rgb(255 196 0 / 8%);
  color: #333;
  font-weight: 600;
}

.tech-note {
  font-size: 12px;
  margin-top: 10px;
}

.tech-note-box {
  background: #08203f;
  color: #fff;
  font-size: 12px;
  padding: 14px 16px;
  margin: 15px 0;
  border-radius: 10px;
}

.page-content{
    padding: 50px 0;
}

.contact-box{
    display: flex;
    flex-wrap: wrap;
    align-items: stretch
    gap: 20px;
}

.contact-box > .contact-item{
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    min-height: 205px;
    border: 1px solid #e5e5e5;
	margin-right: 15px;
}

.contact-box > .contact-item:last-child{
	margin: 0;
}

.contact-box > .contact-item hr{
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 16px 0;
}

.contact-box > .contact-item h1{
 font-size: 24px;
}

.contact-box > .contact-item h3{
    margin: 10px 0 5px 0;
    color: #464646;
	font-size: 16px;
}

.contact-box > .contact-item i{
    margin: 0 0 10px 0;
    color: #777;
}

.contact-box > .contact-item a{
    text-decoration: none;
    color: #444;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.contact-box > .contact-item a > svg{
    margin-right: 5px;
}

.partner-card {
    /* background: #fff; */
    border-radius: 12px;
    padding: 20px;
    /* margin-bottom: 16px; */
    border: 1px solid #e5e5e5;
    /* box-shadow: 0 6px 18px rgba(0,0,0,.06); */
}

.partner-card hr{
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 16px 0;
}

.partner-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.partner-row {
    /* display: flex;
    align-items: center; */
    gap: 10px;
    color: #444;
    margin: 0;
}

.partner-row p {
    margin: 0;
    font-size: 14px;
}

.partner-row a {
    color: inherit;
    text-decoration: none;
    padding: 5px 0;
    display: inline-block;
    font-size: 14px;
}

.partner-row ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.partner-row ul li{
    margin-bottom: 6px;
    font-size: 14px;
}

.container-partners{
    margin: 20px 0 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

#search-partners{
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    margin: 50px 0 0 0;
    width: 100%;
}

.similar-products {
    margin: 100px 0;
}

.similar-title {
    font-size: 28px;
    margin-bottom: 32px;
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.similar-card {
    /* background: #f1f1f1; */
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition:  0.3s ease;
}

.similar-card:hover {
    /* transform: translateY(-6px); */
    background: #f1f1f1; 

}

.similar-image img {
    max-height: 260px;
    object-fit: contain;
    margin-bottom: 24px;
    transition: transform .3s ease, box-shadow .3s ease
}

.similar-image img:hover{
    transform: translateY(-6px);
}

.similar-name {
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--color-text);
}

.similar-series {
    display: block;
    font-size: 13px;
    letter-spacing: .08em;
    opacity: .7;
    margin-bottom: 12px;
    color: var(--color-text);
}

.similar-more {
    font-size: 13px;
    text-transform: uppercase;
    color: #003a8f;
}

.distributor{
    background: url(/wp-content/uploads/2025/12/drum-pail.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    padding: 80px 0;
    position: relative;
}

.distributor > .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    justify-content: center;
    align-items: center;
}

.distributor > .container > .distributor-title{
    z-index: 2;
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
}

.distributor > .container > .text-box{
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.distributor > .container > .text-box > .distributor-button{
    background: rgb(255, 196, 0);
    color: var(--color-text);
}

.distributor .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(0 31 81 / 52%), rgb(0 31 81 / 67%));
    height: 100%;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--color-text);
}

.search-form {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width .35s ease, opacity .25s ease;
}

.search-form input[type="search"] {
    width: 260px;
    padding: 10px 14px;
    border-radius: 30px;
    background: #fff;;
    /* border: none; */
    z-index: 999;
    border: 1px solid #e5e7eb;
    outline: none;
}

.header-search.active .search-form {
    width: 260px;
    opacity: 1;
}

section.search-product{
    margin-top: 50px;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    z-index: 999;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: #082fc2;
}

.table-scroll {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
}

.table-scroll table {
    /* width: max-content; */
    /* min-width: 600px; */
    border-collapse: collapse;
}

/* .product-short-description table {
    width: max-content !important;
} */

.pagination > .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination > .nav-links a{
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    border-radius: 5px;
    color: var(--color-text);
    transition: 0.3s ease;
}

.pagination > .nav-links a:hover{
    background: #f1f1f1;
}

.pagination > .nav-links span.current{
    border: 1px solid #e5e7eb;
    background: #f1f1f1;
    padding: 8px 12px;
    border-radius: 5px;
    color: var(--color-text);
}

.uo-categories {
  padding: 60px 0;
}

.uo-categories-grid {
  align-items: stretch;
    grid-template-columns: repeat(6, minmax(auto, 1fr));
    grid-column-gap: 20px;
    grid-row-gap: 24px;
    display: grid;
    width: 100%;
}

.uo-cat {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: block;
  isolation: isolate;
  grid-column: span 2;
}

.uo-cat-wide {
  grid-column: span 3
}

/* image */
.uo-cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.uo-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(0 31 81 / 0%), rgb(0 31 81 / 81%));
  z-index: 1;
}

.uo-cat-content {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  max-width: 80%;
}

.uo-cat-content strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: uppercase;
}

.uo-cat-content i {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--color-secondary);
  margin-top: 12px;
}

.uo-cat:hover img {
  transform: scale(1.08);
}

.wp-block-list{
    border: 1px solid #d5d5d5;
    padding: 20px 40px;
    border-radius: 10px;
}

.wp-block-list li{
    /* margin-bottom: 10px; */
    border-bottom: 1px solid #d5d5d5;
    padding: 15px 0;

}

.wp-block-list li:first-child{
    padding-top: 0;
}

.wp-block-list li:last-child{
    padding-bottom: 0;
}

.wp-block-list li:last-child{
    margin: 0;
    border: 0;
}

.wp-block-list li::marker{
    color: var(--color-accent);
}

.uo-partner {
  padding: 60px 20px;
  border-radius: 10px;
  background: linear-gradient(303deg, #1e40af, #111827);
  color: #ffffff;
}

.uo-partner > .uo-container {
  max-width: 900px;
  margin: 0 auto;
}

.uo-partner > .uo-container > .uo-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}

.uo-partner > .uo-container > .uo-text {
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 20px;
}

.uo-partner > .uo-container > .uo-advantages {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #f59e0b;
  padding: 24px 28px;
  margin: 32px 0;
  border-radius: 6px;
}

.uo-partner > .uo-container > .uo-subtitle {
  font-size: 22px;
  margin-bottom: 16px;
  color: #ffffff;
}

.uo-partner > .uo-container > .uo-advantages ul {
  margin: 0;
  padding-left: 18px;
}

.uo-partner > .uo-container > .uo-advantages li {
  margin-bottom: 10px;
  color: #e5e7eb;
}

.uo-partner > .uo-container > .uo-highlight {
  font-weight: 500;
  color: #ffffff;
}

.dwnld{
    border: 1px solid #e5e5e5;
    color: var(--color-text);
    font-weight: normal;
}
.dwnld:hover{
    background: #e5e5e5;
}

.nothing-found {
    padding: 100px 0;
}

.search-product .nav-links{
    margin: 50px 0;
}

.uo-404 {
    padding: 140px 0;
    background: linear-gradient(
        180deg,
        var(--color-bg-light),
        #ffffff
    );
}

.uo-404-box {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.uo-404-code {
    font-size: 140px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -4px;
    color: var(--color-primary);
    opacity: 0.15;
    margin-bottom: 20px;
}

.uo-404-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 24px;
}

.uo-404-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

.uo-404-btn {
    background: var(--color-secondary);
    color: #000;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
}

.uo-404-btn:hover {
    filter: brightness(0.95);
}