@font-face {
    font-family: "Cairo";
    src: url("../fonts/cairo/Cairo-Regular.ttf");
}

@font-face {
    font-family: "Cairo-bold";
    src: url("../fonts/cairo/cairo-bold.ttf");
}

/******************************/
/******************************/
:root {
    --red: #b40000;
    --red-dark: #990000;
    --gray: #5C5C5C;
    --black: #393839;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

body {
    font-family: "Cairo", sans-serif;
    color: var(--black);
    background: var(--white);
    font-size: 16px;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cairo-bold", sans-serif;
    margin-top: 0;
    font-weight: bold;
    color: var(--white);
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul,
ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type="submit"],
a {
    transition: all 0.5s linear;
}

img,
iframe,
video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
}

.no-padding {
    padding: 0 !important;
}

.form-control {
    border-radius: 0;
}

html[dir="ltr"] .form-control {
    direction: ltr;
    text-align: left;
}

textarea.form-control {
    height: 200px;
}

.form-control:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
    color: var(--red);
}

.main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    font-weight: bold;
    text-align: center;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid transparent;
    cursor: pointer;
    isolation: isolate;
    transition: color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease;
}

.main-btn::before {
    content: "";
    position: absolute;
    top: -20%;
    bottom: -20%;
    left: -70px;
    width: 45px;
    background: var(--white);
    opacity: 0;
    transform: translateX(250px) skewX(-20deg);
    transition: opacity 0.25s ease,
    transform 0.45s ease;
    z-index: 1;
    pointer-events: none;
}

.main-btn:hover::before {
    opacity: 0.28;
    transform: translateX(0) skewX(-20deg);
}

.main-btn-primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white) !important;
}

.main-btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white) !important;
}

.main-btn-outline {
    background: var(--white);
    border-color: var(--red);
    color: var(--red) !important;
}

.main-btn-outline:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white) !important;
}

.section-title {
    margin: 0 0 20px;
    color: var(--black);
    font-size: 36px;
     font-weight: 700;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        margin-bottom: 14px;
    }
}

@media (max-width: 500px) {
    .main-btn {
        font-size: 14px;
        width: 120px;
        height: 35px;
        line-height: 35px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

}

/******************************/
/* && header &&*/
/******************************/
.site-header {
    position: relative;
    z-index: 999;
    width: 100%;

}


.main-header {
    min-height: 54px;
    padding: 0 34px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.main-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.header-logo-img,
.main-logo img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}


@media (max-width: 767px){
    .main-header{
        padding: 0 15px;
    }
    .headers-links .main-btn{
        display: none;
    }
}
/******************************/
/* && Nav &&*/
/******************************/
@media (min-width: 992px) {
    .main-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .nav-list {
        display: flex;
        margin-inline-start: 50px;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    html[dir="ltr"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 5px;
    }

    html[dir="rtl"] .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-start: 5px;
    }

    .nav-list > .menu-item.home i {
        font-size: 26px;
        color: var(--white);
    }

    .nav-list > .menu-item > a {
        display: flex;
        color: var(--black);
        font-weight: 600;
        font-size: 14px;
        position: relative;
        padding: 15px 20px;
        transition: all 0.5s ease-in-out;
    }

    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f0d7";
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        color: var(--white);
        transition: all 0.35s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: var(--red);
    }

    .nav-list > .menu-item:hover > a:before,
    .nav-list > .menu-item.active a:before {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: var(--white);
    }

    html[dir="rtl"].sub-menu {
        left: 0;
    }

    html[dir="ltr"].sub-menu {
        right: 0;
    }

    .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 250px;
        background-color: var(--white);
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px color-mix(in srgb, var(--black) 10%, transparent);
        transition: all 0.2s ease-in-out;
    }

    .sub-menu li {
        position: relative;
        padding: 0 20px;
    }

    .sub-menu li:not(:last-of-type) a {
        margin-bottom: 10px;
    }

    .sub-menu li a {
        display: block;
        width: 100%;
        position: relative;
        color: var(--gray);
        padding-bottom: 10px;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        left: 0;
        content: "\f324";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        right: 0;
        content: "\f323";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        color: var(--gray);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .sub-menu li a:hover {
        color: var(--gray);
    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: var(--gray);
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
        left: 100%;
    }

    .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        left: 100%;
    }

    html[dir="rtl"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f104";
    }

    html[dir="ltr"] .nav-list > .menu-item-has-children > .sub-menu a:before {
        content: "\f105";
    }

    .nav-list > .menu-item-has-children > .sub-menu a:before {
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        display: inline-block;
        margin-inline-end: 10px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        text-align: center;
        border-radius: 50%;
        background: var(--gray);
        color: var(--white);
        font-size: 14px;
        transition: all 0.35s ease-in-out;
    }

    .nav-list > .menu-item-has-children > .sub-menu a:hover:before {
        background: var(--red-dark);
        color: var(--white);
    }

    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

@media (max-width: 992px) {
    .menu-item-has-children {
        display: flex;
        width: 100%;
        align-items: center;
    }

    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

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

    .menu-icons a:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .nav-list > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free", serif;
        font-weight: 900;
        color: var(--white);
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn {
        width: 45px;
        height: 40px;
        color: var(--white);
        background-color: var(--red-dark);
        border-radius: 8px;
        margin-inline-end: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
        margin-inline-start: 10px;

    }

    html[dir="ltr"] .mobile-nav-list {
        left: 0;
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
        right: 0;
    }

    .mobile-nav-list {
        width: min(86vw, 340px);
        max-width: calc(100vw - 24px);
        height: 100dvh;
        padding: 18px;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 10000;
        box-shadow: 0 20px 50px color-mix(in srgb, var(--black) 18%, transparent);
        overflow-y: auto;
        box-sizing: border-box;
        transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    html[dir="rtl"] .mobile-nav-list {
        border-radius: 14px 0 0 14px;
    }

    html[dir="ltr"] .mobile-nav-list {
        border-radius: 0 14px 14px 0;
    }

    .mobile-nav-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-bottom: 14px;
        border-bottom: 1px solid #eeeeee;
    }

    .mobile-logo {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .mobile-logo img {
        max-width: 95px;
        max-height: 58px;
        object-fit: contain;
        display: block;
    }

    .mobile-menu-close {
        flex: 0 0 38px;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #f5f5f5;
        color: var(--black);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .mobile-menu-close:hover {
        background: var(--red);
        color: var(--white);
    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid #eeeeee;
    }

    .mobile-nav-list .menu-item > a {
        display: block;
        color: var(--black);
        padding: 13px 0;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.5;
    }

    .mobile-nav-list .menu-item.menu-item-has-children > a {
        width: calc(100% - 42px);
        display: inline-block;
    }

    .mobile-nav-list .menu-item > a:hover,
    .mobile-nav-list .menu-item.active > a {
        color: var(--red);
    }

    html[dir="ltr"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-left: 1px solid #e8e8e8;
    }

    html[dir="rtl"] .mobile-nav-list .menu-item.menu-item-has-children i {
        border-right: 1px solid #e8e8e8;
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: var(--black);
        width: 34px;
        height: 34px;
        line-height: 34px;
        text-align: center;
        border-radius: 8px;
        background: #f6f6f6;
        transform-origin: center;
        transition: all 0.3s linear;
    }

    .mobile-nav-list .menu-item i.open {
        color: var(--white);
        background: var(--red);
    }

    .sub-menu {
        list-style: none;
        background-color: #f8f8f8;
        border-radius: 10px;
        margin-bottom: 10px;
    }

    .mobile-nav-list .sub-menu a {
        display: block;
        padding: 11px 14px;
        color: var(--gray);
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s linear;
    }

    .mobile-nav-list .sub-menu a:hover {
        color: var(--red);
        padding-inline-start: 18px;
    }

    .mobile-contact-btn {
        width: 100%;
        margin-top: auto;
    }

    .trans-none {
        transform: none !important;
    }

    .nav-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 9998;
        background-color: color-mix(in srgb, var(--black) 40%, transparent);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none !important;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/******************************/
/* && intro &&*/
/******************************/
.intro-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    height: 100vh;
}

.intro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            270deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(102, 102, 102, 0.5) 100%
    );
    z-index: 1;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.intro-title {
    margin: 0 0 20px;
    font-size: 60px;
    line-height: 1.35;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.intro-subtitle {
    margin: 0 auto 30px;
    max-width: 1200px;
    font-size: 20px;
    line-height: 1.9;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
}

.intro-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.intro-section .main-btn {
    width: 270px;
}

@media (max-width: 991px) {
    .intro-section {
        height: 90vh;
    }

    .intro-title {
        font-size: 38px;
    }

    .intro-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .intro-section {
        height: 80vh;
    }

    .intro-container {
        width: min(100% - 28px, 1200px);
    }


    .intro-subtitle {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .intro-actions {
        gap: 10px;
    }

    .intro-actions .main-btn {
        width: 135px;
        height: 38px;
        font-size: 14px;
    }
}

/* =========================
   Category Product Section
========================= */

.category-product-section {
    position: relative;
    z-index: 10;
    margin-top: -65px;
    padding-bottom: 55px;
}
.category-product-section .owl-stage-outer{
    padding: 10px 0;
}
.category-product-wrapper,
.category-product-carousel {
    position: relative;
    width: 100%;
}

.category-product-carousel .owl-stage,
.category-product-carousel .owl-item,
.category-product-item {
    display: flex;
}

.category-product-carousel .owl-stage {
    align-items: stretch;
}

.category-product-item {
    width: 100%;
}

.category-product-card {
    position: relative;
    width: 100%;
    min-height: 125px;
    padding: 24px 16px 20px;
    background: var(--white);
    border: 1px solid rgba(57, 56, 57, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.category-product-card:hover {
    border-color: rgba(180, 0, 0, 0.35);
    transform: translateY(4px);
}


.category-product-icon {
    position: relative;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(180, 0, 0, 0.14);
    border-radius: 50%;
    background: var(--white);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.category-product-icon img {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-product-icon i {
    font-size: 15px;
    transition: font-size 0.3s ease;
}

.category-product-card:hover .category-product-icon {
    border-color: rgba(180, 0, 0, 0.35);
    transform: translateY(-2px);
}

.category-product-card:hover .category-product-icon img {
    transform: scale(1.12);
}

.category-product-card:hover .category-product-icon i {
    font-size: 18px;
}

.category-product-title {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--black);
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    transition: color 0.3s ease;
}

.category-product-card:hover .category-product-title {
    color: var(--red);
}

.category-product-carousel .owl-nav {
    margin-top: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.category-product-carousel .owl-nav button.owl-prev,
.category-product-carousel .owl-nav button.owl-next {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(57, 56, 57, 0.18) !important;
    border-radius: 50% !important;
    background: var(--white) !important;
    color: var(--black) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 26px !important;
    line-height: 1 !important;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.category-product-carousel .owl-nav button.owl-prev span,
.category-product-carousel .owl-nav button.owl-next span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: relative;
    top: -1px;
}

.category-product-carousel .owl-nav button.owl-prev:hover,
.category-product-carousel .owl-nav button.owl-next:hover {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
}

.category-product-carousel .owl-dots {
    display: none;
}

@media (max-width: 991px) {
    .category-product-section {
        margin-top: -45px;
        padding-bottom: 45px;
    }

    .category-product-card {
        min-height: 118px;
        padding: 22px 14px 18px;
    }

}

@media (max-width: 575px) {
    .category-product-section {
        margin-top: -35px;
        padding-bottom: 35px;
    }

    .category-product-card {
        min-height: 112px;
        padding: 20px 12px 18px;
    }

    .category-product-icon,
    .category-product-carousel .owl-nav button.owl-prev,
    .category-product-carousel .owl-nav button.owl-next {
        width: 36px;
        height: 36px;
    }


    .category-product-carousel .owl-nav {
        margin-top: 18px;
    }

    .category-product-carousel .owl-nav button.owl-prev,
    .category-product-carousel .owl-nav button.owl-next {
        font-size: 24px !important;
    }
}
/* =========================
   Home About Section
========================= */


.home-about-section {
    position: relative;
    padding: 100px 0;
     background-image: url("../images/bg.png");
    background-repeat: no-repeat;
     background-size: cover;
    overflow: hidden;
}

.home-about-content {
    position: relative;
    z-index: 2;
}

.home-about-text {
    color: var(--gray);
    font-size: 20px;
     font-weight: 400;
}

.home-about-text p {
    margin: 0;
}

.home-about-text p:not(:last-child) {
    margin-bottom: 10px;
}

@media (max-width: 991px) {
    .home-about-section {
        padding: 50px 0;
    }

    .home-about-text {
        line-height: 1.9;
    }
}

@media (max-width: 575px) {
    .home-about-section {
        padding: 42px 0;
    }

}

/* =========================
   home-products-section
========================= */
.home-products-section {
    position: relative;
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
}

.home-products-section .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.home-products-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-bottom: 22px;
}

.home-products-head .section-title {
    margin: 0;
    color: var(--black);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
}

.home-products-subtitle {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.home-products-tabs-wrap {
    position: relative;
    margin-bottom: 26px;
    overflow: hidden;
}

.home-products-tabs-wrap::before,
.home-products-tabs-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 8px;
    z-index: 2;
    width: 38px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .25s ease;
}

.home-products-tabs-wrap::before {
    right: 0;
    background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
}

.home-products-tabs-wrap::after {
    left: 0;
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0));
}

.home-products-tabs-wrap.has-tabs-scroll:hover::before,
.home-products-tabs-wrap.has-tabs-scroll:hover::after,
.home-products-tabs-wrap.has-tabs-scroll:focus-within::before,
.home-products-tabs-wrap.has-tabs-scroll:focus-within::after {
    opacity: 1;
}

.home-products-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 4px 2px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-products-tabs:hover {
    scrollbar-width: none;
}

.home-products-tabs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.home-products-tabs-scrollbar {
    position: absolute;
    right: 2px;
    bottom: 1px;
    left: 2px;
    z-index: 3;
    height: 4px;
    border-radius: 999px;
    background: rgba(180, 0, 0, .08);
    opacity: 0;
    transform: translateY(4px) scaleX(.92);
    transform-origin: center;
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.home-products-tabs-scrollbar-thumb {
    display: block;
    height: 100%;
    width: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--red), var(--red-dark));
    box-shadow: 0 4px 10px rgba(180, 0, 0, .18);
    transition: width .2s ease, transform .2s ease;
}

.home-products-tabs-wrap.has-tabs-scroll:hover .home-products-tabs-scrollbar,
.home-products-tabs-wrap.has-tabs-scroll:focus-within .home-products-tabs-scrollbar {
    opacity: 1;
    transform: translateY(0) scaleX(1);
}

.home-products-tab {
    flex: 0 0 auto;
    min-width: 165px;
    padding: 0 24px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececec;
    background: var(--white);
    color: var(--black);
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: all .3s ease;
}

.home-products-tab:hover,
.home-products-tab.active {
    border-color: var(--red-dark);
    color: var(--red-dark);
 }

.home-products-tab:focus-visible {
    outline: 2px solid rgba(180, 0, 0, .25);
    outline-offset: 3px;
}

.home-products-list {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.home-products-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.home-products-more-btn {
    width: 180px;
}

.products-page-section {
    padding-top: 85px;
}

.products-page-empty {
    padding: 45px 0;
    text-align: center;
    color: var(--gray);
    font-size: 16px;
}

.products-page-empty p {
    margin: 0;
}

.products-page-newsletter {
    padding: 55px 0 70px;
    background: #f8f8f8;
}

.products-page-newsletter-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.products-page-newsletter-inner .section-title {
    margin-bottom: 12px;
}

.products-page-newsletter-inner p {
    margin: 0 0 24px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: calc((100% - 48px) / 3);
    min-height: 100%;
    background: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 14px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--red-dark);
 }

.product-card.hide {
    display: none;
}

.product-card-filter-in {
    animation: productCardFilterIn .26s ease both;
}

@keyframes productCardFilterIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-image {
    position: relative;
    height: 270px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 28px 38px;
     border-bottom: 1px solid #e1e1e1;
}

.product-card-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img:not(.product-card-logo) {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .35s ease;
}

.product-card:hover .product-card-image img:not(.product-card-logo) {
    transform: scale(1.04);
}

.product-card-logo {
    position: absolute;
    top: 14px;
    left: 16px;
    right: auto;
    width: 65px;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.product-card-badges {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 3;
}

.product-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 12px;
    border-radius: 50px;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    background: var(--white);
}

.badge-bestseller {
    color: #C45555;
    border: 1px solid rgba(180, 0, 0, .35);
}

.badge-new {
    color: #0f9d58;
    border: 1px solid rgba(15, 157, 88, .35);
}

.product-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 42px;
}

.product-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 16px 16px;
}

.product-card-title {
    margin: 0 0 6px;
    color: var(--black);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

.product-card-title a:hover {
    color: var(--red);
}

.product-card-excerpt {
    margin: 0 0 16px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.product-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:3px;
    margin-top: auto;
}

.product-action-btn {
    height: 38px;
    border-radius: 6px;
    text-decoration: none;
    transition: all .3s ease;
}

.product-action-icon {
    width: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid #e9e9e9;
    color: var(--gray);
    font-size: 16px;
}

.product-whatsapp {
    color: #1db954;
}

.product-phone {
    color: var(--gray);
}

.product-action-icon:hover {
    border-color: var(--red);
    color: var(--red);
    box-shadow: 0 8px 18px rgba(180, 0, 0, .08);
}

.product-details-btn {
    width: 200px;
    height: 38px;
    gap: 7px;
    font-size: 14px;
    border-radius: 6px;
}

.product-details-btn i {
    position: relative;
    z-index: 2;
    font-size: 14px;
}


@media (min-width: 991px){
    .section-container-fluid{
        width: 90%;
        margin: 0 auto;
    }
}
@media (max-width: 991px) {
    .section-container-fluid{
        padding: 0 15px;
    }
    .home-products-section {
        padding: 55px 0;
    }

    .product-card {
        width: calc((100% - 24px) / 2);
    }

    .home-products-head .section-title {
        font-size: 28px;
    }

    .home-products-tab {
        flex-basis: 180px;
    }

    .product-card-image {
        padding: 40px 24px 34px;
    }
}

@media (max-width: 767px) {
    .home-products-section .container {
        width: min(100% - 24px, 1200px);
    }

    .home-products-list {
        gap: 16px;
    }

    .product-card {
        width: 100%;
    }

    .product-card-image {
        padding: 38px 22px 32px;
    }

    .product-card-actions {
        gap: 7px;
    }

    .product-action-icon {
        width: 54px;
    }

    .product-details-btn {
        flex: 1;
        width: auto;
    }

    .home-products-head .section-title {
        font-size: 25px;
    }
}

/* =========================
   featured
========================= */

.featured {
    position: relative;
    padding: 40px 0;
    background: var(--white);
    overflow: hidden;
}

.featured .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.featured-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.featured-item {
    flex: 1 1 0;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    text-align: center;
}

.featured-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-icon img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
}

.featured-title {
    margin: 0;
    color: var(--black);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
}

.featured-text {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
    max-width: 200px;
}

@media (max-width: 991px) {
    .featured-wrapper {
        justify-content: center;
        gap: 28px 18px;
    }

    .featured-item {
        flex: 0 1 calc(50% - 18px);
    }
}

@media (max-width: 575px) {
    .featured {
        padding: 30px 0;
    }

    .featured-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .featured-wrapper.owl-carousel {
        display: block;
        width: 100%;
    }

    .featured-wrapper.owl-carousel .owl-stage {
        display: flex;
        align-items: stretch;
    }

    .featured-wrapper.owl-carousel .owl-item {
        display: flex;
    }

    .featured-item {
        width: 100%;
        flex: 1 1 100%;
    }

    .featured-wrapper.owl-carousel .featured-item {
        height: 100%;
        min-width: 0;
    }

    .featured-text {
        max-width: 260px;
    }

    .featured-wrapper .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
    }

    .featured-wrapper .owl-dot {
        width: 20px;
        height: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        padding: 0;
        background: transparent;
    }

    .featured-wrapper .owl-dot span {
        width: 8px;
        height: 8px;
        display: block;
        border-radius: 999px;
        background: #d9d9d9;
        transition: width 0.25s ease, background-color 0.25s ease;
    }

    .featured-wrapper .owl-dot.active span,
    .featured-wrapper .owl-dot:hover span {
        width: 20px;
        background: var(--red);
    }
}

.testimonials-section {
    position: relative;
    padding: 62px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.testimonials-section .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.testimonials-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-bottom: 28px;
}

.testimonials-head .section-title {
    margin: 0;
    color: var(--black);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
}

.testimonials-subtitle {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.testimonials-carousel {
    position: relative;
 }

.testimonials-carousel .owl-stage {
    display: flex;
    align-items: stretch;
}

.testimonials-carousel .owl-item {
    display: flex;
    height: auto;
}

.testimonial-card {
    width: 100%;
     background: var(--white);
    border: 1px solid rgba(57, 56, 57, 0.08);
    border-radius: 12px;
    padding: 18px 22px;
    min-height: 132px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
     transition: all .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
     border-color: rgba(180, 0, 0, 0.18);
}

.testimonial-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
 }

.testimonial-stars span {
    color: #f4b400;
    font-size: 18px;
    line-height: 1;
}

.testimonial-text {
    margin: 0;
    color: var(--gray);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.testimonial-name {
    margin: 4px 0 0;
    color: var(--black);
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
}

.testimonial-subtitle {
    display: block;
    color: var(--gray);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.testimonials-carousel .owl-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.testimonials-carousel .owl-nav button.owl-prev,
.testimonials-carousel .owl-nav button.owl-next {
    width: 45px;
    height: 45px;
    min-width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50% !important;
    border: 1px solid #e1e1e1 !important;
    background: var(--white) !important;
    color: var(--gray) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
     transition: all .3s ease;
}

.testimonials-carousel .owl-nav button.owl-prev span,
.testimonials-carousel .owl-nav button.owl-next span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 28px;
    line-height: 1;
    font-weight: 400;
    transform: translateY(-3px);
}

.testimonials-carousel .owl-nav button.owl-prev:hover,
.testimonials-carousel .owl-nav button.owl-next:hover {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
    transform: translateY(-2px);
}

.testimonials-carousel .owl-nav button.disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none !important;
}

.testimonials-carousel .owl-dots {
    display: none !important;
}

@media (max-width: 991px) {
    .testimonials-section {
        padding: 50px 0;
    }

    .testimonials-head .section-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-head {
        margin-bottom: 22px;
    }

    .testimonials-head .section-title {
        font-size: 24px;
    }

    .testimonials-subtitle {
        font-size: 14px;
    }

    .testimonial-card {
        padding: 18px;
        min-height: auto;
    }

    .testimonials-carousel .owl-nav {
        margin-top: 20px;
    }
}

.clients-section {
    position: relative;
    padding: 60px 0 65px;
    background: var(--white);
    overflow: hidden;
}

.clients-section .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.clients-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-bottom: 34px;
}

.clients-head .section-title {
    margin: 0;
    color: var(--black);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
}

.clients-subtitle {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.clients-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.clients-marquee::before,
.clients-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 90px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    right: 0;
    background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
}

.clients-marquee::after {
    left: 0;
    background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0));
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 55px;
    width: max-content;
    animation: clientsMarquee 22s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    width: 135px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
    display: block;
    transition: all .3s ease;
}

.client-logo:hover img {
    transform: scale(1.06);
}

@keyframes clientsMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

@media (max-width: 991px) {
    .clients-section {
        padding: 50px 0 55px;
    }

    .clients-head .section-title {
        font-size: 28px;
    }

    .clients-track {
        gap: 40px;
        animation-duration: 18s;
    }

    .client-logo {
        width: 120px;
        height: 78px;
    }

    .client-logo img {
        max-height: 68px;
    }
}

@media (max-width: 575px) {
    .clients-section {
        padding: 40px 0 45px;
    }

    .clients-head {
        margin-bottom: 24px;
    }

    .clients-head .section-title {
        font-size: 24px;
    }

    .clients-subtitle {
        font-size: 14px;
    }

    .clients-track {
        gap: 30px;
        animation-duration: 15s;
    }

    .client-logo {
        width: 105px;
        height: 70px;
    }

    .client-logo img {
        max-height: 58px;
    }

    .clients-marquee::before,
    .clients-marquee::after {
        width: 45px;
    }
}
.home-news-section {
    position: relative;
    padding: 65px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.home-news-section::before,
.home-news-section::after {
    content: "";
    position: absolute;
    border: 5px solid rgba(180, 0, 0, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.home-news-section::before {
    width: 220px;
    height: 220px;
    right: -85px;
    top: -70px;
}

.home-news-section::after {
    width: 250px;
    height: 250px;
    left: -105px;
    bottom: -95px;
}

.home-news-section .container {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.home-news-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-bottom: 28px;
}

.home-news-head .section-title {
    margin: 0;
    color: var(--black);
    font-size: 32px;
    line-height: 1.3;
    font-weight: 800;
}

.home-news-subtitle {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.home-news-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.home-news-card {
    flex: 0 1 calc(33.333% - 15px);
    min-width: 280px;
}

.home-news-link {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(57, 56, 57, 0.10);
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(57, 56, 57, 0.04);
    transition: all .35s ease;
}

.home-news-link:hover {
    transform: translateY(-6px);
    border-color: rgba(180, 0, 0, 0.25);
    box-shadow: 0 16px 38px rgba(57, 56, 57, 0.10);
}

.home-news-image {
    width: 100%;
    height: 200px;
    border-radius: 9px;
    overflow: hidden;
    background: #eeeeee;
}

.home-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .45s ease;
}

.home-news-link:hover .home-news-image img {
    transform: scale(1.06);
}

.home-news-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 13px 4px 6px;
    text-align: right;
}

.home-news-title {
    margin: 0;
    color: var(--black);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
    transition: all .3s ease;
}

.home-news-link:hover .home-news-title {
    color: var(--red);
}

.home-news-text {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.home-news-arrow {
    position: absolute;
    left: 18px;
    bottom: 16px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: all .35s ease;
}

.home-news-arrow i {
    font-size: 16px;
    line-height: 1;
    transform: rotate(130deg);
}

.home-news-link:hover .home-news-arrow {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.home-news-link:hover .home-news-content {
    padding-bottom: 42px;
}

.home-news-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.home-news-btn {
    min-width: 180px;
    height: 38px;
    padding: 0 26px;
    border: 1px solid var(--red);
    border-radius: 6px;
    background: transparent;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    transition: all .3s ease;
}

.home-news-btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .home-news-section {
        padding: 55px 0;
    }

    .home-news-head .section-title {
        font-size: 28px;
    }

    .home-news-card {
        flex: 0 1 calc(50% - 12px);
    }
}

@media (max-width: 575px) {
    .home-news-section {
        padding: 42px 0;
    }

    .home-news-head {
        margin-bottom: 22px;
    }

    .home-news-head .section-title {
        font-size: 24px;
    }

    .home-news-subtitle {
        font-size: 14px;
    }

    .home-news-grid {
        gap: 16px;
    }

    .home-news-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .home-news-image {
        height: 175px;
    }

    .home-news-btn {
        width: 100%;
        max-width: 260px;
    }
}
.consultation-section {
    position: relative;
    padding: 55px 0;
    background: var(--white);
    overflow: hidden;
}

.consultation-section .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.consultation-box {
    position: relative;
    border: 1px solid rgba(57, 56, 57, 0.08);
    border-radius: 16px;
    background:
            radial-gradient(circle at right center, rgba(180, 0, 0, 0.055), transparent 28%),
            radial-gradient(circle at left center, rgba(180, 0, 0, 0.045), transparent 28%),
            var(--white);
    min-height: 280px;
    padding: 42px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
 }

.consultation-box::before,
.consultation-box::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(180, 0, 0, 0.035);
    filter: blur(20px);
    pointer-events: none;
}

.consultation-box::before {
    right: -95px;
    top: 50%;
    transform: translateY(-50%);
}

.consultation-box::after {
    left: -95px;
    top: 50%;
    transform: translateY(-50%);
}

.consultation-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.consultation-title {
    margin: 0;
    color: var(--black);
    font-size: 32px;
    line-height: 1.4;
    font-weight: 800;
}

.consultation-subtitle {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.consultation-btn {
    height: 42px;
    min-width: 190px;
    padding: 0 26px;
    border-radius: 8px;
    background: #159947;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    transition: all .3s ease;
}

.consultation-btn i {
    font-size: 16px;
    line-height: 1;
}

.consultation-btn:hover {
    background: #0f843b;
    color: var(--white);
    transform: translateY(-3px);
 }

.consultation-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.consultation-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
}

.consultation-feature-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
}

.consultation-feature-icon i {
    font-size: 16px;
    line-height: 1;
}

.consultation-feature-text {
    display: inline-block;
}

@media (max-width: 991px) {
    .consultation-section {
        padding: 45px 0;
    }

    .consultation-box {
        padding: 36px 20px;
        min-height: 220px;
    }

    .consultation-title {
        font-size: 28px;
    }

    .consultation-features {
        gap: 16px;
    }
}

@media (max-width: 575px) {
    .consultation-section {
        padding: 38px 0;
    }

    .consultation-box {
        padding: 32px 16px;
        border-radius: 14px;
    }

    .consultation-title {
        font-size: 23px;
    }

    .consultation-subtitle {
        font-size: 14px;
    }

    .consultation-btn {
        width: 100%;
        max-width: 240px;
        height: 42px;
    }

    .consultation-features {
        gap: 10px;
    }
}
.site-footer {
    position: relative;
    padding: 55px 0;
    background: #f8f8f8;
    overflow: hidden;
}

.site-footer .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.footer-container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.footer-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 45px;
    flex-wrap: wrap;
    direction: rtl;
}

.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand {
    flex: 0 1 330px;
}

.footer-menu-col {
    flex: 0 1 170px;
}

.footer-contact-col {
    flex: 0 1 250px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
    text-decoration: none;
}

.footer-logo img {
    max-width: 95px;
    max-height: 75px;
    object-fit: contain;
    display: block;
}

.footer-about-text {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.9;
    font-weight: 500;
    max-width: 330px;
    text-align: right;
}

.footer-about-text p {
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 11px;
    margin-top: 22px;
}

.footer-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eeeeee;
    color: var(--gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-social-link i {
    font-size: 14px;
    line-height: 1;
}

.footer-social-link:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-4px);
}

.footer-title {
    position: relative;
    margin: 0 0 18px;
    padding-right: 12px;
    color: var(--red);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 800;
}

.footer-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    width: 3px;
    height: 20px;
    border-radius: 10px;
    background: var(--red);
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-menu li {
    position: relative;
    margin: 0;
    padding-right: 16px;
}

.footer-menu li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    transform: translateY(-50%);
}

.footer-menu li a {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.footer-menu li a:hover {
    color: var(--red);
    padding-right: 4px;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.footer-contact-icon {
    width: 18px;
    height: 18px;
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.footer-contact-icon i {
    font-size: 14px;
    line-height: 1;
}

.footer-contact-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-label {
    color: var(--black);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
}

.footer-contact-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    flex-wrap: wrap;
}

.footer-contact-links a,
.footer-contact-link {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    text-decoration: none;
    direction: ltr;
    unicode-bidi: plaintext;
    transition: all .3s ease;
}

.footer-contact-links span {
    color: var(--gray);
    font-size: 16px;
}

.footer-contact-links a:hover,
.footer-contact-link:hover {
    color: var(--red);
}

.footer-contact-text {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 600;
}

@media (max-width: 991px) {
    .site-footer {
        padding: 45px 0;
    }

    .footer-wrapper {
        gap: 35px 25px;
    }

    .footer-brand {
        flex: 1 1 100%;
    }

    .footer-about-text {
        max-width: 420px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-col {
        flex: 0 0 100%;
    }

    .footer-menu-col {
        flex: 0 0 calc(50% - 13px);
    }

    .footer-col:nth-of-type(1){
        order: 0;
    }

    .footer-col:nth-of-type(2){
        order: 2;
    }

    .footer-col:nth-of-type(3){
        order: 4;
    }

    .footer-col:nth-of-type(4){
        order: 2;
    }
}

@media (max-width: 767px) {
    .footer-wrapper {
        align-items: flex-start;
        gap: 32px 4%;
        padding: 0 15px;
    }

    .footer-contact-content{
        align-items: flex-start;
    }

    .footer-col {
        width: 100%;
    }

    .footer-brand,
    .footer-contact-col {
        flex: 0 0 100%;
    }

    .footer-menu-col {
        flex: 0 0 48%;
    }

    .footer-col.footer-col-r{
        width: 48%;
    }

    .footer-col:nth-of-type(1){
        order: 0;
    }

    .footer-col:nth-of-type(2){
        order: 2;
    }

    .footer-col:nth-of-type(3){
        order: 4;
    }

    .footer-col:nth-of-type(4){
        order: 2;
    }

    .footer-title {
        padding-right: 12px;
        padding-bottom: 0;
        margin-bottom: 14px;
    }

    .footer-title::before {
        right: 0;
        top: 3px;
        bottom: auto;
        width: 3px;
        height: 20px;
        transform: none;
    }

    .footer-menu {
        align-items: flex-start;
    }

    .footer-menu li {
        padding-right: 14px;
    }

    .footer-contact-list {
        align-items: flex-start;
    }

    .footer-contact-item {
        justify-content: flex-start;
        text-align: right;
    }

    .footer-contact-links {
        justify-content: flex-start;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding: 38px 0;
    }

    .footer-container {
        width: calc(100% - 24px);
    }

    .footer-logo img {
        max-width: 85px;
    }

    .footer-about-text {
        font-size: 14px
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-menu li a,
    .footer-contact-label {
        font-size: 14px
    }
}
.about-page-intro-section {
    position: relative;
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
}

.about-page-intro-section .container-fluid {
    padding-right: 0;
    padding-left: 0;
}

.about-page-intro-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
    direction: rtl;
}

.about-page-intro-content {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.about-page-intro-title {
    margin: 0 0 18px;
    color: var(--black);
    font-size: 34px;
    line-height: 1.35;
    font-weight: 800;
}

.about-page-intro-text {
    margin-bottom: 20px;
    color: var(--black);
    font-size: 17px;
    line-height: 1.9;
    font-weight: 800;
}

.about-page-intro-text p {
    margin: 0;
}

.about-page-intro-text strong,
.about-page-intro-text b {
    color: var(--red);
    font-weight: 900;
}

.about-page-intro-list {
    display: flex;
    flex-direction: column;
    gap: 17px;
    width: 100%;
}

.about-page-intro-list-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
}

.about-page-intro-list-icon {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 5px;
    border-radius: 50%;
    background: rgba(180, 0, 0, 0.08);
    color: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about-page-intro-list-icon i {
    font-size: 11px;
    line-height: 1;
}

.about-page-intro-list-text {
    flex: 1;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
}

.about-page-intro-list-text p {
    margin: 0;
}

.about-page-intro-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.about-page-intro-btn {
    min-width: 165px;
    height: 42px;
    padding: 0 24px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    transition: all .3s ease;
}

.about-page-intro-btn-primary {
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
}

.about-page-intro-btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.about-page-intro-btn-primary i {
    font-size: 12px;
}

.about-page-intro-btn-outline {
    background: transparent;
    border: 1px solid var(--red);
    color: var(--red);
}

.about-page-intro-btn-outline:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

.about-page-intro-image {
    flex: 0 0 430px;
    height: 430px;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f3f3;
}

.about-page-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all .45s ease;
}

.about-page-intro-image:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .about-page-intro-section {
        padding: 55px 0;
    }

    .about-page-intro-wrapper {
        flex-direction: column-reverse;
        gap: 35px;
    }

    .about-page-intro-content {
        width: 100%;
        align-items: flex-start;
     }

    .about-page-intro-title {
        font-size: 29px;
    }

    .about-page-intro-text {
        font-size: 16px;
    }

    .about-page-intro-list-item {
        text-align: right;
    }

    .about-page-intro-actions {
        justify-content: center;
    }

    .about-page-intro-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 520px;
        height: 360px;
    }
}

@media (max-width: 575px) {
    .about-page-intro-section {
        padding: 42px 0;
    }


    .about-page-intro-wrapper {
        gap: 28px;
    }

    .about-page-intro-title {
        font-size: 25px;
        margin-bottom: 14px;
    }

    .about-page-intro-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-page-intro-list {
        gap: 14px;
    }

    .about-page-intro-list-text {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-page-intro-actions {
        width: 100%;
        gap: 10px;
    }

    .about-page-intro-btn {
        width: 100%;
        min-width: auto;
    }

    .about-page-intro-image {
        height: 300px;
        border-radius: 12px;
    }
}
.about-page-vision-section {
    position: relative;
    padding: 70px 0;
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.about-page-vision-wrapper {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
}

.about-page-vision-item {
    flex: 0 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.vision-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
     display: flex;
    align-items: center;
    justify-content: center;
}

.vision-icon img {
     display: block;
}

.vision-title {
    font-size: 16px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--black);
}

.vision-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .about-page-vision-wrapper {
        gap: 30px;
    }

    .about-page-vision-item {
        flex: 0 1 45%;
    }
}

@media (max-width: 575px) {
    .about-page-vision-item {
        flex: 1 1 100%;
    }
}
.uniqueness-section {
    position: relative;
    padding: 75px 0 70px;
    background: var(--white);
    overflow: hidden;
}

.uniqueness-section .container-fluid {
    padding-right: 0;
    padding-left: 0;
}


.uniqueness-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    margin-bottom: 42px;
}

.uniqueness-head .section-title {
    margin: 0;
    color: var(--black);
    font-size: 34px;
    line-height: 1.35;
    font-weight: 800;
}

.uniqueness-subtitle {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.uniqueness-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 45px;
    flex-wrap: wrap;
    direction: rtl;
}

.uniqueness-item {
    flex: 1 1 0;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    text-align: center;
}

.uniqueness-icon-wrap {
    position: relative;
    width: 130px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.uniqueness-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.uniqueness-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all .35s ease;
}

.uniqueness-item:hover .uniqueness-icon img {
    transform: scale(1.05);
}

.uniqueness-title {
    margin: 0;
    color: var(--black);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 800;
    transition: all .3s ease;
}

.uniqueness-text {
    max-width: 280px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.uniqueness-text p {
    margin: 0;
}

.uniqueness-item:hover .uniqueness-title {
    color: var(--red);
}

@media (max-width: 991px) {
    .uniqueness-section {
        padding: 60px 0;
    }

    .uniqueness-head {
        margin-bottom: 36px;
    }

    .uniqueness-head .section-title {
        font-size: 29px;
    }

    .uniqueness-wrapper {
        justify-content: center;
        gap: 40px 25px;
    }

    .uniqueness-item {
        flex: 0 1 calc(50% - 25px);
    }
}

@media (max-width: 575px) {
    .uniqueness-section {
        padding: 45px 0;
    }
    .uniqueness-head {
        margin-bottom: 30px;
    }

    .uniqueness-head .section-title {
        font-size: 25px;
    }

    .uniqueness-subtitle {
        font-size: 14px;
    }

    .uniqueness-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 34px;
    }

    .uniqueness-item {
        width: 100%;
        flex: 1 1 100%;
        min-width: auto;
    }

    .uniqueness-icon-wrap {
        width: 115px;
        height: 138px;
    }

    .uniqueness-title {
        font-size: 16px;
    }

    .uniqueness-text {
        font-size: 14px;
        max-width: 300px;
    }
}

@media (max-width: 991px) {
    .about-page-vision-wrapper.owl-carousel,
    .uniqueness-wrapper.owl-carousel {
        display: block;
        width: 100%;
    }

    .about-page-vision-wrapper.owl-carousel .owl-stage,
    .uniqueness-wrapper.owl-carousel .owl-stage {
        display: flex;
        align-items: stretch;
    }

    .about-page-vision-wrapper.owl-carousel .owl-item,
    .uniqueness-wrapper.owl-carousel .owl-item {
        display: flex;
    }

    .about-page-vision-wrapper.owl-carousel .about-page-vision-item,
    .uniqueness-wrapper.owl-carousel .uniqueness-item {
        width: 100%;
        min-width: 0;
        height: 100%;
    }

    .about-page-vision-wrapper .owl-dots,
    .uniqueness-wrapper .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
    }

    .about-page-vision-wrapper .owl-dot,
    .uniqueness-wrapper .owl-dot {
        width: 20px;
        height: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        padding: 0;
        background: transparent;
    }

    .about-page-vision-wrapper .owl-dot span,
    .uniqueness-wrapper .owl-dot span {
        width: 8px;
        height: 8px;
        display: block;
        border-radius: 999px;
        background: #d9d9d9;
        transition: width 0.25s ease, background-color 0.25s ease;
    }

    .about-page-vision-wrapper .owl-dot.active span,
    .about-page-vision-wrapper .owl-dot:hover span,
    .uniqueness-wrapper .owl-dot.active span,
    .uniqueness-wrapper .owl-dot:hover span {
        width: 20px;
        background: var(--red);
    }
}
.products-page-section {
    position: relative;
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
}

.products-page-section .container-fluid {
    width: 100%;
    padding: 0;
}


.products-page-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 34px;
    direction: rtl;
}

.products-page-sidebar {
    width: 330px;
    min-width: 330px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.products-page-count {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    text-align: right;
}

.products-page-widget {
    position: relative;
    width: 100%;
    background: var(--white);
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 10px;
    padding: 28px 22px;
    box-shadow: 0 10px 28px rgba(57, 56, 57, .06);
}

.products-page-widget-title {
    margin: 0 0 22px;
    padding-bottom: 18px;
    color: var(--black);
    font-size: 24px;
    line-height: 1.4;
    font-weight: 800;
    text-align: right;
    border-bottom: 1px solid rgba(57, 56, 57, .12);
}

.products-page-search-form {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.products-page-search-form input {
    width: 100%;
    height: 52px;
    padding: 0 45px 0 15px;
    border: 1px solid rgba(57, 56, 57, .15) !important;
    border-radius: 8px;
    background: var(--white) !important;
    color: var(--black) !important;
    font-size: 15px;
    font-weight: 500;
    outline: none !important;
    box-shadow: none !important;
    transition: all .25s ease;
}

.products-page-search-form input::placeholder {
    color: var(--gray);
}

.products-page-search-form input:focus {
    border-color: var(--red) !important;
}

.products-page-search-form button {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: var(--gray);
    font-size: 17px;
    cursor: pointer;
    transition: all .25s ease;
}

.products-page-search-form button:hover {
    color: var(--red);
}

.products-page-cats-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding: 0;
    margin: 0;
}

.products-page-cats-list li {
    margin: 0;
    padding: 0;
}

.products-page-cats-list a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 50px;
    padding: 12px 18px;
    border-radius: 8px;
    color: #777;
    background: transparent;
    border: 1px solid transparent;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.products-page-cats-list a:hover,
.products-page-cats-list a:focus,
.products-page-cats-list a.active {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: var(--white) !important;
    box-shadow: 0 10px 22px rgba(180, 0, 0, .16);
}

.products-page-main {
    flex: 1;
    min-width: 0;
}

.products-page-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.products-page-grid > .product-card {
    width: calc((100% - 56px) / 3);
}

.products-page-pagination {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.products-page-pagination ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.products-page-pagination li {
    margin: 0;
    padding: 0;
}

.products-page-pagination a,
.products-page-pagination span {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(57, 56, 57, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.products-page-pagination a:hover,
.products-page-pagination span.current {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
}

.products-page-empty {
    width: 100%;
    padding: 55px 25px;
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 12px;
    text-align: center;
    background: var(--white);
}

.products-page-empty h3 {
    margin: 0 0 10px;
    color: var(--black);
    font-size: 24px;
    font-weight: 800;
}

.products-page-empty p {
    margin: 0;
    color: var(--gray);
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 1199px) {
    .products-page-sidebar {
        width: 300px;
        min-width: 300px;
    }

    .products-page-grid > .product-card {
        width: calc((100% - 28px) / 2);
    }
}

@media (max-width: 991px) {
    .products-page-section {
        padding: 50px 0;
    }

    .products-page-layout {
        flex-direction: column;
        gap: 28px;
    }

    .products-page-sidebar {
        width: 100%;
        min-width: 100%;
    }

    .products-page-widget {
        padding: 22px 18px;
    }

    .products-page-cats-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .products-page-cats-list li {
        width: auto;
    }

    .products-page-cats-list a {
        min-height: 42px;
        padding: 10px 15px;
        white-space: nowrap;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .products-page-section {
        padding: 40px 0;
    }



    .products-page-widget-title {
        font-size: 21px;
    }

    .products-page-grid {
        gap: 18px;
    }

    .products-page-grid > .product-card {
        width: calc((100% - 18px) / 2);
    }
}

@media (max-width: 480px) {
    .products-page-grid > .product-card {
        width: 100%;
    }

    .products-page-cats-list {
        flex-direction: column;
    }

    .products-page-cats-list li,
    .products-page-cats-list a {
        width: 100%;
    }
}
.single-product {
    position: relative;
    padding: 70px 0;
    background: var(--white);
    overflow: hidden;
}

.single-product .container-fluid {
    width: 100%;
    padding: 0;
}

.single-product-container {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.single-product-hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 46px;
    direction: rtl;
}

.single-product-media {
    width: 52%;
    order: -1;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    direction: ltr;
}

.single-product-thumbs {
    width: 92px;
    min-width: 92px;
    max-height: calc((130px * 4) + (12px * 3));
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overscroll-behavior: contain;
}

.single-product-thumbs::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.single-product-thumb {
    flex: 0 0 130px;
    width: 92px;
    height: 130px;
    padding: 8px;
    border: 1px solid rgba(57, 56, 57, .14);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: all .25s ease;
    overflow: hidden;
}

.single-product-thumb.active,
.single-product-thumb:hover {
    border-color: var(--red);
}

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

.single-product-main-image {
    position: relative;
    flex: 1;
    min-height: 520px;
    border: 1px solid rgba(57, 56, 57, .14);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product-logo {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 78px;
    height: auto;
    z-index: 3;
}

.single-product-main-link {
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-product-main-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    transition: all .35s ease;
}

.single-product-actions {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    direction: rtl;
}

.single-product-media {
    flex-wrap: wrap;
}

.single-product-media .single-product-thumbs,
.single-product-media .single-product-main-image {
    margin-bottom: 0;
}

.single-product-actions {
    flex-basis: 100%;
}

.single-product-order,
.single-product-whatsapp {
    min-height: 44px;
    border-radius: 7px;
    padding: 12px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all .25s ease;
}

.single-product-order {
    flex: 1;
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
}

.single-product-order:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
}

.single-product-whatsapp {
    flex: 1;
    background: var(--white);
    border: 1px solid #00a652;
    color: #00a652;
}

.single-product-whatsapp:hover {
    background: #00a652;
    color: var(--white);
}

.single-product-info {
    width: 48%;
    order: 0;
    padding-top: 5px;
    text-align: right;
}

.single-product-category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 18px;
    border-radius: 50px;
    background: rgba(180, 0, 0, .09);
    color: var(--red);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 16px;
}

.single-product-title {
    margin: 0 0 12px;
    color: var(--black);
    font-size: 42px;
    line-height: 1.35;
    font-weight: 900;
}

.single-product-model {
    margin: 0 0 18px;
    color: var(--red);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 700;
}

.single-product-description {
    margin-bottom: 30px;
    color: #7a7a7a;
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
}

.single-product-description p {
    margin: 0;
}

.single-product-basic {
    margin-top: 22px;
}

.single-product-basic h2,
.single-product-technical h2 {
    margin: 0 0 18px;
    color: var(--black);
    font-size: 21px;
    line-height: 1.5;
    font-weight: 900;
}

.single-product-basic-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.single-product-basic-item {
    width: calc((100% - 14px) / 2);
    min-height: 66px;
    padding: 12px 16px;
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 10px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.single-product-basic-item span {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.single-product-basic-item strong {
    color: var(--black);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

.single-product-note {
    margin-top: 18px;
    min-height: 45px;
    padding: 12px 16px;
    border-radius: 9px;
    background: #f5f5f5;
    color: #556a99;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.single-product-note i {
    color: #2f5aa8;
    font-size: 14px
}

.single-product-features {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid rgba(57, 56, 57, .12);
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
}

.single-product-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
}

.single-product-feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(180, 0, 0, .08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.single-product-feature span {
    color: #777;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.single-product-technical {
    margin-top: 70px;
}

.single-product-technical h2 {
    text-align: right;
    font-size: 26px;
    margin-bottom: 24px;
}

.single-product-tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0 34px;
    direction: rtl;
}

.single-product-tech-item {
    width: calc((100% - 34px) / 2);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 16px;
    background: #f5f5f5;
}

.single-product-tech-item:nth-child(4n + 3),
.single-product-tech-item:nth-child(4n + 4) {
    background: #eeeeee;
}

.single-product-tech-item strong {
    color: var(--black);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 900;
    white-space: nowrap;
}

.single-product-tech-item span {
    color: #6f6f6f;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
}

.single-product-video {
    margin-top: 46px;
}

.single-product-video-box {
    position: relative;
    width: 100%;
    min-height: 430px;
    background: #111;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.single-product-video-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.single-product-video-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, .25));
    z-index: 1;
}

.single-product-video-box:hover .single-product-video-img {
    transform: scale(1.04);
}

.single-product-video-overlay {
    position: relative;
    z-index: 2;
}

.single-product-video-overlay span {
    width: 76px;
    height: 56px;
    border-radius: 14px;
    background: #ff0000;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: all .25s ease;
}

.single-product-video-box:hover .single-product-video-overlay span {
    transform: scale(1.08);
}

.single-related-products {
    margin-top: 70px;
}

.single-related-products-head {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.single-related-products-head h2 {
    margin: 0;
    color: var(--black);
    font-size: 31px;
    line-height: 1.4;
    font-weight: 900;
}

.single-related-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    direction: rtl;
}

.single-related-product-card {
    width: calc((100% - 48px) / 3);
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 10px;
    background: var(--white);
    overflow: hidden;
    transition: all .3s ease;
}

.single-related-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(57, 56, 57, .09);
}

.single-related-product-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.single-related-product-image {
    height: 250px;
    padding: 20px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all .35s ease;
}

.single-related-product-card:hover .single-related-product-image img {
    transform: scale(1.04);
}

.single-related-product-content {
    padding: 18px;
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.single-related-product-content h3 {
    margin: 0;
    color: var(--black);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 900;
}

.single-related-product-content p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.single-related-product-content span {
    width: fit-content;
    min-height: 36px;
    margin-top: 8px;
    padding: 8px 16px;
    border-radius: 7px;
    background: var(--red);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 1199px) {
    .single-product-hero {
        gap: 30px;
    }

    .single-product-title {
        font-size: 34px;
    }

    .single-product-main-image,
    .single-product-main-link {
        min-height: 460px;
    }

    .single-related-product-card {
        width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 991px) {
    .single-product {
        padding: 50px 0;
    }

    .single-product-hero {
        flex-direction: column;
    }

    .single-product-media,
    .single-product-info {
        width: 100%;
    }

    .single-product-info {
        padding-top: 0;
    }

    .single-product-main-image,
    .single-product-main-link {
        min-height: 430px;
    }

    .single-product-tech-item {
        width: 100%;
    }

    .single-product-tech-grid {
        gap: 0;
    }

    .single-product-tech-item:nth-child(odd) {
        background: #f5f5f5;
    }

    .single-product-tech-item:nth-child(even) {
        background: #eeeeee;
    }
}

@media (max-width: 767px) {
    .single-product-container {
        width: min(100% - 24px, 1240px);
    }

    .single-product-media {
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }

    .single-product-thumbs {
        width: 72px;
        min-width: 72px;
        max-height: 360px;
        flex-direction: column;
        overflow-x: hidden;
        overflow-y: auto;
        padding-bottom: 0;
    }

    .single-product-thumb {
        flex: 0 0 82px;
        width: 72px;
        min-width: 72px;
        height: 82px;
        padding: 6px;
    }

    .single-product-main-image,
    .single-product-main-link {
        width: 100%;
        min-height: 360px;
    }

    .single-product-title {
        font-size: 27px;
    }

    .single-product-description {
        font-size: 14px;
    }

    .single-product-basic-item {
        width: 100%;
    }

    .single-product-features {
        flex-wrap: wrap;
    }

    .single-product-feature {
        width: calc((100% - 15px) / 2);
    }

    .single-product-actions {
        flex-direction: column;
    }

    .single-product-order,
    .single-product-whatsapp {
        width: 100%;
    }

    .single-product-video-box {
        min-height: 280px;
    }

    .single-related-products {
        margin-top: 48px;
    }

    .single-related-products-head h2 {
        font-size: 24px;
    }

    .single-related-products-grid.owl-carousel {
        display: block;
        width: 100%;
    }

    .single-related-products-grid.owl-carousel .owl-stage {
        display: flex;
        align-items: stretch;
    }

    .single-related-products-grid.owl-carousel .owl-item {
        display: flex;
    }

    .single-related-products-grid.owl-carousel .single-related-product-card {
        width: 100%;
        height: 100%;
    }

    .single-related-products-grid .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin-top: 18px;
    }

    .single-related-products-grid .owl-dot {
        width: 20px;
        height: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        padding: 0;
        background: transparent;
    }

    .single-related-products-grid .owl-dot span {
        width: 8px;
        height: 8px;
        display: block;
        border-radius: 999px;
        background: #d9d9d9;
        transition: width 0.25s ease, background-color 0.25s ease;
    }

    .single-related-products-grid .owl-dot.active span,
    .single-related-products-grid .owl-dot:hover span {
        width: 20px;
        background: var(--red);
    }
}

@media (max-width: 480px) {
    .single-product-main-image,
    .single-product-main-link {
        min-height: 300px;
    }

    .single-product-title {
        font-size: 24px;
    }

    .single-product-technical {
        margin-top: 45px;
    }

    .single-product-tech-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .single-product-tech-item span {
        text-align: right;
    }
}

.maintenance-page-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.maintenance-page-section .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.maintenance-why-section {
    position: relative;
    padding: 65px 0 70px;
    background: var(--white);
    overflow: hidden;
}

.maintenance-services-section {
    position: relative;
    padding: 65px 0 75px;
    background: #fafafa;
    overflow: hidden;
}

.maintenance-services-section::before,
.maintenance-services-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 7px solid rgba(180, 0, 0, .08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.maintenance-services-section::before {
    top: 30px;
    right: -135px;
}

.maintenance-services-section::after {
    bottom: -90px;
    left: -120px;
}

.maintenance-section-head {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
 }

.maintenance-section-head .section-title {
    margin: 0;
    color: var(--black);
    font-size: 32px;
    line-height: 1.35;
    font-weight: 900;
}
.maintenance-services-section .section-title{
    text-align: center;
}

.maintenance-why-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.maintenance-why-card {
    width: calc((100% - 40px) / 3);
    min-height: 150px;
    padding: 24px 22px;
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 10px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: right;
    transition: .3s ease;
}

.maintenance-why-card:hover {
    border-top: 4px solid var(--red);
    border-left: 1px solid var(--red);
    border-right: 1px solid var(--red);
    border-bottom: 1px solid var(--red);
    box-shadow: 0 18px 40px rgba(57, 56, 57, .06);
    transform: translateY(-4px);
}

.maintenance-card-icon {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-card-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 58px;
    max-height: 58px;
    object-fit: contain;
}

.maintenance-card-icon i {
    color: var(--red);
    font-size: 28px;
}

.maintenance-why-card h3 {
    margin: 0 0 8px;
    color: var(--black);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 900;
}

.maintenance-why-card p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.85;
    font-weight: 500;
}

.maintenance-services-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.maintenance-service-card {
    width: calc((100% - 60px) / 4);
    min-height: 170px;
    padding: 28px 20px 24px;
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 10px;
    background: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: .3s ease;
}

.maintenance-service-card:hover {
    border-color: var(--red);
    box-shadow: 0 18px 40px rgba(57, 56, 57, .07);
    transform: translateY(-5px);
}

.maintenance-service-icon {
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maintenance-service-icon img {
    display: block;
    width: auto;
    height: auto;
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
}

.maintenance-service-icon i {
    color: var(--red);
    font-size: 30px;
}

.maintenance-service-card h3 {
    margin: 0 0 8px;
    color: var(--black);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 900;
}

.maintenance-service-card p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.maintenance-request-section {
    position: relative;
    padding: 65px 0 75px;
    background: var(--white);
    overflow: hidden;
}

.maintenance-request-section .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.maintenance-request-head {
    margin-bottom: 28px;
    text-align: right;
}

.maintenance-request-head .section-title {
    margin: 0 0 8px;
    color: var(--black);
    font-size: 32px;
    line-height: 1.35;
    font-weight: 900;
}

.maintenance-request-head p {
    margin: 0;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 600;
}

.maintenance-request-box {
    width: 100%;
    padding: 42px 42px 36px;
    border: 1px solid rgba(57, 56, 57, .14);
    border-radius: 14px;
    background: var(--white);
}

.maintenance-cf7-form {
    width: 100%;
}

.maintenance-form-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.maintenance-form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.maintenance-form-group label {
    margin: 0;
    color: var(--black);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

.maintenance-form-full {
    margin-bottom: 30px;
}

.maintenance-cf7-form input,
.maintenance-cf7-form textarea {
    width: 100%;
    border: 1px solid rgba(57, 56, 57, .14) !important;
    border-radius: 12px !important;
    background: var(--white) !important;
    color: var(--black) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: .3s ease;
}

.maintenance-cf7-form input {
    height: 50px !important;
    padding: 0 16px !important;
}

.maintenance-cf7-form textarea {
    min-height: 190px !important;
    max-height: 260px !important;
    resize: vertical;
    padding: 16px !important;
}

.maintenance-cf7-form input::placeholder,
.maintenance-cf7-form textarea::placeholder {
    color: rgba(57, 56, 57, .45) !important;
}

.maintenance-cf7-form input:focus,
.maintenance-cf7-form textarea:focus {
    border-color: var(--red) !important;
}

.maintenance-form-submit {
    width: 100%;
}

.maintenance-form-submit p {
    margin: 0;
}

.maintenance-cf7-form input[type="submit"],
.maintenance-cf7-form .wpcf7-submit {
    width: 100% !important;
    height: 56px !important;
    border: 0 !important;
    border-radius: 10px !important;
    background: var(--red) !important;
    color: var(--white) !important;
    font-size: 16px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.maintenance-cf7-form input[type="submit"]:hover,
.maintenance-cf7-form .wpcf7-submit:hover {
    background: var(--red-dark) !important;
    transform: translateY(-2px);
}

.maintenance-form-note {
    margin: 18px 0 0;
    color: rgba(57, 56, 57, .55);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
    text-align: center;
}

.maintenance-cf7-form .wpcf7-spinner {
    display: none;
}

.maintenance-cf7-form .wpcf7-not-valid-tip {
    margin-top: 7px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
}

.maintenance-cf7-form .wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 14px 18px !important;
    border-radius: 10px !important;
    color: var(--black) !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center;
}

@media (max-width: 991px) {
    .maintenance-why-card {
        width: calc((100% - 20px) / 2);
    }

    .maintenance-service-card {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 767px) {
    .maintenance-why-section,
    .maintenance-services-section,
    .maintenance-request-section {
        padding: 45px 0 50px;
    }

    .maintenance-section-head .section-title,
    .maintenance-request-head .section-title {
        font-size: 26px;
    }

    .maintenance-request-head p {
        font-size: 14px;
    }

    .maintenance-why-grid,
    .maintenance-services-grid {
        gap: 14px;
    }

    .maintenance-why-card,
    .maintenance-service-card {
        width: 100%;
    }

    .maintenance-why-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .maintenance-service-card {
        min-height: auto;
        padding: 24px 18px;
    }

    .maintenance-request-box {
        padding: 28px 18px;
        border-radius: 12px;
    }

    .maintenance-form-row {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 18px;
    }

    .maintenance-cf7-form textarea {
        min-height: 150px !important;
    }
}

@media (max-width: 575px) {
    .maintenance-page-section .container,
    .maintenance-request-section .container {
        width: min(100% - 24px, 1200px);
    }

    .maintenance-section-head {
        margin-bottom: 22px;
    }

    .maintenance-section-head .section-title,
    .maintenance-request-head .section-title {
        font-size: 24px;
    }

    .maintenance-request-head {
        text-align: center;
    }

    .maintenance-cf7-form input[type="submit"],
    .maintenance-cf7-form .wpcf7-submit {
        height: 52px !important;
        font-size: 14px !important;
    }
}
.contact-page-section {
    position: relative;
    padding: 65px 0 75px;
    background: var(--white);
    overflow: hidden;
}

.contact-page-section .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.contact-page-grid {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.contact-info-card,
.contact-form-card {
    width: calc((100% - 20px) / 2);
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 12px;
    background: var(--white);
    padding: 30px;
}

.contact-card-title {
    margin: 0 0 26px;
    color: var(--black);
    font-size: 27px;
    line-height: 1.35;
    font-weight: 900;
    text-align: right;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 14px;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    background: rgba(180, 0, 0, .72);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    color: var(--white);
    font-size: 18px;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-content h3 {
    margin: 0 0 6px;
    color: var(--black);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 900;
}

.contact-info-content p,
.contact-info-content a {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: .3s ease;
}

.contact-info-content a:hover {
    color: var(--red);
}

.contact-social {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(57, 56, 57, .10);
 }

.contact-social h3 {
    margin: 0 0 14px;
    color: var(--black);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 900;
}

.contact-social-links {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
}

.contact-social-links a {
    color: rgba(180, 0, 0, .72);
    font-size: 17px;
    text-decoration: none;
    transition: .3s ease;
}

.contact-social-links a:hover {
    color: var(--red);
    transform: translateY(-2px);
}

.contact-form-card {
    padding: 30px;
}

.contact-form-head {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.contact-form-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(180, 0, 0, .15);
    background: rgba(180, 0, 0, .05);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form-icon i {
    color: var(--red);
    font-size: 15px;
}

.contact-form-head h2 {
    margin: 0;
    color: var(--black);
    font-size: 22px;
    line-height: 1.4;
    font-weight: 900;
}

.contact-cf7-form {
    width: 100%;
}

.contact-form-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.contact-form-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.contact-form-group label {
    margin: 0;
    color: var(--black);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 800;
}

.contact-form-full {
    margin-bottom: 16px;
}

.contact-cf7-form input,
.contact-cf7-form textarea {
    width: 100%;
    border: 1px solid rgba(57, 56, 57, .12) !important;
    border-radius: 10px !important;
    background: var(--white) !important;
    color: var(--black) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: .3s ease;
}

.contact-cf7-form input {
    height: 42px !important;
    padding: 0 14px !important;
}

.contact-cf7-form textarea {
    min-height: 112px !important;
    max-height: 190px !important;
    resize: vertical;
    padding: 14px !important;
}

.contact-cf7-form input::placeholder,
.contact-cf7-form textarea::placeholder {
    color: rgba(57, 56, 57, .45) !important;
}

.contact-cf7-form input:focus,
.contact-cf7-form textarea:focus {
    border-color: var(--red) !important;
}

.contact-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.contact-form-submit {
    width: calc(50% - 7px);
}

.contact-form-submit p {
    margin: 0;
}

.contact-cf7-form input[type="submit"],
.contact-cf7-form .wpcf7-submit {
    width: 100% !important;
    height: 44px !important;
    border: 0 !important;
    border-radius: 9px !important;
    background: var(--red) !important;
    color: var(--white) !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.contact-cf7-form input[type="submit"]:hover,
.contact-cf7-form .wpcf7-submit:hover {
    background: var(--red-dark) !important;
    transform: translateY(-2px);
}

.contact-form-whatsapp {
    width: calc(50% - 7px);
    height: 44px;
    border-radius: 9px;
    background: #089c3d;
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: .3s ease;
}

.contact-form-whatsapp:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.contact-cf7-form .wpcf7-spinner {
    display: none;
}

.contact-cf7-form .wpcf7-not-valid-tip {
    margin-top: 6px;
    color: var(--red);
    font-size: 12px;
    font-weight: 700;
}

.contact-cf7-form .wpcf7-response-output {
    margin: 16px 0 0 !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    color: var(--black) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-align: center;
}

.contact-map-wrapper {
    position: relative;
    width: 100%;
    height: 360px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.contact-map-embed {
    width: 100%;
    height: 100%;
}

.contact-map-embed iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block;
}

.contact-map-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 260px;
    padding: 24px 20px;
    border-radius: 8px;
    background: var(--white);
    text-align: center;
    transform: translate(-50%, -50%);
    box-shadow: 0 18px 40px rgba(57, 56, 57, .15);
    z-index: 2;
}

.contact-map-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(180, 0, 0, .08);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-map-icon i {
    color: var(--red);
    font-size: 19px;
}

.contact-map-card h3 {
    margin: 0 0 6px;
    color: var(--black);
    font-size: 17px;
    line-height: 1.5;
    font-weight: 900;
}

.contact-map-card p {
    margin: 0 0 14px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}

.contact-map-card a {
    min-height: 38px;
    padding: 9px 16px;
    border-radius: 7px;
    background: var(--red);
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.contact-map-card a:hover {
    background: var(--red-dark);
    color: var(--white);
}

@media (max-width: 991px) {
    .contact-page-grid {
        flex-direction: column-reverse;
    }

    .contact-info-card,
    .contact-form-card {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .contact-page-section {
        padding: 45px 0 55px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px 18px;
    }

    .contact-form-row {
        flex-direction: column;
        gap: 14px;
    }

    .contact-form-actions {
        flex-direction: column;
    }

    .contact-form-submit,
    .contact-form-whatsapp {
        width: 100%;
    }

    .contact-map-wrapper {
        height: 320px;
    }

    .contact-map-card {
        width: min(250px, calc(100% - 40px));
    }
}

@media (max-width: 575px) {
    .contact-page-section .container {
        width: min(100% - 24px, 1200px);
    }

    .contact-card-title {
        font-size: 23px;
    }

    .contact-form-head h2 {
        font-size: 20px;
    }

    .contact-info-item {
        gap: 10px;
    }

    .contact-info-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }
}
.news-page-section {
    position: relative;
    padding: 55px 0 35px;
    background: var(--white);
    overflow: hidden;
}

.news-page-section .container,
.news-page-list-section .container,
.news-empty-section .container {
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.news-search-form {
    position: relative;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 14px;
}

.news-search-input {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(57, 56, 57, .12) !important;
    border-radius: 8px !important;
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 0 46px 0 16px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    outline: none !important;
    box-shadow: none !important;
    transition: .3s ease;
}

.news-search-input::placeholder {
    color: rgba(57, 56, 57, .45) !important;
}

.news-search-input:focus {
    border-color: var(--red) !important;
}

.news-search-btn {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: rgba(57, 56, 57, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
}

.news-search-btn:hover {
    color: var(--red);
}

.news-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.news-filter-tab {
    min-height: 34px;
    padding: 8px 18px;
    border-radius: 999px;
    background: #f6f6f6;
    color: var(--gray);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.news-filter-tab:hover,
.news-filter-tab.active {
    background: var(--red);
    color: var(--white);
}

.news-featured-card {
    position: relative;
    width: 100%;
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 16px;
    background: var(--white);
    overflow: hidden;
}

.news-featured-link {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: row;
    text-decoration: none;
    color: inherit;
    min-height: 250px;
}

.news-featured-content {
    width: 50%;
    padding: 34px 44px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.news-featured-badges {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.news-featured-badge {
    padding: 7px 14px;
    border-radius: 8px;
    background: rgba(180, 0, 0, .08);
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.news-featured-badge.main {
    background: var(--red);
    color: var(--white);
}

.news-featured-title {
    margin: 0 0 14px;
    color: var(--black);
    font-size: 27px;
    line-height: 1.35;
    font-weight: 900;
}

.news-featured-text {
    margin: 0 0 22px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.9;
    font-weight: 500;
}

.news-featured-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.news-featured-meta span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    color: rgba(57, 56, 57, .55);
    font-size: 12px;
    font-weight: 600;
}

.news-featured-meta i {
    color: var(--red);
    font-size: 14px;
}

.news-featured-image {
    width: 50%;
    min-height: 250px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .5s ease;
}

.news-featured-card:hover .news-featured-image img {
    transform: scale(1.04);
}

.news-page-list-section {
    padding-top: 50px;
}

.news-empty-section {
    padding: 60px 0;
    background: var(--white);
}

.news-empty-text {
    margin: 0;
    text-align: center;
    color: var(--black);
    font-size: 18px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .news-featured-link {
        flex-direction: column-reverse;
    }

    .news-featured-content,
    .news-featured-image {
        width: 100%;
    }

    .news-featured-image {
        min-height: 280px;
    }

    .news-featured-content {
        padding: 28px 24px;
    }

    .news-featured-title {
        font-size: 23px;
    }
}

@media (max-width: 575px) {
    .news-page-section {
        padding: 35px 0 25px;
    }

    .news-filter-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        margin-bottom: 30px;
    }

    .news-filter-tabs::-webkit-scrollbar {
        height: 0;
    }

    .news-filter-tab {
        flex: 0 0 auto;
        font-size: 12px;
        padding: 8px 15px;
    }

    .news-featured-image {
        min-height: 210px;
    }

    .news-featured-content {
        padding: 24px 18px;
    }

    .news-featured-title {
        font-size: 20px;
    }

    .news-featured-text {
        font-size: 14px
    }

    .news-featured-meta {
        gap: 12px;
    }

    .news-featured-meta span {
        font-size: 11px;
    }
}

.archive-filter-toggle {
    display: none;
}

.news-page-tools {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto 14px;
}

.news-page-tools .news-search-form {
    margin: 0;
}

@media (max-width: 991px) {
    .archive-filter-toggle {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        border-radius: 10px;
        background: var(--red);
        color: var(--white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        box-shadow: 0 10px 22px rgba(180, 0, 0, .18);
        transition: all .25s ease;
    }

    .archive-filter-toggle.active,
    .archive-filter-toggle:hover {
        background: var(--red-dark);
        color: var(--white);
        transform: translateY(-2px);
    }

    .products-page-sidebar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 52px;
        align-items: start;
        gap: 12px;
    }

    .products-page-count,
    .products-page-cats-widget {
        grid-column: 1 / -1;
    }

    .products-page-sidebar > .products-page-widget:not(.products-page-cats-widget) {
        grid-column: 1;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .products-page-sidebar > .products-page-widget:not(.products-page-cats-widget) .products-page-widget-title {
        display: none;
    }

    .products-page-filter-toggle {
        grid-column: 2;
    }

    .products-page-cats-widget {
        display: none;
        margin-top: 2px;
        padding: 16px;
    }

    .products-page-cats-widget.archive-filter-dropdown-open {
        display: block;
    }

    .products-page-cats-list {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .products-page-cats-list li,
    .products-page-cats-list a {
        width: 100%;
    }

    .news-page-tools {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

    .news-page-tools .news-search-form {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
    }

    .news-filter-tabs {
        display: none;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 8px;
        margin: 0 0 32px;
        padding: 14px;
        border: 1px solid rgba(57, 56, 57, .12);
        border-radius: 10px;
        background: var(--white);
        box-shadow: 0 10px 28px rgba(57, 56, 57, .06);
        overflow: visible;
    }

    .news-filter-tabs.archive-filter-dropdown-open {
        display: flex;
    }

    .news-filter-tab {
        width: 100%;
        min-height: 42px;
        justify-content: flex-start;
        border-radius: 8px;
        padding: 10px 15px;
    }
}

@media (max-width: 575px) {
    .archive-filter-toggle {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
        font-size: 16px;
    }

    .products-page-sidebar {
        grid-template-columns: minmax(0, 1fr) 46px;
    }

    .products-page-search-form input,
    .news-search-input {
        height: 46px;
    }

    .news-filter-tabs {
        overflow: visible;
        padding-bottom: 14px;
        margin-bottom: 28px;
    }

    .news-filter-tab {
        flex: initial;
        font-size: 13px;
    }
}

.single-news-section {
    position: relative;
    padding: 55px 0 70px;
    background: var(--white);
    overflow: hidden;
}

.single-news-section::before,
.single-news-section::after {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border: 7px solid rgba(180, 0, 0, .08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.single-news-section::before {
    top: 58%;
    right: -135px;
}

.single-news-section::after {
    bottom: 70px;
    left: -135px;
}

.single-news-section .container {
    position: relative;
    z-index: 2;
    width: min(1200px, calc(100% - 30px));
    margin: 0 auto;
}

.single-news-head {
    width: min(950px, 100%);
    margin: 0 auto 34px;
    text-align: center;
}

.single-news-cat {
    width: fit-content;
    margin: 0 auto 12px;
    padding: 8px 15px;
    border-radius: 999px;
    background: rgba(180, 0, 0, .07);
    color: var(--red);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-news-title {
    width: min(920px, 100%);
    margin: 0 auto 18px;
    color: var(--black);
    font-size: 44px;
    line-height: 1.35;
    font-weight: 900;
    text-align: center;
}

.single-news-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.single-news-meta span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(57, 56, 57, .55);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.single-news-meta i {
    color: var(--red);
    font-size: 16px;
}

.single-news-image {
    width: 100%;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 38px;
}

.single-news-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.single-news-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.single-news-sidebar {
    width: 300px;
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.single-news-main {
    flex: 1;
    min-width: 0;
}

.news-sidebar-box,
.news-sidebar-consult {
    width: 100%;
    border: 1px solid rgba(57, 56, 57, .12);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
}

.news-sidebar-box {
    padding: 18px;
}

.news-sidebar-title {
    position: relative;
    margin: 0 0 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(57, 56, 57, .08);
    color: var(--black);
    font-size: 17px;
    line-height: 1.4;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.news-sidebar-title i {
    color: rgba(57, 56, 57, .55);
    font-size: 12px;
}

.news-sidebar-search form {
    position: relative;
    width: 100%;
}

.news-sidebar-search input {
    width: 100%;
    height: 42px;
    border: 1px solid rgba(57, 56, 57, .12) !important;
    border-radius: 8px !important;
    background: var(--white) !important;
    color: var(--black) !important;
    padding: 0 38px 0 12px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    outline: none !important;
    box-shadow: none !important;
}

.news-sidebar-search input::placeholder {
    color: rgba(57, 56, 57, .45) !important;
}

.news-sidebar-search input:focus {
    border-color: var(--red) !important;
}

.news-sidebar-search button {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    padding: 0;
    margin: 0;
    background: transparent;
    color: rgba(57, 56, 57, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.news-sidebar-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-sidebar-categories li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row-reverse;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(57, 56, 57, .06);
}

.news-sidebar-categories li:last-child {
    border-bottom: 0;
}

.news-sidebar-categories li span {
    color: var(--red);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
}

.news-sidebar-categories li a {
    flex: 1;
    color: var(--gray);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
}

.news-sidebar-categories li a:hover {
    color: var(--red);
}

.news-latest-list {
    display: flex;
    flex-direction: column;
}

.news-latest-item {
    padding: 0 0 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(57, 56, 57, .08);
    text-decoration: none;
    display: block;
}

.news-latest-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.news-latest-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--black);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 900;
    transition: .3s ease;
}

.news-latest-item:hover strong {
    color: var(--red);
}

.news-latest-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.news-latest-meta span {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    color: rgba(57, 56, 57, .55);
    font-size: 11px;
    line-height: 1.6;
    font-weight: 500;
}

.news-latest-meta i {
    color: var(--red);
    font-size: 16px;
}

.news-sidebar-consult {
    padding: 26px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fff7f7 100%);
}

.news-sidebar-consult h3 {
    margin: 0 0 10px;
    color: var(--black);
    font-size: 20px;
    line-height: 1.5;
    font-weight: 900;
}

.news-sidebar-consult p {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
}

.btn-consult {
    width: 100%;
    min-height: 44px;
    margin-top: 16px;
    border-radius: 9px;
    background: #089c3d;
    color: var(--white);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: .3s ease;
}

.btn-consult:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.single-news-excerpt {
    margin: 0 0 28px;
    padding: 22px 30px;
    border-right: 5px solid var(--red);
    border-radius: 8px;
    background: #f7f7f7;
    color: var(--black);
    font-size: 21px;
    line-height: 1.75;
    font-weight: 900;
    text-align: center;
}

.single-news-content {
    color: var(--gray);
    font-size: 16px;
    line-height: 2.1;
    font-weight: 500;
}
.single-news-content-main{
    color: var(--gray);
    font-size: 20px;
    line-height: 2.1;
    font-weight: 500;
}

.single-news-item {
    margin-bottom: 26px;
}

.single-news-item:last-child {
    margin-bottom: 0;
}

.single-news-content h1,
.single-news-content h2,
.single-news-content h3,
.single-news-content h4,
.single-news-content h5,
.single-news-content h6 {
    position: relative;
    margin: 0 0 12px;
    padding-right: 18px;
    color: var(--black);
    line-height: 1.45;
    font-weight: 900;
}

.single-news-content h1::before,
.single-news-content h2::before,
.single-news-content h3::before,
.single-news-content h4::before,
.single-news-content h5::before,
.single-news-content h6::before {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 4px;
    height: 30px;
    border-radius: 30px;
    background: var(--red);
}

.single-news-content h2 {
    font-size: 30px;
}

.single-news-content h3 {
    font-size: 26px;
}

.single-news-content p {
    margin: 0 0 20px;
    color: var(--gray);
    font-size: 16px;
    line-height: 2.1;
    font-weight: 500;
}

.single-news-item-text p:last-child {
    margin-bottom: 0;
}

.single-news-content ul,
.single-news-content ol {
    margin: 0 0 22px;
    padding-right: 24px;
    color: var(--gray);
}

.single-news-content li {
    margin-bottom: 10px;
    color: var(--gray);
    font-size: 16px;
    line-height: 2;
    font-weight: 500;
}

.single-news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
}

.single-news-content a {
    color: var(--red);
    font-weight: 800;
    text-decoration: none;
}

.single-related-news {
    position: relative;
    margin-top: 65px;
}

.single-related-head {
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.single-related-head h2 {
    margin: 0;
    color: var(--black);
    font-size: 31px;
    line-height: 1.4;
    font-weight: 900;
}

.single-related-more {
    min-height: 42px;
    padding: 10px 22px;
    border: 1px solid var(--red);
    border-radius: 7px;
    background: transparent;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: .3s ease;
}

.single-related-more:hover {
    background: var(--red);
    color: var(--white);
}

@media (max-width: 991px) {
    .single-news-layout {
        flex-direction: column;
    }

    .single-news-sidebar {
        width: 100%;
        flex: 0 0 auto;
        order: 2;
    }

    .single-news-main {
        width: 100%;
        order: 1;
    }

    .single-news-title {
        font-size: 34px;
    }

    .single-news-image {
        height: 340px;
    }

    .single-related-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .single-news-section {
        padding: 38px 0 50px;
    }

    .single-news-title {
        font-size: 27px;
    }

    .single-news-meta {
        gap: 12px;
    }

    .single-news-meta span {
        font-size: 12px;
    }

    .single-news-image {
        height: 260px;
        border-radius: 12px;
        margin-bottom: 28px;
    }

    .single-news-excerpt {
        padding: 18px 16px;
        font-size: 17px;
        line-height: 1.8;
    }

    .single-news-content p,
    .single-news-content li {
        font-size: 14px;
        line-height: 2;
    }

    .single-news-content h2 {
        font-size: 23px;
    }

    .single-news-content h3 {
        font-size: 21px;
    }

    .single-related-head h2 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .single-news-section .container {
        width: min(100% - 24px, 1200px);
    }

    .single-news-title {
        font-size: 24px;
    }

    .single-news-image {
        height: 220px;
    }

    .news-sidebar-box,
    .news-sidebar-consult {
        border-radius: 10px;
    }

    .single-related-more {
        width: 100%;
    }
}
