@import 'fonts.css';

:root{
    --color-primary:  #1e1c55;
    --color-secondary: #26A9E0;
    --color-secondary-light: rgba(38, 169, 224, 0.08);

    --bs-primary: var(--color-primary);
    --bs-secondary: var(--color-secondary);

    /* --bs-primary-rgb: 30, 28, 85; */
    /* --bs-secondary-rgb: 38, 169, 224; */
    --bs-primary-rgb: var(--color-primary, 30, 28, 85);
    --bs-secondary-rgb: var(--color-secondary, 38, 169, 224);

    --btn-radius: 4px;
}



.container{
    max-width: 1270px !important;
}

body, * {
  font-family: 'Poppins', sans-serif;
}

img{
    width: 100%;
}

a{
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

a:hover{
    color: var(--color-primary);
}

a:focus-visible {
    border: none;
    outline: none;
}

input, textarea{
    max-width: 100%;
}


.btn{
    padding: 15px 32px;
    /* min-width: 200px; */
    text-align: center;
    border-radius: var(--btn-radius);
    text-decoration: none;
    border: none;
    font-size: 18px;
    line-height: 1.2;
    transition: all 0.3s ease-in-out;
}

.btn img, .btn svg{
    width: 13px;
    height: 13px;
    margin-left: 10px;
    stroke: #fff;
}

.btn-primary{
    background-color: var(--color-primary);
    color: #fff;
}

.btn-primary:hover{
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary{
    background-color: var(--color-secondary);
    color: #fff;
}

.btn-secondary:hover{
    background-color: var(--color-primary);
    color: #fff;
}

.btn-white{
    background-color: #fff;
    color: var(--color-primary);
}

.btn-white:hover{
    background-color: var(--color-secondary);
}



.bg-overlay-primary{
    position: relative;
    z-index: 1;
}

.bg-overlay-primary::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bs-primary);
    opacity: 0.9;
    z-index: -1;
}

.text-balance{
    text-wrap: balance;
}





header.site-header{
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    padding: 20px;
}

header.site-header > .container{
    padding: 10px 10px 10px 40px;
    border-radius: 50px;
    background-color: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    position: relative;
}


.site-logo{
    width: clamp(120px, 22vw, 198px);
    height: auto;
}

header .header-button-wrapper{
    text-align: right;
}

header .header-button{
    padding: 12px 32px;
    min-width: 180px;
    text-align: center;
    font-size: 14px;
    background-color: var(--color-primary) !important;
}

header .header-button:hover{
    background-color: var(--color-secondary) !important;
    color: #fff;
}

header .navbar-toggler:focus{
    box-shadow: none;
    outline: none;
}

header nav .dropdown-menu.show{
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
}

header nav .dropdown-menu.show:has(.menu-item-with-image){
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 20px;
    padding: 15px 25px;
    overflow-x: auto;
}

header nav .dropdown-menu.show .menu-item-with-image > .dropdown-item{
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

header nav .dropdown-menu.show .dropdown-item{
    border-radius: 50px;
}

header nav .dropdown-menu.show .menu-item-with-image > .dropdown-item:hover{
    background-color: var(--color-secondary-light);
}

header nav .dropdown-menu.show .menu-item-with-image > .dropdown-item.active{
    background-color: var(--color-secondary);
}

header nav .dropdown-menu.show .menu-item-with-image > .dropdown-item .menu-item-thumbnail{
    width: 280px;
    height: 180px;
    object-fit: contain;
}

.dropdown-toggle::after{
    display: none;
}

header nav .dropdown-chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 5px;
    vertical-align: middle;
    cursor: pointer;
}

header nav .nav-item .nav-link{
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}





footer.site-footer{
    padding: 80px 40px 50px;
    /* background-color: #fff;
    color: var(--color-primary); */
}

footer.site-footer :is(.site-logo, .site-title){
    margin-bottom: 50px;
}

footer .footer-nav .footer-section-title{
    font-size: 20px;
    font-weight: 500;
}

footer .footer-nav ul.footer-main-menu{
    column-count: 2;
    column-gap: 20px;
    max-width: 500px;
}

footer .footer-nav ul.footer-main-menu .nav-link{
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}

footer .social-icons-wrapper :is(.social-icon, .chat-button){
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    color: var(--color-secondary);
    background-color: transparent;
    font-size: 18px;
    transition: all 0.3s ease;
}

footer .social-icons-wrapper :is(.social-icon:hover, .chat-button:hover){
    background-color: var(--color-secondary);
    color: #fff;
}

footer .footer-copyright-row{
    margin-top: 80px;
}

footer .footer-copyright-row .footer-copyright a{
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}





.section-heading{
    font-size: 55px;
    line-height: 1.1;
    font-weight: 700;
}







.bg-pattern{
    position: relative;
    z-index: 1;
}

.bg-pattern::after{
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(/wp-content/uploads/2025/08/star-shape-pattern.svg);
    background-position: top left;
    background-size: 80px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.1;
    z-index: -2;
}



.contact-form .form-field label{
    font-size: 14px;
    font-weight: 500;
}

form p{
    margin: 0 !important;
}

.contact-form .form-field:not(.form-submit-field){
    margin-bottom: 40px;
    flex: 1;
}

.contact-form .form-field :is(input, textarea, select){
    width: 100%;
    height: auto;
    padding: 10px;
    border-color: var(--color-primary);
    border-width: 0 0 1px;
    outline: none;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.2;
}

.contact-form .form-field :is(input, textarea, select):focus{
    background-color: var(--color-secondary-light);
}

.contact-form .form-field :is(input, textarea)::placeholder{
    color: var(--color-primary);
    opacity: 0.5;
}

.contact-form .form-submit-field{
    text-align: right;
}

.contact-form .form-submit-field input[type="submit"]{
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    padding: 15px 40px;
    border-radius: 50px;
    text-align: center;
    color: #fff;
    background-color: var(--color-primary);
    border: none;
    transition: all 0.3s ease;
}

.contact-form .form-submit-field input[type="submit"]:hover{
    background-color: var(--color-secondary);
}

.contact-form .form-submit-field p{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}


.newsletter-form{
    max-width: 540px;
}

.newsletter-form .d-flex{
    gap: 20px;
}

.newsletter-form .form-field input{
    width: 100%;
    height: auto;
    padding: 15px 20px;
    background-color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    outline: none;
    border-radius: 5px;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
}

.newsletter-form .form-field input:focus{
    border-color: var(--color-primary);
    outline: none;
}

.newsletter-form .form-field input::placeholder{
    color: #fff;
}

.newsletter-form .form-submit-field input[type="submit"]{
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 20px;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: all 0.3s ease;
}

.newsletter-form .form-submit-field input[type="submit"]:hover{
    background-color: var(--color-secondary);
}

.newsletter-form .form-submit-field p{
    display: flex;
    align-items: center;
}




/* _________Blogs Section__________ */

.blogs-grid-section{
    padding: 100px 40px 120px;
}

.blogs-grid-section .section-heading{
    font-size: 20px;
    font-weight: 500;
}

.blogs-grid-section .section-subheading{
    font-size: 25px;
    line-height: 1.3;
    max-width: 480px;
}

.blogs-grid-section .blogs-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

.blogs-grid-section .blog-card__image{
    padding: 0 44px;
    width: 100%;
}

.blogs-grid-section .blog-card__image img{
    width: 100%;
    max-height: 300px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
}

.blogs-grid-section .blog-card__content{
    padding: 33px 44px 50px;
    border-radius: 40px;
}

.blog-card__title{
    font-size: 20px;
    font-weight: 500;
}

.blog-card__excerpt{
    font-size: 12px;
}

.blog-card__date{
    font-size: 17px;
    font-weight: 500;
}

.blog-card__button{
    padding: 10px 20px;
    min-width: auto;
    letter-spacing: -1%;
}











/* _________Product Archive Page__________ */
.archive-electronova_product .archive-banner-wrapper{
    min-height: 500px;
    width: 100%;
    padding: 40px;
    background-position: center;
    background-size: cover;
}

.archive-electronova_product .archive-banner-wrapper img{
    width: 50px;
    height: 150px;
    object-fit: contain;
}

.product-archive-list-section{
    padding: 100px 40px 130px;
}

.product-archive-list-section .section-headings-wrapper{
    margin-bottom: 60px;
}

.product-archive-list-section .archive-title{
    font-size: 20px;
    font-weight: 400;
}

.product-archive-list-section .section-headings-wrapper .section-heading{
    font-size: 78px;
    font-weight: 400;
}

.product-archive-list-section .section-headings-wrapper .section-heading span{
    font-weight: 600;
}

.product-archive-list-section .product-archive-list{
    row-gap: 24px;
}

.product-archive-list .product-card > a{
    border-radius: 90px;
    padding: 60px 40px;
    border: 4px solid var(--color-secondary);
    transition: border 0.3s;
}

.product-archive-list-section .product-archive-list .product-card > a:hover{
    border-color: #fff;
}

.product-archive-list-section .product-thumbnail{
    width: 100%;
    max-height: 420px;
    height: 400px;
    object-fit: contain;
}

.product-archive-list-section .product-logo{
    max-width: 70%;
}

.product-archive-list-section .product-logo img{
    max-height: 90px;
    max-width: 250px;
    min-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.product-archive-list-section .product-title{
    font-size: 78px;
}




.product-archive-slider-section .swiper-slide{
    padding: 80px 40px;
	height: auto;
}

.slide-headings-wrapper .slide-heading{
    font-size: 64px;
    font-weight: 600;
}

.product-archive-slider-section .swiper-slide .container{
    container-type: inline-size;
    container-name: product-container;
}

.product-archive-slider-section .product-thumbnail-and-title-wrapper{
    min-height: 600px;
    position: relative;
}

.product-archive-slider-section .product-title-in-back{
    font-weight: 700;
    color: #fff;
    opacity: 0.15;
    font-size: clamp(2rem, 35cqw, 30rem);
    line-height: 1;
    letter-spacing: -20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    text-align: center;
    position: absolute;
    z-index: -2;
}

.product-archive-slider-section .slide-product-thumbnail{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    top: 0px;
    left: 0;
    right: 0;
    z-index: -1;
}

.product-archive-slider-section .product-title{
    font-size: 40px;
    font-weight: 400;
}

.product-archive-slider-section .product-type-name{
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.product-archive-slider-section .product-features .product-feature{
    min-width: 115px;
}

.product-archive-slider-section .product-features .product-feature .feature-title{
    font-size: 16px;
}

.product-archive-slider-section .product-features .product-feature .feature-value > b{
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}

.product-archive-slider-section .product-features .product-feature hr{
    border-width: 3px;
    opacity: 1;
}

.product-archive-slider-section .swiper-pagination{
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%);
    max-width: 1270px;
    margin: auto;
    text-align: left;
}

.product-archive-slider-section .swiper-pagination .swiper-pagination-bullet{
    width: 9px;
    height: 9px;
    opacity: 1;
    border: 2px solid transparent;
    outline: 1px solid #fff;
    background-color: transparent;
}

.product-archive-slider-section .swiper-pagination .swiper-pagination-bullet-active{
    background-color: #fff;
}




/* ________ Single Product Page __________ */
.single-electronova_product .product-header-section{
    padding: 50px 40px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center -100px, center bottom;
}

.single-electronova_product .product-header-section .section-headings-wrapper{
    max-width: 450px;
    min-height: 450px;
    margin: auto;
}
.single-electronova_product .product-header-section .product-page-title{
    font-size: 96px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin: 0;
}

.product-gallery-container{
    border-radius: 10px;
    padding: 30px;
}

.product-description{
    max-width: 650px;
    margin: auto;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 320px;
    gap: 24px;
}

.masonry-item:first-child{
    grid-row: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
}

.masonry-item{
    overflow: hidden;
    border-radius: 10px;
}

.masonry-item:hover img {
    transform: scale(1.03);
    cursor: pointer;
}
        
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

.lightbox-caption {
    color: #fff;
    text-align: center;
    margin-top: 15px;
    font-size: 1.2rem;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 3;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}
        
.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-prev, .lightbox-next {
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}


.single-electronova_product .product-logo{
    max-width: 300px;
}

.single-electronova_product .product-logo img{
    max-height: 100px;
    min-height: 35px;
    object-fit: contain;
}

.single-electronova_product .highlighted-feature-section{
    padding: 60px 40px;
}

.single-electronova_product .highlighted-feature-section .hi-feature-img{
    max-height: 360px;
    width: 100%;
    object-fit: cover;
}

.single-electronova_product .product-features-section{
    padding: 60px 40px 20px;
    background: linear-gradient(180deg, var(--color-secondary) calc(100% - 150px), var(--color-primary) 150px);
}

.single-electronova_product .product-features-section .section-heading{
    font-size: 24px;
    font-weight: 700;
    position: relative;
    margin-bottom: 55px;
}

.single-electronova_product .product-features-section .section-heading::after{
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background-color: #fff;
}

.single-electronova_product .product-features-section .features-list-grid{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.single-electronova_product .product-features-section .feature-card{
    border-radius: 10px;
}

.single-electronova_product .product-features-section .feature-icon{
    width: 55px;
    height: 55px;
    padding: 8px;
    border-radius: 100%;
}

.single-electronova_product .product-features-section .feature-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.single-electronova_product .product-features-section .feature-title{
    font-size: 16px;
    font-weight: 500;
    max-width: 270px;
}

.single-electronova_product .product-features-section .feature-desc{
    font-size: 14px;
    max-width: 270px;
}

.product-faqs-section{
    padding: 60px 40px;
    background-color: var(--color-secondary-light);
}

.product-faqs-section .faqs-list .faq .faq-question{
    font-weight: 600;
}





/* ________ Compare Section __________ */

.compare-section{
    padding: 70px 40px 90px;
}

.compare-section .section-heading{
    font-size: 65px;
    font-weight: 400;
    margin-bottom: 80px;
}

.compare-section .compare-col:first-child{
    border-right: 1px solid #fff;
}

.compare-section .compare-col:last-child{
    border-left: 1px solid #fff;
}

.compare-section .compare-box .product-image-container{
    width: 255px;
    height: 255px;
    border: 1px solid #fff;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.compare-section .compare-box .product-image-container img{
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
}

.compare-section .compare-box .compare-selection-wrapper{
    margin-bottom: 40px;
}

.compare-section .compare-box .compare-product-select::selection{
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    border: none;
}

.compare-section .compare-box .compare-product-select{
    font-size: 22px;
}

.compare-section .compare-box .compare-product-select:focus-visible{
    outline: none;
    border: none;
}





/* ________ Dealers Archive Page __________ */

.dealer-archive .dealers-list-section{
    padding: 180px 40px 60px;
}

.dealer-archive .dealers-list-section .dealer-search{
    max-width: 500px;
}

.dealer-archive .dealers-list-section .dealer-card .card{
    border: 2px solid var(--color-secondary);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.dealer-archive .dealers-list-section .dealer-card .card:hover{
    border-color: #fff;
}

.dealer-archive .dealers-list-section .dealer-card .card .card-title{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}


.become-dealer-section{
    padding: 60px 40px;
}

.dealership-form-row{
    border-radius: 10px;
    min-height: 600px;
}

.dealership-form-row > div{
    padding: 40px;
    border-radius: 10px;
}

.dealership-form-row .section-heading{
    font-size: 28px;
    font-weight: 600;
    line-height: 1;
}

.dealership-form-row .section-paragraph{
    font-size: 18px;
    line-height: 1.35;
}



/* Map Styles */
.dealer-map-section{
    padding: 40px 40px 80px;
}

#dealer-map {
    min-height: 500px;
    width: 100%;
    z-index: 1;
    background: #fff;
}

.dealer-info-window {
    padding: 10px;
    min-width: 250px;
}

.dealer-info-window h5 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.dealer-info-window p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Leaflet popup customization */
.leaflet-popup-content {
    margin: 8px;
}

.leaflet-popup-content-wrapper {
    border-radius: 4px;
}

/* Leaflet Tile Layers Fix */
.leaflet-tile-pane {
    opacity: 1 !important;
}

.leaflet-layer {
    opacity: 1 !important;
}










.swiper-pagination{
    position: absolute;
    bottom: 10px !important;
    left: auto !important;
    right: 50%;
    transform: translateX(600px);
    z-index: 10;
    width: fit-content !important;
    height: 28px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 6px;
    padding: 4px;
}

.swiper-pagination .swiper-pagination-bullet{
    width: 5px;
    height: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
    border: 1px solid #fff;
    border-radius: 50px;
    opacity: 1 !important;
    margin: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet-active{
    background-color: transparent !important;
    width: 20px !important;
    height: 20px !important;
}



/* _________ Single Post _________ */

.single-post .single-post-header{
    padding: 140px 40px 50px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    z-index: 1;
}

.single-post .single-post-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 25%, var(--color-primary) 75%);
}

.single-post .single-post-content{
    padding: 20px 40px 60px;
}




/* _________ Default Content Pages _________ */

.page-main{
    padding: 140px 40px 60px;
}

.page-main .page-content :is(h2, h3, h4, h5, h6, a:hover){
    color: var(--color-primary);
}

.page-main .page-content a{
    color: var(--color-secondary);
}



/* _________ Search Result Page ________ */

.search-main{
    padding: 140px 40px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-secondary-light);
}

.search-main .search-results .search-result-item .search-result-item-img{
    max-height: 200px;
    object-fit: contain;
}



/* __________ 404 page styling ________ */

.error-404{
    padding: 140px 40px 60px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-secondary-light);
}

.error-404 .heading-404{
    font-weight: 700;
}

.error-404 .heading-404 img{
    max-width: 70px;
    transform: translateY(-10%);
}





/* _________Scroll to Top Button__________ */
.scroll-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top-btn:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-to-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 28, 85, 0.3);
}



@media screen and (max-width: 1200px) {
    header nav .dropdown-menu.show:has(.menu-item-with-image){
        gap: 10px;
        padding: 15px 20px;
        border-radius: 50px;
    }

    header nav .dropdown-menu.show .menu-item-with-image > .dropdown-item{
        padding: 10px;
        gap: 15px;
    }

    header nav .dropdown-menu.show .menu-item-with-image > .dropdown-item .menu-item-thumbnail{
        width: 220px;
        height: 150px;
        object-fit: contain;
    }




    .archive-electronova_product .archive-banner-wrapper{
        min-height: 450px;
    }

    .product-archive-list-section {
        padding: 100px 40px 100px;
    }

    .product-archive-list-section .section-headings-wrapper .section-heading {
        font-size: 65px;
    }

    .product-archive-list .product-card > a{
        border-radius: 90px;
        padding: 40px 30px;
    }

    .product-archive-list-section .product-thumbnail{
        height: 300px;
    }

    .product-archive-list-section .product-logo img{
        max-height: 70px;
    }

    .slide-headings-wrapper .slide-heading {
        font-size: 48px;
        line-height: 1.1;
    }

    .product-archive-slider-section .product-features .product-feature .feature-value > b {
        font-size: 20px;
    }

    .compare-section .section-heading{
        font-size: 55px;
    }



    .single-electronova_product .product-features-section .features-list-grid{
        gap: 18px;
    }
}


@media screen and (max-width: 1024px){
    header.site-header > .container{
        padding: 12px 12px 12px 20px;
    }
    header .header-button{
        min-width: auto;
        padding: 10px 30px;
    }
}


@media (max-width: 991.98px) {
    .offcanvas {
        width: 100%;
        height: 100vh !important;
    }
    
    .navbar-nav {
        height: 100%;
        padding: 2rem 0;
    }

    .dropdown-menu {
        border: none;
        background: transparent;
    }

    .menu-item-with-image {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (min-width: 992px) {
    .offcanvas {
        position: static;
        visibility: visible !important;
        transform: none !important;
        z-index: auto;
        background: transparent;
    }

    .offcanvas-header {
        display: none;
    }

    header.site-header nav{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    header.site-header nav .dropdown:has(.menu-item-with-image){
        position: static;
    }

    header nav .dropdown-menu.show{
        margin-top: 15px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }

    /* header nav .dropdown-menu.show:has(.menu-item-with-image){
        max-width: 1190px;
        width: calc(100vw - 80px);
    } */

    header nav .dropdown-menu.show:has(.menu-item-with-image){
        border-radius: 50px;
    }
}

@media screen and (max-width: 992px) {
    .btn{
        padding: 12px 26px;
        font-size: 16px;
    }

    .section-heading {
        font-size: 45px;
    }

    header.site-header {
        top: 10px;
    }

        /* _________ */
    header nav .dropdown-menu.show:has(.menu-item-with-image){
        justify-content: start;
        gap: 16px;
        padding: 15px;
    }
    
    header nav .dropdown-menu.show .menu-item-with-image > .dropdown-item{
        padding: 10px 15px;
        border-radius: 30px;
        gap: 16px;
        background-color: var(--color-secondary-light);
    }

    header nav .dropdown-menu.show .dropdown-item{
        border-radius: 0;
    }

    header nav .dropdown-menu.show .menu-item-with-image > .dropdown-item .menu-item-thumbnail{
        width: 200px;
        height: 150px;
        object-fit: contain;
    }

    /* .site-header .navbar{
        position: static;
    }

    .site-header .navbar-collapse.show, .site-header .navbar-collapse.collapsing {
        position: absolute;
        top: -10px;
        right: 0;
        width: 100vw;
        height: 100vh;
        background-color: #fff;
        padding: 20px 20px 40px;
    } */




    .product-archive-list-section {
        padding: 80px 40px 80px;
    }

    .product-archive-list-section .section-headings-wrapper {
        margin-bottom: 50px;
    }

    .product-archive-list-section .section-headings-wrapper .section-heading {
        font-size: 48px;
    }

    .product-archive-list .product-card > a{
        border-radius: 50px;
        padding: 30px;
    }

    .product-archive-list-section .product-thumbnail{
        height: 250px;
    }

    .product-archive-list-section .product-logo img{
        max-height: 60px;
        min-height: 35px;
    }

    .product-archive-slider-section .product-thumbnail-and-title-wrapper {
        min-height: 420px;
    }

    .product-archive-slider-section .product-title {
        font-size: 36px;
    }

    .product-archive-slider-section .product-features .product-feature .feature-value > b {
        font-size: 18px;
    }

    .compare-section .section-heading {
        font-size: 42px;
        margin-bottom: 50px;
    }

    .single-electronova_product .product-header-section{
        background-position: center top, center bottom;
    }

    .masonry-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }





    .newsletter-form{
        margin: 0 auto;
        max-width: 450px;
    }

    .newsletter-form .form-submit-field{
        position: relative;
    }

    .newsletter-form .form-submit-field .wpcf7-spinner{
        margin: 0;
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
        background-color: var(--color-primary);
    }



    /* ________ Dealers Archive Page __________ */

    .dealer-archive .dealers-list-section{
        padding: 140px 40px 60px;
    }

    .dealership-form-row > div{
        padding: 30px 15px;
    }

    .dealership-form-row .section-heading{
        font-size: 26px;
        line-height: 1.2;
    }



    /* 404 page styling */

    .error-404 .heading-404 img{
        max-width: 55px;
        transform: translateY(-15%);
    }
}



@media screen and (max-width: 768px) {
    .section-heading {
        font-size: 32px;
    }

    .contact-form .form-submit-field input[type="submit"]{
        padding: 12px 30px;
        font-size: 15px;
    }

    .archive-electronova_product .archive-banner-wrapper {
        min-height: 350px;
        padding: 20px;
    }

    .archive-electronova_product .archive-banner-wrapper img {
        width: 32px;
        height: 100px;
    }

    .product-archive-list-section {
        padding: 50px 20px;
    }

    .product-archive-list-section .section-headings-wrapper {
        margin-bottom: 30px;
    }

    .product-archive-list-section .section-headings-wrapper .section-heading {
        font-size: 36px;
    }

    .product-archive-list .product-card > a {
        border-radius: 40px;
        padding: 20px;
    }

    .product-archive-list-section .product-thumbnail {
        height: 160px;
    }

    .product-archive-list-section .product-logo img {
        max-height: 50px;
        min-height: 25px;
    }

    .product-archive-slider-section .swiper-slide {
        padding: 50px 20px 60px;
    }

    .slide-headings-wrapper .slide-heading {
        font-size: 32px;
    }

    .product-archive-slider-section .product-thumbnail-and-title-wrapper {
        min-height: 420px;
    }

    .product-archive-slider-section .product-features .product-feature .feature-value > b {
        font-size: 16px;
    }

    .product-archive-slider-section .swiper-pagination{
        bottom: 10px !important;
    }

    .swiper-pagination .swiper-pagination-bullet-active {
        width: 15px !important;
        height: 15px !important;
    }

    .product-archive-slider-section .swiper-pagination .swiper-pagination-bullet {
        width: 6px;
        height: 6px;
    }

    .swiper-pagination{
        left: 20px !important;
        transform: translateX(0);
        height: 24px;
        gap: 5px;
        padding: 2px;
    }

    .compare-section{
        padding: 50px 20px 70px;
    }

    .compare-section .section-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .compare-section .compare-box .product-image-container {
        width: 190px;
        height: 180px;
        padding: 15px;
    }

    .compare-section .compare-box .compare-product-select {
        font-size: 18px;
    }

    .compare-section .compare-box .compare-selection-wrapper {
        margin-bottom: 20px;
    }

    .masonry-grid {
        grid-auto-rows: 260px;
        gap: 16px;
    }




    .single-electronova_product .product-header-section{
        padding: 50px 20px 40px;
    }

    .single-electronova_product .product-header-section .section-headings-wrapper{
        min-height: 400px;
    }

    .single-electronova_product .product-header-section .product-page-title{
        font-size: 82px;
    }

    .product-gallery-container{
        padding: 20px 16px 16px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-prev, .lightbox-next {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    .single-electronova_product .product-logo{
        max-width: 200px;
    }

    .single-electronova_product .product-logo img{
        min-height: 30px;
    }

    .single-electronova_product .highlighted-feature-section{
        padding: 50px 20px;
    }

    .single-electronova_product .product-features-section{
        padding: 50px 20px 20px;
    }

    .single-electronova_product .product-features-section .features-list-grid{
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }

    .single-electronova_product .highlighted-feature-section {
        padding: 60px 20px 50px;
    }

    .product-faqs-section {
        padding: 50px 20px;
    }



    /* ________ Dealers Archive Page __________ */

    .dealer-archive .dealers-list-section{
        padding: 120px 20px 50px;
    }

    .dealer-archive .dealers-list-section .dealer-card .card{
        border-radius: 20px;
    }

    .dealer-archive .dealers-list-section .dealer-card .card .card-title{
        font-size: 22px;
        margin-bottom: 16px;
    }

    .become-dealer-section{
        padding: 50px 20px;
    }

    .dealership-form-row .section-heading{
        font-size: 22px;
    }

    .dealership-form-row .section-paragraph{
        font-size: 16px;
    }

    /* Map Styles */
    .dealer-map-section{
        padding: 40px 20px 50px;
    }

    #dealer-map {
        min-height: 350px;
    }

    .dealer-info-window {
        padding: 8px;
        min-width: 200px;
    }



    /* _________ Single Post _________ */

    .single-post .single-post-header{
        padding: 120px 20px 50px;
        min-height: 550px;
    }

    .single-post .single-post-content{
        padding: 20px 20px 50px;
    }



    /* _________ Default Content Pages _________ */

    .page-main, .search-main{
        padding: 120px 20px 50px;
    }




    /* 404 page styling */

    .error-404{
        padding: 120px 20px 50px;
    }

    .error-404 .heading-404 img{
        max-width: 50px;
    }






    footer.site-footer {
        padding: 60px 20px 30px;
    }

    footer .footer-copyright-row {
        margin-top: 60px;
    }

    footer .footer-nav ul.footer-main-menu .nav-link{
        font-size: 18px;
    }


    .scroll-to-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    body{
        font-size: 14px;
    }

    body p{
        margin-bottom: 12px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .section-heading{
        font-size: 30px;
    }

    header.site-header{
        padding: 16px;
    }
    
    header .header-button{
        padding: 10px 20px;
        font-size: 12px;
        line-height: 1;
        min-width: auto;
    }

    header .navbar-toggler{
        font-size: 18px;
    }

    header.site-header > .container {
        padding: 8px 8px 8px 14px;
    }



    .contact-form .form-field:not(.form-submit-field){
        margin-bottom: 30px;
    }

    .contact-form .form-field label {
        font-size: 13px;
    }

    .contact-form .form-field :is(input, textarea, select) {
        padding: 5px;
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .contact-form .form-submit-field input[type="submit"]{
        font-size: 13px;
        padding: 12px 24px;
    }



    .archive-electronova_product .archive-banner-wrapper {
        min-height: 300px;
        padding: 10px;
    }

    .product-archive-list-section {
        padding: 50px 14px;
    }

    .product-archive-list-section .section-headings-wrapper .section-heading {
        font-size: 30px;
    }

    .product-archive-list-section .product-archive-list {
        row-gap: 12px;
    }

    .product-archive-list-section .product-archive-list > div{
        padding-left: 6px;
        padding-right: 6px;
    }

    .product-archive-list .product-card > a {
        border-radius: 30px;
        padding: 12px 8px;
    }

    .product-archive-list-section .product-thumbnail {
        height: 120px;
    }

    .product-archive-list-section .product-logo img {
        max-height: 40px;
        min-height: 20px;
    }

    .product-archive-slider-section .swiper-slide {
        padding: 50px 8px;
    }

    .product-archive-slider-section .product-thumbnail-and-title-wrapper {
        min-height: 250px;
    }

    .slide-headings-wrapper .slide-heading {
        font-size: 26px;
    }

    .product-archive-slider-section .product-title {
        font-size: 30px;
    }

    .product-archive-slider-section .product-type-name {
        font-size: 16px;
    }

    .product-archive-slider-section .product-title-in-back{
        font-size: clamp(2.2rem, 35cqw, 30rem);
        letter-spacing: -10px;
    }

    .compare-section {
        padding: 50px 14px 60px;
    }

    .compare-section .compare-col{
        padding-left: 6px;
        padding-right: 6px;
    }

    .compare-section .section-heading {
        font-size: 30px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .compare-section .compare-box .product-image-container {
        width: 170px;
        max-width: 100%;
        height: 150px;
        padding: 10px;
    }

    .compare-section .compare-box .compare-product-select {
        font-size: 16px;
    }




    .single-electronova_product .product-header-section {
        padding: 50px 8px 40px;
    }

    .single-electronova_product .product-header-section .product-page-title {
        font-size: 65px;
        margin-bottom: 8px;
    }

    .product-gallery-container {
        padding: 18px 10px 10px;
    }

    .masonry-grid {
        grid-auto-rows: 160px;
        gap: 8px;
    }

    .single-electronova_product .highlighted-feature-section {
        padding: 50px 8px;
    }

    .single-electronova_product .product-features-section {
        padding: 50px 8px 16px;
    }

    .single-electronova_product .product-features-section .section-heading{
        margin-bottom: 30px;
    }

    .single-electronova_product .product-features-section .features-list-grid {
        gap: 12px;
    }

    .single-electronova_product .highlighted-feature-section {
        padding: 60px 8px 50px;
    }

    .product-faqs-section {
        padding: 50px 8px;
    }

    .product-faqs-section .faqs-list .faq .faq-question{
        padding: 14px 18px;
        font-weight: 400;
        font-size: 13px;
        line-height: 1.4;
    }

    .product-faqs-section .faqs-list .faq .faq-answer{
        padding: 14px 18px;
    }



    /* ________ Dealers Archive Page __________ */

    .dealer-archive .dealers-list-section{
        padding: 110px 8px 20px;
    }

    .dealer-archive .dealers-list-section .dealer-card .card{
        border-radius: 16px;
    }

    .dealer-archive .dealers-list-section .dealer-card .card .card-title{
        font-size: 20px;
    }

    .become-dealer-section{
        padding: 50px 20px;
    }

    .dealership-form-row > div.contact-form-col{
        padding: 30px 8px;
    }

    .dealership-form-row .section-heading{
        font-size: 20px;
    }

    .dealership-form-row .section-paragraph{
        font-size: 14px;
    }

    /* Map Styles */
    .dealer-map-section{
        padding: 40px 8px 50px;
    }

    #dealer-map {
        min-height: 260px;
    }

    .dealer-info-window {
        padding: 6px;
        min-width: 180px;
    }



    footer.site-footer {
        padding: 50px 8px 20px;
    }

    footer .footer-copyright-row {
        margin-top: 40px;
    }

    footer .footer-nav ul.footer-main-menu .nav-link{
        font-size: 16px;
    }

    footer .social-icons-wrapper :is(.social-icon, .chat-button) {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .newsletter-form .form-submit-field .wpcf7-spinner{
        right: 0;
        top: -30px;
        transform: translateY(0);
    }

    .newsletter-form .d-flex{
        gap: 10px;
    }

    .newsletter-form .form-field input{
        padding: 12px 15px;
        font-size: 14px;
    }

    .newsletter-form .form-submit-field input[type="submit"]{
        font-size: 14px;
        padding: 12px 18px;
    }


    /* _________ Single Post _________ */

    .single-post .single-post-header{
        padding: 120px 8px 40px;
        min-height: 450px;
    }

    .single-post .single-post-content{
        padding: 10px 8px 50px;
    }


    /* _________ Default Content Pages _________ */

    .page-main, .search-main{
        padding: 120px 8px 50px;
    }

    .search-main .search-results .search-result-item .search-result-item-img{
        max-height: 150px;
    }

    /* 404 page styling */

    .error-404{
        padding: 120px 8px 50px;
    }

    .error-404 .heading-404 img{
        max-width: 40px;
    }
}