@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    --inter: "Inter", sans-serif;
    --larken: "larken",sans-serif;

    --bodyfont: var(--inter);
    --headingfont: var(--larken);

    --textcolor: #1E252B;
    --aegeanBlue: #41617C;

    --siteOrange: #CE6633;
    --siteBlue: #36536C;
    --lightBlue: #C0DBEB;
    --darkBlue: #27415C;
    --siteLightGray: #E8E9EC;

    --cream: #F5F5F6;

    --siteTransition: all 0.3s ease-in-out;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: var(--bodyfont);
    color: var(--textcolor);
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    font-family: var(--headingfont);
}

a {
    text-decoration: none;
}

a:focus,
button:focus,
.button:focus {
    outline: none;
}

@media (min-width:1560px) {

    :is(.footer_section) .container {
        max-width: 1500px;
    }
    /* :is(.main_header,
        .footer_section,
        .process_section,
        .other_pg_banner, .blog_listing_wrapper, .cc_tab_content_section,) .container {
        max-width: 1440px;
    }
    :is(.installation_wrapper) .container {
        max-width: 1680px;
    }

    :is(.facility_section) .container {
        max-width: 1600px;
    } */
}

@media (min-width:1660px) {
    /* .container {
        max-width: 1600px;
    } */
}

.inner_container {
    max-width: 1200px;
}


/* Common */
.all_btn {
    display: inline-flex;
    justify-content: center;
    padding: 0.875rem 1.3rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-weight: 400;
    position: relative;
    color: var(--bs-black);
    border: 2px solid transparent;
    transition: var(--siteTransition);
    z-index: 1;
    overflow: hidden;
    line-height: 1;
    text-transform: capitalize;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 5px;
}

.long_width_btn {
    min-width: 250px;
}

.all_btn:focus {
    color: var(--bs-white);
}

.all_btn_radius {
    border-radius: 5px;
}

.aegeanBlue_btn {
    color: var(--bs-white);
    background: var(--aegeanBlue);
}

.aegeanBlue_btn:hover {
    color: var(--bs-white);
    background: var(--siteOrange);
}
.light_blue_btn {
    color: var(--textcolor);
    background: var(--lightBlue);
}

.light_blue_btn:hover {
    color: var(--bs-white);
    background: var(--siteOrange);
}

.white_btn {
    background: var(--bs-white);
    color: var(--bs-black);
    border-color: var(--bs-white);
}

.white_btn:hover {
    background: transparent;
    border-color: var(--bs-white);
    color: var(--bs-white);
}

.white_btn.outline_btn {
    background: transparent;
    color: var(--bs-white);
}

.white_btn.outline_btn:hover {
    background: var(--bs-white);
    color: var(--bs-black);
}

.black_btn {
    background: var(--bs-black);
    color: var(--bs-white);
}

.black_btn:hover {
    background: transparent;
    border-color: var(--bs-black);
    color: var(--bs-black);
}

.black_btn.outline_btn {
    background: transparent;
    color: var(--bs-black);
    border-color: var(--bs-black);
}

.black_btn.outline_btn:hover {
    background: var(--bs-black);
    color: var(--bs-white);
}

.aegeanBlue_btn.outline_btn {
    background: transparent;
    border-color: var(--aegeanBlue);
    color: var(--textcolor);
}

.aegeanBlue_btn.outline_btn:hover {
    color: var(--bs-white);
    background: var(--siteOrange);
    border-color: var(--siteOrange);
}

/* =================== 
    Common Style 
=================== */
[class^="text_box"] p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--textcolor);
    margin-bottom: 1.5rem;
}

[class^="text_box"] h4 {
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 600;
    color: var(--textcolor);
    margin-bottom: 1.5rem;
}

[class^="text_box"] ul {
    margin: 0;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

[class^="text_box"][class*="_md"] :is(p, li) {
    font-size: 1.125rem;
    line-height: 1.65;
}

[class^="text_box"][class*="_lg"] :is(p, li) {
    font-size: 1.25rem;
    line-height: 1.65;
}

[class^="text_box"][class*="_xl"] :is(p, li) {
    font-size: clamp(1rem, 1.5vw, 1.375rem);
    line-height: 1.56;
}

[class^="text_box"][class*="_xxl"] :is(p, li) {
    font-size: 1.5rem;
    line-height: 1.56;
}


[class^="text_box"] p:last-child {
    margin-bottom: 0;
}

[class^="text_box"][class*="light"] :is(p, h3, h4, h5, h6, li) {
    color: #fffffff2;
}

[class^="text_box"] a {
    color: var(--primary);
}

[class^="text_box"] a:hover {
    text-decoration: underline;
}

.the_beyond_font {
    font-family: var(--the-beyond);
}

.common_vertical_padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.common_padding_bottom {
    padding-bottom: 4rem !important;

}

.common_light_bg {
    background: var(--siteLightGray) !important;
}
.cream_bg{
    background: var(--cream) !important;
}
.blue_bg{
    background: var(--siteBlue) !important;
}
.dark_blue_bg{
    background: var(--darkBlue) !important;
}

.dark_bg{
    background: var(--textcolor) !important;
}

.section_head h2 {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    line-height: 1.2;
    font-weight: normal;
    margin-bottom: 0;
}

.section_head h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    font-weight: normal;
    text-wrap: balance;
}


.section_head_white h2,
.section_head_white h3,
.section_head_white h4,
.section_head_white h2,
.section_head_white h6 {
    color: var(--bs-white);
}

.section_head_underline h5 {
    position: relative;
    color: var(--siteOrange);
}


.section_head_underline h5::after {
    content: "";
    width: clamp(50px, 7vw + 0.5rem, 70px);
    height: 2px;
    background-color: var(--siteOrange);
    position: absolute;
    bottom: -6px;
    left: 0;
}
.section_head_underline_center h5::after{
    left: 50%;
    transform: translateX(-50%);
}

.section_head_underline_light h5 {
    color: #E5A34D;
}
.section_head_underline_light h5::after {
    background-color: #E5A34D;
}

.section_head h2 :is(span, b) {
    font-weight: inherit;
    position: relative;
    z-index: 1;
}

.section_head h2 :is(span, b)::after {
    position: absolute;
    content: "";
    top: 70%;
    left: -5px;
    width: 100%;
    height: 1rem;
    background: #15fff7;
    opacity: 0.251;
    z-index: -1;
}

.section_head h5 {
    font-size: clamp(1rem, 3vw + 0.5rem, 1.125em);
    line-height: 1.4;
    font-weight: normal;
    text-wrap: balance;
    margin-bottom: 1rem;
}

.section_head p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.56;
}

.section_head p:last-child {
    margin-bottom: 0;
}

.section_head_small :is(h3, h4) {
    font-size: 2.12em;
    font-weight: 800;
}

.section_head_small :is(h3, h4) :is(span, b, strong) {
    font-weight: 800;
    color: var(--sitePrimaryColor);
}

.section_head_big h2 {
    font-size: clamp(2rem, 3vw + 0.5rem, 4rem);
}

.section_head h6 {
    font-size: 1rem;
    letter-spacing: clamp(4px, 1vw, 10px);
    font-weight: 700;
    color: var(--siteRed);
}


.section_head_dark :is(h2, h3, h4) {
    color: var(--bs-black);
}

.section_head_dark p {
    color: var(--bs-black);
}

.section_head_dark h4 {
    color: var(--primary);
}

.section_head_light :is(h1, h2, h3, h4) {
    color: var(--bs-white);
}

.section_head_light p {
    color: var(--bs-white);
}



/* ==========
    Header 
========= */
/* Header Top */
.header_top {
    background: var(--textcolor);
}
 
.header_top_list {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    list-style: none;
    padding: 0.6rem 0;
    margin: 0;
}
 
.header_top_list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 400;
    white-space: nowrap;
}
 
.header_top_list li i {
    font-size: 0.9rem;
    color: #ffffff;
}

/* Main Header */
.main_header {
    padding: 1rem 0;
}

.header_border {
    border-bottom: 1px solid #ffffff26;
}

.logo {
    max-width: 230px;
}

.logo a {
    padding: 0.7rem 0;
    display: block;
}

.logo img {
    max-width: 100%;
}

.mob_menu_btn {
    box-shadow: none;
}


.main_nav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}

.main_nav>ul {
    column-gap: 2rem;
}

.main_nav li>a {
    padding: .5rem 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.2;
    font-weight: 500;
    color: var(--textcolor);
    text-transform: capitalize;
    transition: var(--siteTransition);
    position: relative;
}

.main_nav > ul > li>a::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--siteOrange);
    transition: var(--siteTransition);
}

.main_nav > ul > li>a:hover::after {
    width: 100%;
}

.dropdown_icon {
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
}

/* dropdown container needs relative positioning */
.main_nav li {
    position: relative;
}
.dropdown_icon i {
    display: inline-block;
    transition: var(--siteTransition);
    font-size: .875rem;
}

.main_nav li:hover .dropdown_icon i {
    transform: rotate(180deg);
}

/* submenu: hidden by default, positioned absolutely */
.main_nav ul ul {
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    width: 200px;
    padding: 1rem;
    background: #ffffff;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 10;
}

.main_nav li:hover > ul {
    display: flex;
}

.main_nav ul ul li > a {
    color: #000;
}
.main_nav ul ul li{
    width: 100%;
}
.main_nav ul ul li:hover > a {
    color: var(--siteOrange);
}


/* Header Actions */
.header_actions {
    display: flex;
    align-items: center;
    gap: 1.45rem;
    flex-wrap: wrap;
}

.header_action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 32px;
    color: var(--aegeanBlue);
    font-size: 1.25rem;
    transition: var(--siteTransition);
}

.header_action:hover {
    color: var(--siteOrange);
}

.header_action:first-child {
    font-size: 1.2rem;
}

.header_action:nth-child(2) {
    font-size: 1.2rem;
}

.header_action:nth-child(3) {
    font-size: 1.2rem;
}


.dropdown_icon i {
    display: inline-block;
    transition: var(--siteTransition);
    transform: rotate(0deg);
}



/* ===================
    Banner Section
=================== */
.banner_lr_content_box {
    padding: 4rem 2rem 4rem 0;
}

.home_banner_section h1,
h1 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    line-height: 1.2;
    color: var(--textcolor);
    margin-bottom: 1.5rem;
}

.banner_wrap {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: clamp(350px, 50vw, 80dvh);
}

.banner_wrap::after {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--bs-white);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.leftright_img_box {
    width: 50%;
    height: 100%;
}

.hero_product_card {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-42%);
    width: 280px;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 20px 45px rgba(20, 30, 40, 0.18);
    overflow: hidden;
}
 
.hero_product_media {
    position: relative;
    background: var(--siteLightGray);
}
 
.hero_product_badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ffffff;
    color: var(--siteOrange);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 3px;
    letter-spacing: 0.2px;
}
 
.hero_product_wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--textcolor);
    font-size: 0.9rem;
}
 
.hero_product_media img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}
 
.hero_product_body {
    padding: 1.5rem;
}
 
.hero_product_body h3 {
    font-family: var(--headingfont);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--textcolor);
    margin-bottom: 0.6rem;
}
 
.hero_product_body p {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--textcolor);
    margin-bottom: 0.9rem;
}
 
.hero_product_price {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--textcolor);
    margin-bottom: 1.1rem;
}



/* ====================
    Condition Section
=======================*/
.conditions_section .tree_branch{
    position: absolute;
    top: 0;
    left: 0;
}
.tree_branch img{
    width: 100%;
    max-width: clamp(230px, 50vw, 700px);
    object-fit: scale-down;
}
.condition_card {
    min-height: clamp(200px, 20vw, 240px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.45rem 1.8rem 1.5rem;
    background: #ffffff;
    border: 2px solid #52738c;
    border-radius: 11px;
    height: 100%;
    transition: var(--siteTransition);
}

.condition_card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(38, 65, 84, 0.08);
    background-color: #e4edf1;
}

.condition_card .condition_number span{
    display: none;
    opacity: 0;
    transition: var(--siteTransition);
}
.condition_card:hover .condition_number{
    background: #ffffff;
}
.condition_card:hover .condition_number span{
    display: block;
    opacity: 1;
}

.condition_number {
    min-width: 31px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 8px;
    margin-bottom: 0.75rem;
    border-radius: 20px;
    background: #eef5f7;
    color: var(--siteOrange);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}

.condition_card_featured .condition_number {
    background: #ffffff;
    padding-right: 9px;
}

.condition_number span {
    color: var(--siteOrange);
    font-size: 0.75rem;
    font-weight: 500;
}

.condition_card h3 {
    margin-bottom: 1rem;
    color: #11181e;
    font-family: var(--headingfont);
    font-size: clamp(1.45rem, 2vw, 1.7rem);
    font-weight: 400;
    line-height: 1.2;
}

.condition_card p {
    margin: 0;
    color: var(--bs-black);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
}

.condition_link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 1.1rem;
    color: #456985;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    transition: var(--siteTransition);
}

.condition_link i {
    font-size: 0.75rem;
    transition: transform 0.25s ease-in-out;
}

.condition_link:hover {
    color: var(--darkBlue);
}

.condition_link:hover i {
    transform: translateX(4px);
}


.fit_check_card {
    position: relative;
    overflow: hidden;
    border: none;
    background-image: url("../img/fit-check-image.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.fit_check_card :is(h3,p){
    color: var(--bs-white);
}
.fit_check_card p{
    width: 75%;
}

.fit_check_image {
    position: absolute;
    right: -5px;
    bottom: 0;
    width: 43%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.fit_check_image img {
    width: 100%;
    height: 90%;
    display: block;
    object-fit: contain;
    object-position: right bottom;
}

.fit_check_card .condition_link {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.15rem;
    padding: 0.65rem 0.9rem;
    border-radius: 7px;
    background: #c4e0ef;
    color: #182b3b;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    transition: var(--siteTransition);
}

.fit_check_card .condition_link i {
    font-size: 0.7rem;
    transition: transform 0.25s ease-in-out;
}

.fit_check_card .condition_link:hover {
    background: #ffffff;
    color: #182b3b;
}

.fit_check_card .condition_link:hover i {
    transform: translateX(4px);
}
.fit_check_card .condition_number{
    opacity: 0;
    visibility: hidden;
}
.fit_check_card:hover .condition_number{
    opacity: 1;
    visibility: visible;
}


/* ===============================
    Best Selling Section
================================*/
.best_selling_section::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333333%;
    height: 50%;
    content: "";
    background-color: #D8DBE5;
    z-index: -1;
}
.best_selling_section .container-fluid {
    padding-left: 7.5%;
}

.best_selling_content {
    max-width: 420px;
    padding-right: 30px;
}

.best_selling_slider_wrap {
    width: calc(100vw - 33.333333% - 7.5%);
    overflow: hidden;
    padding-left: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.best_selling_slider {
    width: 100%;
    overflow: visible;
}

.best_selling_slider .swiper-wrapper {
    align-items: stretch;
    transition-timing-function: linear !important;
}

.best_selling_slider .swiper-slide {
    height: auto;
}



.product_card {
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.product_image {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #f1eee7;
}

.product_image img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product_badge {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 15px;
    border-radius: 20px;
    background: #ffffff;
    color: #d9682d;
    font-size: 14px;
    font-weight: 600;
}


.product_content {
    padding: 1.25rem 1.5rem;
}

.product_rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 13px;
}

.product_rating span {
    color: var(--siteOrange);
    font-size: 1rem;
    letter-spacing: 1px;
}


.product_rating strong {
    color: #222222;
    font-size: 1rem;
    font-weight: 500;
}

.product_content h3 {
    margin-bottom: .5rem;
    color: #111820;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-family: var(--bodyfont);
    line-height: 1.25;
    font-weight: 600;
}

.product_content p {
    margin-bottom: 1rem;
    color: #20272e;
    font-size: 1rem;
    line-height: 1.4;
}

.product_botttom span{
    color: var(--textcolor);
    font-size: .9rem;
    font-weight: 400;
    display: block;
}
.product_price {
    color: #111820;
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
}


/* ========================
    Category Section
========================*/
.cat_card{
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 2 / 1.3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    position: relative;
    z-index: 1;
    transition: var(--siteTransition);
}
.cat_card img{
    transition: var(--siteTransition);
}
.cat_card::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.683) 100%);
    z-index: -1;
    transition: var(--siteTransition);
}
.cat_card:hover img{
    transform: scale(1.1);
}
/* .cat_card:hover::after{
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.188) 0%, rgba(0, 0, 0, 0.606) 100%);

} */
/* .cat_card_content{
    transition: var(--siteTransition);
}
.cat_card:hover .cat_card_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
} */

.cat_card h4 {
    font-size: clamp(1.875rem, 3vw, 2.75);
    font-weight: 600;
    color: var(--bs-white);
    margin-bottom: .5rem;
    font-family: var(--headingfont);
}
.cat_card p {
    font-size: 14px;
    color: var(--bs-white);
    margin: 0;
}


/* ========================
  Environment Section
========================*/

.environment_section .section_head_underline h5{
    color: #E5A34D;
}
.environment_section .section_head_underline h5::after{
    background-color: #E5A34D;
}
.spec_box {
    padding: clamp(1.375rem, 2vw, 2rem) clamp(1rem, 1.5vw, 1.5rem);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 10px;
    background: rgba(185, 210, 225, 0.45);
    color: #ffffff;
}

.spec_box h3 {
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: var(--bodyfont);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.25;
    font-weight: 600;
}

.spec_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 54px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.spec_row:last-child {
    border-bottom: 0;
}

.spec_row span,
.spec_row strong {
    font-size: 1rem;
    line-height: 1.4;
}

.spec_row span {
    color: #ffffff;
}

.spec_row strong {
    color: #ffffff;
    font-weight: 500;
    text-align: right;
}

/* ========================

=============================*/

.particle_section {
    position: relative;
    overflow: hidden;
    background: #294b68;
    color: #ffffff;
    padding: 80px 0 100px;
}

.particle_content {
    width: 100%;
}

.particle_intro {
    margin: 0 0 48px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.5;
}


/* =========================================
   PARTICLE SCALE
========================================= */

.particle_scale {
    position: relative;
    width: 100%;
    min-height: 180px;
    padding: 50px 45px 0;
}

.scale_line {
    position: relative;
    width: 100%;
    height: 2px;
    background: #d2e1eb;
}

.scale_arrow {
    position: absolute;
    right: -1px;
    top: -6px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 12px solid #ffffff;
}


/* =========================================
   HEPA LINE
========================================= */

.hepa_line {
    position: absolute;
    top: -20px;
    left: 18.35%;
    height: 170px;
    border-left: 1px dashed #e99b3d;
    z-index: 1;
}

.hepa_line span {
    position: absolute;
    top: -20px;
    left: -108px;
    width: 220px;
    color: #e99b3d;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}


/* =========================================
   PARTICLE ITEMS
========================================= */

.particle_item {
    position: absolute;
    top: -6px;
    transform: translateX(-50%);
    text-align: center;
}

.particle_item .particle_dot {
    position: relative;
    width: 13px;
    height: 13px;
    margin: 0 auto;
    border-radius: 50%;
    background: #a7c7ee;
    box-shadow: 0 0 0 2px #a7c7ee;
}

.particle_item .light_dot {
    background: #eeeeee;
    box-shadow: 0 0 0 2px #eeeeee;
}

.particle_item .orange_dot {
    width: 19px;
    height: 19px;
    margin-top: -3px;
    background: #eba03d;
    box-shadow: 0 0 0 2px #eba03d;
}

.particle_text {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 145px;
    color: #ffffff;
    text-align: center;
}

.particle_text span,
.particle_text strong {
    display: block;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
}

.particle_text strong {
    margin-top: 3px;
}


.particle_01 {
    left: 0%;
}

.particle_02 {
    left: 16%;
}

.particle_03 {
    left: 25%;
}

.particle_04 {
    left: 45%;
}

.particle_05 {
    left: 59%;
}

.particle_06 {
    left: 77%;
}

.particle_07 {
    left: 90%;
}

.particle_icon {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #dbe7ef;
    font-size: 23px;
    line-height: 1;
    white-space: nowrap;
}

.particle_01 .particle_icon {
    color: #dbe7ef;
    font-size: 12px;
    line-height: 8px;
}

.bacteria_icon {
    font-size: 24px;
}

.smoke_icon {
    font-size: 28px;
}

.mold_icon {
    font-size: 24px;
}

.allergen_icon,
.pollen_icon {
    color: #eba03d;
    font-size: 27px;
}

.hepa_dot {
    width: 14px !important;
    height: 14px !important;
    background: #eba03d !important;
    border: 1px solid #eba03d;
    box-shadow: 0 0 0 3px #294b68,
                0 0 0 4px #eba03d !important;
}
.hepa_dot{
    position: relative;
}

.hepa_dot::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 30px;
    height: 30px;
    background: transparent;
    border: 1px solid #e99b3d;
    border-radius: 50%;
}


/* ======================
    Testimonial Section
==========================*/
.testimonial_inner .section_head h2{
    position: relative;
}
.testimonial_inner .section_head h2::after {
    content: "";
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    width: clamp(140px, 20vw + 0.5rem, 200px);
    height: clamp(110px, 18vw, 150px);
    background-image: url("../img/icon/quote.webp");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}
.testimonial_slider_wrap {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.testimonial_slider {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial_item {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.testimonial_item p {
    max-width: 900px;
    margin: 0 auto 38px;
    color: #202630;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.testimonial_author {
    display: block;
    color: #202630;
    font-size: 17px;
    line-height: 1.5;
}
.testimonial_next,
.testimonial_prev {
    color: var(--siteBlue);
    transition: var(--siteTransition);
}
.testimonial_next:hover,
.testimonial_prev:hover {
    color: var(--siteOrange)
}



/* ====================
    Footer Section
===================*/
.footer_logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 43px;
    line-height: 1;
}

.footer_logo:hover {
    color: #ffffff;
}

.footer_logo_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    line-height: 1;
}

.footer_logo {
    max-width: clamp(180px, 20vw, 230px);
}
.footer_logo img {
    max-width: 100%;
}
.footer_menu h3 {
    margin-bottom: 1.125rem;
    color: var(--bs-white);
    font-family: var(--bodyfont);
    font-size: clamp(1.125rem, 1.5vw, 1.375rem);
    font-weight: 500;
    line-height: 1.3;
}

.footer_menu ul {
    margin: 0;
    padding: 0;
}

.footer_menu li {
    margin-bottom: 1rem;
}

.footer_menu li:last-child {
    margin-bottom: 0;
}

.footer_menu a {
    color: var(--bs-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    transition: var(--siteTransition);
}

.footer_menu a:hover {
    color: var(--bs-white);
    opacity: 0.65;
}

.footer_bottom {
    gap: 1.5rem;
    padding: 20px 0 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.footer_copyright {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.5;
}

.footer_legal {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer_legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.5;
}

.footer_legal a:hover {
    color: #ffffff;
    opacity: 0.65;
}


/* *************************
    Product Listing
*******************************/

/* .inner_banner_overlay::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
} */


.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 1rem;
    line-height: 1.4;
    color: var(--textcolor);
    margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.breadcrumb a {
    color: var(--textcolor);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb strong {
    color: #202832;
    font-weight: 600;
}

.product_listing_section {
    padding: 50px 0 80px;
    background: #ffffff;
    color: #171b20;
}


.product_filter {
    border: 1px solid #999999;
    border-radius: 14px;
    padding: clamp(18px, 2vw, 22px) 1rem;
    background: #fafafa;
    position: sticky;
    top: 20px;
}

.filter_group {
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid #c8c8c8;
}

.filter_group:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.filter_group h3 {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    font-family: var(--bodyfont);
}

.filter_checkbox {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    margin-bottom: .75rem;
    font-size: 1rem;
    line-height: 1.35;
    color: #202832;
    cursor: pointer;
}

.filter_checkbox:last-child {
    margin-bottom: 0;
}

.filter_checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    position: relative;
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    margin-top: 3px;
    border: 1px solid #999999;
    border-radius: 2px;
    background: var(--bs-white);
}

/* Checked */

.filter_checkbox input:checked + .checkmark {
    border-color: #486a84;
    background: #486a84;
}

.filter_checkbox input:checked + .checkmark::after {
    content: "";

    position: absolute;

    left: 4px;
    top: 1px;

    width: 4px;
    height: 8px;

    border: solid #ffffff;
    border-width: 0 2px 2px 0;

    transform: rotate(45deg);
}


.product_top_bar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;
}

.product_count {
    font-size: 14px;
    line-height: 1.4;
    color: #202832;
}

.product_count strong {
    font-weight: 600;
}

.product_sort select {
    min-width: 195px;
    height: 42px;
    padding: 0 35px 0 11px;
    border: 1px solid #999999;
    border-radius: 9px;
    background-color: #ffffff;
    font-size: 14px;
    color: #202832;
    cursor: pointer;
}

.product_sort select:focus {
    outline: none;
    border-color: #486a84;
}



/* ************************
    Product Details
**************************/

.product_gallery {
    width: 100%;
}

.product_main_image {
    width: 100%;
    height: clamp(320px, 40vw, 520px);
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

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

.product_thumbnails {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

.product_thumbnail_list {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto;
    scrollbar-width: none;
}

.product_thumbnail_list::-webkit-scrollbar {
    display: none;
}

.product_thumbnail_item {
    flex: 0 0 clamp(80px, 10vw, 110px);
    width: clamp(80px, 10vw, 110px);
    height: clamp(80px, 10vw, 110px);
    border: 2px solid transparent;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    background: #ffffff;
    transition: all 0.3s ease;
}

.product_thumbnail_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product_thumbnail_item:hover {
    border-color: #456984;
}

.product_thumbnail_item.active {
    border-color: #456984;
}

.product_badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.product_badges span {
    display: inline-block;
    padding: 7px 14px;
    background: #ffffff;
    color: #d9652a;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1;
}

.product_information h1 {
    margin-bottom: 1rem;
    font-family: var(--headingfont);
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    line-height: 1.2;
    color: #111111;
}

.product_information h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.product_rating .reviews {
    color: var(--textcolor);
}

.stars {
    color: var(--siteOrange);
    letter-spacing: 2px;
}

.product_divider {
    width: 100%;
    height: 1px;
    background: #c8c8c8;
    margin: 25px 0;
}

.product_price_row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 1.875rem;
}

.product_price {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    color: #111111;
}

.product_stock {
    font-size: 1rem;
}

.product_specs {
    width: 100%;
}

.product_spec_row {
    min-height: 54px;
    padding: .9rem 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-bottom: 1px solid #c8c8c8;
    font-size: 17px;
    color: #252b31;
}

.product_spec_row span {
    flex: 1;
}

.product_spec_row strong {
    flex: 1;
    text-align: right;
    font-weight: 500;
}


/* =============================
        faqs_wrapper
================================ */
.faqs_section_wrapper {
    /* padding-top: clamp(150px, 24.5vw, 220px); */
    background-color: #1A1A1A;
}

.faqs_wrapper .common_title_area p {
    font-size: clamp(14px, 1.1vw, 18px);
}

.faqs_area_main {
    min-height: 830px;
}

.faqs-area .accordion-container {
    position: relative;
    margin: 0 auto;
}


.faqs-area .set {
    position: relative;
    width: 100%;
    height: auto;
    border: 1px solid var(--bs-white);
    border-radius: 5px;
    padding: 0 clamp(1.5rem, 2.5vw, 1.5rem);
    margin-bottom: 30px;
    border-radius: 10px;
}

.faqs-area .set>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    text-decoration: none;
    font-family: var(--headingfont);
    font-weight: 500;
    -webkit-transition: var(--siteTransition);
    -moz-transition: var(--siteTransition);
    transition: var(--siteTransition);
    font-size: clamp(1.375rem, 2.5vw, 2rem);
    border-bottom: 1px solid transparent;
    color: var(--bs-white);
}

.faqs-area .set:last-child>a {
    border: none;
}

.faqs-area .set:last-child .content {
    border: none;
}

.faqs-area .set>a i {
    flex: 0 0 auto;
    margin-left: 20px;
    color: var(--bs-white);
    font-size: 1.5rem;
    transition: all 0.5s ease 0s;
}


.faqs-area .set>a.active i {
    transform: rotate(180deg);
}

.faqs-area .set>a.active {

    border-bottom: 1px solid #ffffff50;
}

.faqs-area .content {
    display: none;
    padding: 20px 0 30px;
}

.faqs-area .content p {
    margin: 0;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 400;
    color: var(--bs-white);
}

.faqs-area .content p a {
    color: var(--theme-color);
    text-decoration: underline;
}

.faqs-area .content p:not(:last-child) {
    margin-bottom: 1em;
}

.faqs-area .content ul {
    list-style: disc;
    font-size: clamp(14px, 1.1vw, 18px);
    padding-left: 20px;
    color: var(--bs-white);
}
.faqs-area .content ul li::marker{
    color: var(--siteGreen);
}
.faqs-area .content ul li:not(:last-child) {
    margin-bottom: 1em;
}

/* =======================
    Related Products
=========================*/
.related_products .tree_branch{
    right: 0;
    left: unset;
}

.related_product_card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    height: 100%;
    transition: var(--siteTransition);
}

/* Plus sign between cards */
.related_product_card::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: -35px;
    transform: translateY(-50%);
    font-size: clamp(30px, 3.5vw, 45px);
    font-weight: 300;
    line-height: 1;
    color: #456b88;
    z-index: 5;
}

/* Remove plus from the last card */
.row > .col-md-4:last-child .related_product_card::after {
    display: none;
}

.related_product_image {
    width: 100%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.related_product_image img {
    width: 100%;
    object-fit: cover;
    transition: var(--siteTransition);
    aspect-ratio: 2/1.8;
}

.product_content {
    padding: 1.5rem;
    background: #fff;
    border-radius: 0 0 16px 16px;
}

.product_content h3 {
    margin-bottom: 1.25rem;
    color: var(--textcolor);
    font-family: var(--headingfont);
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 500;
    transition: var(--siteTransition);

}

.product_price {
    color: var(--textcolor);
    font-size: 1.375rem;
    line-height: 1.2;
    font-weight: 700;
}
.related_product_card:hover .product_content h3{
    color: var(--siteOrange);
}
.related_product_card:hover img{
    transform: scale(1.1);
}
/* ======================
    Symptom Page
=====================*/
.leaf_img_lt{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.leaf_img_rb{
    position: absolute;
    bottom: 0;
    z-index: 2;
    right: 50%;
}
.leaf_img img {
    width: 100%;
    max-width: clamp(130px, 30vw, 330px);
    object-fit: scale-down;
}


.snapshot_box {
    padding: clamp(1rem, 2.5vw, 2rem);
    background: var(--bs-white);
    border-radius: 30px;
    width: clamp(440px, 40vw, 500px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.snapshot_title {
    color: var(--textcolor);
    font-size: clamp(1.375rem, 2.5vw, 2rem);
    line-height: 1.15;
    font-family: var(--headingfont);
    font-weight: 500;
}

.snapshot_row {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    column-gap: 24px;
    align-items: center;
    padding: 1.5rem 0;
}

.snapshot_row + .snapshot_row {
    border-top: 1px solid #d6d6d6;
}
.snapshot_row:first-child {
    padding-top: 0;
}
.snapshot_row:last-child {
    padding-bottom: 0;
}


.snapshot_label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem 1.25rem;
    background: #e5edf3;
    border-radius: 40px;
    color: var(--aegeanBlue);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
}





.solution_card {
    height: 100%;
    background: #f8f8f8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.solution_image {
    width: 100%;
    aspect-ratio: 2 / 1.3;
    overflow: hidden;
}

.solution_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.solution_content h6 {
    display: block;
    margin-bottom: 1rem;
    color: var(--siteOrange);
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 400;
}

.solution_content h3 {
    margin-bottom: 1rem;
    color: var(--textcolor);
    font-size: 1.375rem;
    line-height: 1.25;
    font-weight: 600;
    font-family: var(--bodyfont);
}

.solution_content p {
    margin: 0;
    color: var(--textcolor);
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 400;
}

.solution_link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    margin-top: auto;
    padding-top: 1rem;
    color: #456b88;
    font-size: 1.125rem;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;

    transition: var(--siteTransition);
}

.solution_arrow {
    font-size: 1.25rem;
    line-height: 1;
    transition: var(--siteTransition);
}

.solution_link:hover {
    color: var(--siteOrange);
}

.solution_link:hover .solution_arrow {
    transform: translateX(5px);
}
