/***********************
* Common
***********************/
@font-face {
    font-family: 'Calibri';
    src: url('../calibri-font/Calibri-Bold.woff2') format('woff2'),
        url('../calibri-font/Calibri-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('../calibri-font/Calibri-Italic.woff2') format('woff2'),
        url('../calibri-font/Calibri-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('../calibri-font/Calibri-BoldItalic.woff2') format('woff2'),
        url('../calibri-font/Calibri-BoldItalic.woff') format('woff');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Calibri';
    src: url('../calibri-font/Calibri.woff2') format('woff2'),
        url('../calibri-font/Calibri.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Calibri';
    font-size: 17px;
    font-weight: 300;
    line-height:1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: none;
    font-style: normal;
    position: relative;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none !important;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
h1,
h2,
h3,
h4,
h5,
h6 {
   position: relative;
   z-index: 1;
   font-family: "Lato", sans-serif;
}
h1 {
    font-size: 50px;
    font-weight: 600 ;
    margin-bottom: 35px;
}
h2 {
    font-size: 42px ;
    font-weight: 600 ;
    margin-bottom: 24px;
}
h3 {
    font-size: 35px;
    font-weight: 600 ;
    margin-bottom: 24px;
}
h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}
h5 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 16px;
}
h6 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
}
textarea:focus-visible {
    outline: 0;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.gutter-y-10 {
    --bs-gutter-y: 10px;
}
.gutter-y-15 {
    --bs-gutter-y: 15px;
}
.gutter-y-20 {
    --bs-gutter-y: 20px;
}
.gutter-y-24 {
    --bs-gutter-y: 24px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-30 {
    --bs-gutter-y: 30px;
}
.gutter-y-40 {
    --bs-gutter-y: 40px;
}
.gutter-y-60 {
    --bs-gutter-y: 60px;
}
.gutter-x-15{
    --bs-gutter-x: 30px;
}
.btn-check:checked+.btn:focus-visible, .btn.active:focus-visible, .btn.show:focus-visible, .btn:first-child:active:focus-visible, :not(.btn-check)+.btn:active:focus-visible{
    box-shadow: none;
}
ul,ol{
    padding: 0;
    margin: 0;
    list-style: none;
}
#primary{
    margin: 0;
    padding: 0;
    overflow: hidden;
}
/*************************
* Header start
*************************/
.header-inner {
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    padding: 12px 0;
    align-items: center;
}
.header-left {
    flex: 1;
}
.header-logo {
    flex: 1;
    text-align: center;
    width: 100%;
    max-width: 300px;
}
.header-right {
    flex: 1;
}
.header-left ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    column-gap: 10px;
}
.header-left ul li:last-child {
    margin-bottom: 0;
}
.header-left ul li span {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #006cb5;
    position: relative;
    color: #ffffff;
}
.header-left ul li a {
    color: #000;
}
.header-left ul li span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #ffffff;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
.header-left ul li:hover span::after {
    transform: translate(-50%, -50%) scale(1);
}
.header-left ul li:hover span i {
    color: #006cb5;
}
.header-left ul li span i {
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}
.header-right ul {
    padding-left: 120px;
    margin-bottom: 10px;
}
.header-right ul:last-child {
    margin-bottom: 0;
}
.header-right ul li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    justify-content: end;
}
.header-right ul li span {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #006cb5;
    position: relative;
    color: #ffffff;
    flex-shrink: 0;
}
.header-right ul li span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #ffffff;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
.header-right ul li a {
    color: #000;
}
.header-right ul li span i, ul.social-media li a i {
    position: relative;
    z-index: 1;
    transition: all 0.5s;
}
.header-right ul li:hover span i, ul.social-media li a:hover i{
    color: #006cb5;
}
.header-right ul li:hover span::after {
    transform: translate(-50%, -50%) scale(1);
}
ul.social-media {
    display: flex;
    justify-content: end;
    column-gap: 15px;
}
ul.social-media li a{
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    background-color: #006cb5;
    position: relative;
    color: #ffffff;
    flex-shrink: 0;
}
ul.social-media li a::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: #ffffff;
    height: 95%;
    width: 95%;
    border-radius: 100%;
    transition: all 0.5s;
}
ul.social-media li a:hover::after{
    transform: translate(-50%, -50%) scale(1);
}
.filter-wrapper-outer {
    z-index: 999999;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transform-origin: left center;
    transition: all 0.5s;
    visibility: hidden;
    z-index: 999999;
}
.filter-wrapper-outer.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: all 0.5s;
}
.filter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0606066e;
    opacity: 0.9;
}
.filter-close {
    width: 25px;
    height: 25px;
    display: block;
    position: absolute;
    top: 12px;
    right: 12px;
}
.filter-close span {
    width: 3px;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    background-color: #000000;
    transform: translate(-50%, -50%) rotate(45deg);
}
.filter-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.filter-wrapper-outer .filter-wrapper {
    background-color: #F9F9F9;
    padding: 45px 10px;
    height: 100%;
    overflow-y: scroll;
    max-width: 390px;
    scrollbar-width: none;
    z-index: 1;
    position: relative;
    box-shadow: 4px 0 30px 17px #0000001f;
}
.filter-wrapper-outer .filter-wrapper .filter-wrapper-inner {
    padding: 0;
}
.filter-top {
    display: none; 
    align-items: center;
    column-gap: 16px;
    margin-bottom: 20px;
        flex-wrap: wrap;
    row-gap: 10px;
}
.filter-top p {
    margin-bottom: 0;
    color: #000;
}
a.filter-clear-all {
    color: #006cb5;
}
.filter-add {
    padding: 4px 20px;
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    align-items: center;
    column-gap: 10px;
    border: 1px solid #2B343033;
    padding-right: 11px;
    cursor: pointer;
}
.filter-add i {
    color: #6B716E;
}
.filter-wrapper-inner {
    padding: 20px;
    background-color: #F9F9F9;
    box-shadow: 0px 130px 36px 0px #00000000;
}
.filter-box {
    padding: 24px;
    background-color: #fff;
    border: 1px solid #2B343033;
    border-radius: 4px;
    margin-bottom: 12px;
}
.filter-box-head {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    column-gap: 20px;
    justify-content: space-between;
    cursor: pointer;
}
.filter-box-head h4 {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato';
}
.filter-box-body {
    max-height: 5000px; 
    transition: max-height 0.8s ease;
    overflow: hidden;
}
.filter-box.collaps .filter-box-body {
    max-height: 0;
    margin-bottom: -18px;
}
.filter-box:last-child {
    margin-bottom: 0;
}
.filter-box-head i {
    transition: all 0.5s;
}
.filter-box.collaps .filter-box-head i {
    transform: rotate(180deg);
}
.filter-check {
    display: flex;
    align-items: center;
    column-gap: 20px;
    justify-content: space-between;
    margin-bottom: 10px;
}
.filter-check label {
    color: #2B3430;
}
.filter-check:last-child {
    margin-bottom: 0;
}
.filter-check input {
    height: 16px;
    width: 16px;
    accent-color: #006cb5;
}
.product-listing-wrapper {
    display: flex;
    align-items: center;
    column-gap: 30px;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: space-between;
    margin-bottom: 30px;
}
.product-listing-left {
    display: flex;
    column-gap: 30px;
    align-items: center;
}
.fillter-open-btn {
    display: flex;
    align-items: center;
    column-gap: 10px;
    padding: 6px 20px;
    background-color: #006cb5;
    cursor: pointer;
}
.fillter-open-btn img {
    height: 24px;
}
.product-listing-left p {
    margin-bottom: 0;
}
.product-listing-section {
    padding: 50px 0;
}
.product-search{
    position: relative;
    width: 400px;
}
#product-suggestions {
    position: absolute;
    width: 100%;
    background: #fff;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 999;
    box-shadow: 0 0 20px 0px #00000014;
    border-radius: 6px !important;
}
#product-suggestions li {
    cursor: pointer;
}
#product-suggestions li a{
    color: #000;
    padding: 10px;
    display: inline-block;
    width: 100%;
}
#product-suggestions li:hover {
    background: #f5f5f5;
}
input:focus,
select:focus,
textarea:focus {
   box-shadow: none !important;
       border-color: #000 !important;
    border-style: solid !important;
}
textarea:focus-visible {
    outline: 0;
}
[type=search]{
    outline-offset: 0;
}
input:focus-visible, 
button:focus-visible{
    outline: 0;
}
.product-image {
    aspect-ratio: 4/4;
}
.product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.product-image {
    aspect-ratio: 4/4;
    overflow: hidden;
}
.product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.5s;
}
.product-image:hover img{
    transform: scale(1.1);
}
.product-details {
    padding: 10px;
    text-align: center;
}
.product-details h4 {
    margin-bottom: 4px;
    font-size: 18px;
}
p.product-Price {
    font-size: 18px;
    font-weight: 500;
}
.product-details h4 a {
    color: #000;
}
.product-box {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px -19px rgba(0, 0, 0, 0.5);
    height: 100%;
}
.product-details p {
    margin-bottom: 0;
}
.category-details-page {
    padding-bottom: 50px;
}
.similar-product {
    padding-bottom: 50px;
}
.topbar {
    padding-top: 30px;
}
.topbar .back-page {
    cursor: pointer;
    display: inline-flex;
    column-gap: 12px;
    align-items: center;
    padding: 8px 24px;
    border-radius: 6px;
    background-color: #006cb5;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}
.similar-category {
    padding-bottom: 50px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: 0.3s ease;
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}
footer {
    padding: 20px 12px;
    text-align: center;
    background-color: #006cb5;
    color: #fff;
}
footer p {
    margin-bottom: 0;
}
.product-gallery {
    display: flex;
    gap: 8px;
    margin-bottom: -10px;
    flex-direction: column-reverse;
}
.product-thumb-slider{
    width:100%;
    flex-shrink: 0;
    margin-top: -6px;
}
.main-slide {
    background-color: #fff;
}
.thumb-item {
    margin-right: 8px;
    margin-bottom: 5px;
    cursor: pointer;
    overflow: hidden;
    background-color: #fff;
    border: 2px solid transparent;
    transition: all 0.5s;
    width: 112px !important;
    height: 112px !important;
}
.thumb-item img{
width:100%;
display:block;
opacity: 0.4;
}
.slick-slide.slick-current.slick-active .thumb-item img{
    opacity: 1;
}

.product-main-slider {
    position: relative;
    width: 100%;
}
.product-main-slider img{
width:100%;
}
.maximize {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.maximize img{
    height: 24px;
    width: 24px;
}
.product-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 40px);
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-slider-btn .slick-arrow {
    all: unset;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #006cb5;
    padding: 4px;
    cursor: pointer;
}
.product-details-left {
    padding: 8px;
    background-color: #2896d130;
    position: relative;
    box-shadow: 0 0 30px -19px rgba(0, 0, 0, 0.5);
}
.paroduct-details-right {
    padding-left: 50px;
}
p.product-details-price {
    font-size: 20px;
}
.paroduct-details-right h2 {
    margin-bottom: 12px;
}
p.product-details-price strong {
    font-weight: 600;
    color: #006cb5;
}
.inqury-button a {
    display: inline-flex;
    column-gap: 12px;
    align-items: center;
    padding: 8px 24px;
    border-radius: 6px;
    background-color: #006cb5;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
}
.inqury-button a img {
    width: 24px;
}
.product-details-section {
    padding: 30px 0 50px;
}
.heading-box {
    margin-bottom: 30px;
}
.heading-box h2 {
    font-size: 35px;
}