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

body {
    padding: 0;
    margin: 0;
    font-family: var(--body_font);
    color: var(--body_text_color);
    background: #f1f2f4;
}

:root {
    --theme_color: #1A4578;
    --logo_color: #ff0014;
    --logo-color-o: #ffbf35;
    --heading_font: "Montserrat", sans-serif;
    --body_font: "Montserrat", sans-serif;
    --bg_gradient: #1A4578;
    --body_text_color: #606060;
    --black_color: #212123;
    --white_color: #fff;
    --border-color: #1A4578;
}


.section_container {
    padding: 20px 0;
}

.row-full-width-inner {
    padding-left: 16px;
    padding-right: 16px;
}

h3.shortcode-title {
    text-align: left;
    font-weight: 600;
    color: #313131;
    font-size: 26.6px;
    padding: 20px;
    padding-top: 30px;
    margin-bottom: 0px;
}

.product_container-sellers {
    background: var(--white_color);
}

/* ===================================== */
/* Button style */
.theme-btn,
a.theme-btn {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

/* Button text */
.theme-btn .btn-text,
a.theme-btn .btn-text {
    cursor: pointer;
    transition: 0.5s;
    font-weight: 700;
    text-align: center;
    padding: 10px 18px;
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-transform: capitalize;
    font-size: 15px;
}

.theme-btn .btn-text i,
a.theme-btn .btn-text i {
    margin-right: 4px;
    margin-top: 1px;
}

/* Normal state */
.theme-btn .btn-text.normal,
a.theme-btn .btn-text.normal {
    color: white;
    background: var(--logo_color);
}

/* Hover state style */
.theme-btn .btn-text.hover,
a.theme-btn .btn-text.hover {
    z-index: 2;
    position: absolute;
    left: 0;
    top: 100%;
    color: var(--white_color);
    background: var(--logo-color-o);
}

.theme-btn .btn-text.hover i,
a.theme-btn .btn-text.hover i {
    color: var(--white_color);
}

/* Hover animation */
.theme-btn:hover .btn-text.normal,
a.theme-btn:hover .btn-text.normal {
    transform: translateY(-100%);
}

.theme-btn:hover .btn-text.hover,
a.theme-btn:hover .btn-text.hover {
    top: 0;
}

/* Full width button */
.theme-btn.w-100 .btn-text,
a.theme-btn.w-100 .btn-text {
    width: 100%;
}

/* Main header */
/* Default header style */
.header {
    width: 92%;
    position: fixed;
    left: 4%;
    top: 50px;
    background-color: #fafafa;
    height: 80px;
    border-radius: 20px;
    padding: 0 2% 0 3%;
    z-index: 1000;
    transition: all ease 0.3s;
}

/* Scroll ke baad style */
.header.sticky {
    width: 100%;
    left: 0;
    margin-left: 0;
    top: 0;
    border-radius: 0;
    box-shadow: 0 5px 16px 0 rgb(0 0 0 / 6%);
}


.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 40px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

img.normal_logo {
    width: 140px;
    height: auto;
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #1e3c72;
}

.logo-image::before {
    content: "⚡";
    margin-right: 8px;
    color: #ff6b35;
}

.logo-tagline {
    font-size: 10px;
    color: #666;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 26px 0;
    position: relative;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e3c72;
}

/* Mega dropdown */
.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 800px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-15px);
    transition: all 0.4s ease;
    z-index: 1001;
    border-top: 3px solid #1e3c72;
    overflow: hidden;
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.sidebar_menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar_menu-list .offcanvas-body {
    padding: 0px;
}

.sidebar_menu li {
    margin: 12px 0px;
}

.sidebar_menu li a {
    font-size: 16px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    color: #121212;
    position: relative;
    padding: 15px 15px;
}

.sidebar_menu li a::before {
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, #f0f4ff, transparent);
    left: 0;
    top: 0;
    z-index: -1;
}

.sidebar_menu li a::after {
    position: absolute;
    content: '';
    height: 100%;
    width: 70%;
    background-image: linear-gradient(to right, rgba(0 0 0 / 20%), transparent);
    right: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: all 200ms ease-in-out;
}

.sidebar_menu li a:hover:after {
    width: 100%;
    opacity: 1;
}

.sidebar_menu-list {
    padding: 30px;
}

.sidebar_menu-list .offcanvas-header {
    padding-left: 0px;
    padding-right: 0px;
}

i.ri-menu-line {
    color: var(--logo_color);
}

.ri-menu-line:before {
    content: "\ef3e";
    font-size: 20px;
}

.sidebar_menu-list .offcanvas-header h5 {
    margin-bottom: 0px;
    color: var(--logo_color);
}

.mega-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 30px;
}

.mega-column h3 {
    color: #1e3c72;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.mega-links {
    list-style: none;
}

.mega-links li {
    margin-bottom: 8px;
}

.mega-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0;
}

.mega-links a:hover {
    color: #1e3c72;
    padding-left: 5px;
}

/* Main dropdown (already given by you) */
/* Base dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* First-level dropdown items */
.dropdown-item {
    position: relative;
    padding: 12px 20px;
    border-bottom: 1px solid #f5f5f5;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: block;
    transition: color 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-item:hover>a {
    color: #1e3c72;
}

/* Submenu (2nd level) */
.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    min-width: 200px;
    border-radius: 0 8px 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu a {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
}

.submenu a:hover {
    background: #f8f9fa;
    color: #1e3c72;
}



/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #666;
    position: relative;
    background: #f0f4ff;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ================ tooltip_icon =================== */
.tooltip_icon {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    z-index: 11;
}

.tooltip_icon a {
    width: 50px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffbf35;
    border-top: solid 1px rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}

.tooltip_icon a:first-child {
    border-radius: 4px 0 0 0;
    border-top: none;
}

.tooltip_icon a:last-child {
    border-radius: 0 0 0 4px;
}

.tooltip_icon a span {
    position: absolute;
    padding: 7px 13px;
    z-index: 1;
    top: 50%;
    right: 100%;
    min-width: 110px;
    text-align: center;
    background-color: var(--theme_color);
    border-radius: 4px;
    transform: translateY(-50%) translateX(0px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    color: var(--white_color);
    white-space: nowrap;
    font-size: 12px;
}

.tooltip_icon a:hover {
    background-color: var(--theme_color);
}

.tooltip_icon a:hover span {
    transform: translateY(-50%) translateX(-15px);
    opacity: 1;
}

.tooltip_icon a span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    margin-right: -10px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--theme_color);
    transform: translateY(-50%);
}

/* ================ social_tooltip_icon =================== */
.social_tooltip_icon {
    position: fixed;
    left: 0;
    /* Left side */
    top: 50%;
    transform: translateY(-50%);
    z-index: 11;
    display: flex;
    flex-direction: column;
}

.social_tooltip_icon a {
    width: 50px;
    height: 40px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffbf35;
    border-top: solid 1px rgba(255, 255, 255, 0.5);
    transition: background-color 0.3s ease;
}

.social_tooltip_icon a:first-child {
    border-radius: 0 4px 0 0;
    border-top: none;
}

.social_tooltip_icon a:last-child {
    border-radius: 0 0 4px 0;
}

/* Tooltip text */
.social_tooltip_icon a span {
    position: absolute;
    padding: 7px 13px;
    top: 50%;
    left: 100%;
    /* Tooltip on the right side now */
    min-width: 110px;
    text-align: center;
    background-color: var(--theme_color);
    border-radius: 4px;
    transform: translateY(-50%) translateX(0);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
    color: #fff;
    white-space: nowrap;
    font-size: 12px;
}

/* Show tooltip on hover */
.social_tooltip_icon a:hover span {
    transform: translateY(-50%) translateX(15px);
    opacity: 1;
}

/* Tooltip arrow */
.social_tooltip_icon a span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    margin-left: -10px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent var(--theme_color) transparent transparent;
    transform: translateY(-50%);
}

/* Hover effect */
.social_tooltip_icon a:hover {
    background-color: var(--theme_color);
}


/* ================ banner pagination ============== */
.banner-button-next,
.banner-button-prev {
    border: none;
}

.banner-button-next img,
.banner-button-prev img {
    width: 48px;
}

.banner-button-next {
    transform: rotate(180deg) !important;
}

.banner-button-prev {
    left: 62px !important;
    display: none !important;
}

.banner-button-next {
    right: 62px !important;
    display: none !important;
}


.banner-button-next:after,
.banner-button-prev:after {
    display: none;
}

.hero_slider .swiper-pagination-bullet {
    width: 54px;
    height: 5px;
    border-radius: 0px;
    transition: width 0.3s ease;
    margin: 0 6px !important;
    background: var(--white_color);
    border: none;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

.hero_slider .swiper-pagination {
    bottom: 40px !important;
}

.hero_slider .swiper-pagination-bullet:after {
    content: '';
    width: 0%;
    height: 100%;
    background: var(--logo_color);
    position: absolute;
    left: 0;
    top: 0;
}

.hero_slider .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    width: 100%;
    transition: 5s;
}

section.banner_section.mobile .hero_slider .swiper-pagination-bullet {
    width: 30px;
    height: 8px;
    border-radius: 8px;
    transition: width 0.3s ease;
    margin: 0 6px !important;
    background: var(--white_color);
    border: none;
    opacity: 1;
    position: relative;
    overflow: hidden;
}

section.banner_section.mobile .hero_slider .swiper-pagination {
    bottom: 25px !important;
}

/* =============== //bestSellersSlider// =============== */
.bestSellersSlider,
.solarKitSlider,
.pvModulesSlider,
.hybridInvertersSlider,
.stringInvertersSlider,
.microInvertersSlider,
.liOnBatteriesSlider,
.acChargersSlider,
.dcFastChargersSlider {
    width: 100%;
    padding: 20px !important;
    padding-bottom: 30px !important;
    padding-top: 10px !important;
}

.bestSellersSlider_section .theme-btn .btn-text,
.bestSellersSlider_section a.theme-btn .btn-text {
    font-size: 13px;
    font-weight: 600;
    padding: 9px 39px;
}

.bestSellersSlider_section .swiper-slide {
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding-bottom: 15px;
}

.bestSellersSlider_section .swiper-slide:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.phone-container {
    position: relative;
    width: 152px;
    margin-bottom: 20px;
}

.phone-image img {
    width: 100%;
    height: 142px;
    object-fit: contain;
    border-radius: 12px;
}

.phone-image img:hover {
    transform: scale(1.03);
}

.phone-name a {
    display: block;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    color: var(--body_text_color);
    margin-bottom: 8px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-align: center;
    overflow: hidden;
}

.phone-price {
    font-size: 16px;
    color: #666;
}

.price-from {
    font-weight: 400;
}

.price-amount {
    font-weight: 700;
    color: #333;
}

/* Swiper Navigation */

.bestSellersSlider_section {
    position: relative;
}

.bestSellersSlider_section .swiper-button-next,
.bestSellersSlider_section .swiper-button-prev {
    color: #333;
    background: white;
    width: 44px;
    height: 44px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    top: 20%;
}

.bestSellersSlider_section .swiper-button-prev {
    left: 89% !important;
    transform: translateY(-50%) !important;
    border-radius: 0 4px 4px 0;
}

.bestSellersSlider_section .swiper-button-next {
    right: 40px !important;
    transform: translateY(-50%) !important;
    border-radius: 4px 0 0 4px;
}

.bestSellersSlider_section .swiper-button-next:hover,
.bestSellersSlider_section .swiper-button-prev:hover {
    background: #f8f9fa;
    transform: scale(1.1);
}

.bestSellersSlider_section .swiper-button-next::after,
.bestSellersSlider_section .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

.bestSellersSlider_section .swiper-pagination-bullet {
    width: 10px;
    height: 8px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.bestSellersSlider_section .swiper-pagination-bullet-active {
    width: 20px;
    height: 8px;
    background: var(--logo_color);
    transform: scale(1.2);
    border-radius: 8px;
}

/* =============== //ourClient_section// =============== */
.clients-boxes-holder {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.clients-boxes-holder .clients_cb-item {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    padding: 0 33px;
    box-sizing: border-box;
}

.clients-boxes-holder.clients-cb-columns-four .clients_cb-item {
    width: 25%;
}

.clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item .clients_cb-item-inner {
    overflow: hidden;
}

.clients-boxes-holder .clients_cb-item .clients_cb-item-inner {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

@media only screen and (min-width: 769px) {
    .clients-boxes-holder.clients-cb-columns-four .clients_cb-item:nth-child(4n+1) {
        clear: both;
    }

    .clients-boxes-holder.clients-cb-columns-four .clients_cb-item:nth-last-child(-n+4) {
        margin: 0;
    }

    .clients-boxes-holder.clients-cb-columns-four .clients_cb-item:nth-last-child(-n+4) .clients_cb-item-inner {
        margin: 0;
    }
}

.clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item .clients_cb-image {
    position: relative;
    display: block;
    width: auto;
    opacity: 1;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    transition: all .6s ease;
}

.clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item img.clients_cb-image,
.clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item img.clients_cb-hover-image {
    width: 120px;
    height: auto;
}

.clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item .clients_cb-hover-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    opacity: 0;
    -webkit-transition: all .6s ease;
    -moz-transition: all .6s ease;
    transition: all .6s ease;
    -webkit-transform: translate(-150%, -50%);
    -moz-transform: translate(-150%, -50%);
    transform: translate(-150%, -50%);
}

.clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item:hover .clients_cb-image {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
}

.clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item:hover .clients_cb-hover-image {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/* ============= //new-block// ================= */
.new-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: space-between;
    -ms-flex-align: space-between;
    align-items: space-between;
    padding-left: 16px;
    padding-right: 16px;
    gap: 20px;
}

.new-block .product-item {
    width: 100%;
    height: auto;
    margin: 5px 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 821px) {
    .new-block .product-item {
        width: calc(50% - 5px);
    }
}

.new-block .product-item .img-container {
    width: 100%;
    height: 100%;
}

.new-block .product-item .img-container img {
    width: 100%;
    height: auto;
}

.new-block .product-item .img-container .background-img {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 1;
    -webkit-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;
}

.new-block .product-item .textcontent {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.new-block .product-item .textcontent .text {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 16px;
    line-height: 40px;
    text-transform: uppercase;
    color: #111;
}

@media (min-width: 551px) {
    .new-block .product-item .textcontent .text {
        top: 10px;
        font-size: 20px;
    }
}

@media (min-width: 1261px) {
    .new-block .product-item .textcontent .text {
        top: 10%;
        font-size: 28px;
    }
}

.new-block .product-item .textcontent .text .text-b {
    font-weight: 700;
}

.new-block .product-item .textcontent .link {
    position: absolute;
    bottom: 8px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media (min-width: 821px) {
    .new-block .product-item .textcontent .link {
        bottom: 15px;
    }
}

.new-block .product-item:hover .img-container .background-img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.new-block .product-item .textcontent .link .link-btn {
    display: inline-block;
    border-radius: 12px;
    background: #fff;
    color: #667eea;
    border: 1px solid #667eea;
    padding: 7px 15px;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
}

/* ==================== offerSlider_section ==================== */
.offerSlider_section .swiper-pagination {
    bottom: 20px !important;
}

.offerSlider_section .swiper-pagination span.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: var(--white_color);
    opacity: 1;
}

.offerSlider_section .swiper-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 3%;
    border-radius: 12px;
    background: var(--logo_color);
    transition: 0.3s ease;
}

/* ============================== footer ============================ */
footer .row-full-width__inner {
    padding-left: 76px;
    padding-right: 76px;
}

.footer {
    background: #ffffff;
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="90" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.brand-section .social-icons {
    margin-top: 15px;
}

.social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: var(--theme_color);
    background-color: #ffdf99;
    text-decoration: none;
    font-size: 18px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-section.brand-section {
    margin-right: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #000000;
    font-weight: 600;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--logo_color);
    border-radius: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.footer-section ul li {
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-section ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    gap: 10px;
}

.footer-section ul li a i {
    color: var(--logo_color);
    font-weight: bold;
    font-size: 15px;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.brand-section {
    grid-column: span 1;
}

.brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: 'H';
    font-size: 24px;
    font-weight: bold;
    color: white;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}


.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.brand-tagline {
    font-size: 12px;
    color: #4ade80;
    margin-top: -5px;
}

.brand-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.newsletter {
    position: relative;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
    position: relative;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--logo_color);
    color: #ffffff;
    border-radius: 8px 0 0 8px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--logo_color);
    box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.1);
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    padding: 12px 20px;
    background: var(--logo_color);
    border: none;
    color: white;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.newsletter-btn:hover {
    box-shadow: 0 8px 25px rgba(74, 222, 128, 0.3);
}

.newsletter-btn::before {
    content: '→';
    font-size: 16px;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #d1d5db;
    font-size: 14px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 10px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 0px;
}

.footer-bottom a {
    color: #4ade80;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #22d3ee;
}

/* ====================== mobile menu */
/* Main Accordion Styles */
.according_mobile-menu {
    display: none;
}

h5#offcanvasRightLabel\ offcanvas-right-label {
    display: none;
}

.according_mobile-menu .accordion-item {
    border: none;
}

.according_mobile-menu h2.accordion-header {
    line-height: 48px;
}

.according_mobile-menu .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
    transform: scale(.7) !important;
}

.according_mobile-menu .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.according_mobile-menu .accordion-button {
    width: 100%;
    padding: 0px 18px;
    position: relative;
    border-bottom: 1px solid #f1f2f3;
    background: transparent;
    font-size: 16px;
    border-radius: 0px !important;
}

.according_mobile-menu .accordion-button:focus {
    box-shadow: none;
}

.according_mobile-menu .accordion-button:not(.collapsed) {
    box-shadow: none;
    background-color: transparent;
    color: #1e3c72;
}

.according_mobile-menu .sub-menus {
    padding: 0px;
}

/* ul.sub-menus_ul {
    padding: 0px 18px !important;
} */

.according_mobile-menu .sub-menus ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.according_mobile-menu .sub-menus ul li a {
    display: block;
    font-size: 15px;
    text-decoration: none;
    color: #666;
    line-height: 40px;
    padding: 0px 18px;
}

/* ✅ Nested Accordion Styles */
.according_mobile-menu .nested-accordion .accordion-button {
    font-size: 14px;
    line-height: 40px;
    border-bottom: 1px solid #dddddd;
    background: #f1f0f0;
    border-radius: 0px !important;
    padding: 0px 18px;
}

.according_mobile-menu .nested-accordion .accordion-button::after {
    transform: scale(0.6) !important;
}

.according_mobile-menu .nested-accordion .accordion-collapse {
    /* padding-left: 18px; */
    /* padding-right: 18px; */
    background: aliceblue;
}

.according_mobile-menu .nested-accordion .accordion-collapse .sub-menus ul li a {
    border-bottom: 1px solid #dddddd;
    font-size: 13px;
}

/* =========================== // products */
.breadcrumb_section {
    background-image: url(../images/products_background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
}




























































/* Mobile responsive (max-width: 1024px) */
@media (max-width: 1000px) {
    .header {
        width: 100%;
        left: 0;
        top: 0;
        height: 72px;
        border-radius: 0;
    }

    .header-container {
        height: 72px;
    }

    .mega-dropdown {
        min-width: 600px;
    }

    .mega-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .brand-section {
        grid-column: span 3;
    }

    .offcanvas-body_mobile-hide {
        display: none;
    }

    .main-nav {
        display: none;
    }

    .bestSellersSlider_section .swiper-button-prev {
        left: 85% !important;
    }

    h5#offcanvasRightLabel {
        display: none;
    }

    .sidebar_menu-list {
        width: 82%;
        padding: 0px;
        padding-right: 0px;
        padding-top: 4px;
    }

    .according_mobile-menu {
        display: block;
    }

    h5#offcanvasRightLabel\ offcanvas-right-label {
        display: block;
    }

    .sidebar_menu-list .offcanvas-header {
        padding-left: 18px;
        padding-right: 18px;
    }

    footer .row-full-width__inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .social_tooltip_icon {
        display: none;
    }
}

/* Mobile responsive (max-width: 768px) */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .brand-section {
        grid-column: span 2;
    }

    .header-container {
        padding: 10px 15px;
        gap: 20px;
    }

    .logo-image {
        font-size: 24px;
        width: 100px;
    }

    .announcement-content {
        flex-direction: column;
        gap: 5px;
    }

    .country-info {
        display: none;
    }

    .search-container {
        padding: 30px 20px;
        margin: 20px;
    }

    .phone-container {
        width: 150px;
    }

    .phone-info {
        font-size: 10px;
        padding: 10px 12px;
        min-width: 100px;
    }

    .phone-name {
        font-size: 16px;
    }

    .phone-price {
        font-size: 14px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }

    section.banner_section {
        margin-top: 72px;
    }

    h3.shortcode-title {
        font-size: 22px;
        padding-top: 22px;
    }

    .bestSellersSlider_section .swiper-button-prev {
        left: 62% !important;
    }

    .bestSellersSlider_section .swiper-button-next {
        right: 60px !important;
    }

    .bestSellersSlider,
    .solarKitSlider,
    .pvModulesSlider,
    .hybridInvertersSlider,
    .stringInvertersSlider,
    .microInvertersSlider,
    .liOnBatteriesSlider,
    .acChargersSlider,
    .dcFastChargersSlider {
        width: 100%;
        padding: 34px !important;
        padding-bottom: 30px !important;
        padding-top: 10px !important;
    }

    .footer-section.brand-section {
        margin-right: 0px;
    }

    .footer-section.brand-section .brand-logo img {
        width: 45% !important;
    }

    .newsletter-btn {
        position: absolute;
        right: 0px;
    }

    .footer {
        padding: 40px 0 30px;
    }
}

/* Mobile responsive (max-width: 480px) */
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 20px;
    }

    .brand-section {
        grid-column: span 1;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 8px;
        margin-bottom: 10px;
    }

    .newsletter-btn {
        border-radius: 8px;
    }

    img.normal_logo {
        width: 120px;
    }

    a.theme-btn.theme-btn_mobile {
        display: none;
    }
}

.footer-section:nth-child(2) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.footer-section:nth-child(3) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.footer-section:nth-child(4) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 4s;
}

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

.fhdb {
    width: 50px;
    height: 50px;
    overflow: hidden;
    position: fixed;
    right: 20px;
    bottom: 60px;
    cursor: pointer;
    z-index: 1001;
    background-color: #ffdf99;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.fhdb:hover {
    transform: translateY(-3px) scale(1.05);
}

.fhdb img {
    width: 100%;
    transition: all ease 0.6s;
}

.fhdb:hover img:nth-child(1) {
    margin-top: -60px;
}

.fhdb:hover img:nth-child(2) {
    margin-top: -22px;
}


/* ================ popup form on details page */
.enquire-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
}

/* Popup content */
.enquire-popup-content {
    max-width: 500px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 0 9px hsla(0, 0%, 58%, .25);
    position: relative;
}

/* Close button */
.close-popup {
    position: absolute;
    top: -13px;
    right: -8px;
    font-size: 30px;
    cursor: pointer;
    line-height: normal;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--logo_color);
    border-radius: 50%;
    color: #fff;
}

.enquire-popup-content h2 {
    font-size: 22px;
    font-weight: 500;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.enquire-popup-content .form-group {
    margin-bottom: 16px;
    position: relative;
}

.enquire-popup-content .form-group input,
.enquire-popup-content .form-group textarea {
    width: 100%;
    padding: 13px 20px;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    line-height: normal;
}

.enquire-popup-content .form-group input:focus,
.enquire-popup-content .form-group textarea:focus {
    outline: none;
    border-color: var(--border-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.themeBtn_popup {
    width: 100%;
    padding: 13px;
    background: var(--logo_color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.themeBtn_popup:hover {
    transform: translateY(-2px);
    background: var(--logo-color-o);
    box-shadow: 0 4px 15px #373737a6;
}

.themeBtn_popup:active {
    transform: translateY(0);
}




/* product list  */


/* =========================== // products */
.breadcrumb_section {
    background-image: url(../images/products_background.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__content h1 {
    color: var(--white_color);
    font-size: 48px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0px;
    padding-top: 80px;
}

.header__content h1 img {
    width: 50px;
    filter: invert();
}

.products_section {
    margin-top: 40px;
}

.products_section .container {
    max-width: 1260px;
}

.breadcrumb {
    padding: 15px 20px;
    background: #fff;
    color: #666;
    font-size: 13px;
    border-radius: 12px;
    margin-bottom: 2rem;
    line-height: normal;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: all ease 0.3s;
    display: flex;
    align-items: center;
    line-height: normal;
    gap: 2px;
}

.breadcrumb svg {
    width: 16px;
    height: 16px;
}

.breadcrumb a:hover {
    color: var(--logo_color);
}

.hlo_products {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
    display: flex;
}

/* hlo_left */
.hlo_left {
    max-height: 90vh;
    width: 350px;
    max-width: 29%;
    overflow-y: auto;
    overflow-x: hidden;
    position: sticky;
    top: 110px;
    padding-left: 35px;
    padding-right: 20px;
    margin-left: -30px;
    scrollbar-color: #595757 #dddddd;
    scrollbar-width: thin;
    z-index: 9;
}

.hlo_left-a h6 {
    transition: all ease 0.3s;
    background: var(--white_color);
    margin-bottom: 0px;
    cursor: pointer;
    border-radius: 4px;
}

.hlo_left-a h6 a {
    display: block;
    line-height: 45px;
    text-decoration: none;
    padding: 0 30px 0 20px;
    color: #313131;
    width: 100%;
}

.hlo_left-a ul {
    list-style: none;
    padding: 0;
    margin: 0px;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hlo_left-a ul li ul {
    margin: 0px;
}

.hlo_left-a ul li ul li {
    position: relative;
    line-height: 24px;
    margin-bottom: 10px;
}

.hlo_left-a ul li ul li::before {
    content: "";
    width: 12px;
    height: 1px;
    position: absolute;
    top: 11px;
    left: -18px;
    background: #ff001f;
}

.hlo_left-a ul li {
    line-height: 36px;
}

.hlo_left-a ul li a {
    text-decoration: none;
    font-size: 14px;
    color: #666666;
    display: block;
    transition: all ease 0.3s;
}

.hlo_left-a ul li a:hover {
    color: var(--theme_color);
}

/* hlo_right */
.hlo_right {
    width: 73%;
    margin-top: -20px;
    padding-left: 40px;

}

.hlo_right-content {
    width: 100%;
    padding-top: 20px;
}

.hlo_right-content .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.hlo_right-content .pagination nav span {
    border: none !important;
    background: var(--bg_gradient) !important;
    color: var(--white_color);
    margin: 0 10px;
    border-radius: 6px !important;
    display: inline-block;
    line-height: 24px;
    font-weight: 500;
    text-align: center;
    transition: all .3s ease;
    font-size: 14px;
}

.hlo_right-content .pagination nav a {
    border: none !important;
    background: var(--bg_gradient) !important;
    color: var(--white_color);
    margin: 0 5px;
    border-radius: 6px !important;
    display: inline-block;
    line-height: 24px;
    text-align: center;
    transition: all .3s ease;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
}

.hlo_right-content .pagination nav a:hover {
    background: var(--logo_color) !important;
}


.hlo_right-content-a {
    width: 100%;
    margin-bottom: 25px;
}

.hlo_right-content-a p {
    font-size: 26px;
    color: var(--black_color);
    line-height: 22px;
    text-transform: uppercase;
    font-weight: 700;
}

.hlo_right-content-a span {
    width: 81px;
    height: 4px;
    background-color: var(--logo_color);
    display: block;
    margin-top: 12px;
}

.hlo_right-content-b {
    width: 100%;
    display: flex;
    flex-flow: wrap;
    column-gap: 25px;
    row-gap: 25px;
}

.hlo_right-content-b h6 {
    font-size: 20px;
    color: #000000;
    margin-bottom: 12px;
    font-weight: 700;
    width: 100%;
}

.hlo_right-content-ba {
    width: 31.33%;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding-bottom: 15px;
}

.hlo_right-content-ba .theme-btn .btn-text,
.hlo_right-content-ba a.theme-btn .btn-text {
    padding: 7px 18px;
    font-size: 13px;
}

div#popupProductImage {
    display: none;
}

/* product list  */



/* product details  */


/* =========================== // product-details */
.products_details-section {
    margin-top: 174px;
}

.products_details-section .container {
    max-width: 1260px;
}

.product-container {
    display: flex;
    gap: 40px;
}

/* Left Side - Image Slider */
.product-images {
    flex: 1;
    max-width: 500px;
}

.main-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.slider-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.main-single_slider {
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.slide:hover {
    transform: scale(1.02);
}

.slide img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.slide:hover img {
    transform: scale(1.05);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 15px;
}

.next-btn {
    right: 15px;
}

.slide-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 100;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.thumbnail.active {
    border-color: #ff001f;
    transform: scale(1.05);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail:hover {
    border-color: #ff001f;
    transform: scale(1.02);
}

/* Right Side - Product Details */
.product-details {
    flex: 1;
    border-radius: 1rem;
    padding: 3rem;
    background: #fff;
    /* box-shadow: 6px 13px 40px 0px rgba(0, 0, 0, .3); */
    position: relative;
    margin: 0 0 3rem;
}

.product-header {
    margin-bottom: 25px;
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-header p {
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.features-section {
    margin-bottom: 30px;
}

.sec-title {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 8px;
}

.features-section ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

.features-section ul li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #555;
    line-height: 17px;
    font-size: 15px;
}

a.theme-btn.enquireBtn {
    margin-right: 10px;
}

.features-section ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 600;
    font-size: 15px;
}

.applicable-section {
    margin-bottom: 30px;
}

.applicable-section ul {
    background: #f0f0f0;
    padding: 22px;
    list-style: none;
    margin: 0px;
    border-radius: 19px;
}

.applicable-section ul li {
    font-size: 15px;
    padding-left: 20px;
    position: relative;
    text-transform: capitalize;
    line-height: 17px;
    margin-bottom: 8px;
}

.applicable-section ul li::before {
    content: "";
    width: 12px;
    height: 1px;
    position: absolute;
    top: 9px;
    left: 0;
    background: #ff001f;
}

/* Popup Modal */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-slider {
    position: relative;
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.popup-slider-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    height: 100%;
}

.popup-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-slide svg {
    max-width: 90%;
    max-height: 90%;
}

.popup-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.popup-nav-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.popup-prev-btn {
    left: 20px;
}

.popup-next-btn {
    right: 20px;
}

.popup-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    z-index: 1000;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    z-index: 1001;
}

.popup-close:hover {
    background: white;
    transform: scale(1.1);
}

.popup-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.popup-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.popup-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.popup-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: center;
}

.popup-thumb {
    width: 60px;
    height: 60px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.popup-thumb.active {
    border-color: #ff001f;
    transform: scale(1.1);
}

.popup-thumb svg {
    width: 100%;
    height: 100%;
}

section.banner_section.mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        gap: 20px;
    }

    .product-images {
        max-width: 100%;
    }

    .slider-container {
        height: 300px;
    }

    .product-title {
        font-size: 20px;
    }

    .current-price {
        font-size: 28px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .popup-content {
        width: 95%;
        height: 85vh;
    }

    .popup-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .popup-prev-btn {
        left: 15px;
    }

    .popup-next-btn {
        right: 15px;
    }

    .popup-info {
        padding: 20px;
    }

    .popup-info h3 {
        font-size: 20px;
    }

    .popup-info p {
        font-size: 14px;
    }

    .products_details-section {
        margin-top: 100px;
    }

    .product-details {
        padding: 20px;
        margin: 0 0 2rem;
    }

    .product-header {
        margin-bottom: 12px;
    }

    .product-header p {
        margin-bottom: 0px;
    }

    .sec-title {
        font-size: 18px;
        padding-bottom: 4px;
    }

    .features-section {
        margin-bottom: 20px;
    }

    .applicable-section ul {
        padding: 15px;
    }

    .applicable-section ul li {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .applicable-section ul li::before {
        top: 8px;
    }

    .applicable-section {
        margin-bottom: 20px;
    }

    .theme-btn .btn-text,
    a.theme-btn .btn-text {
        font-size: 12px;
    }

    .enquire-popup-content {
        max-width: 90%;
        width: 100%;
        padding: 20px;
    }

    .enquire-popup-content h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .enquire-popup-content .form-group {
        margin-bottom: 10px;
    }

    .main-single_slider img {
        width: 80%;
        border-radius: 15px;
    }

    .hlo_right {
        width: 100%;
        margin-top: -20px;
        padding-left: 0px;
    }

    .hlo_right-content {
        width: 100%;
        padding-top: 20px;
    }

    .hlo_right-content-b {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .phone-image img {
        width: 100%;
        height: 120px;
        object-fit: contain;
        border-radius: 12px;
    }

    .phone-name a {
        font-size: 12px;
    }

    .header__content h1 {
        font-size: 32px;
        padding-top: 65px;
    }

    .breadcrumb_section {
        height: 230px;
    }

    .header__content h1 img {
        width: 32px;
    }

    .hlo_right-content-ba {
        width: 100%;
    }

    .hlo_left.hlo_fl.sticky-top {
        display: none;
    }

    .fhdb {
        right: 30px;
        bottom: 30px;
    }

    section.banner_section.desktop {
        display: none;
    }

    section.banner_section.mobile {
        display: block;
    }
}

@media (max-width: 425px) {
    .hlo_right-content-b {
        column-gap: 15px;
        row-gap: 15px;
    }

    .phone-image img {
        height: 110px;
    }

    .hlo_right-content-ba .theme-btn .btn-text,
    .hlo_right-content-ba a.theme-btn .btn-text {
        font-size: 12px;
    }

    .bestSellersSlider_section .swiper-button-next,
    .bestSellersSlider_section .swiper-button-prev {
        color: #333;
        background: white;
        width: 36px;
        height: 36px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        top: 22%;
    }

    .bestSellersSlider_section .swiper-button-next::after,
    .bestSellersSlider_section .swiper-button-prev::after {
        font-size: 12px;
        font-weight: 700;
    }
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-content {
    animation: fadeIn 0.3s ease;
}

/* Loading animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #ff001f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Mobile par arrows hide */
@media (max-width: 639px) {

    .solarKit-next,
    .solarKit-prev,
    .bestSeller-next,
    .bestSeller-prev {
        display: none !important;
    }

    .bestSeller-pagination {
        display: block !important;
        text-align: center;
        padding-bottom: 15px;
    }

    .bestSellersSlider_section .theme-btn .btn-text,
    .bestSellersSlider_section a.theme-btn .btn-text {
        font-size: 12px;
        font-weight: 600;
        padding: 6px 10px;
    }

    .bestSellersSlider,
    .solarKitSlider,
    .pvModulesSlider,
    .hybridInvertersSlider,
    .stringInvertersSlider,
    .microInvertersSlider,
    .liOnBatteriesSlider,
    .acChargersSlider,
    .dcFastChargersSlider {
        width: 100%;
        padding: 20px !important;
        padding-bottom: 15px !important;
        padding-top: 5px !important;
    }

    .product_container-sellers {
        background: var(--white_color);
        border-radius: 20px;
    }

    .solarKit-pagination {
        display: block !important;
        text-align: center;
        padding-top: 15px;
    }

    .clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item img.clients_cb-image,
    .clients-boxes-holder.clients_cb-hover-roll-over .clients_cb-item img.clients_cb-hover-image {
        margin: auto;
        text-align: center;
        width: 90px;
    }

    .tooltip_icon a {
        width: 44px;
        height: 40px;
    }

    .product-header p {
        margin-bottom: 0px;
        font-size: 14px;
    }

    .features-section ul li {
        margin-bottom: 10px;
        padding-left: 18px;
        font-size: 14px;
    }

    .features-section ul li::before {
        font-size: 14px;
    }

    .hlo_right-content .pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .ourClient_section .heading_wrapper.mb-4 {
        margin-bottom: 0.5rem !important;
    }

    a.theme-btn.enquireBtn {
        margin-right: 0px;
    }

    .details_bttn-a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .theme-btn,
    a.theme-btn {
        width: 100%;
    }

    .theme-btn .btn-text.normal,
    a.theme-btn .btn-text.normal {
        color: white;
        background: var(--logo_color);
        width: 100%;
    }

    .hlo_right-content-a p {
        font-size: 20px;
        line-height: 30px;
    }

    .header__content h1 {
        font-size: 24px;
        padding-top: 65px;
    }
}

@media (min-width: 640px) {
    .bestSeller-pagination {
        display: none !important;
    }

    .solarKit-pagination {
        display: none !important;
    }
}