@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-size: 20px;
    line-height: 1.2;
    color: black;
    font-family: "Montserrat", sans-serif;
}

mark,
ins {
    background: transparent;

}

a,
a:visited {
    color: #000000;
}

ol,
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

a {
    display: inline-block;
    text-decoration: none;
}

.container {
    max-width: 1240px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.g-h1 {
    font-size: 26px;
}

.g-h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}

.g-h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    line-height: 1.6;
}

.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    animation:
        slideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both,
        continuousJump 3s ease-in-out infinite 0.6s;
}


.fab {
    width: 60px;
    height: 60px;
    background-color: #144d38;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    ;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}



.fab:hover {
    transform: scale(1.1) rotate(90deg);
    background-color: #11583e;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}


.fab-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #144d38;
    z-index: -1;
    animation: pulse-ring 2s infinite;
}


@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.5);
    }

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


@keyframes continuousJump {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

/* header css */
header {
    padding: 7px 0;
    border-bottom: 1px solid #0000001f;
    position: relative;
    z-index: 111;
}

header .custom-logo-link {
    max-width: 120px;
}


.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.nav-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    position: relative;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-navigation ul a {
    padding: 10px 17px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 400;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #000000;
    box-shadow: 0px 0px 4px 4px transparent;
    background: #d0d0d040;
    transition: 0.2s all ease-in-out;
}

.main-navigation ul li:last-child a {
    color: #ffffff;
    background: #202974;
}

.main-navigation ul .current_page_item a {
    background-color: transparent;
    border: 1px solid #0000000d;
    box-shadow: 0px 0px 4px 4px #0000000a;
}

.search-bar {
    border: 1px solid #0000001f;
    display: flex;
    align-items: center;
    padding: 5.3px 8px;
    border-radius: 6px;
    color: #0000004f;
    top: 100px;
    z-index: 1;
    background: #fff;
}
.home-btn {
    display: inline-block;
    padding: 10px 23px;
    background-color: #202974;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.home-btn:hover {
    background-color: #2980b9;
}
.input-search {
    border: none !important;
    margin-left: 10px;
    outline: none !important;
    font-size: 14.24px;
}

.search-icon {
    display: none;
}



/* ---------------Footer Css ------------------ */
.footer-wrapper {
    background-color: #ffffff;
    padding: 40px 0 20px;
    font-family: Arial, sans-serif;
    color: #333;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    flex: 1;
    max-width: 230px;
}

.footer-col .custom-logo-link {
    max-width: 140px;
    display: inline-block;
}

.footer-heading {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    font-size: 12px;
    line-height: 1.7;
}


.footer-links a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #000;
}

.site {
    overflow: hidden;
}

.app-buttons img {
    height: 30px;
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    width: 35px;
    height: 35px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    line-height: 35px;
    margin-left: 0;
    color: #333;
    text-decoration: none;
}

.payment-methods {
    font-size: 14px;
    display: flex;
    gap: 14px;
    color: #000;
}

.footer-divider {
    border: 0;
    border-top: 1px solid #0000001a;
    margin: 30px 0 16px;
    background-color: transparent;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #888;
}

.legal-links a {
    margin: 0 2px;
    text-decoration: none;
    color: #888;
}

.payment-methods img {
    height: 25px;
    margin-left: 10px;
    vertical-align: middle;
}

.copyright {
    font-size: 12px;
    color: #00000078;
    margin-right: 4px;
}

.legal-links {
    margin-right: auto;
    font-size: 12px;
    color: #00000094;
}

/* ---------hero-section---------- */
.hero-section {
    overflow: hidden;
    padding-top: 15px;
    padding-bottom: 30px;
}

.hero-slider .slide-item {
    height: 73vh;
    width: 100%;
    background-position: center left;
    background-size: cover;
    border-radius: 9px;
    min-height: 520px
}

.hero-slider .set-slide {
    position: relative;
    overflow: hidden;
}

.hero-slider .slide-item .overlay-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, rgba(0, 14, 41, 1) 0%, rgba(237, 221, 83, 0) 100%); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4%;
}

.hero-slider .slide-item .overlay-wrap p,
.hero-slider .slide-item .overlay-wrap h1 {
    font-size: 32px;
    line-height: 1.2;
    max-width: 467px;
    color: #fff;
}

.hero-slider .slide-item .overlay-wrap p {
    font-size: 18px;
    line-height: 1.5;
}

.hero-slider .slick-track {
    display: flex !important;
}

.g-button {
    display: inline-block;
    padding: 10px 22px;
    color: #fff !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid;
    width: fit-content;
    letter-spacing: 2px;
    border-radius: 6px;
    background: transparent;
    text-transform: uppercase;
    transition: 0.2s all ease-in-out;
    transform-origin: center;
}

.g-button:hover {
    background: #ffffff;
    color: #000 !important;
    transform: scale(.97);
    letter-spacing: 0;
}

.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-slider .slick-arrow {
    display: none !important;
}

.hero-slider .slick-slide {
    padding: 10px;
    transform: scale(97%);
    transition: 0.3s all ease-in-out;
}

.hero-slider .slick-current {
    transform: scale(102%);
}

/* ----------- category-slider ----------- */
.post-listing-section .container,
.category-slider .container {
    position: relative;
}

.category-slider .slick-track {
    display: flex !important;
}

.category-slider-inner {
    margin: 25px -9px 0;
    overflow: hidden;
}

.category-slider .slick-slide {
    padding: 0 6px;
}

.category-slider .cs-card {
    background-color: #f7f7f7;
    width: 100%;
    padding: 8px;
    border-radius: 7px;
}

.category-slider .cs-card .cs-img {
    border-radius: 8px;
    overflow: hidden;
    font-size: 0;
    margin-bottom: 6px;
}

.category-slider .cs-card .cs-img img {
    aspect-ratio: 1 / 1;

}

.category-slider .cs-card .g-h3 {
    font-size: 14px;
    /* min-height: 45px; */
}

.category-slider .cs-card span {
    font-size: 12px;
    color: #9a9a9a;
}

.slick-arrow {
    font-size: 12px;
    width: 40px;
    height: 40px;
    padding: 0;
    color: #000000;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0px 0px 5px 1px #00000036;
    border: none;
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 11;
    cursor: pointer;
}

.post-listing-slider .slick-list {
    margin-top: 45px;
}

.slick-prev {
    right: 70px;
}

/* ----------- post-listing-section -------- */
.post-listing-section {
    padding: 40px 0 0 0;
}

.post-listing-slider {
    overflow: hidden;
    margin: -22px -5px 0;
}

.post-listing-slider .slick-track {
    display: flex !important;
}

.pls-subheading {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    width: calc(100% - 120px);
    margin-bottom: 0;
    margin-top: 8px;
}

.pls-card {
    padding: 0 7px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pls-card .pls-img {
    font-size: 0;
    border-radius: 10px;
    object-fit: cover;
    overflow: hidden;
    aspect-ratio: 10 / 8;
}

.pls-card .pls-img a {
    height: 100%;
    width: 100%;
}

.pls-card .pls-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s all ease-in-out;
}

.pls-card .pls-img:hover img {
    transform: scale(1.1);
}

.pls-card .g-h3 {
    font-size: 16px;
}

.pls-card span {
    font-size: 14px;
    font-weight: 600;
}

.pls-card .price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pls-card .price ins {
    background: transparent;
}

.pls-card .price del bdi {
    font-size: 12px;
    color: #00000066;
}




/* feature-section */
.feature-section {
    padding: 40px 0 0;
    margin: 40px 0 0;
    border-top: 1px solid #eee;
}


.feature-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;

}

.feature-section .row-reverse {
    flex-direction: row-reverse;
}

.feature-section .col {
    flex: 1;
    min-width: 300px;

}


.feature-section .image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-section .image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.feature-section .image-wrapper:hover img {
    transform: scale(1.05);
}


.feature-section .text-content {
    padding: 20px 0;
}


.feature-section .text-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #666;
}

.feature-section .btn-custom {
    display: inline-block;
    padding: 14px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.feature-section .btn-custom:hover {
    opacity: 0.8;
}

/* --------------- Accordion Css ------------------ */
.faq-section {
    padding: 40px 0;
}

.faq-title {
    margin-bottom: 25px;
}

.accordion {
    border-top: 1px solid #e5e7eb;
}

.accordion-item {
    border-bottom: 1px solid #e5e7eb;
}

.accordion-header {
    width: 100%;
    padding: 16px 0;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.accordion-title {
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
    transition: color 0.2s ease;
}


.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #6b7280;
    flex-shrink: 0;
}


.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: #202974;
}

.accordion-item.active .accordion-title {
    color: #202974;
}


.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.content-inner {
    padding: 0 0 24px 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    max-width: 900px;
}

.content-inner p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
}

.content-area .pls-card {
    padding: 7px;
    border-radius: 6px;
    box-shadow: 0px 0px 5px 0px #0000003b;
}
.cs-recent-posts{
    padding: 40px 0 60px 0;
}
.cs-recent-posts .pls-card {
    box-shadow: none;
}

.cs-recent-posts .pls-card .cs-read-more {
    width: fit-content;
    font-size: 14px;
    font-weight: 700;
}
.cs-recent-posts .pls-card .cs-read-more i{
    transform: translatey(2px);
}

.woocommerce .woocommerce-breadcrumb {
    max-width: 1200px;
    margin: 20px auto;
    color: #202974ad;
    padding: 0;
}

.woocommerce .woocommerce-breadcrumb a {
    font-weight: 600;
    color: #202974;
}

.custom-breadcrumbs {

    margin: 20px 0;
    color: #202974ad;
    font-size: 14px;
}

.custom-breadcrumbs a {
    font-weight: 600;
    color: #202974;
}

.speed h1 {
    margin: 0;
}

.all-products {
    padding: 40px 0 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
}

.product-grid .pls-card {
    padding: 0;
}

.product-grid .pls-card .g-h3 {
    margin: 10px 0;
}

.load-more-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.load-more-wrapper button {
    padding: 6px 10px 8px;
    text-decoration: none;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid #00000017;
    border-radius: 4px;
    color: #575757;
    background: #f3f3f36e;
    cursor: pointer;
}

.woocommerce div.product div.images,
.product.type-product .woocommerce-product-gallery {
    position: relative;
    display: grid;
    float: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.product.type-product {
    float: none;
    width: 100%;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper>div,
.woocommerce div.product div.images .woocommerce-product-gallery__image a,
.woocommerce div.product div.images .woocommerce-product-gallery__image a img,
.woocommerce-product-gallery .flex-viewport {
    height: 100% !important;
    object-fit: cover;
    object-position: center;
}

.woocommerce div.product div.images .flex-control-thumbs {
    display: grid;
    float: none;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    display: none;
}

.woocommerce div.product div.images .flex-control-thumbs li:nth-child(-n+4) {
    display: block;
    float: none;
    width: 100%;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
    margin: 0;
    width: 100%;
    aspect-ratio: 3 / 2;
    height: 100%;
    object-fit: cover;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
    overflow: hidden;
    border-radius: 25px;
    height: 400px;
}

.gwoo-product-details {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.gwoo-product-details .gwoo-product-summary-left {
    position: relative;
}

.gwoo-product-details .gwoo-product-summary-left .faq-section .container {

    padding: 0;
}

.gwoo-product-details h1 {
    font-size: 24px;
    line-height: 1.5;
    color: #000;
    width: calc(100% - 180px);
}

.gwoo-content h3 {
    font-size: 20px;
    line-height: 1.5;
    color: #000;
}

.gwoo-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555555;
}

.gwoo-top-rating {
    position: absolute;
    top: 5px;
    right: 0;
}

.gwoo-top-rating i {
    color: orange;
    font-size: 18px;
}

.gwoo-top-rating span {
    color: #000;
    font-size: 15px;
}

.gwoo-custom-reviews {
    gap: 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.custom-reviews-inner {
    padding: 10px;
    border-radius: 9px;
    box-shadow: 0px 0px 3px 2px #33333330;
}

.reviews-row {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.custom-reviews-left .icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1px solid #00000036;
    border-radius: 5px;
    color: #0000006e;
}

.custom-reviews-right h2 {
    font-size: 14px;
}

.custom-reviews-inner {
    border-bottom: 1px solid #0000001c;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.custom-reviews-inner .content {
    margin-top: 10px;
    margin-left: 2px;
}

.custom-reviews-right p {
    font-size: 12px;
    margin-bottom: 5px;
}

.review-message {
    font-size: 12px;
    margin: 10px 0;
}

.woocommerce span.onsale {
    display: none;
}

.gwoo-product-summary-left .location-section h4 {
    margin-bottom: 20px;
}

.gwoo-product-summary-left .location-section iframe {
    width: 100%;
}

.information-section {
    padding: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
}

.info-item .shade {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.info-item .item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.info-item .info-icon {
    aspect-ratio: 1 / 1;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}

.info-item h4 {
    font-size: 14px;
    margin-bottom: 2px;
    color: #000000;
}

.info-item p {
    font-size: 12px;
    margin-bottom: 0;
    color: #808080;
}

.availability-form {
    padding: 20px;
    border: 1px solid #00000036;
    border-radius: 12px;
    background: #fcfbfb;
}

.availability-form.price-sec {
    background: linear-gradient(158deg, rgba(235, 236, 255, 1) 0%, rgba(240, 255, 240, 1) 100%);
}

.search-dropdown {
    border: 1px solid #20297426;
    border-width: 1px;
    border-radius: 10px;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
    font-size: 14px;
    min-width: 300px;
}

.ccr-form input[type="submit"],
.availability-form .contact-us {
    padding: 10px;
    width: 100%;
    text-align: center;
    background: #2f2f2f;
    color: #fff;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 30px;
    border: 1px solid #2f2f2f;
    transition: 0.2s all ease-in-out;
}

.ccr-form input[type="submit"] {
    margin-top: 0;
}

.wpcf7-response-output {
    font-size: 12px;
    margin: 0 !important;
}

.ccr-form input[type="submit"]:hover,
.availability-form .contact-us:hover {
    border: 1px solid #2f2f2f;
    background-color: transparent;
    color: #2f2f2f;
}

.availability-form p {
    font-size: 14px;
    color: #9a9a9a;
    margin-bottom: 3px;
}

.availability-form .form-price {
    font-size: 24px;
    color: #2f2f2f;
    font-weight: 500;
}


.gwoo-product-summary-right .gwoo-product-summary-right-content {
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
}

.wcs-section {
    margin-top: 30px;
    border-radius: 9px;
    box-shadow: 0px 0px 3px 2px #33333317;
    overflow: hidden;
}

.wcs-section>h3 {
    padding: 16px;
    height: 70px;
    background: #f9f9f9;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #202974;
}

.wcs-section .wcs-inner .info-item {
    padding: 10px;
}

.wcs-section .wcs-inner .info-item .info-icon {
    padding: 4px;
}

.not-image-gallery {
    grid-template-columns: 1fr !important;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper>div {
    height: 400px !important;
}

.cs-content-section {
    padding: 40px 0;
    background: #2029740a;
}

.cs-content-section .cs-title {
    margin-bottom: 14px;
}

.cs-content-section .cs-content-inner {
    margin: 0 10%;
}

.cs-content-section .cs-description ol,
.cs-content-section .cs-description ul {
    list-style-type: unset;
    padding-left: 30px;
    padding: 10px 30px;
}

.cs-content-section .cs-description img {
    margin: 10px 0;
}

.cs-content-section .cs-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.cs-content-section .cs-btn {
    margin-top: 20px;
}
.page-template-about-page .site,
.single-post .site,
.single-post .site,
.single-product .site {
    overflow: visible;
}

.post-featured-image {
    margin: 30px 0;
    border-radius: 30px;
    overflow: hidden;
    height: 400px;
    font-size: 0;
    position: relative;
    background: linear-gradient(158deg, rgb(146 151 246) 0%, rgb(182 255 182) 100%);
}

.post-featured-image .overlay-wrap {
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    position: absolute;
    background: linear-gradient(66deg, rgba(0, 0, 0, 1) 0%, rgba(237, 221, 83, 0) 100%);
}

.post-featured-image .spp-content {
    position: absolute;
    bottom: 0;
    padding: 10px 40px;
    z-index: 2;
}

.post-featured-image .spp-content h1 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 400;
}

.post-featured-image img {
    height: 400px;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.single-post-template .gwoo-product-details h1 {
    margin-bottom: 5px;
    margin-top: 0;
    font-weight: 700;
}

.banner-inner.post-featured-image h1 {
    margin-bottom: 30px;
}

.single-post-template .post-deatils-list p {
    margin-bottom: 0px;
}
.single-post-template .post-deatils-list p a {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 4px;
}

.single-post-template .gwoo-product-summary-left p {
    font-size: 14px;
    line-height: 1.5;

}

.single-post-template .post-deatils {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #000;
}

.single-post-template .post-deatils-list {
    width: fit-content;
    margin-bottom: 20px;
}


.single-post-template .post-deatils-list li {
    display: flex;
    gap: 10px;
    align-items: center;
}


.comments-area {
    margin-top: 40px;
}

.comments-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}


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

.comment-list>li {
    margin-bottom: 30px;
}


.comment-inner,
.comment-body {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

/* Avatar */
.comment-author {
    display: flex;
    align-items: center;
}

.comment-author img {
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 15px;
}

.comment-author a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 190px;
}

.comment-meta {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.comment-author .fn {
    font-weight: 600;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;

}

.comment-content p {
    margin: 0 0 0px;
    line-height: 1.6;
}

.reply {
    margin-top: 10px;
}

.comment-reply-link {
    display: inline-block;
    font-size: 13px;
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.comment-reply-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}


.comment-list .children {
    list-style: none;
    margin-left: 40px;
    margin-top: 20px;
}


.comment-respond {
    margin-top: 50px;
}

.comment-reply-title {
    font-size: 14px;
    margin-bottom: 5px;
}

.comment-form {
    display: flex;
    flex-direction: column;
}

.comment-form-cookies-consent,
.form-submit,
.comment-form-comment {
    order: 1;
}

.comment-form p {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
}

.comment-form textarea {
    height: 110px;
    resize: none;
}

.form-submit input[type="submit"] {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.form-submit input[type="submit"]:hover {
    background: #333;
}

.category-list-heading {
    font-size: 18px;
    font-weight: 400;
}

.category-list {
    margin-top: 10px;
}

.category-list li {
    padding: 5px;
    border-bottom: 1px solid #0000003d;
    font-size: 12px;
}

.category-list :last-child {
    border-bottom: none;
}

.short-dis {
    font-size: 12px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.cs-recent-posts .pls-card .pls-img {
    aspect-ratio: 14 / 8;
}

.single-wcs .info-item {
    margin: 20px 10px;
    grid-template-columns: 55px 1fr;
}

.single-wcs .info-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-wcs .item-content p {
    font-size: 10px;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.ccr-form .category-list-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ccr-form label {
    font-size: 14px;
    color: #797979;
    font-weight: 400;
}

.ccr-form .wpcf7-form-control-wrap {}

.ccr-form input[type="text"],
.ccr-form input[type="email"],
.ccr-form input[type="number"],
.ccr-form input[type="tel"],
.ccr-form textarea {
    color: #a3a3a3;
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    padding: 10px;
    font-size: 14px;
    margin-top: 7px;
    margin-bottom: 7px;
    width: 100%;
    outline: none;
}

.ccr-form textarea {
    resize: none;
    height: 120px;
}

.wpcf7-not-valid-tip {
    font-size: 10px;
    margin-bottom: 15px;
}

.pls-card .g-h3-cc {
    font-size: 14px;
    margin: 10px 0 5px !important;
}

.post-desc-cc {
    font-size: 12px;
    line-height: 1.5;
    color: #898989;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}

.prices-wrap {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.prices-wrap .sale-price {
    font-size: 28px;
    color: rgb(32, 41, 116);
    font-weight: 700;
}

.availability-form h6 {
    font-size: 19px;
    line-height: 1.2;
    color: #929292;
    font-weight: 400;
    margin-bottom: 10px;
}

.prices-wrap .regular-price {
    font-size: 22px;
    line-height: inherit;
    color: #c0bcbc;
    font-weight: 400;
    text-decoration: line-through;
}

.save {
    font-size: 13px;
    padding: 2px 12px;
    width: fit-content;
    border-radius: 14px;
    border: 1px solid #f9faff;
    color: #fff;
    background: linear-gradient(90deg, rgb(91 130 255) 0%, rgb(79 179 148) 100%);
    box-shadow: 0px 1px 3px 1px #00000059;
}
.search-overlay{
    background-color: rgb(111 111 111 / 49%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgb(0 0 0 / 10%);
    border-radius: 15px;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
}
.error-404{
    padding: 40px 0;
    text-align: center;
}
.error-404 h2{
    margin-bottom: 20px;
}
.usp-section {
    position: relative;
    padding: 60px 20px 60px 20px;
    background: #f4f4f4;
    text-align: center;
    min-height: 300px;
    margin-bottom: 30px;
}

/* Top USP Bar */
.usp-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.usp-icon {
    width: 20px;
    height: 20px;
    background: #d4a373; /* Golden/Bronze accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon svg {
    width: 12px;
    height: 12px;
    fill: white;
}

/* Floating Statistics Card */
.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(158deg, rgba(235, 236, 255, 1) 0%, rgba(240, 255, 240, 1) 100%);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgb(0 0 0 / 11%);
    padding: 40px 20px;
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    position: relative;
    z-index: 10;
}

.stat-box {
    flex: 1;
    text-align: center;
    padding: 10px;
    position: relative;
}

/* Vertical Dividers */
.stat-box:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #dddddd;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1e3a34; /* Dark Forest Green */
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 4px;
}

.stat-subtext {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 400;
}
.author-page {
    padding: 40px 20px;
}
.author-page .author-info{
    max-width: 900px;
    margin: auto;
}
.author-info {
    text-align: center;
    margin-bottom: 40px;
}
.author-avatar {
    width: 220px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid #d7d7d71f;
    font-size: 0;
}
.author-avatar img {
    
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-post {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}
h1.author-name {
    font-size: 22px;
    font-weight: 500;
    text-transform: capitalize;
}
p.author-bio {
    font-size: 17px;
    line-height: 1.6;
    color: #707070;
}
.ytp-watermark .yt-uix-sessionlink,
.ytp-chrome-top.ytp-show-cards-title{
    display: none !important;
}
.video-reviews-wrapper{
    position: relative;
}
.video-reviews-wrapper .slick-arrow{
    top: 4px;
}
.video-section-title{    margin-top: 50px;}
.video-reviews-wrapper{
    margin: -44px -10px 30px;
}
.video-item {
    aspect-ratio: 9 / 16;
    
}
.video-item  video{
    width: 100%;
}
.video-item iframe{
    width: 100%;
    height: 100%;
    aspect-ratio: 9 / 16;
}
.video-reviews-wrapper  .pls-slide {
    padding: 10px;
}
.about-us-wrapper .gwoo-product-summary-left h2{
    font-size: 22px;
    margin-bottom: 14px;
}
.about-us-wrapper .gwoo-product-summary-left h3{
    font-size: 18px;
    margin-bottom: 12px;

}
.about-us-wrapper .gwoo-product-summary-left h4{
    font-size: 16px;
    margin-bottom: 10px;
}
.about-us-wrapper .gwoo-product-summary-left .wp-block-list,
.about-us-wrapper .gwoo-product-summary-left .wp-block-list  *,
.about-us-wrapper .gwoo-product-summary-left p{
    font-size: 14px;
    line-height: 1.6;
    color: #333333d4;
}
.about-us-wrapper .post-featured-image .spp-content{
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
}
.about-us-wrapper .spp-content h1 {
    font-size: 45px;
    font-weight: 600;
    margin: 0;
}
.about-us-wrapper .post-featured-image .overlay-wrap{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 50%, rgba(240, 255, 240, 0) 100%);
}
/* Responsive Breakpoints */
@media (max-width: 1400px) {
    .hero-slider .slide-item {
        height: 73vh;
    }
}

@media (max-width: 1200px) {
    .woocommerce .container .woocommerce-breadcrumb {
        padding: 0;
    }

    .woocommerce .woocommerce-breadcrumb {
        padding: 0 15px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 991px) {
    .gwoo-product-details {
        grid-template-columns: 1fr;
    }

    .gwoo-product-summary-right-content {
        display: grid;
        gap: 20px;
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .wcs-section {
        margin-top: 0;
    }

    .gwoo-product-details h1 {
        font-size: 20px;
    }

    .cs-content-section .cs-content-inner {
        margin: 0;
    }

    .main-navigation ul a {
        padding: 8px 10px;
    }
    .author-page {
        padding: 40px 0px;
    }
}

@media (max-width: 768px) {

    #nav-icon2 {
        width: 46px;
        height: 30px;
        position: relative;
        margin: 0px;
        -webkit-transform: scale(0.8);
        -moz-transform: scale(0.8);
        -o-transform: scale(0.8);
        transform: scale(0.8);
        -webkit-transition: .5s ease-in-out;
        -moz-transition: .5s ease-in-out;
        -o-transition: .5s ease-in-out;
        transition: .5s ease-in-out;
        cursor: pointer;
        order: 1;
    }

    #nav-icon2 span {
        display: block;
        position: absolute;
        height: 6px;
        width: 50%;
        background: #202974;
        opacity: 1;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    #nav-icon2 span:nth-child(even) {
        left: 50%;
        border-radius: 0 9px 9px 0;
    }

    #nav-icon2 span:nth-child(odd) {
        left: 0px;
        border-radius: 9px 0 0 9px;
    }

    #nav-icon2 span:nth-child(1),
    #nav-icon2 span:nth-child(2) {
        top: 0px;
    }

    #nav-icon2 span:nth-child(3),
    #nav-icon2 span:nth-child(4) {
        top: 12px;
    }

    #nav-icon2 span:nth-child(5),
    #nav-icon2 span:nth-child(6) {
        top: 24px;
    }

    #nav-icon2.open span:nth-child(1),
    #nav-icon2.open span:nth-child(6) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    #nav-icon2.open span:nth-child(2),
    #nav-icon2.open span:nth-child(5) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    #nav-icon2.open span:nth-child(1) {
        left: 5px;
        top: 7px;
    }

    #nav-icon2.open span:nth-child(2) {
        left: calc(50% - 5px);
        top: 7px;
    }

    #nav-icon2.open span:nth-child(3) {
        left: -50%;
        opacity: 0;
    }

    #nav-icon2.open span:nth-child(4) {
        left: 100%;
        opacity: 0;
    }

    #nav-icon2.open span:nth-child(5) {
        left: 5px;
        top: 20px;
    }

    #nav-icon2.open span:nth-child(6) {
        left: calc(50% - 5px);
        top: 20px;
    }

    .hero-slider .slide-item {
        height: 62vh;
        min-height: 363px;
    }

    .footer-wrapper {
        padding: 0;
    }

    .footer-bottom {
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
    }

    .hero-slider a {
        background-position: -28px center;
    }


    .hero-slider .slide-item .overlay-wrap h1 {
        font-size: 20px;
    }

    .hero-slider .slide-item .overlay-wrap p {
        font-size: 16px;
    }

    .g-button {
        font-size: 14px;
        font-weight: 700;
        border: 1px solid;
        width: fit-content;
        border-radius: 5px;
    }

    .slick-arrow {
        display: none !important;
    }

    .nav-bottom {
        flex-direction: column;
    }

    .search-bar {
        width: calc(100% - 40px);
        position: absolute;
        left: 20px;
        top: 100px;
        z-index: 1;
        background: #fff;
        box-shadow: 0 0 0 20px #fff;
        opacity: 0;
    }

    .search-bar.active {
        opacity: 1;
        z-index: 1;
    }

    .search-icon {
        font-size: 28px;
        font-weight: 400;
        color: #35007b;
        margin-left: auto;
        margin-right: 15px;
        display: block;
    }

    .search-bar input {
        font-size: 14px;
        width: 100%;
    }

    .main-navigation {
        position: absolute;
        z-index: -2;
        background: #fff;
        padding: 16px;
        opacity: 0;
        left: 0;
        top: 88px;
    }

    .main-navigation.active {
        opacity: 1;
        z-index: 1;
    }

    .main-navigation ul {
        flex-direction: column;
        width: 100%;
    }

    .main-navigation li {
        flex: 1;
        width: 100%;
        width: 100%;
        box-shadow: 0px 1px 4px 1px #00000024;
        border-radius: 5px;
    }

    .main-navigation ul a {
        text-align: center;
        padding: 10px;
        font-size: 13px;
    }

    .g-h2 {
        font-size: 20px;
    }

    .category-slider .cs-card .g-h3 {
        font-size: 12px;
        line-height: 1.4;
        min-height: 36px;
    }

    .category-slider .cs-card span {
        font-size: 10px;
        line-height: 13px;
        display: inline-block;
    }

    .category-slider .slick-slide {
        padding: 0 4px;
    }

    .pls-card .pls-img {
        border-radius: 4px;
    }

    .pls-card .g-h3 {
        font-size: 14px;
    }

    .feature-section {
        padding: 30px 0;
        margin: 20px 0 0;
    }

    .feature-section .row {
        flex-direction: column;
        gap: 30px;
    }

    .feature-section .text-content {
        text-align: left;
        padding: 0;
    }

    .feature-section .text-content h2 {
        font-size: 20px;
    }

    .feature-section .text-content p {
        font-size: 14px;
        margin-top: 10px;
    }

    .payment-methods {
        width: 100%;
        margin: 10px;
    }

    .footer-container> :first-child {
        min-width: 100%;
    }

    .gwoo-product-summary-right-content {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product div.images.woocommerce-product-gallery {
        border-radius: 6px;
    }

    .woocommerce div.product div.images .woocommerce-product-gallery__image a img {
        min-height: 300px;
        object-fit: cover;
    }

    .woocommerce div.product div.images,
    .product.type-product .woocommerce-product-gallery {
        grid-template-columns: 1fr;
    }

    .woocommerce div.product div.images .flex-control-thumbs {
        display: flex;
        border-radius: 6px;
    }

    .speed h1 {
        font-size: 20px;
    }

    .comment-inner,
    .comment-body {
        flex-direction: column;
        gap: 0;
        width: 90%;
    }

    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-author img {
        width: 40px;
        height: 40px;
    }

    .comment-list .children {
        list-style: none;
        margin-left: 0;
        margin-top: 10px;
    }

    .post-featured-image .spp-content {
        padding: 10px 20px;
    }

    .post-featured-image .spp-content h1 {
        font-size: 25px;
    }

    .hero-section {
        margin-bottom: 0;
    }

    .cs-description {
        font-size: 14px;
    }

    .cs-content-section .cs-title {
        font-size: 18px;
        margin-bottom: 14px;
        line-height: 1.6;
        font-weight: 500;
    }

    .search-dropdown {
        top: 170px;
        padding: 20px 20px 20px;
        min-width: 300px;
        width: 100%;
    }
    .nav-bottom{
        position: inherit;
    }
    .stats-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 50px 20px;
    }

    .stat-box:not(:last-child)::after {
        display: none;
    }
    .stat-label{
        font-size: 15px;
    line-height: 1.2;
    margin-bottom: 6px;
    }
    .stat-number {
        font-size: 28px;
    }

    .usp-bar {
        gap: 15px;
    }
    h1.author-name {
        font-size: 18px;
    }
    p.author-bio {
        font-size: 14px;
    }    
    .author-avatar {
        width: 170px;
    }
    .video-reviews-wrapper .slick-arrow{
        top: 10px;
        display: block !important;
        width: 30px;
        height: 30px;
    }
    .video-section-title{    margin-top: 50px;}
}

@media (max-width: 560px) {

    .information-section {
        padding: 30px 0;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .information-section .info-item {
        display: grid;
        grid-template-columns: 40px 1fr;
        gap: 14px;
        padding: 10px;
        box-shadow: 0px 0px 3px 2px #33333317;
        border-radius: 10px;
    }

    .woocommerce div.product .product_title {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 0;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }



    .cs-recent-posts {
        padding: 30px 0 0;
    }

    .cs-recent-posts .post-listing-slider .slick-list {
        margin-top: 25px;
    }

    .woocommerce .woocommerce-breadcrumb {
        font-size: 12PX;
    }
}

@media (max-width: 340px) {
    .footer-col {
        max-width: 150px;
    }
}