@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Bold.woff2') format('woff2'),
        url('/fonts/Inter-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Medium.woff2') format('woff2'),
        url('/fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter-Regular.woff2') format('woff2'),
        url('/fonts/Inter-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body {
    padding: 0;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--primary-color);
}
* {
    box-sizing: border-box;
}
:root{
    --primary-color: #3A3A3A;
    --secondary-color: #1C1C1C;
    --white-color: #FFFFFF;
    --primary-blue: #2FC3FA;
    --dark-blue: #0F6483;
    --gradient-orange: linear-gradient(180deg, #FB7E33 0%, #E04761 100%) 0%;
    --gradient-blue: linear-gradient(180deg, #00AFCB 0%, #00BED8 100%) 0%;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "Inter", sans-serif;
    line-height: 1.2;
    color: var(--secondary-color);
    margin: 0 0 15px;
    text-transform: uppercase;
    font-weight: bold;
}
h1, .h1, h2, .h2 {
    font-size: 30px;
}
h3, .h3 {
    font-size: 20px;
}
h4, .h4 {
    font-size: 17px;
}
h5, .h5 {
    font-size: 16px;
}
.top-heading {
    font-size: 25px;
}
h3.headline {
    margin: 25px 0 10px;
    color: #002F77;
    text-transform: none;
}
p {
    margin: 0 0 15px;
}
p:last-child {
    margin: 0;
}
a {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.overflow-hidden {
    overflow: hidden;
}
.container {
    width: 100%;
    max-width: 1255px;
    margin: auto;
    padding-inline: 15px;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.flex.align-top {
    align-items: flex-start;
}
.top-header {
    background: var(--primary-blue);
    color: var(--white-color);
    padding: 12.5px 0;
}
.main-header {
    background: #13111F;
    padding: 5px 0;
}
.btn-wrap {
    margin-top: 39px;
}
img {
    vertical-align: bottom;
}
button, table td, table th, input, select, textarea, ul li, ol li {
    font-family: "Inter", sans-serif;
}
button {
    transition: all 0.3s ease;
}
.btn {
    border-radius: 33px;
    font-size: 16px;
    color: var(--white-color);
    padding: 13px 30px;
    min-width: 181px;
    display: inline-block;
    text-align: center;
}
.btn.primary {
    background: var(--primary-blue);
}
.btn.blue {
    background: #15448C;
}
.btn.primary:hover {
    background: #1EB0E6;
}
.btn.secondary {
    background: var(--secondary-color);
}
.btn.orange {
    background: var(--gradient-orange);
}
.btn.white {
    background: var(--white-color);
    color: var(--secondary-color);
}
.btn.oulined-btn {
    border: 1px solid #707070;
    color: var(--secondary-color);
    min-width: min-content;
    padding: 8px 28px;
}
.btn.oulined-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}
.heading-wrapper {
    text-align: center;
    margin: 0 auto 40px;
}
.heading-wrapper.left {
    text-align: left;
}
.btn-wrap.flex {
    justify-content: flex-start;
    gap: 20px;
}
ul.navbar {
    padding-left: 0;
    margin: 0;
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}
ul.navbar li a {
    color: var(--white-color);
    padding: 7.5px 0;
    display: inline-block;
    border-bottom: 1px solid transparent;
}
ul.navbar li a.active, ul.navbar li a:hover {
    border-color: var(--primary-blue);
}

/***************submenu********/
/* -------------------------------------
   BASE / DESKTOP SUBMENU STYLES
---------------------------------------- */
/**
.menu ul.navbar li.menu-item-has-children {
    position: relative;
}


.menu ul.navbar .sub-menu-toggle {
    display: none; 
}

.menu ul.navbar ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a2e;
    min-width: 240px;
    z-index: 9999;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 8px 16px rgba(0,0,0,0.4);
    

    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

.menu ul.navbar li.menu-item-has-children:hover > ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.menu ul.navbar ul.sub-menu li {
    width: 100%;
}

.menu ul.navbar ul.sub-menu li a.nav-link {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.menu ul.navbar ul.sub-menu li a.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #00d2ff;
}

.menu ul.navbar ul.sub-menu li:last-child > a.nav-link {
    border-bottom: none;
}

.menu ul.navbar ul.sub-menu ul.sub-menu {
    top: 0; 
    left: 100%;
}
*/
/*******end submenu**********/

.header-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}
.header-icons >* {display: inline-flex;}
.header-icons a img {
    filter: invert(1);
}
.search-bar button {
    background: var(--dark-blue);
    border: none;
    padding: 5px;
    border-radius: 0px 5px 5px 0px;
    width: 40px;
    height: 35px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.search-bar input[type="text"], .form-wrap input {
    display: inline-block;
    border: none;
    padding: 10px 12px;
    border-radius: 5px 0 0 5px;
    width: 100%;
    outline: none;
}
.form-wrap input {
    border: 1px solid #B7B7B7;
    min-height: 50px;
    border-radius: 5px;
    font-size: 16px;
}
button.subscribe-button {
    border-radius: 5px;
    border: none;
    width: 100%;
    margin-top: 14px;
}
.search-bar form {
    display: flex;
}
.search-bar {
    flex: 0 0 100%;
    max-width: 321px;
}
.hamburger {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    display: none;
}
.hamburger span {
    display: inline-block;
    background: var(--white-color);
    height: 1px;
    width: 27px;
    border-radius: 10px;
}
/* banner */
.relative {
    position: relative;
}
.bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.hero-sec .container {
    padding: 170px 15px;
}
.hero-sec .container, .banner-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}
body .product-slider .slick-slide .col .img-wrap a{
     width: 100% ;
     float: left ;
}

body  .img-wrap img {
     width: 100% ;  
  
}
body .bg-image img {
    object-fit: fill;
    height: 100%;
}
.hero-content h1 span {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 32px;
    letter-spacing: 0.5px;
}
.hero-content h1 {
    font-size: 25px;
    line-height: 1.4;
}
.hero-content {
    padding-left: 100px;
    max-width: 610px;
}
.elevate-sec .container {
    max-width: 1096px;
}
.elevate-wrap .single-item:first-child {flex: 0 0 100%;max-width: 35%;}
.elevate-wrap .single-item img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.single-item {
    position: relative;
}
.elevate-wrap .single-item .text-wrap {
    position: absolute;
    width: 100%;
    padding: 20px;
}
.elevate-wrap .single-item:first-child .text-wrap {
    bottom: 0;
    text-align: center;
}
.elevate-wrap .single-item:first-child .text-wrap h3 {
    color: var(--white-color);
}
.single-item:nth-child(2) .text-wrap {
    top: 50%;
    transform: translateY(-50%);
}
.single-item:nth-child(2) {
    flex: 0 0 100%;
    max-width: 58%;
}
.elevate-wrap .single-item .text-wrap a.btn {
    min-width: min-content;
    padding: 10px 25px;
}



/* Shop By Type Slider Container */
.shop-slider-container {
    position: relative;
    margin: 0 -15px;
}

/* Slider Wrapper */
.shop-by-type-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    padding: 10px 40px; /* Extra padding for arrows */
}

.shop-by-type-slider::-webkit-scrollbar {
    display: none;
}

/* Slider Items */
.slider-item {
    flex: 0 0 auto;
    width: calc(20% - 16px);
    min-width: 180px;
}

/* Responsive items */
@media (max-width: 1200px) {
    .slider-item { width: calc(25% - 15px); }
}
@media (max-width: 992px) {
    .slider-item { width: calc(33.33% - 14px); }
}
@media (max-width: 768px) {
    .slider-item { width: calc(50% - 10px); }
}
@media (max-width: 480px) {
    .slider-item { width: calc(100% - 0px); }
}

/* ========== NEW IMAGE SECTION CLASSES ========== */
.coral-image-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f9fa;
    position: relative;
}

.coral-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

/* Image Hover Effect */
.coral-image-wrap:hover .coral-product-image {
    transform: scale(1.08);
}

/* Image Overlay Effect (Optional) */
.coral-image-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    transition: background 0.3s ease;
    border-radius: 16px;
    pointer-events: none;
}

.coral-image-wrap:hover::after {
    background: rgba(44,122,77,0.1);
}

/* Product Title */
.coral-product-title {
   margin-top: 20px!important;
    text-align: center;
    font-weight: 500;
}
.coral-product-title a {
    margin-top: 20px !important;
    text-align: center;
    font-weight: 500;
    color: #000 !important;
}

/* Card Styles */
.slider-item .col {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.slider-item .col:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}





/* Shop by type slideer  */


/* ========== LEFT & RIGHT ARROWS ON SIDES ========== */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #2fc3fa;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.slider-arrow:hover {
    background: #2fc3fa;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Left Arrow Position */
.slider-arrow-prev {
    left: -10px;
}

/* Right Arrow Position */
.slider-arrow-next {
    right: -10px;
}

/* Dots Styling (Bottom) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 25px;
    background: #2fc3fa;
    border-radius: 10px;
}

.dot:hover {
    background: #2fc3fa;
}

/* Responsive: Adjust arrows on smaller screens */
@media (max-width: 768px) {
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .slider-arrow-prev {
        left: -5px;
    }
    
    .slider-arrow-next {
        right: -5px;
    }
    
    .coral-image-wrap {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .slider-arrow-prev {
        left: 0;
    }
    
    .slider-arrow-next {
        right: 0;
    }
    
    .shop-by-type-slider {
        padding: 10px 30px;
    }
}


/* Shop by type slideer end */



/* Shop by type */
body .pd-medium {
    padding: 60px 0;
}
.shop-by-type {
    background: #FAFAFA;
}
.heading-wrapper.flex h2 {
    margin: 0;
}
.five-column, .four-column {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}
.four-column {
    grid-template-columns: repeat(4, 1fr);
}
p.title {
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}
.featured-products {
    background: #162E53;
}
.featured-products .heading-wrapper * {
    color: var(--white-color);
}
.featured-products .heading-wrapper .btn, .banner-section .btn {border-color: var(--white-color); color: var(--white-color);}
.featured-products .heading-wrapper .btn:hover, .banner-section .btn:hover {background: var(--white-color);color: var(--secondary-color);}
.featured-item {
    background: var(--white-color);
    text-align: center;
    padding: 24px;
}
.featured-item .img-wrap {
    margin-bottom: 28px;
}
p.product-name {
    font-weight: 500;
    margin-bottom: 8px;
}
p.price {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-blue);
}
/* two col section */
.content-col {
    flex: 0 0 100%;
    max-width: 54%;
}
.two-col-wrapper .img-col {
    flex: 0 0 100%;
    max-width: 45%;
    display: flex;
    align-items: flex-end;
}
.two-col-wrapper img.img-2 {
    border: 7px solid var(--white-color);
    margin-left: -76px;
    position: relative;
    bottom: -70px;
    max-width: 280px;
    max-height: 280px;
    object-fit: cover;
}
.two-col-sec {
    padding-bottom: 140px;
}
.banner-section .container {
    justify-content: center;
    padding: 62.5px 15px;
}
.btn-wrap.center {
    text-align: center;
    margin-top: 30px;
}
.banner-section .content-wrapper {
    text-align: center;
    color: var(--white-color);
    max-width: 792px;
}
.banner-section:after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.51);
}
.banner-section h2 {
    color: var(--white-color);
}
.newsletter-sec .container {
    max-width: 1074px;
}
p.headline {
    color: var(--primary-blue);
    margin: 0 0 10px;
}
/* footer */
footer.footer {
    background: #13111F;
}
footer.footer h4 {
    color: var(--white-color);
}
footer.footer li a, footer.footer p {
    color: rgb(255, 255, 255, 0.85);
}
footer.footer li a:hover {
    color: var(--primary-blue);
}
.footer-row {
    align-items: flex-start;
    gap: 30px;
}
.footer-row .col:first-child {
    max-width: 30%;
}
.footer-row .col {
    flex: 0 0 100%;
}
.footer-row .col {
    max-width: 15%;
}
.footer-row .col:last-child {
    max-width: 24%;
}
footer .logo {
    margin: 0 0 30px;
}
footer ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}
footer ul li a {
    padding: 4px 0;
}
/* about page */
.inner-banner .container {
    min-height: 250px;
    justify-content: center;
}
.inner-banner .heading-wrappper {
    width: 100%;
    text-align: center;
}
.inner-banner .heading-wrappper h1 {
    margin: 0;
    color: var(--white-color);
}
.two-col-sec.equal-cols .img-col {
    max-width: 48%;
    justify-content: space-between;
}
.two-col-sec.equal-cols .content-col {
    max-width: 47%;
}
.two-col-sec.equal-cols .img-col.two-images >* {
    flex: 0 0 100%;
    max-width: calc(100% / 2 - 10px);
}
.two-col-sec.equal-cols .img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.left-right-wrap .left-col {
    flex: 0 0 100%;
    max-width: 43%;
    color: var(--white-color);
}
.left-right-sec {
    background: #162E53;
}
.left-right-wrap .right-image {
    max-width: 50vw;
    width: 50vw;
    margin-right: calc(-50vw + 50%);
}
.left-right-wrap .left-col h2 {
    color: var(--white-color);
}
.why-choose .content-col {
    max-width: 46%;
}
.why-choose img.img-2 {
    margin-left: -170px;
}
/*  product page  */
.product-sec {
    box-shadow: 0px 0px 10px #00000029;
}
.product-slider .slick-slide {
    margin: 0 15px;
    height: inherit;
}
.slick-track {
    display: flex !important;
}
.product-slider .slick-list {
    margin: 0 -15px;
}
button.slick-prev.slick-arrow {
    left: -40px;
    background-image: url('./assets/img/arrow-left.svg');
}
button.slick-next.slick-arrow {
    right: -40px;
    background-image: url('./assets/img/arrow-right.svg');
}
.product-slider button.slick-arrow {
    top: 40%;
}
button.slick-arrow {background-color: transparent; cursor: pointer;font-size: 0;border: none;width: 30px;height: 30px;background-repeat: no-repeat;background-size: contain;background-position: center;position: absolute;top: 50%;transform: translateY(-50%);}
.checkbox-group label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
    font-weight: 500;
}
.widget .title {
    border-bottom: 1px solid #BEBEBE;
    padding-bottom: 15px;
}
.checkbox-group input {
    margin-right: 8px;
}
.show-more {
    color: #707070;
    font-weight: 500;
    cursor: pointer;
}
.price-range {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}
/**
.widget {
    margin-bottom: 40px;
}**/
.widget:last-child {
    margin-bottom: 0;
}
input[type="range"] {
    width: 100%;
    height: 6px;
    border: 1px solid #CBCBCB;
    border-radius: 10px;
    appearance: none;
    background: transparent; 
    outline: none;
}
/* Track */
input[type="range"]::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 10px;
}
input[type="range"]::-moz-range-track {
  height: 5px;
  border-radius: 2px;
}
/* Thumb (the draggable circle) */
input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -3px;
}
input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}
.sidebar {
    flex: 0 0 100%;
    max-width: 33.715%;
    box-shadow: 0px 3px 6px #00000029;
    border: 1px solid #FAFAFA;
    padding: 38px 30px;
}
.product-listing {
    flex: 0 0 100%;
    max-width: 62%;
}
.products, .blog-listing {
   display: grid;
      gap: 30px;
}
.products.three-column, .blog-listing {
    grid-template-columns: repeat(3, 1fr);
}
.products.four-column {
    grid-template-columns: repeat(4, 1fr);
}
.products .featured-item {
    padding: 0;
    border: 1px solid #D3D3D3;
    display: flex;
    flex-direction: column;
}
.products .img-wrap {
    margin: 0 !important;
}
.product-details {
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.product-details a.btn.primary, .blog-details .btn {
    min-width: 130px;
    padding: 6px 20px;
    margin-top: auto;
}
/* pagination */
.pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}
.prev a, .next a {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    color: var(--secondary-color);
    vertical-align: middle;
}
.page-numbers {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination .page {
    display: inline-block;
    padding: 5px;
    text-decoration: none;
    border-radius: 5px;
    min-width: 27px;
    min-height: 30px;
    text-align: center;
    color: var(--secondary-color);
}
.page.active {
  background: #162E53;
  color: #fff;
}
.dots {
  font-size: 13px;
  color: #666;
}

.product-detail-sec {
    background: #FAFAFA;
}
.slider-single img {
  width: 100%;
  display: block;
}
.slider-nav {
  margin-top: 15px;
}
.slider-nav img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.54;
  transition: 0.3s;
}
.slider-nav .slick-current img {
  opacity: 1;
}
.product-gallery {
    flex: 0 0 100%;
    max-width: 40%;
}
.product-detail-inner {
    max-width: 1113px;
    box-shadow: 0px 0px 26px #0000000F;
    margin: auto;
    padding: 50px 50px 50px 67px;
    background: var(--white-color);
    border: 1px solid #ACACAC;
}
.detail-col p.price {
    font-size: 25px;
    line-height: 1;
}
.detail-col {
    flex: 0 0 100%;
    max-width: 53%;
}
.detail-col h2 {text-transform: capitalize;margin-bottom: 8px;}
p.headline.tag {
    font-weight: 600;
}
.quantity-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border-radius: 25px;
    padding: 8px 10px;
    box-shadow: 0px 0px 26px #0000000F;
    border: 1px solid #ACACAC;
}
.quantity {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px 10px;
    font-size: 20px;
}
input[type="number"] {
  width: 30px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  -moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.tabs-container {
  margin-top: 80px;
}
.tabs-header {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  gap: 10px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  font-size: 16px;
}
.tabs-container .tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px; 
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #15448C;
}
.tabs-container  .tab-content {
  display: none; 
  padding: 25px 0 0;
}
.tab-content.active {
  display: block;
}
/* rating */
.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.stars {
  display: flex;
  gap: 4px;
}
.star {
  font-size: 18px;
  color: #e0e0e0; 
  line-height: 1;
}
.star.filled {
  color: #ffc107;
}
/* blog page */
.post-title a {
    color: var(--secondary-color);
    text-transform: none;
    font-size: 17px;
}
.publish-date {
    font-weight: 500;
}
.single-blog {
    border: 1px solid #B7B7B7;
}
.blog-details {
    padding: 25px 20px;
}
/* faq page */
.faq-inner {
    max-width: 782px;
    margin: auto;
}
.accordion .accordion-item:last-child {
    margin-bottom: 0;
}
.accordion .accordion-item {
    box-shadow: 0px 3px 6px #00000014;
    border: 1px solid #CFCFCF;
    border-radius: 10px;
    margin-bottom: 30px;
}
.accordion button {
    position: relative;
    text-align: left;
    width: 100%;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #2A2A2A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
}
.accordion-content {
    padding: 0 25px 25px;
    display: none;
}
.accordion .accordion-item button[aria-expanded='true'] ~ .accordion-content {
    display: block;
}
/* Contact page */
/* ============================================
   CONTACT PAGE - SAME COLOR SCHEME AS WEBSITE
   ============================================ */

/* Main Container */
.contact-custom-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* Top Content Section */
.contact-top-content {
    text-align: center;
    margin-bottom: 50px;
}

.contact-top-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1A3A34;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.contact-top-content p {
    font-size: 18px;
    color: #4A6B63;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.contact-top-content .top-divider {
    width: 80px;
    height: 3px;
    background: #2fc3fa;
    margin: 20px auto 0;
    border-radius: 3px;
}

/* Contact Grid - Two Columns */
.contact-custom-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* ========== LEFT PANEL (Address, Phone, Email, Hours) ========== */
.contact-left-panel {
    background: #F8FBF9;
    padding: 40px 32px;
    border-right: 1px solid #E2EFE9;
}

.panel-badge {
    display: inline-block;
    background: #E2F3EF;
    color: #2fc3fa;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.contact-left-panel h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1A3A34;
    margin-bottom: 8px;
}

.panel-subtitle {
    color: #4A6B63;
    font-size: 15px;
    margin-bottom: 32px;
    border-left: 3px solid #2fc3fa;
    padding-left: 16px;
}

/* Contact Detail Items */
.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    background: #E2F3EF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2fc3fa;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1A3A34;
    margin-bottom: 6px;
}

.contact-text p,
.contact-text a {
    color: #4A6B63;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
}

.contact-text a:hover {
    color: #1B6B5E;
    text-decoration: underline;
}

/* Business Hours */
.business-hours-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #E2EFE9;
}

.business-hours-box p {
    margin-bottom: 8px;
    color: #1A3A34;
}

.business-hours-box .hour-line {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #4A6B63;
    margin-bottom: 6px;
}

/* Social Links */
.social-links-box {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.social-links-box a {
    width: 40px;
    height: 40px;
    background: #E2F3EF;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2fc3fa;
    font-size: 18px;
    transition: all 0.2s;
}

.social-links-box a:hover {
    background: #2fc3fa;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ========== RIGHT PANEL (Contact Form 7) ========== */
.contact-right-panel {
    padding: 40px 32px;
    background: #FFFFFF;
}

.contact-right-panel h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1A3A34;
    margin-bottom: 8px;
}

.form-description {
    color: #4A6B63;
    font-size: 14px;
    margin-bottom: 28px;
}

/* CF7 Two Column Layout */
.cf7-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cf7-full-width {
    margin-top: 8px;
}

/* Form Input Styles */
.contact-right-panel .wpcf7-form input:not([type="submit"]),
.contact-right-panel .wpcf7-form select,
.contact-right-panel .wpcf7-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2EFE9;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    background: #FFFFFF;
    transition: all 0.2s;
    color: #1A3A34;
}

.contact-right-panel .wpcf7-form input:not([type="submit"]):focus,
.contact-right-panel .wpcf7-form select:focus,
.contact-right-panel .wpcf7-form textarea:focus {
    outline: none;
    border-color: #2fc3fa;
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.12);
}

.contact-right-panel .wpcf7-form textarea {
    resize: vertical;
    min-height: 130px;
}

/* Labels */
.contact-right-panel .wpcf7-form label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: #1A3A34;
    margin-bottom: 6px;
}

/* Submit Button - MATCH WEBSITE BUTTON STYLE */
.contact-right-panel .wpcf7-form input[type="submit"] {
    background: #2fc3fa;
    color: #FFFFFF;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    margin-top: 12px;
}

.contact-right-panel .wpcf7-form input[type="submit"]:hover {
    background: #1eb0e6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.3);
}

/* Validation Messages */
.contact-right-panel .wpcf7-not-valid-tip {
    font-size: 12px;
    color: #E76F51;
    margin-top: 6px;
}

.contact-right-panel .wpcf7-response-output {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 14px;
    text-align: center;
}

.contact-right-panel .wpcf7-spinner {
    display: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .contact-custom-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-left-panel {
        border-right: none;
        border-bottom: 1px solid #E2EFE9;
    }
    
    .cf7-two-column {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-top-content h1 {
        font-size: 32px;
    }
    
    .contact-top-content p {
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .contact-custom-container {
        padding: 40px 16px;
    }
    
    .contact-left-panel,
    .contact-right-panel {
        padding: 28px 20px;
    }
    
    .contact-left-panel h2,
    .contact-right-panel h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hour-line {
        flex-direction: column;
        gap: 4px;
    }
}




/*  */
.simple-content {
    background: #FAFAFA;
}
.simple-content .container {
    max-width: 1110px;
}
.simple-content .heading-wrapper {
    margin: 0;
}
.left-right-sec.with-headline h3.headline {
    color: var(--primary-blue);
    margin: 35px 0 10px;
}
.with-headline .left-right-wrap .right-image img {
    height: 720px;
}






/*  */
/* Tabs Navigation */
.tabs-nav {
    display: flex;
    justify-content: center;
    margin: 0 auto 60px;
    max-width: 817px;
}
.tabs-nav .tab-btn {
    background: none;
    border: none;
    color: var(--white-color);
    padding: 15px 15px;
    cursor: pointer;
    transition: 0.3s;
    background-color: #162E53;
    flex: 1;
    font-weight: 400;
}
.tabs-nav .tab-btn.active, .tabs-nav .tab-btn:hover {
    background: var(--primary-blue);
}

/* Content Area */
.tab-section .tab-content {
   /** display: none;**/
    text-align: left;
    animation: fadeIn 0.5s ease;
}
.tab-section .tab-content.active {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}
.tab-content .img-col {
    max-width: 38%;
}
.tab-text {
    flex: 0 0 100%;
    max-width: 56%;
}
.bg-color {
    min-height: 259px;
    background: var(--primary-blue);
}
.image-with-content .container {
    max-width: 1064px;
    margin-top: -170px;
}
.bottom-content {
    margin-top: 34px;
}
.two-col-wrapper.reverse-col img.img-2 {
    margin-right: -100px !important;
    margin-left: 0 !important;
    height: auto !important;
}
.gray-bg {
    background: #FAFAFA;
}
.two-col-wrapper.reverse-col .img-col {
    max-width: 45% ;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.image-content-wrap .image-wrap img {
    object-fit: cover;
}
.box-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}
.single-box {
    background: var(--white-color);
    border: 1px solid #CACACA;
    padding: 50px;
}
.box-wrapper h3 {
    text-transform: none;
}
 p.h3 {
    margin: 34px 0 10px;
    text-transform: none;
}
.two-col-sec.equal-cols {
    padding-bottom: 60px;
}
.image-with-content {
    padding-bottom: 60px;
}
.two-col-sec.large-image .img-col {
    max-width: 50%;
}
.pt-small {
    padding-top: 0 !important;
}
.box-wrapper ul {
    padding-left: 30px;
}
.bg-primary {
    background: var(--primary-blue);
    color: var(--white-color);
}
.bg-primary .box-wrapper h3, .bg-primary .box-wrapper .h3 {
    color: var(--white-color);
}
.content-box {
    padding: 40px 50px;
}
.content-box:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.banner-section.with-boxes .container {
    flex-direction: column;
    max-width: 862px;
}
.three-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
}
.box-item {
    background: var(--white-color);
    padding: 24px;
}
.box-item ul {
    margin: 0;
    padding-left: 20px;
}
.banner-section.with-boxes:after {
    display: none;
}

.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: red;
    color: #fff;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    font-size: 12px;
    text-align: center;
    line-height: 18px;
}
.defult_page_text .wc-block-checkout__use-address-for-billing .wc-block-components-checkbox__input[type="checkbox"]:checked{
  background-color: #1d1d1d ;
 
}

/***************submenu grid *********************/
/* ==========================================================
   WORDPRESS MEGA MENU GRID - DARK THEME FIX (Desktop Only)
   ========================================================== */

@media (min-width: 992px) {
    
    /* 1. Set the anchor for the full-width dropdown */
    .header-inner.flex {
        position: relative !important;
    }
    /* ---------------------------------------------------
       THE INVISIBLE BRIDGE FIX
       Prevents the menu from closing when moving the mouse
       --------------------------------------------------- */
    .header-inner .navbar > li > .sub-menu::before {
        content: "";
        position: absolute;
        top: -40px;   /* Pulls the invisible bridge UP */
        left: 0;
        width: 100%;
        height: 40px; /* Matches the top value to fill the gap */
        background: transparent; 
    }

    /* 2. Remove relative positioning from top-level items */
    .header-inner .navbar > li {
        position: static !important; 
    }

    /* 3. The Main Dropdown Grid (Level 2 container) */
    .header-inner .navbar > li > .sub-menu {
        display: none; 
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important; /* Force it to span the header */
        min-width: 800px; /* Prevents columns from squishing on smaller screens */
        background-color: #171721 !important; /* Matches your dark menu color */
        padding: 30px 40px !important;
        box-shadow: 0 15px 30px rgba(0,0,0,0.6) !important;
        z-index: 9999 !important;
        box-sizing: border-box !important; /* CRITICAL: Stops the background from cutting off */
        
        /* The Grid Layout */
        grid-template-columns: repeat(4, 1fr) !important; 
        gap: 20px 30px !important; 
        border-top: 3px solid #00d2ff !important; /* Cyan accent to match your site text */
    }

    /* Show grid on hover */
    .header-inner .navbar > li:hover > .sub-menu {
        display: grid !important;
    }

    /* 4. Level 2 Links (Grid Headings like "Lighting", "Pumps") */
    .header-inner .navbar > li > .sub-menu > li > a {
        display: block !important;
        font-weight: 700 !important;
        color: #ffffff !important; /* Solid white for headings */
        text-decoration: none !important;
        padding: 0 0 10px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        margin-bottom: 10px !important;
        font-size: 14px;
    }

    /* 5. Level 3 Menus (The lists under the headings) */
    .header-inner .navbar > li > .sub-menu > li > .sub-menu {
        display: flex !important; 
        flex-direction: column !important;
        position: static !important; 
        padding: 0 !important; 
        box-shadow: none !important;
        background: transparent !important;
        border: none !important;
        min-width: auto !important;
        width: 100% !important;
    }

    /* 6. Level 3 Links (Items like "Ecotech Marine") */
    .header-inner .navbar > li > .sub-menu > li > .sub-menu > li > a {
        display: block !important;
        font-weight: 400 !important;
        color: #cccccc !important; /* Light grey for readability */
        font-size: 14px !important;
        padding: 6px 0 !important;
        text-decoration: none !important;
        transition: color 0.2s ease, padding-left 0.2s ease !important;
        border: none !important;
        text-transform: none !important;
    }

    /* Hover effect for Level 3 items */
    .header-inner .navbar > li > .sub-menu > li > .sub-menu > li > a:hover {
        color: #00d2ff !important; /* Cyan hover color */
        padding-left: 5px !important; 
    }

    /* 7. Hide mobile toggle buttons on desktop */
    .header-inner .navbar .sub-menu-toggle {
        display: none !important;
    }
}

/************resposive********************/

@media(max-width:1299px){
    .product-sec {
        padding-inline: 20px; 
    }
    button.slick-prev.slick-arrow {
        left: -28px;
    }
    button.slick-next.slick-arrow {
        right: -28px;
    }
    .product-slider .slick-slide {
        margin: 0 10px;
    }
    .product-slider .slick-list {
        margin: 0 -10px;
    }
}
@media(max-width:1199px){
    ul.navbar {
        gap: 20px;
        font-size: 15px;
    }
    header .headline {
        font-size: 14px;
    }
    .two-col-wrapper img.img-2 {
        width: 230px;
        height: 230px;
    }
    .two-col-wrapper .img-col {
        max-width: 42%;
    }
    .content-col {
        max-width: 50%;
    }
    .featured-item {
        padding: 16px;
    }
    .four-column {
        gap: 20px;
    }
    .sidebar {
        max-width: 32%;
    }
    .product-listing {
        max-width: 66%;
    }
    .products {
        gap: 20px;
    }
    .tab-content .img-col {
        max-width: 40%;
    }
    .tab-text {
        max-width: 100%;
    }
    .tab-section .two-col-wrapper {
        flex-direction: column-reverse;
    }
    .two-col-wrapper.reverse-col .img-col {
        max-width: 52%;
        justify-content: center;
    }
}
@media(max-width:1024px){
    .hamburger {
        display: flex;
    }
    .menu {
        position: fixed;
        height: 100%;
        top: 0;
        right: 0;
        background: #fff;
        z-index: 11;
        padding: 60px 20px 40px;
        width: 300px;
        overflow: auto;
        transform: translateX(300px);
        transition: all 0.3s ease;
        visibility: hidden;
        opacity: 0;
    }
    ul.navbar {
        flex-wrap: wrap;
        gap: 0;
    }
    ul.navbar li {
        width: 100%;
    }
    ul.navbar li a {
        color: var(--secondary-color);
    }
    .menu.active {
    visibility: visible;
    opacity: 1;
        transform: translateX(0);
    }
    .hamburger.active {
        z-index: 111;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .hamburger.active span {
        background: var(--secondary-color);
        width: 20px;
        height: 2px;
    }
    .hamburger.active span:nth-child(2) {
        display: none;
    }
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg);
        position: relative;
        top: 6px;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
        position: relative;
        top: -2px;
    }
    body.menu-open {
        overflow: hidden;
        position: relative;
    }
    body.menu-open:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        inset: 0;
        background: rgba(0,0,0,0.5);
    }
    .top-header {
        padding: 5px 0;
    }
    .hero-content {
        padding-left: 50px;
    }
    .hero-sec .container {
        padding: 120px 15px;
    }
    .flex {
        flex-wrap: wrap;
    }
    footer.footer li a, footer.footer p {
        font-size: 14px;
    }
    .footer-row {
        gap: 30px 20px;
    }
    .footer-row .col {
        max-width: 19%;
    }
    img.img-1 {
        max-width: 350px;
    }
    .why-choose img.img-2 {
        margin-left: -108px;
    }
    .left-right-wrap .right-image img {
        object-fit: cover;
        height: 440px;
    }
    .product-detail-inner {
        padding: 35px 35px 35px 45px;
    }
    .tabs-container {margin-top: 40px;}
    .box-wrapper {
        gap: 30px;
    }
    .single-box {
        padding: 35px;
    }
}
@media(max-width:991px){
    header .headline {
        display: none;
    }
    .hero-content h1 span {
        font-size: 30px;
    }
    .hero-sec .container {
        padding: 100px 15px;
    }
    .hero-content h1 {
        font-size: 18px;
        line-height: 1.3;
    }
    .hero-content {
        padding-left: 0;
        max-width: 475px;
		/**padding: 35px 14px 0px 0px;**/
    }
    .five-column, .four-column {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
    .two-col-wrapper img.img-2 {
        max-width: 169px;
        max-height: max-content;
        margin-left: -92px;
    }
    .content-col {
        max-width: 48%;
    }
    .footer-row .col:first-child {
        max-width: 100%;
    }
    .footer-row .col, .footer-row .col:last-child {
        max-width: 31%;
    }
    img.img-1 {
        max-width: 309px;
    }
    .left-right-wrap .left-col {
        max-width: 48%;
    }
    .left-right-wrap .right-image img {
        height: 500px;
    }
    .products.three-column, .products.four-column, .blog-listing {
        grid-template-columns: repeat(2, 1fr);
    }
    .sidebar {
        padding: 30px 15px;
    }
    .btn-wrap.flex {
        gap: 12px;
        margin-top: 25px;
    }
    .detail-col a.btn {
        min-width: 130px;
    }

    .quantity-wrapper {
        margin-bottom: 15px;
        gap: 12px;
    }

  /*********menu**********/
.menu ul.navbar li.menu-item-has-children {
        position: relative;
        display: flex;
        flex-wrap: wrap; 
        align-items: center;
    }

    /* Make sure the main link leaves room for the + button */
    .menu ul.navbar li.menu-item-has-children > a.nav-link {
        flex-grow: 1;
        padding-right: 50px; 
    }

    /* Style the +/- toggle button so it is VISIBLE (Black) */
    .menu ul.navbar .sub-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 10px;
        top: 0;
        width: 44px;
        height: 100%;
        background: transparent;
        border: none;
        color: #000000; /* Black icon so you can see it on the white background */
        z-index: 10;
    }

    /* Swap + and - icons when tapped */
    .menu ul.navbar .sub-menu-toggle[aria-expanded="false"] .icon-minus {
        display: none;
    }
    .menu ul.navbar .sub-menu-toggle[aria-expanded="true"] .icon-plus {
        display: none;
    }
    .menu ul.navbar .sub-menu-toggle[aria-expanded="true"] .icon-minus {
        display: block;
    }

    /* Style the open mobile dropdown (Light grey background) */
    .menu ul.navbar ul.sub-menu {
        position: static; 
        display: none; 
        width: 100%;
        background-color: #f5f5f5; /* Light grey box */
        box-shadow: none;
        visibility: visible;
        opacity: 1;
        transform: none;
        padding-left: 20px; 
    }

/* Show the submenu when the button is clicked */
.menu ul.navbar .sub-menu-toggle[aria-expanded="true"] + ul.sub-menu {
    display: block;
}

    /* Make the dropdown text dark so you can read it */
    .menu ul.navbar ul.sub-menu li a.nav-link {
        border-bottom: none;
        padding: 10px 15px;
        color: #333333; /* Dark grey text */
    }

  /****************/


}
@media(max-width:767px){
    .hero-content h1 span {
        font-size: 26px;
    }
    h2, .h2 {
        font-size: 24px;
    }
    h3, .h3 {
        font-size: 18px;
    }
    body, .btn {
        font-size: 14px;
    }
    .flex {
        gap: 25px 10px;
    }
    .pd-medium, .two-col-sec.equal-cols  {
        padding: 40px 0;
    }
    .banner-section .container {
        padding: 40px 15px;
    }
    .hero-sec .container {
        padding: 50px 15px;
    }
    .logo img {
       /** max-width: 78px;**/
    }
    .header-icons a {
        padding: 0;
    }
    .header-icons >* {
        max-width: 24px;
    }
    .search-bar {
        max-width: max-content;
    }
    .footer-row .col, .footer-row .col:last-child {
        max-width: 46%;
    }
    .elevate-wrap .single-item:first-child, .single-item:nth-child(2), .shop-row >*, .left-right-wrap .left-col, .content-col, .why-choose .content-col, .footer-row .col:last-child, .two-col-sec.equal-cols .img-col, .two-col-sec.equal-cols .content-col {
        max-width: 100%;
    }
    .left-right-wrap .left-col {
        padding: 40px 0 0;
    }
    .elevate-wrap .single-item:first-child .text-wrap {
        text-align: right;
    }
    .five-column, .four-column {
        gap: 20px 14px;
        grid-template-columns: repeat(2, 1fr);
    }
    p.title {
        margin-top: 12px;
    }
    .btn.primary {
        min-width: min-content;
        background: var(--primary-blue);
    }
    .featured-item {
        padding: 14px;
    }
    .featured-item .img-wrap {
        margin-bottom: 18px;
    }
    .two-col-wrapper .img-col {
        max-width: 100%;
        justify-content: center;
    }
    .form-wrap {
        max-width: 100%;
        width: 100%;
    }
    .two-col-wrapper.who-are, .two-col-wrapper.why-choose {
        flex-direction: column-reverse;
        gap: 40px;
    }
    .two-col-sec {
        padding-bottom: 110px;
    }
    .elevate-wrap .single-item .text-wrap h3 {
        font-size: 18px;
    }
    .left-right-wrap .right-image {
        width: calc(100% + 30px);
        max-width: calc(100% + 30px);
        margin-right: -15px;
        margin-left: -15px;
    }
    .left-right-wrap .right-image img {
        height: auto;
    }
    .inner-banner .container {
        min-height: 200px;
    }
    button.slick-arrow {
        background-size: 25px;
    }
    .product-slider {
        padding-inline: 10px;
    }
    button.slick-next.slick-arrow {
        right: -20px;
    }
    button.slick-prev.slick-arrow {
        left: -20px;
    }
    .product-slider .slick-slide {
        margin: 0 5px;
    }
    .product-slider .slick-list {
        margin: 0 -5px;
    }
    .pagination {
        margin-top: 25px;
    }
    .page-numbers {
        display: none;
    }
    .product-detail-wrap >* {
        max-width: 100%;
    }
    .product-detail-inner {
        padding: 24px 20px;
    }
    .slider-single img {
        object-fit: contain;
        max-width: 400px;
        margin: auto;
    }
    .slider-nav img {
        width: 50px;
        height: 50px;
    }
    .slider-nav {
        margin-top: 10px;
    }
    .detail-col a.btn {
        min-width: min-content;
        padding: 10px 20px;
    }
    .btn-wrap.flex {
        gap: 7px;
    }
    .tab-btn {
        padding: 10px;
        font-size: 14px;
    }
    .accordion button {
        padding: 15px;
    }
    .accordion-content {
        padding: 0 15px 15px;
    }
    .accordion .accordion-item {
        margin-bottom: 15px;
    }
    .with-headline .left-right-wrap .right-image img {
        height: auto;
    }
    .left-right-sec.with-headline h3.headline {
        margin: 25px 0 8px;
    }
    .heading-wrapper {
        margin: 0 auto 30px;
    }
    .tabs-nav {
        margin: 0 auto 40px;
    }
    .tabs-nav .tab-btn {
        padding: 15px 20px;
        min-width: 170px;
    }
    .tabs-nav {
        margin: 0 -15px 40px;
        display: flex;
        white-space: nowrap;
        overflow: auto;
        justify-content: flex-start;
    }
    .two-col-wrapper.reverse-col {
        flex-direction: column;
    }
    .two-col-wrapper.reverse-col >* {
        max-width: 100% !important;
        width: 100%;
    }
    .image-wrap img {
        height: 200px;
    }
    .bg-color {
        min-height: 200px;
    }
    .image-with-content .container {
        margin-top: -140px;
    }
    .box-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .single-box {
        padding: 24px;
    }
    p.h3 {
        margin: 25px 0 7px;
    }
    .content-box {
        padding: 0;
    }
    .content-box:first-child {
        border: none;
    }
    .three-boxes {
        gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
    .banner-section.with-boxes h2 {
        margin-bottom: 0;
    }
    .two-col-wrapper.reverse-column {
        flex-direction: column-reverse;
    }
    .content-col {
        width: 100%;
    }
}
@media(max-width:480px){
    .heading-wrapper.flex {
        justify-content: center;
        flex-direction: column;
    }

    .two-col-wrapper .img-col img.img-1 {
        max-width: calc(100% - 30px);
    }
    .two-col-wrapper img.img-2 {
        max-width: 160px;
        margin-left: -118px;
        bottom: -34px;
    }
    .two-col-wrapper .img-col {
        justify-content: flex-start;
    }
    .two-col-sec {
        padding-bottom: 75px;
    }
    .hero-sec .container {
        text-align: center;
		/**padding: 50px 3px 40px 10px;**/
		/**background-color: rgba(255, 255, 255, 0.85);**/
    }
    .hero-sec .bg-image img {
        object-position: left;
    }
    .btn-wrap {
        margin-top: 24px;
    }
    .products.three-column, .products.four-column, .blog-listing {
        grid-template-columns: repeat(1, 1fr);
    }
    .product-detail-inner {
        padding: 12px;
    }
}
@media(max-width:375px){
    .search-bar {
        max-width: 207px;
    }
    .four-column {
        grid-template-columns: repeat(1, 1fr);
    }

}