:root {
    --white: #ffffff;
    --black: #000000;
    --golden: #f7b541;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Montserrat", sans-serif;
    background-color: #fff;
}
/* top section  */
section {
    padding: 60px 0px;
}
.topSec {
    text-align: center;
    padding: 0px 0;
    background-color: var(--white);
    /* height: 92px; */
    position: relative;
}
.logo {
    width: 181px;
    position: relative;
    z-index: 10;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, #8e44ad, #3d1f1f);
    padding: 90px 0px 50px 0px;
    position: relative;
    max-width: 1920px;
    margin: -95px auto 0 auto;
    width: 100%;
    z-index: 9;
    background: #8e44ad url(../images/banner2.png) no-repeat;
    background-size: cover;
    /* min-height: 802px; */
}
.banner img {
    display: block;
    width: 100%;
}
.banTxt {   
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.banner-left {
    max-width: 45%;
    color: #fff;
    padding-right: 50px;
    padding-left: 110px;
    text-align: center;
}
.banner-left h1 {
    font-size: 115px;
    font-weight: 700;
    color: var(--golden);
    margin-bottom: 10px;
    line-height: 1.0;
}
.banner-left h2 {
    font-size: 62px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}
.banner-left p {
    font-size: 40px;
    font-weight: 500;
    color: var(--golden);
    margin-bottom: 15px;
}
/*29.10.25  */
.buyBtn {
    background: #ffb400;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 30px;
    transition: background 0.3s ease;
    display: block;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.buyBtn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transition: all 0.5s ease;
}
.buyBtn:hover {
    background: linear-gradient(90deg, #ffb400, #ffd34d);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.4);
}
.buyBtn:hover::after {
    left: 100%;
}
.banner-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;   
    transition: transform 0.3s ease;
    padding: 5px 5px 5px 5px;
}
.banner-thumb video {
    width: 100%;
}
/*29.10.25 end  */
.banner-right {
    max-width: 55%;
    padding-right: 110px;
}
.top-label {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #6a1b9a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0px 0 10px;
    font-size: 1rem;
    font-weight: 600;
}
.bottom-note {
    position: absolute;
    bottom: 10px;
    right: 20px;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.9;
}
/* section 2 */
.EnergySection {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}
.EnergySection h2 {
    font-size: 40px;
    font-weight: 700;  
    margin-bottom: 15px;
    line-height: 1.2;
}
.EnergySection h3 {
    font-size: 35px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
}
.EnergySection p {
    font-size: 25px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}
/* section 2 end */
/* section3 */
.features-card {
    max-width: 1600px;
    width: 100%;
    margin: auto;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: #ffe9d7;
}
.features-grid2 {
    display: flex;  
    gap: 2rem;
    align-items: start;
    flex-wrap: wrap;
}
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-basis: 100%;    
    max-width: 200px;
   
}
.icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;   
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background-color: var(--white);
    position: relative;    
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
/* 29.10.2025 */
.feature-item:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffb47e, #ffd4a9);
}
.icon-circle::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}
.feature-item:hover .icon-circle::after {
    border-color: #ff914d;
    box-shadow: 0 0 20px rgba(255, 145, 77, 0.5);
}
/* 29.10.2025 end */
/* SVG Icon styling (using simple inline SVGs to match the look) */
.icon-circle img {
    width: 100%;
}
.feature-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}
.feature-description {
    font-size: 16px;
    color: var(--black);
    line-height: 1.4;
}
/* Media Query for responsiveness (Tablet/Desktop: anything wider than 768px) */
@media (min-width: 768px) {
    .features-card {
        padding: 3rem 4rem;
    }
    .features-grid2 {
        flex-direction: row;        
        justify-content: space-around;
        gap: 1.5rem;
    }
    .feature-item {
        flex-basis: 0;       
        flex-grow: 1;
        max-width: 180px;
    }
}
/* spray section  */
.best-seller-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #ffecd9;
    border-radius: 25px;
    overflow: hidden;
    max-width: 1600px;
    margin: 80px auto 0px auto;
    transition: all 0.3s ease;
    text-align: left;
    gap: 40px;
}
.best-seller-card:hover {
    transform: translateY(-5px);
}
.best-seller-image {
    max-width: 650px;
}
.best-seller-image img {
    width: 100%;
    display: block;
}
.best-seller-info {
    padding: 50px 30px 0 20px;
}
.best-seller-card .buy-btn {
    max-width: 508px;
}
.spray-section .best-seller-title {
    font-size: 40px;
    font-weight: 700;
    color: #26168c;
    margin-bottom: 5px;
}
.best-seller-subtitle {
    font-size: 26px;
    margin-bottom: 25px;
}
.best-seller-info-box {
    margin-bottom: 15px;
}
.best-seller-info-box h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}
.spray-section .best-seller-info-box p {
    font-size: 18px;
    margin-bottom: 30px;
}
/* section4 */
.spray-section {
    padding: 60px 20px;
    text-align: center;
}
.container {
    max-width: 1700px;
    margin: 0 auto;
}
.spray-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}
.spray-section p {
    color: var(--black);
    font-size: 30px;
    margin-bottom: 80px;
    line-height: 1.2;
}
/* Grid */
.spray-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
/* Card Styles */
.spray-card {
    background: #ffe9d7;
    border-radius: 20px;
    overflow: hidden;   
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spray-card:hover {
    transform: translateY(-5px);    
}
/* Image Section */
.spray-image {
    position: relative;
}
.spray-image img {
    width: 100%;
    height: auto;
    display: block;
}
.spray-badge {
    position: absolute;
    bottom: 10px;
    left: 15px;
    background: #5c2a00;
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}
.spray-tag {
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: var(--white);
    font-size: 0.85rem;    
    padding: 4px 10px;
    border-radius: 6px;
}
/* Content Section */
.spray-content {
    text-align: left;
    padding: 25px 30px 35px;
}
.spray-content .spray-title {
    color: #26168c;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 5px;
}
.spray-content p {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}
.spray-content p.spray-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: #0b0b0b;
    margin-bottom: 15px;
    font-weight: 800;
}
.spray-content p strong {
    font-size: 19px;
}
.buy-btn {
    background: #ffb400;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 8px;
    transition: background 0.3s ease;
    display: block;
    text-align: center;
    font-size: 21px;
}
/* 29.10.2025 */
.buy-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.buy-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
    transition: all 0.5s ease;
}
.buy-btn:hover {
    background: linear-gradient(90deg, #ffb400, #ffd34d);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.4);
}
.buy-btn:hover::after {
    left: 100%;
}
/* 29.10.2025 */
/* ============ srph Section ============ */
.srph-section {
    background-color: #fff;
    padding: 80px 20px;
    text-align: center;
}
.srph-heading {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin-bottom: 60px;
}
.srph-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.srph-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
.srph-icon {
    margin-bottom: 20px;
    width: fit-content;
    margin: 0 auto 20px;
    background: #ffe9d7;
    padding: 30px;
    border-radius: 50%;
}
.srph-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    display: block;
}
.srph-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}
.srph-card h4 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 18px;
}
.srph-card p {
    font-size: 20px;
    line-height: 1.4;
}
.srph-symbols {
    max-width: 945px;
    margin: 80px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #ffe9d7;
    padding: 10px;
    border-radius: 40px;
}
.icon-with-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.icon-with-text.border_icon {
    border-left: 2px solid gray;
    border-right: 2px solid gray;
}
/* ============ Testimonial Section ============ */
.testimonial-section {
    background-color: #d2f1ff;
    padding: 80px 20px;
    text-align: center;
}
.testimonial-section .testiSwiper {
    padding: 10px 0 40px 0;
}
.testimonial-section .swiper-pagination-bullet-active {
    background: #ffd900;
}
.testimonial-heading {
    font-size: 40px;
    font-weight: 700; 
    margin-bottom: 60px;
}
/* Grid layout */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
}
.testimonial-card {
    background-color: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}
/* Content styles */
.stars {
    font-size: 1.3rem;
    color: #ffb400;
    margin-bottom: 20px;
}
.testimonial-card .review {
    font-size: 24px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 25px;
    min-height: 98px;
}
.testimonial-card .name {
    font-weight: 700;
    font-size: 24px;
    color: #000;
    margin-bottom: 5px;
}
.testimonial-card .product {
    color: #666;
    font-size: 18px;
}
/* ============ Responsive ============ */
/* healing spritz */
.healing-section {
    padding: 80px 20px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}
.healing_container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}
.main-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}
/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 0 auto 100px;
}
.feature-box {
    background: #f8f8f8;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 13px rgba(0, 0, 0, 0.18);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    gap: 30px;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.icon {
    font-size: 28px;
    margin-bottom: 15px;
}
.feature-box h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 19px;
    line-height: 1.2;
}
.feature-box p {
    font-size: 27px;
    color: #000000;
}
/* Bottom Content */
.bottom-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}
.bottom-content p {
    font-size: 30px;
    color: #333;
    line-height: 1.2;
    margin: 0 auto 40px;
}
.icon_with_btn {
    width: fit-content;
    margin: 0 auto;
    background: #ffb400;
    padding: 15px 50px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Button */
.shop-btn {
    display: inline-block;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    padding: 0px 0px 0px 30px;
    border-radius: 50px;
    transition: background 0.3s ease;
    font-size: 39px;
}
.icon_with_btn:hover {
    background: #e0a000;
}
.shop-btn span {
    display: block;
    font-size: 20px;
    font-weight: 400;
}
/* video section */
.videoSection {
    width: 100%;
    padding: 40px 50px;
    background: #734F8F;
    background: linear-gradient(0deg, rgba(115, 79, 143, 1) 0%, rgba(29, 21, 19, 1) 100%);
    position: relative;
}
.videoSection h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 60px;
    font-size: 50px;
    font-weight: 700;
}
.video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);    
    background: #6c4b85;
    border: 1px solid #2e2e3b;
    transition: transform 0.3s ease;
    padding: 15px 15px 15px 15px;
}
.video-thumb h4 {
    color: var(--white);
    background: rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    z-index: 999;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 270px;
    bottom: 30px;
    line-height: 50px;
}
.video-thumb video {
    width: 100%;
}
.video-thumb:hover video {
    transform: scale(1.1);
}
.video-thumb img {
    width: 100%;   
    object-fit: cover;
    border-radius: 20px;
    display: block;
    transition: transform 0.4s ease;
    padding-top: 10px;
}
.video-thumb:hover img {
    transform: scale(1.1);
}
.swiper-button-next,
.swiper-button-prev {
    color: var(--golden);
}
/* --- LIGHTBOX OVERLAY --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.lightbox video {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 10px;
    outline: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    font-weight: bold;
}
.bttn {
    max-width: 200px;
    margin: 10px auto 20px auto;
}
@media (max-width: 600px) {
    .videoSection h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    .videoSection {
        padding: 30px 40px;
    }
}
/* video section end */
/* wordpress max width for content *******************************************************/
.post-thumbnail,
.entry-content .wp-audio-shortcode,
.entry-content>*:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),
*[class*=inner-container]>*:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator),
.default-max-width {
    margin-left: auto;
    margin-right: auto;
    max-width: 1320px;
    padding: 0 15px;
}
.singular .entry-title {
    font-size: 40px;
    font-weight: 600;
}
.singular .has-post-thumbnail .entry-header {
    padding-bottom: 0px;
}
section.related.products h2 {
    margin-bottom: 20px;
}
.woocommerce-Tabs-panel h2 {
    display: none;
}
.woocommerce-Tabs-panel h4 {
    font-size: 22px;
    margin: 0 0 10px 0;
    color: #26168c;
}
.woocommerce-Tabs-panel p {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 1.2;
}
.accordion .accordion-item button {
    background: var(--white) !important;
    font-size: 20px;
    font-weight: 500;
    color: var(--black) !important;
}
.single-product .accordion .accordion-content p {
    margin: 1em 0;
    font-weight: 400;
    font-size: 18px;
}
.woocommerce div.product div.summary h2 {
    font-size: 30px;
    font-weight: 500;
    color: #26168c;
}
.woocommerce div.product div.images .flex-control-thumbs {
    margin: 10px 10px 10px 0;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    margin: 0 10px 0 0;
}
.woocommerce-product-details__short-description h4 {
    font-size: 22px;
    margin: 0 0 10px 0;
    line-height: 1.2;
    color: #26168c;
}
.woocommerce-product-details__short-description p {
    font-size: 18px;
    margin: 0 0 10px 0;
    line-height: 1.2;
}
.woocommerce div.product form.cart .button {
    background: #ffb400;
    color: #000;
}
.woocommerce div.product form.cart .button:hover {
    background: #e0a000;
}
.woocommerce .quantity .qty {
    max-height: 35px;
}
.woocommerce div.product .product_title {
    color: #26168c;
    font-size: 32px;
}
header.entry-header.alignwide h1 {
    display: none;
}
.summary.entry-summary .container {
    background: #ffe9d7;
    padding: 15px;
    border-radius: 15px;
}
.accordion .accordion-item button {
    background: transparent !important;
}
.single-product .accordion button[aria-expanded='true']+.accordion-content {
    max-height: 12em;
}
section.related.products h2 {
    font-size: 32px;
    font-weight: 600;
    color: #26168c;
}
.woocommerce ul.products li.product .button {
    background: #ffb400;
    color: #000;
}
.woocommerce ul.products li.product .button:hover {
    background: #e0a000;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin-bottom: 15px;
}
.comments-title,
.comment-reply-title {
    font-size: 32px;
    font-weight: 600;
    color: #26168c;
}
.woocommerce div.product div.summary {
    margin-bottom: 0em;
}
.woocommerce span.onsale {
    border-radius: 5px;
    line-height: 30px;
    min-height: auto;
    padding: 5px 15px;
    background: #ffb400;
    color: #000;
}
div#tab-description {
    border: 1px solid #ccc;
    border-top: 0px;
    padding-top: 20px;
    border-radius: 8px;
}
ul.tabs.wc-tabs {
    border-radius: 8px;
}
.woocommerce div.product .woocommerce-tabs ul.tabs {
    margin: 0 0 0;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image {
    border-radius: 10px;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    border-radius: 10px;
}
.vwg-video-wrapper {
    border-radius: 10px;
}
div#comments {
    display: none;
}
section.related.products {
    padding-bottom: 0px;
}
.wp-block-woocommerce-checkout.alignwide.wc-block-checkout {
    margin: 0 auto;
}
.woocommerce ul.products li.product a img {   
    border-radius: 5px;
}

/* 04.12.2025 */
.wc-block-components-quantity-selector button {
    display: none;
}
.wc-block-cart-item__quantity button {
    padding: 8px;
    margin: 3px 0px;
    font-size: 14px;
}



/* responsive ********************************************************************/
@media (max-width: 1600px) {
    .banner-left h1 {
        font-size: 85px;
        line-height: 1;
    }
    .banner-left h2 {
        font-size: 45px;
    }
    .banner-left p {
        font-size: 35px;
    }
    .logo img {
        width: 136px;
    }
    .banner {
        margin: -58px auto 0 auto;
    }
    .padding_bothside {
        padding: 0 15px;
    }
}
@media (max-width: 1367px) {
    .banner-right {
        padding-right: 50px;
    }
    .banner-left h1 {
        font-size: 75px;
    }
    .banner-left h2 {
        font-size: 35px;
    }
    .banner-left p {
        font-size: 30px;
    }
}
@media (max-width: 1199px) {
    .banner-left h1 {
        font-size: 57px;
    }
    .banner-left h2 {
        font-size: 33px;
    }
    .banner-left p {
        font-size: 26px;
    }
    .spray-section .best-seller-title {
        font-size: 37px;
    }
    .best-seller-subtitle {
        font-size: 20px;
    }
    .best-seller-info-box h4 {
        font-size: 18px;
    }
    .spray-section .best-seller-info-box p {
        font-size: 16px;
        margin-bottom: 22px;
    }
    .best-seller-info {
        padding: 30px 30px 30px 20px;
        margin: auto 0;
    }
}
@media (max-width: 1024px) {
    .banner-left {
        padding-top: 50px;
        padding-left: 50px;
    }
}
@media (max-width: 991px) {
    .banner-left {
        padding-left: 50px;
    }
    .logo img {
        width: 100px;
    }
    .banner {
        margin: -40px auto 0 auto;
    }
    .banner-left h1 {
        font-size: 48px;
    }
    .banner-left h2 {
        font-size: 29px;
    }
    .banner-left p {
        font-size: 23px;
    }
    .EnergySection {
        padding: 0 20px;
    }
}
@media (max-width: 800px) {
    .banner-left {
        padding: 25px 40px 0px 40px;
    }
    .woocommerce ul.products li.product,
    .woocommerce-page ul.products li.product {
        margin-bottom: 15px;
    }
}
@media (max-width:767px) {
    .banner-left {
        width: 50%;
        padding: 5px 30px 0px 30px;
    }
    .banner-right {
        width: 50%;
        padding-right: 20px;
    }
    .buyBtn {
        padding: 12px 25px;
    }
    .banner-left {
        max-width: 64%;
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .banner {
        padding: 45px 0px 50px 0px;
    }
    .banner-left h1 {
        font-size: 35px;
    }
    .banner-left h2 {
        font-size: 24px;
    }
    .banner-left p {
        font-size: 21px;
    }
    .banner-left {
        width: 100%;
        max-width: 100%;
    }
    .banner-right {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 25px;
    }
    .banTxt {
        flex-direction: column-reverse;
    }
}
@media (max-width: 430px) {
    .banner-left {
        max-width: 85%;
    }
    .banner-left h1 {
        line-height: 1.0;
    }
    .banner-left h2 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    .banner-left p {
        font-size: 15px;
    }
}
/* Responsive */
@media (max-width: 1399px) {
    .feature-box h3 br {
        display: none;
    }
}
@media (max-width: 1366px) {   
    .srph-icon img {
        width: 60px;
        height: 60px;
    }
    .srph-card {
        padding: 40px 18px;
    }
    .main-heading {
        font-size: 44px;
    } 
    .bottom-content p {
        font-size: 29px;
    }
    .bottom-content p br {
        display: none;
    } 
    .EnergySection p br {
        display: none;
    }
    .spray-section p.spray-head-para br {
        display: none;
    }
    .spray-content .spray-title {
        font-size: 30px;
    }
}
/* Responsive */
@media (max-width: 1200px) {
    .spray-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* section4 end */
@media (max-width: 1024px) {
    .srph-card h4 {
        font-size: 21px;
    }
    .testimonial-card .review {
        font-size: 19px;
    }
    .testimonial-grid {
        gap: 20px;
    }
    .features-grid {
        gap: 50px 20px;
    }
    .feature-box h3 {
        font-size: 25px;
    }
    .feature-box p {
        font-size: 20px;
    }
    .best-seller-subtitle {
        font-size: 18px;
    }
    .spray-section .best-seller-title {
        font-size: 30px;
    }
    .spray-section .best-seller-info-box p {
        margin-bottom: 15px;
    }
}
@media (max-width: 991px) {
    .srph-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .feature-box {
        justify-content: start;
        align-items: center;
        flex-direction: column;
    }
    .best-seller-info {
        padding: 20px 20px 20px 0px;
    }
    .best-seller-subtitle {
        margin-bottom: 20px;
    }
    .best-seller-info-box h4 {
        font-size: 16px;
        margin-bottom: 0;
    }
    .spray-section .best-seller-info-box p {
        font-size: 13px;
    }
    .best-seller-card {
        gap: 25px;
    }
}
@media (max-width: 800px) {
    .best-seller-card {
        grid-template-columns: 1fr;
    }
    .best-seller-image {
        max-width: 100%;
    }
    .best-seller-info {
        padding: 20px 20px 40px 30px;
    }
    .spray-section .best-seller-title {
        font-size: 37px;
    }
    .best-seller-subtitle {
        font-size: 22px;
    }
    .best-seller-info-box h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .spray-section .best-seller-info-box p {
        font-size: 16px;
        margin-bottom: 22px;
    }
}
@media (max-width: 768px) {
    .spray-grid {
        grid-template-columns: 1fr;
    }
    .spray-content .spray-title {
        font-size: 27px;
    }
}
@media (max-width: 767px) {
    .srph-heading {
        font-size: 31px;
    }
    .srph-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .testimonial-heading {
        font-size: 31px;
    }
    .testimonial-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .main-heading {
        font-size: 31px;
    }
    .features-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .bottom-content h2 {
        font-size: 34px;
    }
    .bottom-content p {
        font-size: 24px;
    }
    .shop-btn {
        font-size: 31px;
    }
    .shop-btn span {
        font-size: 18px;
    }
    .icon_with_btn img {
        width: 47px;
    }
    .srph-symbols {
        gap: 10px;
    }
    .icon-with-text {
        gap: 5px;
        padding: 0px 5px;
    }
    .icon-with-text p {
        font-size: 13px;
    }
    .icon-with-text img {
        width: 21px;
    }
    .feature-item {
        margin: 0 auto 15px auto;
    }
    .EnergySection h2 {
        font-size: 31px;
    }
    .EnergySection p {
        font-size: 22px;
    }
    .EnergySection h3 {
        font-size: 31px;
    }
    .feature-title {
        font-size: 24px;
    }
    .feature-description {
        font-size: 14px;
        line-height: 1.2;
    }
    .spray-section h2 {
        font-size: 33px;
    }
    .spray-section p.spray-head-para {
        font-size: 21px;
        margin-bottom: 50px;
    }
    .srph-section {
        padding: 0px 20px 80px 20px;
    }
    .top-label {
        padding: 10px 10px;
        font-size: 10px;
    }
    .spray-content p.spray-subtitle {
        font-size: 17px;
    }
    .spray-content p {
        line-height: 1.2;
    }
    .testimonial-card .review {
        min-height: auto;
    }
    .banTxt {
        text-align: center;
    }
    .bottom-note {
        font-size: 10px;
    }
    .spray-tag {
        font-size: 10px;
    }
    .feature-box {
        text-align: center;
    }
    .srph-card {
        padding: 40px 24px;
    }
    .srph-card p {
        font-size: 17px;
    }
    .feature-box p {
        font-size: 17px;
    }
}
@media (max-width: 393px) {
    .icon_with_btn img {
        width: 35px;
    }
    .icon_with_btn {
        padding: 10px 25px;
    }
    .shop-btn span {
        font-size: 16px;
    }
    .shop-btn {
        padding: 0px 0px 0px 20px;
        font-size: 27px;
    }
    .srph-icon img {
        width: 40px;
        height: 40px;
    }
    .srph-card h4 {
        font-size: 24px;
    }
    .srph-card p {
        font-size: 22px;
        line-height: 1.2;
    }
    .feature-box p {
        font-size: 22px;
    }
    .feature-box h3 {
        font-size: 21px;
    }
    .testimonial-card .name {
        font-size: 21px;
    }
    .testimonial-card .product {
        font-size: 16px;
    }
    .EnergySection h2 {
        font-size: 25px;
    }
    .EnergySection p {
        font-size: 23px;
    }
    .EnergySection h3 {
        font-size: 25px;
    }
    .spray-section h2 {
        font-size: 25px;
    }
    .spray-section p.spray-head-para {
        font-size: 22px;
    }
    .spray-content .spray-title {
        font-size: 22px;
    }
    .spray-content {
        padding: 25px 15px 35px;
    }
    .spray-content p.spray-subtitle {
        font-size: 14px;
        font-weight: 700;
    }
    .spray-content p {
        font-size: 16px;
        line-height: 1.2;
    }
    .banner {
        margin: -31px auto 0 auto;
    }

    .top-label {
        padding: 7px 10px;
        font-size: 9px;
    }

    .bottom-note {
        font-size: 10px;
    }
    .best-seller-info {
        padding: 20px 18px 40px 18px;
    }
    .best-seller-subtitle {
        font-size: 19px;
    }
    .best-seller-info-box h4 {
        font-size: 17px;
    }
    .spray-section .best-seller-info-box p {
        font-size: 15px;
    }
    .spray-section .best-seller-title {
        font-size: 30px;
    }
}
@media (max-width: 375px) {
    .banner-left h1 {
        font-size: 40px;
    }
    .banner-left h2 {
        font-size: 15px;
    }
}