@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
html {
  text-rendering: optimizeLegibility;
}
:root {
  --font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: Menlo, Monaco, Consolas, "Courier New", monospace;

  --color-bg: #f5f5f7;
  --color-surface: #ffffff;
  --color-text: #111827;
  --color-muted: #6b7280;
  --color-primary: #2563eb;
  --color-primary-soft: #dbeafe;
  --color-border: #e5e7eb;

  --radius-sm: 4px;
  --radius-md: 8px;

  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);

  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;

  --container-width: 1120px;
}
:root {
  --theme-body-font: "Inter", sans-serif;
  --theme-body-font-size: 16px;
  --theme-heading-font: "Inter", sans-serif;
  --theme-product-price-font: Oswald;
  --price-font-weight: 600;
}
:root {
  --lt-color-gray-100: #f8f9fc;
  --lt-color-gray-200: #f1f3f9;
  --lt-color-gray-300: #dee3ed;
  --lt-color-gray-400: #c2c9d6;
  --lt-color-gray-500: #8f96a3;
  --lt-color-gray-600: #5e636e;
  --lt-color-gray-700: #2f3237;
  --lt-color-gray-800: #1d1e20;
  --lt-color-gray-900: #111213;
  --lt-color-white: #fff !important;
  --lt-color-black: #111213 !important;
  --lt-color-transparent: rgba(255, 255, 255, 0) !important;
  --lt-color-background-light: var(--lt-color-gray-100) !important;
  --lt-color-background-default: var(--lt-color-gray-200) !important;
  --lt-color-background-dark: var(--lt-color-gray-300) !important;
  --lt-color-border-light: var(--lt-color-gray-200) !important;
  --lt-color-border-default: var(--lt-color-gray-300) !important;
  --lt-color-border-dark: var(--lt-color-gray-400) !important;
  --lt-color-text-very-light: var(--lt-color-gray-500) !important;
  --lt-color-text-light: var(--lt-color-gray-600) !important;
  --lt-color-text-default: var(--lt-color-gray-700) !important;
  --lt-color-text-dark: var(--lt-color-gray-800) !important;
  --lt-color-overlay-default: #fff !important;
  --lt-color-overlay-dark: #fff !important;
  --lt-color-overlay-transparent: rgba(0, 0, 0, 0.1) !important;
  --lt-shadow-website-overlay: 0 0 7px 0 rgba(0, 0, 0, 0.3) !important;
  --lt-shadowDefault: 0 2px 6px -1px rgba(0, 0, 0, 0.16), 0 1px 4px -1px rgba(0, 0, 0, 0.04);
  --lt-shadowActive: 0 0 8px -2px rgba(0, 0, 0, 0.1), 0 6px 20px -3px rgba(0, 0, 0, 0.2);
}
/* 3. Body and global text */
body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}
p{
    margin-bottom: 0 !important;
}
/* ---------------------------Main Header */
.main-header {
 /* padding: 5px 0; */
 position: relative;
 background-color: #fff;
 box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
 /* overflow: visible; */
 z-index: 1030;
}
.main-header {
    /* position: sticky;
    top: 0;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; */
}
.top-header {
  background: #f4ffff !important;
  transition: all 0.3s ease;
  will-change: position; /* Optimize */
}
.top-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.top-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    /* backdrop-filter: blur(10px); */
}
@media (max-width: 768px) {
    .main-header {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
    }
}
.main-header .top-header{
  border-bottom: 1px solid var(--color-border);
  padding: 10px 20px;
  /* height: 70px; */
  display: flex;
  align-items: center;
}
.logo a img{
    width: 250px;
    height: auto;
    display: block;
    object-fit: contain;
}
@media (max-width: 576px){
  .logo a img {
  width: 100%;
  height: auto;
}
}
.titleofpage{
  padding: 20px 0;
}
.titleofpage h1, .titleofpage h2, .titleofpage h3, .titleofpage h4, .titleofpage h5, .titleofpage h6{
  font-size: 30px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  font-family: "Inter", sans-serif;
}
.breadcrumb-section .breadcrumb{
  margin-bottom: 0;
  padding: 0 16px;
  margin-top: 8px;
}
.breadcrumb-section .breadcrumb .breadcrumb-item{
  font-size: 13px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}
.breadcrumb-section .breadcrumb .breadcrumb-item a{
  text-decoration: none;
  color: #21708f;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left !important;
  padding-right: var(--bs-breadcrumb-item-padding-x) !important;
  color: var(--bs-breadcrumb-divider-color) !important;
  content: var(--bs-breadcrumb-divider, "|  ") !important;
}
@media (max-width: 991px){
  .breadcrumb-section {
    display: none;
}    

}
/* ------------------------------Search bar */
.search-bar{
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 991px){
  .search-bar{
      margin-bottom: 10px;
  }
  .mobilemenu-section {
  margin-bottom: 10px;
}
}
.search-bar .searchInput{
  background: #fff;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  z-index: 999;
  /* box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12); */

}
.placeholderWrapper {
  position: relative;
  display: inline-block;
  width: 100%;
} 
.searchInput input{ 
  height: 100%;
  width: 100%;
  outline: none;
  border: 1px solid rgb(197, 207, 219);
  border-radius: 8px;
  padding: 0 60px 0 20px;
  /* font-size: 18px; */
  /* box-shadow: 0px 1px 5px rgba(0,0,0,0.1); */
  min-height: 45px;
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  padding: 10px 15px;
  font-family: "Inter", sans-serif;
}

.searchInput.active input{
  border-radius: 5px 5px 0 0;
}

.searchInput .resultBox{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.searchInput.active .resultBox{
  padding: 10px 8px;
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0px 1px 5px 3px rgba(0,0,0,0.12);
  border-radius: 0 0 8px 8px;
  z-index: 999999;
  position: absolute;
  opacity: 1;
  width: 100%;
  background-color: #fff;
}

.resultBox li{
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.searchInput.active .resultBox li{
  display: block;
}
.resultBox li:hover{
  background: #efefef;
}

.searchInput .icon{
  position: absolute;
  right: 0px;
  top: 0px;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 44px;
  font-size: 20px;
  color: #0779d7;
  cursor: pointer;
  border: 1px solid rgb(197, 207, 219);
  background-color: #fff;
  border-radius: 0 8px 8px 0;
}

.user-services{
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    justify-content: end;
}
.user-services .account-section{
    display:block;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--color-text);
    position: relative;
    line-height: 18px;
}
.user-services .account-section:nth-child(1){
  border-left: 0;
  padding-left: 10px;
}
.user-services .account-section:nth-child(2){
  border-left: 0;
  padding-left: 0px;
}
.user-services .account-section:nth-child(3){
  border-left: 0;
  padding-left: 0px;
}
@media (max-width: 576px){
  .user-services .account-section:nth-child(1) {
  margin-left: 4px;
  padding-left: 4px;
}
  .user-services .account-section:nth-child(2) {
  /* margin-left: 4px;
  padding-left: 4px; */
}
  .user-services .account-section:nth-child(3) {
  /* margin-left: 4px;
  padding-left: 4px; */
}
}
.user-services .account-section .icon1{
    /* width: 40px;
    height: 40px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff2f2;
    border-radius: 30px;
    padding: 10px 15px;
    /* border: 1px solid #e1e1e1; */
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    /* border: 1px solid #fff; */
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
}
.hgi.hgi-stroke.hgi-user-list {
  font-weight: 400;
  font-size: 26px;
  color: #343C54;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
}
.lni.lni-user-4 {
  font-weight: 400;
  font-size: 20px;
  color: #343C54;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 40px; */
  /* width: 40px; */
  margin-right: 4px;
}
.icon1 .lname{
  font-size: 13px;
  font-weight: 600;
  color: red;
  padding-bottom: 4px;
}
@media (max-width: 400px){
  .icon1 .lname{
    display: none;
  }
  .user-services .account-section .icon1{
    padding: 10px;
  }
  .lni.lni-user-4{
    margin: 0;
  }
}
.user-services .account-section .icon1::before{
    /* font-family: "Bootstrap-Icons";
    content: "\F4E1";
    font-weight: 400;
    font-size: 28px;
    color: #626262; */
}
@media (max-width: 576px){
  .user-services .account-section .icon1::before {
  font-size: 18px;
}
}
.user-services .account-section .accontent{
    display: flex;
    flex-direction: column;
    font-size: 12px;
} 
.accontent .sn{
    font-size: 12px !important;
    color: #a8a8a8;
    line-height: 14px;
}
@media (max-width: 576px){
  .accontent .sn {
  display: none;
}
.accontent .acc span{
    display: none;
}
.accontent {
  margin-left: -22px !important;
}
.user-services {
  gap: 8px;
}
}
.accontent .acc{
  font-size: 13px;
  font-weight: 600;
  color: #0778d6;
  display: flex;
  align-items: center;
}
.acc::after {
  /* display: inline-block !important; */
  display: none !important;
  margin-left: 0 !important;
  vertical-align: .255em !important;
  content: "\F22C" !important;
  font-family: 'Bootstrap-Icons';
  border: 0 !important;
  position: relative;
  right: -2px;
  top: 2px;
}
@media (max-width: 576px){
  .acc::after {
  position: relative;
  right: -8px;
  top: 2px;
}
}
.accontent {
  position: relative;
  display: inline-block;
  /* margin-left: -20px; */
}

.dropdown-toggle {
  cursor: pointer;
  user-select:   none;
}
.infouser span{
    font-size: 15px;
    font-weight: 600;
    color: #333333;
    display: flex;
    align-items: center;
    gap: 5px;
}
.infouser span::before{
    content: '\F52F';
    font-family: 'Bootstrap-Icons';
    font-size: 18px;
}
.infouser p{
    font-size: 13px;
    color: #a8a8a8;
    margin-top: 2px;
}
.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  position: absolute;
  top: 100%;
  left: -110px;
  background: white;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 250px !important;
  width: 100% !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  padding: 20px !important;
  margin-top: 4px;
  list-style: none;
  z-index: 1000 !important;
}

.accontent:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li:first-child{
    border-bottom: 1px solid #eee;  
    padding: 10px 0;

}
/* .dropdown-menu li .dromain {
  display: block;
  padding: 8px 12px;
  color: #333;
  font-weight: 500;
  text-decoration: none; 
  text-align: center;
  background-color: aliceblue;
  margin-top: 15px;
} */

.dropdown-menu li .dromain:hover {
  /* background-color: #f0f0f0; */
}
.accontent:hover .dropdown-menu {
  display: block;
}
.user-services .account-section .icon2{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
     background-color: #fff;
    border-radius: 30px;
    /* border: 1px solid #e1e1e1; */
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
}
.user-services .account-section .icon2::before{
    font-family: "Bootstrap-Icons";
    content: "\F417";
    font-weight: 400;
    font-size: 24px;
    color: #626262;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    position: absolute;
    top: 5px;
}
@media (max-width: 576px){
  .user-services .account-section .icon2::before {
  font-size: 18px;
}
}
.user-services .account-section .count-heart{
  position: absolute;
  top: 2px;
  right: 0px;
  background-color: #0779d7;
  color: #fff;
  font-size: 12px;
  width: 17px;
  height: 17px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  border: 2px solid #0779d7;
}
.user-services .account-section .icon3{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 30px;
    /* border: 1px solid #e1e1e1; */
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
}
.navcart{
  font-size: 24px !important;
  color: #626262;
}
.user-services .account-section .icon3::before{
    /* font-family: "Bootstrap-Icons";
    content: "\F179";
    font-weight: 400;
    font-size: 22px;
    color: #626262;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 35px;
    position: absolute;
    top: 2px; */
}
@media (max-width: 576px){
  .user-services .account-section .icon3::before {
  font-size: 18px;
}
}
.user-services .account-section .count-cart{
    position: absolute;
    top: 2px;
    right: 0px;
    background-color: #0779d7;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    width: 17px;
    height: 17px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Oswald", sans-serif;
    border: 2px solid #0779d7;
}
.main-header .bottom-header {
     /* border-bottom: 1px solid var(--color-border); */
    height: 48px;
    display: flex;
    align-items: center;
    background-color: #1e86dc;
    padding: 0 20px;
}
.main-header .bottom-header .main-nav{
  padding: 0;
  height: 100%;
  display: flex;
  /* margin-left: 8px; */
  width: 100%;
  justify-content: center;
}
.main-header .bottom-header .main-nav .navbar-nav{
    justify-content: center;
    width: 100%;
}
.main-header .bottom-header .main-nav .navbar-nav .nav-item .nav-link{
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  padding: 10px 15px;
  font-family: "Inter", sans-serif;
}
.wholebottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tp-section .nav-top-title span{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.tp-section {
  width: 300px;
  height: 38px;
  display: flex;
}
.nav-top-title {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #278b2a;
  padding: 0 18px;
  justify-content: space-between;
  border-radius: 8px;
}
.nav-top-title span, .nav-top-title .hgi-arrow-down-double{
  font-size: 14px;
  color: #fff;
}
/* .top-category-list {
  position: relative;
} */

.tp-section {
  position: relative;
}

/* Top Category trigger */
.nav-top-title {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 6px 17px 8px;
}

/* Dropdown container */
.top-category-list {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  padding: 0;
  display: none;
  z-index: 1000;
  border-radius: 8px;
}

/* visible when JS adds class */
.top-category-list.show {
  display: block;
}

/* Category list */
.top-category-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-cat-item {
  position: relative;
}

.top-cat-item > a {
  display: flex;
  padding: 6px 14px;
  margin: 4px 4px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  border-radius: 4px;
  align-items: center;
  justify-content: space-between;
}
.top-cat-item > a{
  border: 1px solid #e1e1e1;
}
.top-cat-item > a::after{
  content: '\F285';
  font-family: 'Bootstrap-Icons';
}
/* Mega menu (subcategories) */
.mega-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 350px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  padding: 0px 16px;
  display: none;
  z-index: 1000;
  white-space: nowrap;
  border-radius: 0 8px 8px 0;
}

/* open mega menu on hover of category */
.top-cat-item:hover > .mega-menu {
  display: flex;
  gap: 32px;
}

/* columns inside mega */
.mega-column h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.mega-column{
  width: 100%;
}
.mega-column a {
  display: block;
  font-size: 13px;
 color: #278b2a;
  text-decoration: none;
  padding: 2px 0;
  font-weight: 600;
}

.mega-column a:hover,
.top-cat-item > a:hover {
  color: #007bff;
}
.mega-column a{
  display: flex;
  align-items: center;
}
.mega-column .sideimg{
  width: 60px;
  height: 100%;
  display: block;
  margin-right: 12px;
}
.mega-column .sideimg img{
  width: 60px;
  height: 60px;
  margin: auto;
  display: block;
  border-right: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  padding-right: 8px;
}
.main-menu {
  display: flex;
  margin-bottom: 0;
  padding: 0;
  justify-content: left;
}
.main-menu .main-menu-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  /* position: relative; */
}
.main-menu .main-menu-list .nav-link{
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 6px 15px;
  border-radius: 8px;
  height: 38px;
}
.main-menu .main-menu-list .navactive{
  background-color: #caf0cb;
  color: #278b2a;
  border-radius: 8px;
  margin-right: 4px;
}
.main-menu .main-menu-list .nav-link:hover{
  background-color: #caf0cb;
  color: #278b2a;
  border-radius: 8px;
}
.has-megamenu {
    /* position: relative; */
}

.megamenu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    z-index: 1050;
    width: 100%;
    background-image: url(../images/back3.jpg);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
}

.has-megamenu:hover .megamenu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 32px;
}

/* Multi-column Layout */
.megamenu-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 300px;
    gap: 32px;
    align-items: start;
}

.megamenu-column {
    padding: 0;
}

.megamenu-column h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
}

.megamenu-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.megamenu-column li {
    margin-bottom: 12px;
}

.megamenu-column a {
    display: block;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border-radius: 6px;
    padding-left: 8px;
}

.megamenu-column a:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.08);
    padding-left: 16px;
    transform: translateX(4px);
}

/* Featured Column */
.megamenu-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    /* background-image: url(../images/back1.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain; */
}

.featured-item {
    border-radius: 12px;
    overflow: hidden;
    /* background: linear-gradient(135deg, #f8f9ff, #e8f0ff); */
    /* border: 1px solid rgba(0, 123, 255, 0.1); */
    /* transition: all 0.3s ease; */
    /* height: 220px; */
    height: 100%;
    position: relative;
}

.featured-item:hover {
    /* transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 123, 255, 0.15); */
}

.featured-item img {
  width: 100%;
  height:auto;
  object-fit: cover;
}

.featured-text {
  padding: 0px;
  text-align: center;
  /* position: relative; */
}

.featured-text h5 {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  position: absolute;
  bottom: 55px;
}

.featured-text p {
  font-size: 13px;
  color: #fff;
  margin: 12px 0 12px 0 !important;
}
.snban{
 padding: 2px 12px 3px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border-radius: 15px !important;
}
/* Responsive */
@media (max-width: 1200px) {
    .megamenu-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
    
    .megamenu-featured {
        display: none;
    }
}

@media (max-width: 991px) {
    .megamenu-dropdown {
        display: none; /* Hide on mobile - use offcanvas instead */
    }
}

@media (max-width: 768px) {
    .megamenu-container {
        padding: 20px;
    }
    
    .megamenu-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 991px){
  .main-header .bottom-header {
  display: none;
}
.main-header .top-header {
  height: auto;
  padding: 10px 0;
}
.taglogo, .cartsection{
  margin-top: 10px;
}

}
@media (min-width: 992px){
  .nodesktop {
    display: none !important;
  }
}
.search-col{
  display: flex !important;
}
.mobilemenu-section {
  display: flex;
  align-items: center;
}
@media (max-width: 991px){
  .mobilemenu-section{
    order: 2;
  }
  .toggle-button {
  margin-left: 8px;
}
}
.toggle-button {
  border: 1px solid #c2dcf2;
  margin-right: 0px;
  border-radius: 8px;
  display: flex;
  height: 42px;
  width: 42px;
  background-color: #fff;
}
.mobilemenu-section .toggle-button .mmbutton{
  width: 100%;
  height: auto;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  color: #0779d7;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobilemenu-section .toggle-button .mmbutton::before{
    content: '\F3FC';
    font-family: 'Bootstrap-Icons';
}
.mail-section {
  display: flex;
  align-items: center;
  /* border-left: 1px solid #e1e1e1;
  padding-left: 36px; */
  position: relative;
  width: 20%;
  justify-content: end;
  margin-left: auto;
}
.tog-but-off{
  width: 320px !important;
}
.toggle-tab {
  text-align: center !important;
  display: flex !important;
  flex-wrap: inherit !important;
  justify-content: center !important;
}
.toggle-category-tab {
  width: 100%;
  max-width: 190px;
  background-color: #fff !important;
  font-weight: 600 !important;
  color: #278b2a !important;
}
.toggle-category-tab.active{
  color: #0779d7 !important;
  font-weight: 600;
  background-color: #f0f8ff !important;
}
.toggle-button-header {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 12px;
}
.toggle-button .menu-section{
  display: block;
  width: 100%;
}
.toggle-button .menu-section ul li a{
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #626262;
  display: block;
  margin: 4px 18px;
  border-bottom: 1px solid #e1e1e1;
  padding: 4px 8px 8px;
}
.toggle-button .menu-section ul li a:hover{
  background-color: #fff;
  color: #278b2a;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 4px 8px 4px;
}
@media (max-width: 576px){
  .toggle-category-tab {
  width: 100%;
  max-width: 142px;
}
}
.toggle-button .c-section{
  display: block;
  width: 100%;
  overflow-y: auto;
}
.toggle-button .c-section ul li a{
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #626262;
  display: block;
  margin: 4px 18px;
  border-bottom: 1px solid #e1e1e1;
  padding: 4px 8px 8px;
}
.toggle-button .c-section ul li a:hover {
  background-color: #fff;
  color: #278b2a;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 4px 8px 4px;
}
.offcanvas-body{
  overflow: inherit !important;
}
/* .mail-section::before{
  content: '';
  width: 75px;
  height: 1px;
  color: red;
  border: 1px solid #e2e2e2;
  rotate: -90% !important;
  rotate: 90deg;
  overflow: hidden;
  position: absolute;
  left: -60px;
} */
.mail-section .iconmail{
  margin-right: 5px;
}
.mail-section .iconmail::before{
  content: '\F46F';
  font-family: 'Bootstrap-Icons';
  font-size: 26px;
  color: #278b2a;
}
.mail-section a{
  text-decoration: none;
  color: #0779d7;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 768px){
  .section-title {
  font-size: 22px !important; 
  text-align: center;
}
}
/* -----------------------------------Banner */
.chromlab-banner {
  position: relative;
  z-index: 1;
}
.carousel-item .bancar{
  width: 100% !important;
  border-bottom: 1px solid #e1e1e1;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
}
.chromlab-banner.carousel-item {
  /* margin-top: 2px; */
}
.chromlab-banner .bancar{
  border-radius: 0;
}
/* @media (max-width: 991px){
  .chromlab-banner {
  display: none;
}
} */


.bancar {
  max-height: 520px;
  object-fit: cover;
}

/* Overlay */
.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 34px;
  padding-right: 34px;
  color: #fff;
  pointer-events: none; /* buttons re-enable below */
}

/* Text styles */
.banner-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0.6rem;
  max-width: 520px;
  color: #0779d7;
  font-family: "Inter", sans-serif;
}
@media (max-width: 576px){
  .comintrocar{
    display: none;
}
}

.banner-subtitle {
  font-size: 15px;
  max-width: 480px;
  margin-bottom: 1.4rem;
  opacity: 0.9;
  color: #352929;
}
.carousel-control-prev {
  width: 70px !important;
}
.carousel-control-next {
  width: 70px !important;
}
/* Button */
.banner-btn {
  pointer-events: auto;
  background: #4ba024 !important;
  border-radius: 8px !important;
  padding: 2px 12px 4px !important;
  font-weight: 600 !important;
  border: none;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
  margin-top: 25px;
}

.banner-btn:hover {
  /* background: #111a60;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.32); */
}

/* Base animation state */
.chromlab-banner .banner-title,
.chromlab-banner .banner-subtitle,
.chromlab-banner .banner-btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

/* Active slide animation */
.chromlab-banner.active .banner-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
 
}

.chromlab-banner.active .banner-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.chromlab-banner.active .banner-btn {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.45s;
}

/* Responsive */
@media (max-width: 991.98px) {
  .banner-overlay {
    align-items: start;
    text-align: start;
    padding: 0 1.5rem;
  }
  .banner-title {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 8px;
  }
  .banner-subtitle {
    font-size: 12px;
    margin-top: 10px;
  }
  .banner-btn {
  pointer-events: auto;
  background: #4ba024 !important;
  border-radius: 8px !important;
  padding: 2px 12px 4px !important;
  font-weight: 600 !important;
  border: none;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
  margin-top: 8px;
  font-size: 12px !important;
}
}


/* -------------------------------------E corner */
.e-con-inner {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
  background-color: #f9fafb;
}
.econ-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  flex: 1;
}
.econ-box .econ-icon {
  font-size: 30px;
  color: #21708f;
  margin-bottom: 0;
}
.econ-icon1::before {
  font-family: "Bootstrap-Icons";
  content: "\F615";
}
.econ-icon2::before {
  font-family: "Bootstrap-Icons";
  content: "\F414";
}
.econ-icon3::before {
  font-family: "Bootstrap-Icons";
  content: "\F52F";
}
.econ-box h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
  font-family: "Inter", sans-serif;
}
.econ-box p {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  font-family: "Inter", sans-serif;
}
.titleofsection{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 12px;
}
.titleofsection .smallte{
  font-size: 14px;
}
.titleofsection h1, .titleofsection h2, .titleofsection h3, .titleofsection h4, .titleofsection h5, .titleofsection h6 {
  font-size: 30px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  margin-right: auto;
  font-family: "Inter", sans-serif;
}
.titleofsection .view-all-btn{
  margin-left: auto;
  font-size: 15px !important;
  font-family: "Inter", sans-serif;
}
/* -----------------------------------Categories */
.section-title{
font-size: 30px;
font-weight: 600;
color: var(--color-text);
margin-bottom: 20px;
font-family: "Inter", sans-serif;
}
.sbc-top {
    padding: 60px 20px;
  /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
  /* min-height: 100vh; */
}
@media (max-width: 991px){
  .sbc-top {
  padding: 60px 8px;
}
}
.sbc-top .catcards{
  text-decoration: none;
}
.carousel-container {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
  /* overflow: hidden; */
}

.carousel-wrapper {
  overflow: hidden;
  /* border-radius: 20px; */
  /* box-shadow: 0 20px 60px rgba(0,0,0,0.15); */
  background: white;
}

#carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
  /* padding: 30px 40px; */
  margin: 0;  
  will-change: transform;
}

.card {
  flex: 0 0 250px;
  background-color: #fff !important;
  border-radius: 16px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0 !important;
}

.card:hover {
  /* transform: translateY(-10px); */
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.15); */
}

.card img {
  width: 100%;
  max-width: 120px;
  height: 120px;
  object-fit: cover;
  margin: 12px auto 0 auto;
}

.card-content {
  /* padding: 14px 8px; */
  text-align: center;
}

.card h4 {
 margin: 8px 0 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: #2c2c2c;
}

.card p {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #b2b2b2;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: #333;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.prev {
  left: -10px;
}

.next {
  right: -10px;
}
.slick-prev.slick-arrow {
  background: #fff !important;
  color: red !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px !important;
  width: 36px;
  height: 36px;
  font-size: 20px;
  position: absolute;
  top: 50% !important;
  left: 0 !important;
  z-index: 3;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
.slick-next.slick-arrow {
  background: #fff !important;
  color: red !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px !important;
  width: 36px;
  height: 36px;
  font-size: 20px;
  position: absolute;
  top: 50% !important;
  right: 0 !important;
  z-index: 3;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
.slick-prev::before, .slick-next::before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Responsive */
@media (max-width: 1200px) {
  .card { flex: 0 0 180px; }
}

@media (max-width: 992px) {
  .card { flex: 0 0 160px; }
  #carousel { padding: 25px 30px; gap: 15px; }
}

@media (max-width: 768px) {
  .card { flex: 0 0 140px; }
  #carousel { padding: 20px 25px; gap: 12px; }
  .carousel-btn { width: 45px; height: 45px; font-size: 18px; }
}

@media (max-width: 480px) {
  .card { flex: 0 0 120px; }
  #carousel { padding: 15px 20px; gap: 10px; }
}

.slick-slide{
  margin: 0 10px;
}
.slick-slide .slider-card{
  display: grid;
  height: 100%;
}
.slick-carousel .slick-slide {
    display: flex;
    align-items: stretch;
    height: auto;
}

.slider-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 8px;
  border: 1px solid #e1e1e1 !important;
  border-radius: 2px;
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: flex !important;
  margin-left: auto;
  margin-right: auto;
}
.best-seller .section-title h1, .best-seller .section-title h2, .best-seller .section-title h3, .best-seller .section-title h4, .best-seller .section-title h5, .best-seller .section-title h6{
  font-size: 32px;
  font-weight: 400;
  color: #1b1b1d;
  margin-bottom: 8px;
  font-family: "Urbanist", sans-serif;
}
.best-seller .section-title {
  margin-bottom: 15px;
}
.best-seller{
  padding: 40px 20px;
  background-color: #fff;
  /* background-color: #f9f9f9; */
  /* box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px; */
}
.best-seller .slider-card{
  background-color: #fff;
  border:1px solid #e2e1e1;
  border-radius: 5px;
  padding: 14px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  font-family: "Urbanist", sans-serif;
  display: grid;
  height: 100%;
  position: relative;
  transition: box-shadow 0.3s;
}
.best-seller .slider-card .side-label{
  position: relative;
  top: 18px;
  left: -96px;
  background-color: #f07f24;
  color: #fff;
  padding: 5px 40px;
  transform: rotate(-45deg);
  font-size: 12px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  z-index: 9;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.best-seller .slider-card .side-label-green{
  position: relative;
  top: 18px;
  left: -96px;
  background-color: #4f42ae;
  color: #fff;
  padding: 5px 40px;
  transform: rotate(-45deg);
  font-size: 12px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  z-index: 9;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popular-product .side-label-pp{
  position: absolute;
  top: 0px;
  left: -2px;
  background-color: #4f42ae14;
  color: #f07f24;
  padding: 5px 14px;
  /* transform: rotate(-45deg); */
  font-size: 12px;
  font-weight: 600;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
  z-index: 9;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  border-radius: 0 0 5px 0
}
.best-seller .slider-card .pop-image{
  width: 100%;
  height: auto;
  margin: 0 auto;
  max-width: 130px;
}
.best-seller .slider-card .pop-image img{
  max-width: 100%;
  height: auto;
  object-fit: scale-down;
  position: relative;
  width: 100%;
  z-index: 1;
}
.best-seller .slider-card a{
  text-decoration: none;
}
.best-seller .slider-card .pop-info{
  text-align: left;
}
.best-seller .slider-card .pop-info h1, .best-seller .slider-card .pop-info h2, .best-seller .slider-card .pop-info h3, .best-seller .slider-card .pop-info h4, .best-seller .slider-card .pop-info h5, .best-seller .slider-card .pop-info h6{
  font-size: 16px;
  font-weight: 600;
  color: #0d0d0d;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Urbanist", sans-serif !important;
}
.best-seller .slider-card .pop-info .pop-price{
  color: #f07f24;
  display: block;
  margin-bottom: 4px !important;
}
.best-seller .slider-card .specs-list{
  text-align: left;
}
.best-seller .slider-card .specs-list ul{
  list-style: none;
  padding-left: 14px;
  margin: 0;
  font-size: 14px;
}
.best-seller .slider-card .specs-list ul li{
  margin-bottom: 1px;
  color: #54545c;
  font-weight: 400;
  line-height: 18px;
}
.best-seller .slider-card .specs-list ul li::before{
 content: "\2022";
  font-family: 'Bootstrap-icons';
  color: #f07f24;
  display: inline-block;
  font-size: 18px;
  width: 15px;  
  margin-left: -15px;
}
.best-seller .slider-card .view-button{
  margin-top: 10px;
  text-align: end;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.best-seller .slider-card .view-button a{
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 2px 8px;
  border: none;
  border-radius: 4px;
  background-color: #070762;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  &:hover {
    background-color: #d94a1c;
  }
  
}
.best-seller .slider-card .view-button .wishlist-btn-like {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 2px 0;
  border: none;
  border-radius: 4px;
  background-color: #fff;
  transition: background-color 0.3s ease;
  font-size: 14px;
  font-weight: 600;
  &:hover {
    background-color: #fff;
  }
}
/* -------------------------------------FEatured cards */
.chromlab-card-section {
  padding: 0 20px 60px;
  position: relative;
}
.feat-col{
  /* flex: 0 0 auto;
  width: 20% !important; */
}
@media (max-width: 576px){
  /* .feat-col{
  flex: 0 0 auto;
  width: 50% !important;
  padding: 0 4px !important;
} */
.chromlab-card-section {
  padding: 0 0 60px;
}
.chromlab-card-section .specs-list {
  margin-bottom: 5px;
  padding: 0 8px !important;
}
}
@media (min-width: 576px) and (max-width: 768px){
  /* .feat-col{
  flex: 0 0 auto;
  width: 33.33% !important;
  padding: 0 4px !important;
} */
.chromlab-card-section {
  padding: 0 0 60px;
}
.chromlab-card-section .specs-list {
  margin-bottom: 5px;
  padding: 0 8px !important;
}
}
@media (min-width: 768px) and (max-width: 991px){
  /* .feat-col{
  flex: 0 0 auto;
  width: 33.33% !important;
  padding: 0 4px !important;
} */
.chromlab-card-section {
  padding: 0 0 60px;
}
.chromlab-card-section .specs-list {
  margin-bottom: 5px;
  padding: 0 8px !important;
}
}
.chromlab-card-section .chrom-cards{
  border: 1px solid #e1e1e1;
  display: grid;
  height: 100%;
  max-height: 95%;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
}
.chromlab-card-section .chrom-cards:hover {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.featpro .slick-next::before {
  content: '\F285';
  font-family: 'Bootstrap-Icons';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.featpro .slick-prev::before {
  content: '\F284';
  font-family: 'Bootstrap-Icons';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.chrom-img-section {
  position: relative;
  width: 100%;
  display: flex;
  margin: auto;
  flex-direction: column;
}

.chrom-slider {
  width: 100%;
  max-width: 150px;
  overflow: hidden;
  margin: auto;
}

.chrom-slides {
  display: flex;
  transition: transform 0.3s ease;
}

.chrom-slide {
  max-width: 150px;
  width: 100% !important;
  height: 100%;
  min-height: 150px;
  user-select: none;
  pointer-events: none;
  display: block;
}
.chrom-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0px;
  margin-bottom: 8px;
  padding: 0 15px;
}

.chrom-dot { 
  width: 8px;
  height: 8px;
  border-radius: 2px;
  border: none;
  background: #4ba024;
  cursor: pointer;
}

.chrom-dot.active {
  background: #0879d7;
}
.chromlab-card-section .chrom-product-name{
  padding: 0 10px;
}
.chromlab-card-section .chrom-product-name a{
  text-decoration: none;
}
.chromlab-card-section .chrom-product-name a h1, .chromlab-card-section .chrom-product-name a h2, .chromlab-card-section .chrom-product-name a h3, .chromlab-card-section .chrom-product-name a h4, .chromlab-card-section .chrom-product-name a h5, .chromlab-card-section .chrom-product-name a h6{
  font-size: 17px;
  color: #2c2c2c;
  font-weight: 600;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.chromlab-card-section .specs-list{
  margin-bottom: 0px;
  padding: 0 10px;
}
.chromlab-card-section .specs-list ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.chromlab-card-section .specs-list ul li{
  margin-bottom: 4px;
  font-size: 13px;
  display: block;
  /* justify-content: start;
  align-items: center; */
}
.chromlab-card-section .specs-list ul li span:first-child{
  font-weight: 600;
  color: #000;
  margin-right: 4px;
  font-family: "Inter", sans-serif;
}
.chromlab-card-section .specs-list ul li span:last-child{
  font-weight: 500;
  color: #5a5a5a;
  font-family: "Inter", sans-serif;
}
.chromlab-card-section .buttons-section{
  border-top: 1px solid #e1e1e1;
  display: flex;
  justify-content: end;
  position: relative;
  padding: 4px;
  gap: 4px;
  background-color: aliceblue;
}
.chromlab-card-section .buttons-section .btn{
  padding: 1px 6px;
  border-radius: 0 8px 8px 0;
  background-color: #fff;
  border: 1px solid #4ba024;
  color: #4ba024;
  display: flex;
  position: relative;
  align-items: center;
}
.chromlab-card-section .buttons-section .explore-btn{
 text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0779d7 !important;
  border: 1px solid #0779d7 !important;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  padding: 1px 6px !important;
  border-radius: 8px 0 0 8px !important;
  text-align: center;
}
.chromlab-card-section .buttons-section .explore-btn:hover{
  border: 1px solid #0779d7;
  color: #0779d7
}
.chromlab-card-section .buttons-section .btn:hover{
  border: 1px solid #0779d7;
  color: #0779d7
}
.chromlab-card-section .buttons-section .btn:nth-child(2){
  /* border-left: 1px solid #e1e1e1; */
}
.chromlab-card-section .buttons-section .btn:nth-child(3){
  /* border-left: 1px solid #e1e1e1; */
}
.chromlab-card-section .buttons-section .btn:nth-child(4){
  /* border-left: 1px solid #e1e1e1; */
  border-radius: 0 8px 8px 0;
}
.chromlab-card-section .buttons-section .btn.cart::before{
  /* content: '\F179';
  font-family: 'Bootstrap-Icons'; */
}
.chromlab-card-section .buttons-section .btn.view::before{
  /* content: '\F341';
  font-family: 'Bootstrap-Icons'; */
}
.chromlab-card-section .buttons-section .btn.catalog::before{
  /* content: '\F30A';
  font-family: 'Bootstrap-Icons'; */
}
.hgi-stroke{
  font-size: 20px;
}
.card-tooltip {
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  padding: 8px 0 8px 0px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-color: aliceblue;
  width: 100%;
  color: #111;
  text-align: center;
  font-family: "Inter", sans-serif;
  border-radius: 8px 8px 0 0 !important;
  /* box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px; */
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  margin-left: auto;
  margin-right: auto;
  z-index: 9;
  border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-right: 1px solid #e1e1e1;
}

/* visible state */
.card-tooltip.show {
  opacity: 1;
  transform: translateX(0);
  border-radius: 8px;
}
.buttons-section .btn {
  padding: 10px 0;
  border: none;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.buttons-section a{
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0879d7;
  border: 1px solid #0879d7;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  border-radius: 0 0 0 8px;
}
.buttons-section a:hover{
  background-color: #fff;
  border: 1px solid #4ba024;
  color: #4ba024;
}
.featured-carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.featured-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #1d297c;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  z-index: 5;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.featured-arrow.prev { left: 10px; }
.featured-arrow.next { right: 10px; }

.featured-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.featured-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}
.featured-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.featured-dots button.active {
  background: #1d297c;
  transform: scale(1.3);
}
.chromlab-card-section .chrom-cards .vert-btn {
  opacity: 0;
  transform: translateX(20px);
  transform: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.chromlab-card-section .chrom-cards:hover .vert-btn {
  opacity: 1;
  transform: translateX(0);
}
.chromlab-card-section .chrom-cards .buttons-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.chromlab-card-section .chrom-cards:hover .buttons-section {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.chromlab-card-section .vert-btn .btn {
  padding: 1px 6px;
  border-radius: 0;
  background-color: #fff;
  color: #4f5153;
  display: flex;
  position: relative;
  align-items: center;
}
.chromlab-card-section .vert-btn {
  /* border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1; */
  display: flex; 
  flex-direction: column;
  justify-content: end;
  position: absolute;
  height: fit-content;
  margin: auto 0 0;
  gap: 4px;
  padding: 4px;
  background-color: aliceblue;
  border-radius: 8px 0 0 8px;
  right: 0;
  top: 25%;
  z-index: 9;
}
/* .feat-col {
  flex: 0 0 20%;
  scroll-snap-align: start;
} */
/* -------------------------------ban section */
.ban{
  padding: 0 0 70px;
}
.ban .ban-card-1{
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background-image: url(../images/ban-1.jpg);
  background-size: cover;
  background-position: center center;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;

}
.ban .ban-card-1 .ban-whole{
 padding: 25px 30px;
  text-decoration: none;
  height: 100%;
  width: 100%;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.ban .ban-card-1 .ban-whole span{
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgb(100, 117, 141);
  margin-bottom: 10px;
}
.ban .ban-card-1 .ban-whole .mainbanhead{
  font-size: 36px;
  color: #000000;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-top: 16px;
}
.ban .ban-card-1 .ban-whole .banp{
  color: #262626;
  font-weight: 500;
  font-size: 14px;
}
.ban .ban-card-1 .ban-whole .snow{
  background-color: #fbfbfb;
  color: #000;
  padding: 5px 16px 6px;
  display: block;
  margin-top: auto;
  font-weight: 600;
  font-size: 13px;
  border-radius: 30px;
}
.ban .ban-card-2{
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background-image: url(../images/ban-2.jpg);
  background-size: cover;
  background-position: center center;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;

}
.ban .ban-card-2 .ban-whole{
 padding: 25px 30px;
  text-decoration: none;
  height: 100%;
  width: 100%;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
.ban .ban-card-2 .ban-whole span{
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgb(219, 220, 223);
  margin-bottom: 10px;
}
.ban .ban-card-2 .ban-whole .mainbanhead{
  font-size: 36px;
  color: #fff;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-top: 16px;
}
.ban .ban-card-2 .ban-whole .banp{
  color: #262626;
  font-weight: 500;
  font-size: 14px;
}
.ban .ban-card-2 .ban-whole .snow{
  background-color: #fbfbfb;
  color: #000;
  padding: 5px 16px 6px;
  display: block;
  margin-top: auto;
  font-weight: 600;
  font-size: 13px;
  border-radius: 30px;
}

/* -----------------------------top ategories */
.tabing-product {
  padding: 30px 20px 30px;
  background-color: #fff;
  /* margin-bottom: 60px; */
  /* box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px; */
}
.top-categories {
  padding-bottom: 70px;
}
.tabing-product .chrom-cards {
  border: 1px solid #e1e1e1;
  background-color: #fff;
  display: grid;
  height: 100%;
  max-height: 95%;
  border-radius: 8px;
  margin: 0 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
  position: relative;
}
.tabing-product .chrom-cards .vert-btn {
  opacity: 0;
  transform: translateX(20px);
  /* transform: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tabing-product .chrom-cards:hover .vert-btn {
  opacity: 1;
  transform: translateX(0);
}
.tabing-product .vert-btn {
  /* border-top: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1; */
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: absolute;
  height: fit-content;
  margin: auto 0 0;
  gap: 4px;
  padding: 4px;
  background-color: aliceblue;
  border-radius: 8px 0 0 8px;
  right: 0;
  top: 25%;
  z-index: 9;
}
.tabing-product .vert-btn .btn {
  padding: 1px 6px;
  border-radius: 0;
  background-color: #fff;
  color: #4f5153;
  display: flex;
  position: relative;
  align-items: center;
}
.tabing-product .chrom-cards .buttons-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tabing-product .chrom-cards:hover .buttons-section {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 340px){
  .tabing-product {
  padding: 0 8px 60px;
}
}
@media (max-width: 576px){
  .tabing-product .chrom-cards {
  max-height: 100%;
  margin-bottom: 0px;
}
.tabing-product .chrom-cards .buttons-section a{
  font-size: 11px !important;
}
}
/* .tabing-product .chrom-cards:hover {
 transform: translateY(-1px);
} */
.tabing-product .chrom-cards .chrom-img-section {
  position: relative;
  width: 100%;
  display: flex;
  margin: auto;
  flex-direction: column;
}
.tabing-product .chrom-cards .chrom-product-name {
  padding: 0 10px;
}
.tabing-product .chrom-cards .chrom-product-name a {
  text-decoration: none;
}
.tabing-product .chrom-cards .chrom-product-name a h1, .tabing-product .chrom-cards .chrom-product-name a h2, .tabing-product .chrom-cards .chrom-product-name a h3, .tabing-product .chrom-cards .chrom-product-name a h4, .tabing-product .chrom-cards .chrom-product-name a h5, .tabing-product .chrom-cards .chrom-product-name a h6 {
  font-size: 17px;
  color: #2c2c2c;
  font-weight: 600;
  text-align: left;
  font-family: "Inter", sans-serif;
}
.tabing-product .chrom-cards .specs-list {
  margin-bottom: 5px;
  padding: 0 10px;
}
.tabing-product .chrom-cards .specs-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tabing-product .chrom-cards .specs-list ul li {
  margin-bottom: 0px;
  font-size: 13px;
  display: inline-block;
}
.tabing-product .chrom-cards .specs-list ul li span:first-child {
  font-weight: 600;
  color: #000;
  margin-right: 4px;
  font-family: "Inter", sans-serif;
}
.tabing-product .chrom-cards .specs-list ul li span:last-child {
  font-weight: 500;
  color: #5a5a5a;
  font-family: "Inter", sans-serif;
}
.tabing-product .chrom-cards .buttons-section {
  border-bottom: 1px solid #e1e1e1;
  display: flex;
  justify-content: end;
  position: relative;
  padding: 4px;
  padding: 4px;
  gap: 4px;
  background-color: aliceblue;
  border-radius: 0 0 8px 8px;
}

.tabing-product .chrom-cards .buttons-section a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0879d7;
  background-color: #fff;
  border: 1px solid #0879d7;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
 border-radius: 0 0 0 8px;
}
.tabing-product .chrom-cards .buttons-section a:hover{
  border: 1px solid #4ba024;
  color: #4ba024;
}
.tabing-product .chrom-cards .buttons-section .btn.cart::before {
  /* content: '\F179';
  font-family: 'Bootstrap-Icons'; */
}
.tabing-product .chrom-cards .buttons-section .btn.view::before {
  /* content: '\F341';
  font-family: 'Bootstrap-Icons'; */
}
.tabing-product .chrom-cards .buttons-section .btn.catalog::before {
  /* content: '\F30A';
  font-family: 'Bootstrap-Icons'; */
}
.tabing-product .chrom-cards .buttons-section .btn:nth-child(2) {
  /* border-left: 1px solid #e1e1e1; */
}
.tabing-product .chrom-cards .buttons-section .btn:nth-child(3) {
  /* border-left: 1px solid #e1e1e1; */
}
.tabing-product .chrom-cards .buttons-section .btn:nth-child(4) {
  /* border-left: 1px solid #e1e1e1; */
  border-radius: 0 8px 8px 0;
}
.tabing-product .chrom-cards .buttons-section .btn {
  padding: 1px 6px;
 border-radius: 0 8px 8px 0;
  background-color: #fff;
  border: 1px solid #4ba024;
  color: #4ba024;
  display: flex;
  position: relative;
  align-items: center;
}
.tabing-product .chrom-cards .buttons-section .explore-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0879d7 !important;
  border: 1px solid #0879d7 !important;
  background-color: #fff !important;
  display: flex;
  width: 100%;
  align-content: center; 
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  padding: 1px 6px !important;
 border-radius: 8px 0 0 8px !important;
}
.tabing-product .chrom-cards .buttons-section .explore-btn:hover{
  background-color: #fff;
  border: 1px solid #0879d7;
  color: #0879d7;
}
.tabing-product .chrom-cards .buttons-section .btn:hover{
  background-color: #fff;
  color: #0879d7;
}
.tc-cards{
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: var(--shadow-soft); */
  transition: all 0.3s ease;
  border: 0 !important;
  margin: 0;
  margin-bottom: 20px;
}
.tc-cards .tc-image{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  max-width: 262px;
  min-height: 262px;
  display: flex;
}
.tc-cards .tc-image img{
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 8px;
  max-width: 170px;
  margin: auto;
  display: block;

}
.tc-cards .tc-content {
  padding: 5px 0;
  text-align: left;
}
.tc-rating-section .fa-star, .tc-rating-section .fa-star-half-alt{
    color: #fbbf24;
    font-size: 12px;
}
.tc-rating-section .tc-rating-number{
    font-size: 12px;
    color: #6b7280;
}
.tc-rating-section .tc-review-count{
    font-size: 12px;
    color: #6b7280;
}
.tc-cards .tc-content h4{
  margin-bottom: 0;
  line-height: 20px;
  display: flex;
}
.tc-cards .tc-content h4 a{
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #2c2c2c;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.tc-cards .tc-content .product-count{
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #a8a8a8;
  font-family: "Inter", sans-serif;
}
.tab-content > .active {
  display: flex !important;
}

.custometabcontent {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #bdbec4 #f1f1f1;
  padding-bottom: 32px;
}

/* Webkit browsers (Chrome, Safari, Edge) */
.custometabcontent::-webkit-scrollbar {
  height: 6px;
}

.custometabcontent::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.custometabcontent::-webkit-scrollbar-thumb {
  background: #1d297c;
  border-radius: 3px;
}

.custometabcontent::-webkit-scrollbar-thumb:hover {
  background: #0f1a5e;
}

/* Make it scrollable by mouse drag */
.custometabcontent {
  cursor: grab;
}

.custometabcontent:active {
  cursor: grabbing;
}


.menu-content > .active {
  display: flex !important;
  background-color: aliceblue;
}
.tc-cards .tc-content h1, .tc-cards .tc-content h2, .tc-cards .tc-content h3, .tc-cards .tc-content h4, .tc-cards .tc-content h5, .tc-cards .tc-content h6 {
 margin-bottom: 12px;
  line-height: 18px;
}
.tc-cards .tc-content h1 a, .tc-cards .tc-content h2 a, .tc-cards .tc-content h3 a, .tc-cards .tc-content h4 a, .tc-cards .tc-content h5 a, .tc-cards .tc-content h6 a {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #2c2c2c;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.tc-cards .tc-content .price{
  margin-top: 6px;
  margin-bottom: 6px !important;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: #21708f;
  font-family: "Oswald", sans-serif;
}
.tc-cards .tc-content .price .old-price{
    font-size: 14px;
    font-weight: 500;
    color: #a8a8a8;
    text-decoration: line-through;
    margin-right: 8px;
}
.tc-cards .tc-content .add-to-cart-btn{
  display: block;
  width: 100%;
  background-color: #21708f;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 0;
  text-decoration: none;
  /* margin-top: 10px; */
  border-radius: 8px !important;
  text-align: center;
}
.tabing-product .nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #555759;
  padding: 8px 12px;
  font-family: "Inter", sans-serif;
}
.tabing-product .nav-link.active {
  background-color: #4ba024;
  color: #fff;
  border-radius: 8px;
}
.tabing-product .nav-link.active:hover {
  background-color: #0879d7;
  color: #fff;
  border-radius: 8px;
}
.tabing-product .nav-link:hover {
  background-color: #fff;
  color: #21708f;
  border-radius: 8px;
}
.tc-cards .tc-content .add-to-cart-btn.cart-icon{
  display: flex;
  padding: 7px 7px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 40px;
  text-align: center;
  margin-left: auto;
}
.tc-cards .tc-content .add-to-cart-btn.cart-icon::before{
    font-family: "Bootstrap-Icons";
    content: "\F242";
    font-weight: 400;
    font-size: 16px;
}
/* -------------------------------------------Footer */
.top-footer {
  color: #9ca3af;
  padding: 35px 0;
  font-family: "Inter", sans-serif;
  border-bottom: 1px solid #393939;
}


.social-icons{
 display: flex;
  justify-content: start;
  align-items: center;
  height: 100%;
  margin-top: 18px;
}
.social-icons a {
  text-decoration: none;
  display: flex;
  align-items: center;
  height: 38px;
  width: 38px;
  margin-left: 8px;
  justify-content: center;
  border: 2px solid #b9b9b9;
  border-radius: 8px;
  position: relative;
}
.social-icons a .fa{
  font-size: 18px;
  color: #5a5a5a;
  transition: color 0.3s ease;
}
.social-icons a .fa.facebook::before{
    font-family: "Bootstrap-Icons";
    content: "\F344";
    position: absolute;
    top: 8px;
    left: 8px;
}
.social-icons a .fa.instagram::before{
    font-family: "Bootstrap-Icons";
    content: "\F437";
    position: absolute;
    top: 8px;
    left: 8px;
}
.social-icons a .fa.twitter::before{
    font-family: "Bootstrap-Icons";
    content: "\F5EF";
    position: absolute;
    top: 8px;
    left: 8px;
}
.social-icons a .fa.linkedin::before{
    font-family: "Bootstrap-Icons";
    content: "\F472";
    position: absolute;
    top: 8px;
    left: 8px;
}
.social-icons .fu p{
  font-size: 14px;
  color: #9ca3af;
  margin: 0;
}
.middle-footer {
  color: #9ca3af;
  padding: 40px 20px;
  font-family: "Inter", sans-serif;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 1px 0px, rgba(17, 17, 26, 0.1) 0px 0px 8px;
}
.logo-image {
  margin-bottom: 16px;
}
.logo-image a{
  width: 225px;
  height: auto;
  display: block;
}
.logo-image a img{
  width: 100%;
  height: auto;
  display: block;
}
.middle-footer .footer-widget {
  margin-bottom: 0px;
}
.middle-footer .footer-widget .fw-title {
  font-size: 18px;
  font-weight: 600;
  color: #5a5a5a;
  margin-bottom: 20px;
}
.middle-footer .footer-widget .fw-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.middle-footer .footer-widget .fw-links li {
  margin-bottom: 4px;
}
.middle-footer .footer-widget .fw-links .cuicons{
  /* margin-right: 8px; */
  display: flex;
  align-items: center;
  color: #5a5a5a;
  font-size: 14px;
}
.middle-footer .footer-widget .fw-links .cuicons p{
  margin: 0;
  font-size: 14px;
  color: #9ca3af;
  margin-left: 5px;
}
.middle-footer .footer-widget .fw-links .cuicons.address::before{
  font-family: "Bootstrap-Icons";
  content: "\F3EA";
  font-weight: 400;
  font-size: 26px;
  margin-right: 8px;
  color: #5a5a5a;
}
.middle-footer .footer-widget .fw-links .cuicons.mail::before{
  font-family: "Bootstrap-Icons";
  content: "\F84C";
  font-weight: 400;
  font-size: 26px;
  margin-right: 8px;
  color: #5a5a5a;
}
.middle-footer .footer-widget .fw-links .cuicons.phone::before{
  font-family: "Bootstrap-Icons";
  content: "\F5C1";
  font-weight: 400;
  font-size: 26px;
  margin-right: 8px;
  color: #5a5a5a;
}
.middle-footer .footer-widget .fw-links .cuicons.whatsappcu::before{
  font-family: "Bootstrap-Icons";
  content: "\F618";
  font-weight: 400;
  font-size: 26px;
  margin-right: 8px;
  color: #5a5a5a;
}
.middle-footer .footer-widget .fw-links li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  margin-left: 5px;
}
.middle-footer .footer-widget .fw-links li a:hover {
  color: #4ba024;
}
.newsletter-form {
  display: flex;
  margin-top: 15px;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
  width: 100%;
}
.newsletter-form button {
  padding: 10px 20px;
  border: none;
  background-color: #4ba024;
  color: #fff;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 14px;
}
.footer-widget .fwcominfo{
  margin-top: 20px !important;
  display: block;
}
.footer-widget .fwp, .footer-widget .fwcominfo{
  font-size: 14px;
}
.bottom-footer {
 background-color: #5a5a5a;
  color: #fff;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  font-family: "Inter", sans-serif;
  border-top: 1px solid #5a5a5a;
}
.bottom-footer .copyright-text{
  margin: 0;
}

@media (max-width: 991px){
  .nomobile{
    display: none !important;
  }
}
@media (max-width: 576px){
  .na-col {
  flex: 0 0 auto;
    flex-shrink: 0;
  width: 50% !important;
}
}

/* ----------------------------------About Us- */
.aboutus{
  padding: 0 20px;
}
.aboutus .about-content p{
  margin-bottom: 16px !important;
  text-align: justify;
}
.aboutus .about-content .abut{
  font-size: 18px;
  font-weight: 600;
  color: #0779d7;
}
.about-content ul{
  list-style: disc;
  padding-left: 14px;
  margin-bottom: 10px;
}
.about-content ul li::marker{
  color: #4ba024;
}
.about-content ul li{
  margin-bottom: 8px;
}
.ourmiss, .ourviss{
  background-color: #034c8c;
  padding: 20px;
  display: block;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 60px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.ourmiss .om, .ourviss .ov{
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}
.ourmiss p, .ourviss p{
  font-size: 14px;
  color: #e1e1e1;
  margin-bottom: 0 !important;
  font-family: "Inter", sans-serif;
}
.commsec{
  /* border: 1px solid #e1e1e1; */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
@media (max-width: 410px){
  .ban .ban-card-1,  .ban .ban-card-2{
   height: 126px;
    background-position: right;
    margin-bottom: 12px;
  }
  .ban .ban-card-1 .ban-whole .mainbanhead, .ban .ban-card-2 .ban-whole .mainbanhead {
  font-size: 14px;
    margin-top: 0;
}
.ban .ban-card-1 .ban-whole span, .ban .ban-card-2 .ban-whole span {
  font-size: 12px;
  margin-bottom: 2px;
}
.ban .ban-card-1 .ban-whole .snow, .ban .ban-card-2 .ban-whole .snow {
  padding: 0px 10px 2px;
}
.ban .ban-card-1 .ban-whole, .ban .ban-card-2 .ban-whole {
  padding: 20px 25px;
}
}
@media (min-width:410px) and (max-width: 768px){
  .ban .ban-card-1,  .ban .ban-card-2{
  height: auto;
  margin-bottom: 12px;
}
  .ban .ban-card-1 .ban-whole .mainbanhead, .ban .ban-card-2 .ban-whole .mainbanhead {
  font-size: 22px;
}
}
@media (min-width: 768px) and (max-width: 991px){
  .ban .ban-card-1,  .ban .ban-card-2{
  /* height: auto; */
  margin-bottom: 12px;
}
 .ban .ban-card-1 .ban-whole .mainbanhead, .ban .ban-card-2 .ban-whole .mainbanhead {
  font-size: 25px;
}
}
@media (min-width: 991px) and (max-width: 1200px){
  .ban .ban-card-1,  .ban .ban-card-2{
    height: auto;
    margin-bottom: 12px;
  }
  .ban .ban-card-1 .ban-whole .mainbanhead, .ban .ban-card-2 .ban-whole .mainbanhead {
  font-size: 25px;
}
}
@media (min-width: 1200px) and (max-width: 1400px){
  .ban .ban-card-1,  .ban .ban-card-2{
    height: auto;
    margin-bottom: 12px;
  }
  .ban .ban-card-1 .ban-whole .mainbanhead, .ban .ban-card-2 .ban-whole .mainbanhead {
  font-size: 25px;
}
}

/* ---------------------------------------------FAQ */
.faq{
  padding: 0 20px;
}
.faq-anner{
  width: 100%;
  height: 100%;
  margin-bottom: 70px;
  display: block;
  position: relative;
}
.faq-anner img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  background-color: #edf2f7;
}
.faq-anner .faq-banner-content span{
  position: absolute;
  left: 42px;
  top: 38px;
  font-size: 40px;
  font-weight: 600;
  width: 335px;
  height: 222px;
  line-height: 50px;
  /* letter-spacing: -0.02em; */
  font-family: "Inter", sans-serif;
  color: #000;
}
.faq-anner .faq-banner-content span p{
  font-size: 13px;
  color: #928f8f;
  letter-spacing: 0px;
  line-height: 21px;
  font-weight: 400;
  margin-top: 10px;
}
.faq-anner .faq-banner-content span a{
  background-color: #21708f;
 padding: 8px 22px;
  color: #fff;
  font-size: 14px;
  border-radius: 25px;
  text-decoration: none;
}
.faq-content .custome-acc{
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out,background-color 0.15s ease-in-out,border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out,border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: 12px !important;
  --bs-accordion-inner-border-radius: 12px !important;
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23052c65' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
  margin-bottom: 70px !important;
}
.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 16px !important;
  font-weight: 600 !important;
  font-family: "Inter", sans-serif;
  color: #040404 !important;
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
.accordion-button:focus{
  outline: 0 !important;
}
.accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
  font-weight: 600 !important;
  font-size: 17px !important;
}
.accordion-button:not(.collapsed) {
  color: #fff !important;
  background-color: #0679d7 !important;
  font-weight: 600;
  font-size: 17px !important;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-body p{
    text-align: justify;
    margin-bottom: 16px !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  font-size: 18px !important;
  content: "\F119" !important;
  font-family: 'Bootstrap-Icons' !important;
  background-image: none !important;
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (max-width: 991px){
  .faqcol1{
    order: 2;
  }
  .faqcol2{
    order: 1;
  }
}

.consultant {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  background-color: aliceblue;
  height: 200px;
  margin-top: 70px;
}
.consultant .cfsolution{
  position: relative;
  top: -30px;
  left: 37px;
}
.consultant .cfsolution img{
  width: 150px
}
.consultant .maincontentcon {
  margin-right: 37px;
  margin-left: 10%;
}
.consultant .maincontentcon .mainconhead{
  font-size: 30px;
  font-weight: 600;
  color: #278b2a;
  font-family: "Inter", sans-serif;
}
.consultant .maincontentcon p{
  font-size: 14px;
  color: #5a5a5a;
  margin-bottom: 10px !important;
   font-family: "Inter", sans-serif;
}
.consultant .maincontentcon .cubtn{
  background-color: #21708f;
  padding: 10px 26px;
  color: #fff;
  font-size: 14px;
  border-radius: 25px;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
@media (max-width: 576px){
  .consultant .cfsolution {
  display: none;
}
.consultant .maincontentcon {
  padding: 25px !important;
  margin: 0;
}
.consultant {
  height: auto;
}
}
/* ----------------------------------Privacy Policy- */
.pripoly{
  padding: 0 20px 70px 20px;
}
.pripoly .pripoly-content p{
  margin-bottom: 16px !important;
  text-align: justify;
}
button:focus:not(:focus-visible) {
  outline: 0 !important;
}
.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none !important;
}
/* ----------------------------------return Policy- */
.retpoly{
  padding: 0 20px 70px 20px;
}
.retpoly .retpoly-content p{
  margin-bottom: 16px !important;
  text-align: justify;
}
/* ----------------------------------Terms and conditions- */
.tac{
   padding: 0 20px 70px 20px;
}
.tac .tac-content p{
  margin-bottom: 16px !important;
  text-align: justify;
}
.tac .tac-content .tac-titles{
  font-size: 20px;
  font-weight: 600;
  color: #0779d7;
  margin-bottom: 8px;
}
/* ----------------------------------Thank you- */
.tu-section{
  padding: 0 20px 70px 20px;
}
.tu-section .tu-content p{
  margin-bottom: 16px !important;
  text-align: justify;
}

/* ----------------------------------------bss */
.best-seller-section {
  padding: 0 0 70px;
}
.bss-col {
  flex: 0 0 auto;
    flex-shrink: 0;
  width: 100% !important;
}
.bss-cards {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 0 !important;
  margin: 0;
    margin-bottom: 0px;
  margin-bottom: 20px;
  display: grid;
  height: 100%;
}
.bss-cards .bss-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  max-width: 262px;
  min-height: 200px;
  display: flex;
}
.bss-cards .bss-image img {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 8px;
  max-width: 170px;
  margin: auto;
  display: block;
}
.bss-rating-section {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 5px;
  margin-top: 8px;
}
.bss-rating-section .fa-star, .bss-rating-section .fa-star-half-alt {
  color: #fbbf24;
  font-size: 12px;
}
.bss-rating-section .bss-rating-number {
  font-size: 12px;
  color: #6b7280;
}
.bss-rating-section .bss-review-count {
  font-size: 12px;
  color: #6b7280;
}
.bss-cards .bss-content {
  padding: 5px 0;
  text-align: left;
}
.bss-cards .bss-content h4 {
  margin-bottom: 0;
  line-height: 20px;
  display: flex;
}
.bss-cards .bss-content h4 a {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: #2c2c2c;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.bss-cards .bss-content .price {
  margin-top: 6px;
  margin-bottom: 6px !important;
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #21708f;
  font-family: "Oswald", sans-serif;
  border-bottom: 2px solid #e1e1e1;
  padding-bottom: 5px;
}
.bss-cards .bss-content .price .old-price {
  font-size: 14px;
  font-weight: 500;
  color: #a8a8a8;
  text-decoration: line-through;
  margin-right: 8px;
}
.bss-cards .bss-content .add-to-cart-btn {
  display: block;
  width: 100%;
  background-color: #21708f;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 0;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 8px !important;
  text-align: center;
}
/* ----------------top rated */
.top-rated {
  padding: 60px 20px 20px;
  margin-bottom: 50px;
}
@media (max-width: 991px){
  .top-rated {
  padding: 60px 8px 60px;
}
}
.top-rated .slick-next::before {
  content: '\F285';
  font-family: 'Bootstrap-Icons';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.top-rated .slick-prev::before {
  content: '\F284';
  font-family: 'Bootstrap-Icons';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.top-rated .hor-card{
 display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  border: 1px solid #0779d7;
  border-radius: 8px;
  margin-bottom: 24px;
  max-height: 91%;
  background-color: #fff;
  padding: 1px;
}
.top-rated .hor-card .name-hor{
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
}
.top-rated .hor-card .name-hor a{
  text-decoration: none;
}
.top-rated .hor-card .name-hor a h1, .top-rated .hor-card .name-hor a h2, .top-rated .hor-card .name-hor a h3, .top-rated .hor-card .name-hor a h4, .top-rated .hor-card .name-hor a h5, .top-rated .hor-card .name-hor a h6{
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  padding: 0 8px;
  color: #2c2c2c;
  font-family: "Inter", sans-serif;
}
.top-rated .hor-card .image-col{
  display: flex;
  width: 40%;
  height: auto;
  padding: 0 4px;
}
.top-rated .hor-card .image-col img{
  width: 100%;
  height: auto;
  max-width: 100px;
  max-height: 100px;
  display: block;
  margin: auto;
}
.top-rated .hor-card .content-hor{
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  /* border-left: 1px solid #e1e1e1;
  padding-left: 10px; */
  padding-right: 10px;
}
.top-rated .hor-card .content-hor ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.top-rated .hor-card .content-hor ul li {
  margin-bottom: 4px;
  font-size: 12px;
  display: block;
  justify-content: start;
  align-items: center;
}
.top-rated .hor-card .content-hor ul li span:first-child {
  font-weight: 600;
  color: #000;
  margin-right: 4px;
  font-family: "Inter", sans-serif;
}
.top-rated .hor-card .content-hor ul li span:last-child {
  font-weight: 500;
  color: #5a5a5a;
  font-family: "Inter", sans-serif;
}
.top-rated .hor-card .buttons-section {
  border-top: 1px solid #e1e1e1;
  display: flex;
  justify-content: end;
  position: relative;
  width: 100%;
  padding: 4px;
  gap: 4px;
  background-color: aliceblue;
  border-radius: 0 0 8px 8px;
}

.top-rated .hor-card .buttons-section a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0879d7;
  border: 1px solid #0879d7;
  background-color: #fff;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  border-radius: 8px 0 0 8px;
}
.top-rated .hor-card .buttons-section a:hover{
  background-color: #0879d7;
  color: #fff;
}
.top-rated .hor-card .buttons-section .btn:nth-child(2) {
  /* border-left: 1px solid #e1e1e1; */
}
.top-rated .hor-card .buttons-section .btn:nth-child(3) {
  /* border-left: 1px solid #e1e1e1; */
}
.top-rated .hor-card .buttons-section .btn:nth-child(4) {
  /* border-left: 1px solid #e1e1e1; */
}
.top-rated .hor-card .buttons-section .btn:nth-child(5) {
  /* border-left: 1px solid #e1e1e1; */
  border-radius: 0 8px 8px 0;
}
.top-rated .hor-card .buttons-section .btn {
  padding: 1px 6px;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #4ba024;;
  color: #4ba024;
  display: flex;
  position: relative;
  width: 205px;
  text-align: center;
  justify-content: center;
}
.top-rated .hor-card .buttons-section .explore-btn {
 text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0779d7 !important;
  border: 1px solid #0779d7 !important;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  padding: 1px 6px !important;
  border-radius: 8px 0 0 8px !important;
}

.top-rated .hor-card .buttons-section .btn:hover{
  color: #0879d7;
  border: 1px solid #0879d7;
}
.top-rated .hor-card .buttons-section .card-tooltip {
 position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  padding: 8px 0 8px 0px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-color: aliceblue;
  width: 100%;
  color: #111;
  text-align: center;
  font-family: "Inter", sans-serif;
  border-radius: 8px 8px 0 0;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  margin-left: auto;
  margin-right: auto;
}
/* visible state */
.top-rated .hor-card .buttons-section .card-tooltip.show {
  opacity: 1;
  transform: translateX(0);
}
.top-rated .slick-prev.slick-arrow {
  background: #fff !important;
  color: red !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px !important;
  width: 36px;
  height: 36px;
  font-size: 20px;
  position: absolute;
  top: -25px !important;
  left: 10px !important;
  z-index: 3;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
.top-rated .slick-next.slick-arrow {
  background: #fff !important;
  color: red !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px !important;
  width: 36px;
  height: 36px;
  font-size: 20px;
  position: absolute;
  top: -25px !important;
  right: 10px !important;
  z-index: 3;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
.top-rated .section-title{
  font-size: 20px !important;
  color: #0779d7;
}
.top-rated .slick-prev::before, .top-rated .slick-next::before {
  /* font-family: 'slick';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}
.top-rated .hor-card:hover .buttons-section {
  opacity: 1;
  transform: translateY(0);
}
.top-rated .hor-card .buttons-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ------------------------------------------cat-top-rated */
.cate-top-rated {
  padding: 60px 30px 20px;
  margin-bottom: 50px;
}
@media (max-width: 991px){
  .cate-top-rated {
  padding: 60px 0 60px;
}
}
.cate-top-rated .slick-next::before {
  content: '\F285';
  font-family: 'Bootstrap-Icons';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cate-top-rated .slick-prev::before {
  content: '\F284';
  font-family: 'Bootstrap-Icons';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cate-top-rated .hor-card{
 display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  border: 1px solid #0779d7;
  border-radius: 8px;
  margin-bottom: 24px;
  max-height: 91%;
  background-color: #fff;
  padding: 1px;
}
.cate-top-rated .hor-card .name-hor{
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
}
.cate-top-rated .hor-card .name-hor a{
  text-decoration: none;
}
.cate-top-rated .hor-card .name-hor a h1, .cate-top-rated .hor-card .name-hor a h2, .cate-top-rated .hor-card .name-hor a h3, .cate-top-rated .hor-card .name-hor a h4, .cate-top-rated .hor-card .name-hor a h5, .cate-top-rated .hor-card .name-hor a h6{
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
  padding: 0 8px;
  color: #2c2c2c;
  font-family: "Inter", sans-serif;
}
.cate-top-rated .hor-card .image-col{
  display: flex;
  width: 40%;
  height: auto;
  padding: 0 4px;
}
.cate-top-rated .hor-card .image-col img{
  width: 100%;
  height: auto;
  max-width: 100px;
  max-height: 100px;
  display: block;
  margin: auto;
}
.cate-top-rated .hor-card .content-hor{
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  /* border-left: 1px solid #e1e1e1;
  padding-left: 10px; */
  padding-right: 10px;
}
.cate-top-rated .hor-card .content-hor ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cate-top-rated .hor-card .content-hor ul li {
  margin-bottom: 4px;
  font-size: 12px;
  display: block;
  justify-content: start;
  align-items: center;
}
.cate-top-rated .hor-card .content-hor ul li span:first-child {
  font-weight: 600;
  color: #000;
  margin-right: 4px;
  font-family: "Inter", sans-serif;
}
.cate-top-rated .hor-card .content-hor ul li span:last-child {
  font-weight: 500;
  color: #5a5a5a;
  font-family: "Inter", sans-serif;
}
.cate-top-rated .hor-card .buttons-section {
  border-top: 1px solid #e1e1e1;
  display: flex;
  justify-content: end;
  position: relative;
  width: 100%;
  padding: 4px;
  gap: 4px;
  background-color: aliceblue;
  border-radius: 0 0 8px 8px;
}

.cate-top-rated .hor-card .buttons-section a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0879d7;
  border: 1px solid #0879d7;
  background-color: #fff;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  border-radius: 8px 0 0 8px;
}
.cate-top-rated .hor-card .buttons-section a:hover{
  background-color: #0879d7;
  color: #fff;
}
.cate-top-rated .hor-card .buttons-section .btn:nth-child(2) {
  /* border-left: 1px solid #e1e1e1; */
}
.cate-top-rated .hor-card .buttons-section .btn:nth-child(3) {
  /* border-left: 1px solid #e1e1e1; */
}
.cate-top-rated .hor-card .buttons-section .btn:nth-child(4) {
  /* border-left: 1px solid #e1e1e1; */
}
.cate-top-rated .hor-card .buttons-section .btn:nth-child(5) {
  /* border-left: 1px solid #e1e1e1; */
  border-radius: 0 8px 8px 0;
}
.cate-top-rated .hor-card .buttons-section .btn {
  padding: 1px 6px;
  border-radius: 0;
  background-color: #fff;
  border: 1px solid #4ba024;;
  color: #4ba024;
  display: flex;
  position: relative;
  width: 205px;
  text-align: center;
  justify-content: center;
}
.cate-top-rated .hor-card .buttons-section .explore-btn {
 text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0779d7 !important;
  border: 1px solid #0779d7 !important;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  padding: 1px 6px !important;
  border-radius: 8px 0 0 8px !important;
}

.cate-top-rated .hor-card .buttons-section .btn:hover{
  color: #0879d7;
  border: 1px solid #0879d7;
}
.cate-top-rated .hor-card .buttons-section .card-tooltip {
 position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  padding: 8px 0 8px 0px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-color: aliceblue;
  width: 100%;
  color: #111;
  text-align: center;
  font-family: "Inter", sans-serif;
  border-radius: 8px 8px 0 0;
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px inset;
  margin-left: auto;
  margin-right: auto;
}
/* visible state */
.cate-top-rated .hor-card .buttons-section .card-tooltip.show {
  opacity: 1;
  transform: translateX(0);
}
.cate-top-rated .slick-prev.slick-arrow {
  background: #fff !important;
  color: red !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px !important;
  width: 36px;
  height: 36px;
  font-size: 20px;
  position: absolute;
  top: 222px !important;
  left: 0 !important;
  z-index: 3;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;

}
.cate-top-rated .slick-next.slick-arrow {
   background: #fff !important;
  color: red !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px !important;
  width: 36px;
  height: 36px;
  font-size: 20px;
  position: absolute;
  top: 222px !important;
  right: 0 !important;
  z-index: 3;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;

}
.cate-top-rated .section-title{
  font-size: 20px !important;
  color: #0779d7;
}
.cate-top-rated .slick-prev::before, .cate-top-rated .slick-next::before {
  /* font-family: 'slick';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}
.cate-top-rated .hor-card:hover .buttons-section {
  opacity: 1;
  transform: translateY(0);
}
.cate-top-rated .hor-card .buttons-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* -------------------------------------ALl category */
.allcategory{
  padding: 0 32px 70px;
}
.allcategory-col{
  flex: 0 0 auto;
  width: 100% !important;
}
@media (max-width: 991px){
  .allcategory {
  padding: 0 10px 70px 0;
}
.accolnav{
  padding-right: 8px !important;
  padding-left: 8px !important;
  padding-top: 8px !important;
   border-radius: 0 8px 8px 0 !important;
  border: 1px solid #e1e1e1;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}
.navactab {
  margin-bottom: 8px !important;
 
}
}
@media (max-width: 576px){
  /* .allcategory-col{
  flex: 0 0 auto;
  width: 100% !important;
} */
.ac-card .accard-image img {
  /* width: auto !important; */
}
.ac-card .accard-name a h1, .ac-card .accard-name a h2, .ac-card .accard-name a h3, .ac-card .accard-name a h4, .ac-card .accard-name a h5, .ac-card .accard-name a h6 {
  font-size: 14px !important;
}
.accard-name{
  display: none !important;
}
}
@media (min-width: 576px) and (max-width: 768px){
   /* .allcategory-col{
  flex: 0 0 auto;
  width: 50% !important;
} */
.ac-card .accard-image img {
  /* width: auto !important; */
}
.ac-card .accard-name a h1, .ac-card .accard-name a h2, .ac-card .accard-name a h3, .ac-card .accard-name a h4, .ac-card .accard-name a h5, .ac-card .accard-name a h6 {
  font-size: 14px !important;
}
.accard-name{
  display: none !important;
}
}
@media (min-width: 768px) and (max-width: 991px){
   /* .allcategory-col{
  flex: 0 0 auto;
  width: 33.33% !important;
} */
.ac-card .accard-image img {
  /* width: auto !important; */
}
.ac-card .accard-name a h1, .ac-card .accard-name a h2, .ac-card .accard-name a h3, .ac-card .accard-name a h4, .ac-card .accard-name a h5, .ac-card .accard-name a h6 {
  font-size: 14px !important;
}
}
@media (min-width: 991px) and (max-width: 1200px){
   /* .allcategory-col{
  flex: 0 0 auto;
  width: 25% !important;
} */

}
.accolnav {
overflow-y: scroll !important;
  height: 580px !important;
  display: block !important;
  padding-right: 18px;
  width: 20%;
  background-color: aliceblue;
  padding-left: 18px;
  padding-top: 18px;
  border-radius: 8px;
  overflow-x: hidden;
  scrollbar-width: none;
  margin-right: 24px;
  /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */
}
.navactab {
  display: flex;
  width: 100%;
  margin-bottom: 12px;
  transform: scaleX(0.5s);
}
.navactab:hover{
  margin-left: 4px;
  transition: margin-left 0.3s ease;
}
.navactab.active{
  border:1px solid #0779d7 !important
}
.accolnavcontent{
  width: 80%;
}
.ac-card{
  width: 100%;
  /* height: 100%;
  max-height: 95%; */
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  background-color: #fff;
  /* margin-bottom: 12px;
  display: block; */
  /* padding: 10px; */
}
.ac-card .accard-name{
  padding: 0 10px;
  /* border-bottom: 1px solid #e1e1e1; */
}
.ac-card .accard-name a{
  text-decoration: none;
}
.ac-card .accard-name a h1, .ac-card .accard-name a h2, .ac-card .accard-name a h3, .ac-card .accard-name a h4, .ac-card .accard-name a h5, .ac-card .accard-name a h6{
  font-size: 16px;
  font-weight: 600;
  color: #54585e;
  margin-top: 8px;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.ac-card .accard-image{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}
.ac-card .accard-image img{
  width: 100%;
  max-width: 150px;
  height: 100%;
  max-height: 150px;
  display: block;
  margin: 0 auto;
  padding: 2px;
  object-fit: fill;
}
.accolnavcontent .subnameac{
  margin: 0 12px 24px;
  font-size: 20px;
  font-weight: 600;
  color: #0779d7;
  font-family: "Inter", sans-serif;
  background-color: aliceblue;
  padding: 2px 11px 3px;
  border-radius: 8px;
  text-align: center;
}
@media (max-width: 991px){
  .accolnavcontent .subnameac{
    font-size: 18px;
    text-align: center;
  }
  .titleofpage h1, .titleofpage h2, .titleofpage h3, .titleofpage h4, .titleofpage h5, .titleofpage h6 {
  font-size: 25px;
  text-align: center;
}
.titleofpage {
  padding: 20px 0 !important;
}
}
@media (max-width: 991px){
  .chromlab-card-section .chrom-product-name a h1, .chromlab-card-section .chrom-product-name a h2, .chromlab-card-section .chrom-product-name a h3, .chromlab-card-section .chrom-product-name a h4, .chromlab-card-section .chrom-product-name a h5, .chromlab-card-section .chrom-product-name a h6 {
  font-size: 14px;
}
.chromlab-card-section .specs-list ul li {
  font-size: 10px;
  margin-bottom: 0;
}
.hgi-stroke {
  font-size: 15px;
}
.card-tooltip {
  font-size: 12px;
}
.titleofsection h1, .titleofsection h2, .titleofsection h3, .titleofsection h4, .titleofsection h5, .titleofsection h6 {
  margin-bottom: 10px;
}
.chrom-slider {
  max-width: 120px;
}
.tabing-product .chrom-cards .chrom-product-name a h1, .tabing-product .chrom-cards .chrom-product-name a h2, .tabing-product .chrom-cards .chrom-product-name a h3, .tabing-product .chrom-cards .chrom-product-name a h4, .tabing-product .chrom-cards .chrom-product-name a h5, .tabing-product .chrom-cards .chrom-product-name a h6 {
  font-size: 14px;
}
.tabing-product .chrom-cards .specs-list ul li {
  font-size: 10px;
  display: block;
}
.top-rated .hor-card .name-hor a h1, .top-rated .hor-card .name-hor a h2, .top-rated .hor-card .name-hor a h3, .top-rated .hor-card .name-hor a h4, .top-rated .hor-card .name-hor a h5, .top-rated .hor-card .name-hor a h6 {
  font-size: 14px;
}
.top-rated .hor-card .content-hor ul li {
  font-size: 10px;
  display: block;
  margin-bottom: 0;
}
}

.loading-container{
  display: flex;
}
.loading-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.05) !important; /* Matches card shadows */
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.loading-shimmer {
  height: 40px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  margin: 12px;
}

.skeleton-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

.skeleton-text {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin: 4px 0;
}

.skeleton-title { width: 80%; height: 22px; margin: 16px auto 8px auto; }
.skeleton-price { width: 60%; height: 24px; margin: 12px 0; }
.skeleton-spec { width: 70%; height: 14px; }
.skeleton-button {
  height: 44px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  margin: 8px 4px 0 0;
  display: inline-block;
}

.skeleton-explore { width: 100px; }
.skeleton-cart { width: 56px; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Responsive shadows like your cards */
@media (min-width: 992px) {
  .loading-card {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08) !important;
  }
}
/* ------------------------------CAtegory list */
.pbc{
 padding: 40px 20px 70px !important;
}
.category-side-list {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 12px 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.category-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  padding: 4px 6px 10px;
  border-bottom: 1px solid #e5e7eb;
}

.cat-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin: 2px 0;
  font-size: 14px;
  color: #111827;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
}

.cat-item:hover {
  background: #e5e7eb;
}

.cat-item.has-children .arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
  background: #278b2a;
  color: #fff;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  border-radius: 50%;
}


/* Sub category list */
.sub-cat-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 4px;
  max-height: 0;                     /* collapsed */
  overflow: hidden;                  /* hide content while collapsed */
  transition: max-height 0.3s ease;  /* smooth open/close [web:61][web:65] */
  border-bottom: 1px solid #e1e1e1;
}
.cat-item.open + .sub-cat-list {
  max-height: 500px;                 /* big enough for your content */
}
.sub-cat-list li a {
  display: block;
  padding: 5px 11px 8px;
  font-size: 13px;
  color: #0779d7;
  text-decoration: none;
  background-color: #fff;
  margin-bottom: 8px;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
}

.sub-cat-list li a:hover {
  color: #111827;
}

/* Open state */
.cat-item.open + .sub-cat-list {
  display: block;
}

.cat-item.open .arrow {
  transform: rotate(360deg);
}
.pbc .pbc-cards {
  border: 1px solid #e1e1e1;
  display: grid;
  height: 100%;
  max-height: 95%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.pbc .pbc-cards{
  border: 1px solid #e1e1e1;
  display: grid;
  height: 100%;
  max-height: 95%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.pbc .pbc-cards:hover {
  box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}
.pbc .pbc-img-section {
  position: relative;
  width: 100%;
  display: flex;
  margin: auto;
  flex-direction: column;
}
.pbc .pbc-img-section img {
  width: 100%;
  height: 100%;
  max-width: 150px;
  max-height: 150px;
  display: block;
  margin: auto;
}
.pbc .pbc-product-name{
  padding: 0 15px;
}
.pbc .pbc-product-name a{
  text-decoration: none;
}
.pbc .pbc-product-name a h1, .pbc .pbc-product-name a h2, .pbc .pbc-product-name a h3, .pbc .pbc-product-name a h4, .pbc .pbc-product-name a h5, .pbc .pbc-product-name a h6{
  font-size: 17px;
  color: #0879d7;
  font-weight: 600;
  text-align: left;
  font-family: "Inter", sans-serif;
}

.pbc .pbc-cards .specs-list{
  margin-bottom: 5px;
  padding: 0 15px;
}
.pbc .pbc-cards .specs-list ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.pbc .pbc-cards .specs-list ul li{
  margin-bottom: 4px;
  font-size: 13px;
  display: flex;
  justify-content: start;
  align-items: center;
}
.pbc .pbc-cards .specs-list ul li span:first-child{
  font-weight: 600;
  color: #000;
  margin-right: 4px;
  font-family: "Inter", sans-serif;
}
.pbc .pbc-cards .specs-list ul li span:last-child{
  font-weight: 500;
  color: #5a5a5a;
  font-family: "Inter", sans-serif;
}
.pbc .pbc-cards .buttons-section{
  border-top: 1px solid #e1e1e1;
  display: flex;
  justify-content: end;
  position: relative;
}
.pbc-cards .buttons-section .btn{
  padding: 4px 10px !important;
  border-radius: 0;
  background-color: #4ba024  !important;
  color: #fff;
  display: flex;
  position: relative;
}
.pbc .pbc-cards .buttons-section .btn:nth-child(2){
  border-left: 1px solid #e1e1e1;
}
.pbc .pbc-cards .buttons-section .btn:nth-child(3){
  border-left: 1px solid #e1e1e1;
}
.pbc .pbc-cards .buttons-section .btn:nth-child(4){
  border-left: 1px solid #e1e1e1;
  border-radius: 0 0 8px 0;
}
.pbc .pbc-cards .buttons-section .btn.cart::before{
  /* content: '\F179';
  font-family: 'Bootstrap-Icons'; */
}
.pbc .pbc-cards .buttons-section .btn.view::before{
  /* content: '\F341';
  font-family: 'Bootstrap-Icons'; */
}
.pbc .pbc-cards .buttons-section .btn.catalog::before{
  /* content: '\F30A';
  font-family: 'Bootstrap-Icons'; */
}
.pbc .pbc-cards .hgi-stroke{
  font-size: 20px;
}
.pbc .pbc-cards .card-tooltip {
  position: absolute;
  left: 0;
  right: 0;
  top: -36px;
  padding: 8px 0 8px 0px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  background-color: aliceblue;
  width: 100%;
  color: #111;
  text-align: center;
  font-family: "Inter", sans-serif;
  border-radius: 8px 8px 0 0;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  margin-left: auto;
  margin-right: auto;
  z-index: 9;
}

/* visible state */
.pbc .pbc-cards .card-tooltip.show {
  opacity: 1;
  transform: translateX(0);
}
.pbc .pbc-cards .buttons-section .btn {
  padding: 10px 0;
  border: none;
  background: #fff;
  cursor: pointer;
}
.pbc .pbc-cards .buttons-section a{
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background-color: #0879d7;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  border-radius: 0 0 0 8px;
}
.titleofpage p, .titleofpage p, .titleofpage p, .titleofpage p, .titleofpage p, .titleofpage p {
 font-size: 16px;
  margin-top: 4px;
  text-align: justify;
}
.filter-section {
    max-width: 100%;
    background: #fff;
   border: 1px solid #e5e7eb;
    padding: 15px;
    border-radius: 8px;
    /* box-shadow: 0 0 8px rgba(0,0,0,0.1); */
    margin-bottom: 40px;
  }
  .filter-section .fb{
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
  }
  .filter-section h3 {
    margin-bottom: 10px;
    font-size: 17px;
    text-align: center;
    color: #f07f24;
  }
  .filter-section h4 {
    margin-bottom: 10px;
    font-size: 18px;
    text-align: left;
    color: #32478b;
  }
  .filter-section label {
    margin: 6px 0;
    cursor: pointer;
    font-size: 12px;
    display: flex;
  justify-content: space-between;
  }
  .filter-section input[type="checkbox"] {
    margin-right: 8px;
    cursor: pointer;
  }
  @media (max-width: 991px){
    .filter-section, .category-side-list {
      display: none;
    }
    
    .offfcancasfilter {
      display: block !important;
    }
  }
  #clearFilter {
    margin-top: 15px;
    padding: 6px 12px;
    cursor: pointer;
    margin: 18px auto 0;
    display: block;
    background-color: #32478b;
    color: #fff;
  }
  #spec-options {
  display: grid;
}
/* -----------------------------------------Description page */
.description-section{
  padding: 40px 20px 70px;
}
.pd-image-section{
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}
.pd-image-section .pdmainimg{
  max-width: 400px !important;
  width: 100% !important;
  height: auto !important;
  border-radius: 8px;
}
.pd-image-section {
  position: sticky;
  top: 28px;
}
.descarousel{
  max-width: 600px;
  margin: 0 auto 20px;
}
.carousel {
  /* max-width: 600px;
  margin: 0 auto 20px; */
}

.carousel-item img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
  display: block;
}

/* Thumbnail Slider */
.thumbnail-slider {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 5px;
  position: relative;
  cursor: grab;
}

.thumbnail-slider:active {
  cursor: grabbing;
}

.thumb-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.thumb-track::-webkit-scrollbar {
  display: none;
}

.thumb {
  width: 100px !important;
  height: 100px !important;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 2px solid transparent;
  padding: 8px;
}

.thumb.active-thumb {
  opacity: 1;
  border-color: #097ad7;
  transform: scale(1.05); 
  margin-left: 4px;
}

/* Drag to scroll */
.thumb-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.description-buttons{
  display: flex;
  margin-bottom: 20px;
}
.description-buttons .get-quote{
  padding: 0px 16px 2px;
  color: #278b2a;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 18px;
}
.description-buttons .get-quote .gq{
  margin-right: 4px;
}
.description-buttons .get-quote:hover{
  background-color: #fff;
  color: #278b2a;
}
.description-buttons .downcat{
  padding: 0px 16px 2px;
  background-color: #0779d7;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 8px;
  text-decoration: none;
}
.description-buttons .downcat:hover{
  background-color: #278b2a;
  color: #fff;
}
.description-buttons .dcat{
  margin-right: 4px;
}
.addtocart{
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.product-qty {
  display: flex;
  align-items: center;
}

.qty-label {
  font-size: 13px;
  color: #4b5563;
  margin-right: 8px;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  overflow: hidden;
  background: #f9fafb;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #111827;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}

.qty-btn:hover {
  background: #e5e7eb;
}

.qty-input {
  width: 50px;
  border: none;
  text-align: center;
  font-size: 14px;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}

/* Remove number arrows */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.add-to-cart{
  padding: 0px 16px 2px !important;
  background-color: #f36b6b !important;
  color: #fff !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
  display: flex !important;
  align-items: center !important;
  margin-right: 18px;
}


.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  color: #fbbf24;
  margin-bottom: 20px;
}

.star {
  cursor: pointer;
  transition: color 0.2s ease, transform 0.1s ease;
  position: relative;
}

.star:hover,
.star.filled {
  color: #f59e0b !important;
  transform: scale(1.1);
}

.star:hover ~ .star,
.star.filled ~ .star {
  color: #d1d5db;
}

.rating-text {
  font-size: 14px;
  color: #6b7280;
  margin-left: 8px;
  font-weight: 500;
}
.somecontent .specification-section{
  margin-bottom: 20px;
}
.somecontent .specification-section span{
  font-size: 20px;
  color: #278b2a;
  /* border-bottom: 1px solid #e1e1e1; */
  padding-bottom: 10px;
  width: 100%;
  display: block;
  font-weight: 600;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  font-family: "Inter", sans-serif;
}
.pdtable{
  margin-top: 10px;
}
.pdtable, .pdtr, .pdtd{
  border: 1px solid #e1e1e1;
}
.pdtd{
  padding: 4px 8px;
}
.somecontent .featured-section span{
  font-size: 20px;
  color: #278b2a;
  /* border-bottom: 1px solid #e1e1e1; */
  padding-bottom: 10px;
  width: 100%;
  display: block;
  font-weight: 600;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  font-family: "Inter", sans-serif;
}
.somecontent .featured-section .featured{
  padding: 0;
  list-style: none;
  margin-top: 10px;
}
.somecontent .featured-section .featured li{
  font-size: 16px;
  margin-bottom: 8px;
}
.somecontent .application span{
  font-size: 20px;
  color: #278b2a;
  /* border-bottom: 1px solid #e1e1e1; */
  padding-bottom: 10px;
  width: 100%;
  display: block;
  font-weight: 600;
  box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
  font-family: "Inter", sans-serif;
}
.somecontent .application .app{
  margin-top: 10px;
  line-height: 25px;
}

/* -------------------------------------All Product */
.allproduct{
  padding: 0 20px 70px;
}
.allproduct-col{
  flex: 0 0 auto;
  width: 25% !important;
  margin-bottom: 10px;
}
@media (max-width: 576px){
  .allproduct-col{
  flex: 0 0 auto;
  width: 100% !important;
}
.ap-card .accard-image img {
  width: auto !important;
}
.ap-card .accard-name a h1, .ap-card .accard-name a h2, .ap-card .accard-name a h3, .ap-card .accard-name a h4, .ap-card .accard-name a h5, .ap-card .accard-name a h6 {
  font-size: 14px !important;
}
}
@media (min-width: 576px) and (max-width: 768px){
   .allproduct-col{
  flex: 0 0 auto;
  width: 50% !important;
}
.ap-card .accard-image img {
  width: auto !important;
}
.ap-card .accard-name a h1, .ap-card .accard-name a h2, .ap-card .accard-name a h3, .ap-card .accard-name a h4, .ap-card .accard-name a h5, .ap-card .accard-name a h6 {
  font-size: 14px !important;
}
}
@media (min-width: 768px) and (max-width: 991px){
   .allproduct-col{
  flex: 0 0 auto;
  width: 33.33% !important;
}
.ap-card .accard-image img {
  width: auto !important;
}
.ap-card .accard-name a h1, .ap-card .accard-name a h2, .ap-card .accard-name a h3, .ap-card .accard-name a h4, .ap-card .accard-name a h5, .ap-card .accard-name a h6 {
  font-size: 14px !important;
}
}
@media (min-width: 991px) and (max-width: 1200px){
   .allproduct-col{
  flex: 0 0 auto;
  width: 25% !important;
}
}
.ap-card{
  width: 100%;
  height: 100%;
  max-height: 95%;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
   overflow: hidden;
  transition: all 0.3s ease;
   position: relative;
  /* padding: 10px; */
}
.ap-card .accard-name{
  padding: 0 10px;
  /* border-bottom: 1px solid #e1e1e1; */
}
.ap-card .accard-name a{
  text-decoration: none;
}
.ap-card .accard-name a h1, .ap-card .accard-name a h2, .ap-card .accard-name a h3, .ap-card .accard-name a h4, .ap-card .accard-name a h5, .ap-card .accard-name a h6{
  font-size: 16px;
  font-weight: 600;
  color: #54585e;
  margin-top: 8px;
  text-align: center;
  font-family: "Inter", sans-serif;
}
.ap-card .accard-image{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 0 auto;
}
.ap-card .accard-image img{
  width: 150px;
  height: 150px;
  display: block;
  margin: 0 auto;
}
.toggle-list-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(59, 130, 246, 0.9);
  color: white;
  border: none;
  padding: 0px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.toggle-list-btn:hover {
  background: rgba(59, 130, 246, 1);
  transform: translateY(-1px);
}

.arrow {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.toggle-list-btn.active .arrow {
  transform: rotate(180deg);
}

/* Hidden overlay by default */
.product-list-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 5;
}

.product-list-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-list {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  /* border-radius: 12px;
  padding: 20px; */
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  overflow-y: auto;
  /* box-shadow: 0 20px 40px rgba(0,0,0,0.3); */
}

.product-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 400px;
  overflow-y: auto;
}

.product-list li {
  margin-bottom: 8px;
}
.product-list li:first-child{
  margin-bottom: 0;
}
.product-list a {
  color: #1e293b;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: block;
  padding: 4px 12px;
  /* border-radius: 6px; */
  transition: background 0.2s ease;
}

.product-list a:hover {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

/* Scrollbar styling */
.product-list::-webkit-scrollbar {
  width: 6px;
}

.product-list::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.1);
  border-radius: 3px;
}

.product-list::-webkit-scrollbar-thumb {
  background: rgba(59, 130, 246, 0.5);
  border-radius: 3px;
}

.product-list::-webkit-scrollbar-thumb:hover {
  background: rgba(59, 130, 246, 0.7);
}

/* Image and title positioning */
.accard-image,
.accard-name {
  position: relative;
  z-index: 1;
}
/* ---------------------------compare */
.compare{
  padding: 0 20px 70px;
}
.com-tr{
  display: inline-flex;
  width: inherit;
}
.compre-table .com-table .com-info{
  width: 100%;
}
.compre-table .com-table .com-info img{
  width: 150px;
}
.compre-table .com-table .com-name a{
  text-decoration: none;
}
.compre-table .com-table .com-name a h1, .compre-table .com-table .com-name a h2,
.compre-table .com-table .com-name a h3, .compre-table .com-table .com-name a h4,
.compre-table .com-table .com-name a h5, .compre-table .com-table .com-name a h6{
  font-size: 18px;
  font-weight: 600;
  color: #087bda;
}
.compre-table .com-table .con-cent{
  text-align: center;
  display: block;
  width: inherit;
}
.com-th {
  padding: 8px 10px;
  text-align: left;
  background-color: #f3f4f6;
  font-weight: 600;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  width: inherit;
  font-size: 14px;
}
.com-td {
  padding: 8px 10px;
  border: 1px solid #d1d5db;
  width: inherit;
  font-size: 14px;
}
tbody .com-tr:nth-child(even) {
  background-color: #f9fafb;
}
tbody .com-tr:hover {
  background-color: #e5f2ff;
}
.hgi.hgi-stroke.hgi-cancel-square {
  color: red;
}
.compre-table {
  overflow: auto;
}
@media (max-width: 991px){
  .compre-table .com-table .com-info img {
  width: 100px;
}
.com-th{
  max-width: 140px;
}
}
/* ------------------------------------------contactus */
.contactus-section{
  padding: 0 20px 70px;
}
.form-section {
  /* border: 1px solid #e1e1e1; */
  /* border-radius: 8px; */
  padding: 19px 30px 19px;
  background-color: aliceblue;
  /* margin-bottom: 25px; */
}
.form-section .cufl{
  font-size: 13px;
  color: #0779d7;
  font-weight: 600;
  margin-bottom: 5px;
}
.form-section .submitcu{
  background-color: #278b2a;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-left: auto;
  display: block;
}
.form-section .submitcu:hover{
   background-color: #0779d7;
  color: #fff;
}
.map-section {
  margin-bottom: 22px;
}
.contact-section{
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px 20px 10px;
  margin-bottom: 20px;
  background-color: #F5F5F5;
  height: 100%;
}
@media (max-width: 768px){
  .contact-section{
    margin-bottom: 20px;
  }
}
.accbtn1{
  border-radius: 8px 8px 0 0 !important;
}
.acform{
  border-radius: 0 0 8px 8px !important;
}
.contact-section .esfyn {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.contact-section .cphere{
  font-size: 14px;
  text-align: justify;
  margin-bottom: 10px;
  font-weight: 500;
}
.contact-section .address-col{
  /* border: 1px solid #e1e1e1; */
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 20px;
  display: block;
  text-align: center;
}
.contact-section .address-col .icon-cu{
  margin-bottom: 10px;
  margin-top: 10px;
  display: block;
}
.hgi.hgi-stroke.hgi-location-04 {
  color: #6c6f72;
  font-size: 40px;
}
.contact-section .address-col .cont-link{
  font-size: 14px;
  font-family: "Inter", sans-serif;
  margin-bottom: 10px !important;
  display: block;
}
.contact-section .phone-col{
  /* border: 1px solid #e1e1e1; */
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.contact-section .phone-col .icon-cu{
  margin-bottom: 10px;
  margin-top: 10px;
  display: block;
}
.hgi.hgi-stroke.hgi-call-ringing-04 {
  color: #6c6f72;
  font-size: 40px;
}
.contact-section .phone-col .cont-link{
  font-size: 14px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #0b0b0b;
  margin-bottom: 10px !important;
  display: block;
}
.contact-section .wh-col{
  /* border: 1px solid #e1e1e1; */
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.contact-section .wh-col .icon-cu{
  margin-bottom: 10px;
  margin-top: 10px;
  display: block;
}
.hgi.hgi-stroke.hgi-whatsapp {
  color: #6c6f72;
  font-size: 40px;
}
.contact-section .wh-col .cont-link{
  font-size: 14px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #0b0b0b;
  margin-bottom: 10px !important;
  display: block;
}

.contact-section .email-col{
  /* border: 1px solid #e1e1e1; */
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 10px;
  display: block;
  text-align: center;
}
.contact-section .email-col .icon-cu{
  margin-bottom: 10px;
  margin-top: 10px;
  display: block;
}
.hgi.hgi-stroke.hgi-mail-01 {
  color: #6c6f72;
  font-size: 40px;
}
.contact-section .email-col .cont-link{
  font-size: 14px;
  font-family: "Inter", sans-serif;
  text-decoration: none;
  color: #0b0b0b;
  margin-bottom: 10px !important;
  display: block;
}
.form-select option{
  font-size: 14px;
}
/* ----------------------login */
.login-section{
   padding: 0 20px 70px;
}
.login-section .login-form{
  display: block;
  /* margin: 50px auto;
  width: 400px; */
  height: auto;
  border: 1px solid #e1e1e1;
  padding: 36px 30px;
  border-radius: 8px;
}
.login-wrapper {
  max-width: 380px;
  margin: 40px auto 0;
  padding: 0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 14px;
  text-align: center;
}

.login-form .form-label {
  font-size: 13px;
  margin-bottom: 4px;
}

.login-form .form-control {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.login-form .form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}
.password-group {
  position: relative;
}

.toggle-passlo {
  position: absolute;
  right: 8px;
  top: 70%;
  transform: translateY(-50%);
  border: none;
  background: none;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
}
.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 4px 0 14px;
}
.remember-me {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
}

.remember-me input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #9ca3af;
  margin-right: 6px;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}
.remember-me input:checked ~ .checkmark {
  background-color: #3b82f6;
  border-color: #2563eb;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}
.remember-me input:checked ~ .checkmark::after {
  display: block;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}
.btn-login {
  width: 100%;
  padding: 9px 12px;
  margin-top: 20px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}
.login-msg {
  margin-top: 10px;
  font-size: 13px;
  color: #16a34a;
}
/* ----------------------------------------Register */
.register-section {
  padding: 40px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.register-wrapper {
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.register-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 30px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.register-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
  text-align: center;
}

.register-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.register-form .form-label {
  font-size: 13px;
  margin-bottom: 4px;
}

.register-form .form-control {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.register-form .form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}

/* Password show/hide */
.password-group {
  position: relative;
}

.toggle-passre {
  position: absolute;
  right: 8px;
  top: 35px;
  border: none;
  background: none;
  font-size: 12px;
  color: #6b7280;
  cursor: pointer;
}

.hint-text {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: #9ca3af;
}

/* Remember + forgot */
.register-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 12px;
}

/* Custom checkbox */
.remember-me {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
}

.remember-me input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #9ca3af;
  margin-right: 6px;
  box-sizing: border-box;
  position: relative;
}

.remember-me input:checked ~ .checkmark {
  background-color: #3b82f6;
  border-color: #2563eb;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.remember-me input:checked ~ .checkmark::after {
  display: block;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Terms text */
.terms-text {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 10px !important;
}

.terms-text a {
  color: #2563eb;
  text-decoration: none;
}

/* Button */
.btn-register {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #3d9dec, #0778d6);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px #6cb2eb;
}

.register-msg {
  margin-top: 10px;
  font-size: 13px;
}

.login-switch {
  margin-top: 10px;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

.login-switch a {
  color: #2563eb;
  text-decoration: none;
}
/* --------------------------Forgotpassword */
.forgotpassword-section {
  padding: 40px 0 60px;
  /* background: #f9fafb; */
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.forgotpassword-wrapper {
  max-width: 420px;
  margin: 0 auto;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.forgotpassword-form {
  /* background: #ffffff; */
  border-radius: 12px;
   padding: 24px 30px 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.forgotpassword-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: none;
  text-align: center;
}

.forgotpassword-subtitle {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 14px;
}

.forgotpassword-form .form-label {
  font-size: 13px;
  margin-bottom: 4px;
}

.forgotpassword-form .form-control {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.forgotpassword-form .form-control:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}

/* Row: remember + login */
.forgotpassword-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0 14px;
}

/* Reuse remember-me + checkmark styles from login/register */
.remember-me {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
}

.remember-me input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #9ca3af;
  margin-right: 6px;
  box-sizing: border-box;
  position: relative;
}

.remember-me input:checked ~ .checkmark {
  background-color: #3b82f6;
  border-color: #2563eb;
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.remember-me input:checked ~ .checkmark::after {
  display: block;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.forgot-link {
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

/* Button */
.btn-forgotpassword {
  width: 100%;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-forgotpassword:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.35);
}

.forgotpassword-msg {
  margin-top: 10px;
  font-size: 13px;
}
/* ----------------------------user profile */
.profile-section {
  padding: 32px 16px;
}

.profile-container {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

/* Sidebar card */
.profile-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 18px 18px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
  text-align: center;
  border: 1px solid #e1e1e1;
}

.avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
}

.avatar-wrapper img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #3b82f6;
}

.avatar-upload-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(10%, 10%);
  background: #ffffff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  border: 1px solid #cbd5f5;
  cursor: pointer;
}

#avatarInput {
  display: none;
}

.profile-name {
  font-size: 18px;
  font-weight: 600;
  margin: 6px 0 2px;
}

.profile-email {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}

.profile-role {
  font-size: 12px;
  color: #4b5563;
  margin-bottom: 12px;
}

.profile-stats {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.profile-stats li {
  flex: 1;
  background: #edf6ff;
  border-radius: 8px;
  padding: 6px 4px;
  font-size: 11px;
}

.profile-stats span {
  display: block;
  color: #6b7280;
  margin-bottom: 2px;
}

.profile-stats strong {
  font-size: 14px;
}

/* Main area */
.profile-main {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 20px 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid #e1e1e1;
}

/* Tabs */
.profile-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 16px;
}

.tab-btn {
  border: none;
  background: #f0f8ff;
  padding: 8px 12px;
  font-size: 13px;
  color: #343434;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
}

.tab-btn.active {
  color: #fff;
  font-weight: 600;
  background: #0779d7;
}

/* Panels */
.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  font-size: 17px;
  margin: 4px 0 12px;
}

/* Form layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 12px;
  margin-bottom: 4px;
  color: #4b5563;
}

.form-group input,
.form-group textarea {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}

/* Notification switches */
.notify-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #111827;
  gap: 10px;
  position: relative;
}

.switch-row input {
  opacity: 0;
  position: absolute;
  right: 0;
}

/* Toggle switch */
.switch {
  width: 40px;
  height: 22px;
  background: #d1d5db;
  border-radius: 999px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.switch::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #ffffff;
  top: 2px;
  left: 3px;
  transition: transform 0.18s ease, background 0.18s ease;
}

.switch-row input:checked + .switch {
  background: #22c55e;
}

.switch-row input:checked + .switch::after {
  transform: translateX(15px);
}

/* Buttons */
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 4px;
}

.btn-primary,
.btn-secondary {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 13px;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #ffffff;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.save-message {
  margin-top: 10px;
  font-size: 13px;
  color: #16a34a;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-container {
    grid-template-columns: minmax(0, 1fr);
  }
  .profile-main {
    order: 2;
  }
  .profile-card {
    order: 1;
  }
  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ----------------------------------------Error */
.error-section{
  padding-top: 10px;
  padding-bottom: 70px;
}
.error-section .background-img{
  width: 100%;
  margin: 20px auto;
  position: relative;
}
.error-section .background-img img{
  width: 100%;
  height: auto;
  max-width: 840px;
  display: block;
  margin: auto;
}
.error-section .background-img .bth{
  width: 100%;
  max-width: 200px;
  background-color: #288c2b;
  color: #fff;
  border-radius: 4px;
  display: block;
  padding: 3px 12px 6px;
  text-align: center;
  text-decoration: none;
  margin: 0 auto;
}
/* ----------------------------------------Single catalog */
.singlecategory-section {
  padding: 40px 20px 70px;
}
.catalogpage-section{
  width: 100%;
  height: 100%;
  display: block;
  margin-bottom: 70px;
}
.catalogpage-section .catalgpage1{
  width: 100%;
  height: auto;
  display: block;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  padding: 30px;
}
.catalogpage-section .catalgpage1 .logosection{
  width: 100%;
  height: auto;
  display: block;
}
.catalogpage-section .catalgpage1 .logosection img{
  width: 250px;
  height: auto;
  display: flex;
  margin-right: auto;
}
@media (max-width: 576px){
  .catalogpage-section .catalgpage1 .logosection img {
  width: 100%;
  max-width: 130px;
}
}
.catalogpage-section .catalgpage1 .scimage-section{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 100px 0 4px;
}
.catalogpage-section .catalgpage1 .scimage-section img{
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 576px){
  .catalogpage-section .catalgpage1 .scimage-section img{
    width: 100%;
    max-width: 220px;
    height: auto;
  }
}
.catalogpage-section .catalgpage1 .scname-section{
  display: block;
  text-align: center;
}
.catalogpage-section .catalgpage1 .scname-section .scpprice{
  font-size: 15px;
  margin-top: 10px;
  color:#6c6c6c;
  font-weight: 500;
}
.catalogpage-section .catalgpage1 .scname-section .scpprice span{
  text-decoration: line-through;
  margin-right: 5px;
}
.catalogpage-section .catalgpage1 .scname-section a{
  text-decoration: none;
}
.catalogpage-section .catalgpage1 .scname-section a h2{
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 0;
  color: #0779d7;
  font-family: "Inter", sans-serif;
}
@media (max-width: 576px){
  .catalogpage-section .catalgpage1 .scname-section a h2 {
  font-size: 18px;
}
.catalogpage-section .catalgpage1 .scname-section .scpprice {
  font-size: 11px;
}
.catalogpage-section .catalgpage1 .scname-section .cate a {
  font-size: 11px !important;
}
}
@media (min-width: 576px) and (max-width: 768px){
  .catalogpage-section .catalgpage1 .scname-section a h2 {
  font-size: 28px;
}
}
.catalogpage-section .catalgpage1 .scname-section .cate a{
  text-decoration: none;
  font-size: 15px;
  background-color: #e3fbd8;
  border-radius: 8px;
  padding: 4px 12px;
  color: #278b2a;
  margin-top: 10px;
  display: inline-block;
  font-weight: 600;
}
.catalogpage-section .catalgpage1 .mailadd-section{
  margin-top: auto;
  display: flex;
  height: 156px;
  align-items: end;
}
.catalogpage-section .catalgpage1 .mailadd-section .addlist{
  list-style: none; 
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  justify-content: end;
}
.catalogpage-section .catalgpage1 .mailadd-section .addlist li a{
  text-decoration: none;
  font-size: 14px;
  color: #676666;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
@media (max-width: 576px){
  .catalogpage-section .catalgpage1 .mailadd-section .addlist li a{
    font-size: 11px;
  }
}
.catalogpage-section .catalgpage1 .mailadd-section .addlist li a{
  margin: 0 0 0 5px;
  padding:0 0 0 5px;

}
.catalogpage-section .catalogpage2{
  width: 100%;
  height: auto;
  display: block;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  padding: 30px;
}
@media (max-width: 576px){
  .catalogpage-section .catalogpage2 {
  padding: 15px;
}
}
.catalogpage-section .pagetitle{
  width: 100%;
  font-size: 20px;
  font-weight: 600;
  color: #278b2a;
  text-align: start;
  display: block;
  font-family: "Urbanist", sans-serif;
  margin-bottom: 5px;
}
.catalogpage-section .catalogpage2 p{
  text-align: justify;
  font-size: 14px;
}
.catalogpage-section .catalogpage2 .specs-table, 
.catalogpage-section .catalogpage2 .specs-table .sctr, 
.catalogpage-section .catalogpage2 .specs-table .sctd{
  border: 1px solid #e1e1e1;
  padding: 8px;
}
.catalogpage-section .catalogpage2 .specs-table{
  width: 100%;
}
.catalogpage-section .catalogpage2 .specification{

}
.catalogpage-section .catalogpage2 .specs-table .sctd{
  color: #727272;
  font-size: 14px;
}
@media (max-width:991px){
  .catalogpage-section .catalogpage2 .specs-table .sctd {
  font-size: 13px;
}
}
.catalogpage-section .catalogpage2 .specs-table .bcdelf{
 background-color: r#f5f5f5;
}
.catalogpage-section .catalgpage3{
  width: 100%;
  height: auto;
  display: block;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  padding: 30px;
}
@media (max-width: 576px){
  .catalogpage-section .catalgpage3 {
  padding: 15px;
}
}
.catalogpage-section .catalgpage3 .multiangle .viewangles, .viewtr, .viewth, .viewtd{
  border: 1px solid #e1e1e1;
  text-align: center;
  font-size: 14px;
}
.catalogpage-section .catalgpage3 .multiangle .viewangles{
  overflow-x: scroll;
  display: block;
}
.viewth{
  font-weight: 500;
}
.viewtd, .viewth{
  padding: 10px;
}
.viewtd{
  color: #727272;
}
.viewtd .imagevie{
  width: 150px;
  height: 150px;
}
.viewtd .imagevie img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
  display: block;
}
.catalogpage-section .catalgpage4{
  width: 100%;
  height: auto;
  display: block;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
  padding: 30px;
}
@media (max-width:576px){
  .catalogpage-section .catalgpage4 {
  padding: 15px;
}
}
.catalogpage-section .catalgpage4 .feature-sec ul{
  padding: 0 0 0 12px;
  margin: 0;
  list-style: disc;
  font-size: 14px;
}
.catalogpage-section .catalgpage4 .feature-sec ul li{
  margin-bottom: 5px;
}
.catalogpage-section .catalgpage4 .feature-sec ul li::marker{
  color: #0779d7;
}
.applicationsec p{
  text-align: justify;
  font-size: 14px;
}
.footer-page{
  margin-top: 70px;
  display: block;
}
.footer-page img{
  width: 160px;
  height: auto;
  margin: 0 auto;
  display: block;
}
.footer-page .footadd{
  margin: 3px auto 0 auto !important;
  display: block;
  text-align: center;
  font-size: 12px;
  color: #aca7a7
}
.footer-page .links{
  text-align: center;
  display: block;
}
.footer-page .links a{
  margin: 0 5px;
  display: inline-flex;
  font-size: 12px;
  text-decoration: none;
  color: #aca7a7;
}
.title-single-catalog{
 display: block;
  text-align: center;
  margin-bottom: 30px;
 
}
@media (max-width: 991px){
  .title-single-catalog{
    margin-bottom: 20px;
  }
}
.title-single-catalog h1{
  font-size: 30px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0px 0px 22px 0px;
  font-family: "Inter", sans-serif;
}
.title-single-catalog .scdownload{
  background-color: #278b2a;
  border: 1px solid #278b2a;
  color: #fff;
 padding: 3px 10px 6px;
  border-radius: 4px;
}
.related-catalog{
  position: sticky;
  top: 20px;
}
.related-catalog span{
 font-size: 20px;
 color: #202020;
text-align: center;
display: block;
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px solid #e1e1e1;
font-weight: 600;

}
.related-catalog ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-catalog ul li {
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.related-catalog ul li a{
  text-decoration: none;
  color: #3a3a3a;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hgi.hgi-stroke.hgi-pdf-01 {
  color: red;
}
/* ------------------------------------cart */
.cart-section{
  padding: 40px 20px 70px;
}
.order-summery {
  /* background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
  height: 100%;
  border-right: 1px solid #e1e1e1;
  padding-right: 20px;
}
@media (max-width: 992px){
  .order-summery{
    height: auto;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 36px;
    margin-bottom: 36px;  
  }
  
}
.order-summery h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}
.summary-details p {
  font-size: 20px;
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  color: #444;
}
.summary-details p strong {
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #f07f24;
  font-weight: 500;
}
.btn-checkout {
  display: inline-block;
  padding: 12px 24px;
  background-color: #31468a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 20px;
  width: 100%;
  text-align: center;
  transition: background-color 0.3s;
  text-decoration: none;
}
.btn-checkout:hover,
.btn-checkout:focus {
  background-color: #0056b3;
  outline: none;
}
.shipping-options {
  margin: 15px 0 5px 0;
}
.shipping-label {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin: 24px 0;
  cursor: pointer;
  position: relative;
}

.shipping-label input[type="radio"] {
  margin-right: 8px;
  accent-color: #007bff;
}

.shipping-rate {
  margin-left: auto;
  font-weight: 600;
  color: #484848;
}

/* Stylized checkmark: appears when radio selected */
.shipping-label .checkmark {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-radius: 50%;
  box-shadow: 0 0 0 1.5px #007bff inset;
  background: #fff;
  vertical-align: middle;
  position: relative;
}
.shipping-label input[type="radio"]:checked ~ .checkmark::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: #007bff;
  border-radius: 50%;
  position: absolute;
  left: 5px;
  top: 5px;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
 border: 1px solid #0779d7;
  border-radius: 4px;
  overflow: hidden;
  background: #fafafa;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: #fff;
  color: #0779d7;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
  outline: none;
}

.qty-btn:active, .qty-btn:focus {
  background: #ddd;
}

.qty-input {
  width: 48px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 1rem;
  background: transparent;
  appearance: none;
  outline: none;
}
.product-image-cell {
  position: relative;
}

.remove-btn {
  /* position: absolute;
  top: 5px;
  left: -11px; */
  margin: auto;
  z-index: 2;
  background: #ff5656;
  padding: 0px 0px 2px;
  color: #fff;
  border: none;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s;
}
.remove-btn:hover,
.remove-btn:focus {
  background: #c0392b;
  outline: none;
}
.cart-table {
  background-color: #fff;
  /* padding: 20px; */
  border-radius: 8px;
  /* box-shadow: 0 4px 8px rgba(0,0,0,0.1); */
}
.cart-table h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 700;
  color: #333;
}
.order-table {
  width: 100%;
  
}
@media (max-width: 576px){
  .order-table{
    overflow-x: scroll;
    display: inline-block;
  }
}
.order-table th{
   padding: 12px 10px;
}
.order-table td {
  padding: 8px 8px;
  text-align: center;
  vertical-align: middle;
  color: #3d3e3f;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
}
.order-table .line-total{
  color: #e97070;
}
.order-table td a{
  text-decoration: none;
  color: #384d8f;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 17px;
}
.order-table th {
  background-color: #fafafa;
  font-weight: 500;
  text-align: center;
}
.order-table td, .order-table tr, .order-table th{
  border: 1px solid #e1e1e1;
}

/* Product Image Cell */
.product-image-cell {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.product-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 6px;
  padding: 4px;
  background-color: #fff;
}
@media (max-width: 768px){
  .product-image {
  width: 100px;
  height: 50px;
  max-width: 50px;
}
.order-table td a {
  font-size: 13px !important;
}
.qty-btn {
  width: 20px !important;
  /* height: auto !important; */
  font-size: 13px !important;
  padding: 2px 7px !important;
}
.qty-input {
  width: 30px !important;
  height: 20px !important;
}
.order-table td {
  font-size: 13px !important;
}
.remove-btn {
  position: absolute;
  top: 24px !important;
  left: 1px !important;
  z-index: 2;
  width: 15px !important;
  height: 15px !important;
}
}
/* Quantity Input */
.qty-input {
  width: 60px;
  padding: 6px 8px;
  font-size: 1rem;
  border: 0;
  border-radius: 4px;
  text-align: center;
  outline-offset: 2px;
  background: #fff;
}
.qty-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}
.btn-checkout-cart {
  margin-top: 20px;
  width: 100%;
  padding: 8px 0;
  background-color: #32478b;
  color: white;
  border: none;
  border-radius: 7px;
  font-size: 1.15rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  text-decoration: none;
  display: flex;
  text-align: center;
  justify-content: center;
}

/* -----------------------------Checkout */
.checkout-section {
  padding: 40px 20px 70px;
}
@media (max-width: 768px){
  .checkout-section {
  padding: 0 !important;
}
.product-item .p_name {
  font-size: 13px !important;
}
.product-item .p_price {
  font-size: 13px !important;
}
.summary-items .ship, .summary-items .textt {
  font-size: 13px !important;
}
.order-summary, .order-shipping-address {
  padding: 8px 12px !important;
}
.summary-items select {
  font-size: 13px !important;
  width: 200px !important;
}
.payment-methods label {
  font-size: 13px !important;
}
.btn-checkout {
  padding: 6px 3px !important;
  width: 100% !important;
  font-size: 13px !important;
}
#shippingForm label {
  font-size: 13px !important; 
}
#shippingForm input, #shippingForm textarea {
  width: 100%;
  padding: 7px;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 5px;
  box-sizing: border-box;
}
.btn-submit {
  padding: 6px 3px !important;
  width: 100% !important;
  font-size: 13px !important;
}
}
.order-summary, .order-shipping-address {
  background: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
}

.order-summary h3,
.order-shipping-address h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
  font-weight: 500;
}

.summary-items p {
  margin: 12px 0;
  font-size: 1.1rem;
  color: #444;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary-items .ship, .summary-items .textt{
  font-size: 14px;
}
.summary-items .tot strong{
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 500 !important;
  color: red;
  width: 100%;
}
.summary-items .ship option{
  font-size: 14px;
}
.summary-items hr {
  margin: 20px 0;
}

.summary-items select {
  padding: 6px 8px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.btn-checkout-cart {
  margin-top: 20px;
  width: 100%;
  padding: 8px 0;
  background-color: #32478b;
  color: white;
  border: none;
  border-radius: 7px;
  font-size: 1.15rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s;
  text-decoration: none;
  display: flex;
  text-align: center;
  justify-content: center;

}

.btn-checkout-cart:hover {
  background-color: #0056b3;
}

#shippingForm label {
  display: block;
  margin: 15px 0 1px 0;
  font-weight: 500;
  font-size: 14px;
}

#shippingForm input, #shippingForm textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 1rem;
  border: 1px solid #bbb;
  border-radius: 5px;
  box-sizing: border-box;
}

#shippingForm textarea {
  resize: vertical;
  height: 80px;
  font-size: 13px;
}

.product-list {
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.product-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 1rem;
  color: #333;
}

.product-item .p_name {
  flex-basis: 70%;
  text-align: left;
  font-size: 14px;
}
.product-item .p_price {
  flex-basis: 30%;
  text-align: right;
  font-size: 14px;
}
.payment-methods label {
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  margin-bottom: 8px;
}

.payment-methods input[type="radio"] {
  margin-right: 8px;
}

.btn-checkout {
  margin-top: 20px;
 padding: 6px 0;
  width: 200px;
  background: #278b2a;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 20px 0 0 auto;
  display: block;
}

.btn-checkout:hover {
  background-color: #0056b3;
}

.pyme{
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
  font-weight: 500;
}
.checksa{
  margin-top: 24px;
  display: flex;
  margin-bottom: 24px;   
  align-items: center !important;
}
.checksa .ipsave{
  margin-top: 0;
  margin-right: 10px;
  display: flex;
  width: 15px !important;
}
.checksa .savelabel{
  margin-top: 0 !important;
}
.btn-submit{
  margin-top: 20px;
  padding: 6px 0;
  width: 200px;
  background: #0779d7;
  font-size: 17px;
  border: none;
  border-radius: 6px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 20px 0 0 auto;
  display: block;
}
/* -------------------------------------Order details */
.orderdetails-section{
   /* padding: 40px 20px 20px 20px; */
   margin-top: 40px;
}
.orderdetails-section {
  max-width: 850px;
  margin: 40px auto 60px;
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  color: #333;
}
.od-img {
  text-align: center;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;

}
.orderdetails-section h2,
.orderdetails-section h3 {
 margin-bottom: 15px;
  font-weight: 600;
  font-size: 21px;
  margin-top: 15px;
  color: #32468b;
}

.order-info p,
.shipping-address p,
.order-totals p {
  font-size: 14px;
  margin: 6px 0;
}
.shipping-address p{
  font-weight: 600;
}
.order-info p{
  font-size: 14px;
  margin: 6px 0;
  display: flex;
  justify-content: space-between;
}
.order-products {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.order-products th, .order-products td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.order-products td{
  font-weight: 500;
}

.order-products th {
  background-color: #f5f5f5;
  font-weight: 600;
}

.order-totals {
  margin-top: 30px;
  font-size: 1.1rem;
}

.order-totals p {
  display: flex;
  justify-content: space-between;
  /* max-width: 300px;
  margin-left: auto; */
  font-weight: 500;
}
.order-totals p:last-child{
  color: #e81f1f;
  font-size: 20px;
}

@media(max-width: 600px) {
  .orderdetails-section {
    padding: 20px;
  }
  .order-products th, .order-products td {
    padding: 8px;
  }
  .order-totals p {
    max-width: 100%;
  }
}
.orderdetails-section .header-od{
  display: block;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  border-bottom: 2px solid #e1e1e1; 
  padding-bottom: 10px;
  /* flex-direction: column; */
  /* padding-top: 10px; */
  /* border-radius: 8px; */
}
@media (max-width: 450px){
  .orderdetails-section .header-od{
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }
}
.orderdetails-section .header-od .od-img img{
  width: 200px;
  height: auto;
  object-fit: contain;
}
.orderdetails-section .header-od .od-con-list .odul{
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.orderdetails-section .header-od .od-con-list .odul .odli p{
   margin-bottom: 5px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}
.orderdetails-section .header-od .od-con-list .odul .odli a{
  text-decoration: none;
  /* margin-bottom: 5px; */
  color: #666;
  font-size: 14px;
  font-weight: 600;
}
.orderdetails-section .header-od .od-con-list .odul .odli{
  display: flex;
  align-items: center;
  padding: 2px 0px;
  /* border: 1px solid #e1e1e1; */
  border-radius: 8px;
  /* margin-right: 16px; */
}
.orderdetails-section .header-od .od-con-list .odul .add::before{
  content: "\F3EA";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 18px;
}
.orderdetails-section .header-od .od-con-list .odul .ml::before{
  content: "\F84C";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 18px;
}
.orderdetails-section .header-od .od-con-list .odul .wa::before{
  content: "\F618";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 18px;
}
.orderdetails-section .header-od .od-con-list .odul .ph::before{
  content: "\F414";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 18px;
}
.od-con-list {
  /* margin-top: 10px;
  width: 100%; */
}
.shipping-address{
  margin-bottom: 26px;
}
.order-totals{
  margin-top: 28px !important;
}
.od-img-list{
  margin-top: 4px;
}
.od-img-list ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

.od-img-list ul li p{
  color: #666;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.od-img-list ul li p::before{
  content: "\F3EA";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #097bd9;
  font-size: 22px;
}
.od-img-list ul li a{
  color: #666;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.od-img-list ul li a::before{
  content: "\F84C";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 14px;
}

.orderdetails-section .footer-od{
  display: block;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  border-top: 2px solid #e1e1e1;
  padding-top: 20px;
 padding-left: 0;
 padding-right: 0;
}
@media (max-width: 450px){
  .orderdetails-section .footer-od{
    flex-direction: column;
    display: flex;
    align-items: flex-start;
  }
}
.orderdetails-section .footer-od .od-img img{
  width: 200px;
  height: auto;
  object-fit: contain;
}
.orderdetails-section .footer-od .od-con-list .odul{
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: end;
}
.orderdetails-section .footer-od .od-con-list .odul .odli p{
   margin-bottom: 5px;
  color: #666;
  font-size: 14px;
  font-weight: 600;
}
.orderdetails-section .footer-od .od-con-list .odul .odli a{
  text-decoration: none;
  /* margin-bottom: 5px; */
  color: #666;
  font-size: 14px;
  font-weight: 600;
}
.orderdetails-section .footer-od .od-con-list .odul .odli{
  display: flex;
  align-items: center;
  padding: 2px 0px;
  /* border: 1px solid #e1e1e1; */
  border-radius: 8px;
 margin-left: 16px;
}
.orderdetails-section .footer-od .od-con-list .odul .add::before{
  content: "\F3EA";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 18px;
}
.orderdetails-section .footer-od .od-con-list .odul .ml::before{
  content: "\F84C";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 18px;
}
.orderdetails-section .footer-od .od-con-list .odul .wa::before{
  content: "\F618";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 18px;
}
.orderdetails-section .footer-od .od-con-list .odul .ph::before{
  content: "\F414";
  font-family: "Bootstrap-Icons";
  font-weight: 500;
  margin-right: 5px;
  color: #32478b;
  font-size: 18px;
}
.od-image img{
  width: 100%;
  height: 100%;
  max-width: 50px;
  max-height: 50px;
}
/* --------------------------OTP */
.otp-section {
  padding: 40px 20px 60px 20px;
}
.otp-form-section {
  width: 100% !important;
  max-width: 500px !important;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
    margin-top: 0px;
  gap: 20px;
}
.otp-form-section .otp-form {
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 35px;
  width: 100%;
  display: block;
}
.otp-form .eyotp {
  font-size: 20px;
  font-weight: 600;
  color: #4878bc;
  margin: 2px auto 18px;
  width: 100%;
  display: block;
  text-align: center;
}
.otp-form .fc-sec {
  margin-bottom: 16px;
  position: relative;
}
.otp-form .cuformfl {
  font-size: 13px;
  font-weight: 400;
  padding-bottom: 0px;
  margin-bottom: 2px;
  color: #666464;
  display: flex;
  justify-content: space-between;
}
.resend-timer {
  font-size: 0.85rem;
  color: #dc3545;
  min-width: 45px;
  font-weight: 600;
  user-select: none;
}
.fcip::placeholder {
  font-size: 13px !important;
  color: #9e9898 !important;
}
.otp-form .cuform {
  background-color: #0779d7;
  color: #fff;
  border: 0;
  border-radius: 4px;
  padding: 8px 10px;
  display: inline-block;
  margin-left: auto;
  text-decoration: none;
  text-align: center;
  width: 100%;
  margin-top: 12px;
  border-radius: 4px;
}
.otp-message {
  margin-top: 15px;
  padding-top: 10px;
  font-weight: 600;
  min-height: 24px;
  font-size: 14px;
  color: #28a745;
  display: none;
  text-align: center;
}
.resend-otp-container {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}
.resend-button {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0 5px;
  text-decoration: underline;
  transition: color 0.3s;
}
/* ----------------------------------search page */
.search-section{
  padding: 40px 20px;
}
.col-search-col{
  flex: 0 0 auto !important;
  width: 20% !important;
  margin-bottom: 22px;
}
@media (max-width: 380px){
  .col-search-col{
    width: 100% !important;
  }
}
@media (min-width: 380px) and (max-width: 576px){  
  .col-search-col{
    width: 50% !important;
  }
}
@media (min-width: 576px) and (max-width: 768px){
  .col-search-col{
    width: 33.33% !important;
  }
}
@media (min-width: 768px) and (max-width: 991px){
  .col-search-col{
    width: 25% !important;
  }
}
.search-section .search-card{
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
  height: 100%;
  display: grid;
}
.search-section .search-card .search-image{
  /* background-color: aliceblue; */
  width: 100%;
  height: 100%;
}
.search-section .search-card .search-image img{
  width: 100%;
  max-width: 180px;
  height: 100%;
  max-height: 180px;
  display: block;
  margin: auto;
}
.search-section .search-card .search-pn{
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 14px;
  margin-bottom: 0px;
}
.search-section .search-card .search-pn h1, .search-section .search-card .search-pn h2, .search-section .search-card .search-pn h3, .search-section .search-card .search-pn h4, .search-section .search-card .search-pn h5, .search-section .search-card .search-pn h6{
  margin-bottom: 0 !important;
}
.search-section .search-card .search-pn h1 a, .search-section .search-card .search-pn h2 a, .search-section .search-card .search-pn h3 a, .search-section .search-card .search-pn h4 a, .search-section .search-card .search-pn h5 a, .search-section .search-card .search-pn h6 a{
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  color: #0779d7;
  display: block;
  text-align: center;
}
.search-button-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1px;
}
.search-button-section .explore{ 
  background-color: #0779d7;
  color: #fff;
  width: 50%;
  border-radius: 8px 0 0 8px;
  margin-top: 8px;
  padding: 6px 7px 6px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.search-button-section .search-catalog{
  background-color: #278b2a;
  color: #fff;
  width: 50%;
  border-radius: 0 8px 8px 0;
  margin-top: 8px;
  padding: 6px 7px 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
/* ---------------------------------------Site Map */

/* Basic tree style */
.tree-diagram ul {
  list-style: none;
  padding-left: 20px;
}

.tree-diagram li {
  margin: 6px 0;
  position: relative;
}

/* Hide nested ul within toggle li by default */
.tree-diagram li.toggle > ul {
  display: none;
}
/* Hide nested ul within toggle li by default */
.tree-diagram li.sub-toggle > ul {
  display: none;
}
/* Styles for clickable toggle header */
.toggle-header {
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: #7e57c2;
  display: inline-block;
  padding-left: 18px;
  position: relative;
  transition: color 0.3s ease;
}
.toggle-sub-header {
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  color: #7e57c2;
  display: inline-block;
  padding-left: 18px;
  position: relative;
  transition: color 0.3s ease;
}

.toggle-header::before {
  content: '\F22C';
  font-family: 'Bootstrap-Icons';
  position: absolute;
  right: 12px;
  top: 7px;
  font-weight: bold;
  color: #fff;
  transition: transform 0.3s ease;
}
.toggle-sub-header::before {
  content: '\F22C';
  font-family: 'Bootstrap-Icons';
  position: absolute;
  right: 14px;
  top: 7px;
  font-weight: bold;
  color: #278b2a;
  transition: transform 0.3s ease;
}
.toggle.open > .toggle-header {
  background-color: #fff;
  color: #0779d7;
  border: 1px solid #0779d7;
}
.sub-toggle.open > .toggle-sub-header {
  background-color: #278b2a;
  color: #fff;
}
/* Expanded toggle style */
.tree-diagram li.toggle.open > ul {
  display: block;
  position: relative;
  bottom: 14px;
}
.tree-diagram li.sub-toggle.open > ul {
  display: block;
  position: relative;
  bottom: 14px;
}
.tree-diagram li.toggle.open > .toggle-header::before {
  content: '\F22C';
  font-family: 'Bootstrap-Icons';
  transform: rotate(180deg);
  color: #0779d7;
}
.tree-diagram li.sub-toggle.open > .toggle-sub-header::before {
  content: '\F22C';
  font-family: 'Bootstrap-Icons';
  transform: rotate(180deg);
  color: #fff;
}
.tree-link {
  color: #2683d6;
  text-decoration: none;
  font-weight: 500;
}

.tree-link:hover {
  text-decoration: underline;
}

.tree-root,
.tree-root ul {
  list-style: none;
  margin: 0;
  padding-left: 20px;
  position: relative;
}

/* Vertical connector line */
.tree-root ul::before {
  content: '';
  position: absolute;
  top: 0;
  left: 19px;
  width: 2px;
  height: 100%;
  border-left: 1px solid #d1d0d1;
  z-index: 0;
}

/* Connector for each list item */
.tree-root li {
  position: relative;
  margin: 14px 0;
  padding-left: 20px;
}

/* Horizontal connector line */
.tree-root li::before {
  content: '';
  position: absolute;
  top: 15px; /* vertically center */
  left: 0;
  width: 20px;
  height: 2px;
  border-top: 1px solid #d1d0d1;
  z-index: 1;
  margin-top: 17px;
}

/* Box around each content node */
.tree-link, 
.toggle-header {
  display: inline-block;
 background: #4776ba;
  border: 1.5px solid #4776ba;
  border-radius: 6px;
  padding: 6px 35px 6px 14px;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  position: relative; /* above connector lines */
  z-index: 2;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.tree-link:hover, .toggle-header:hover {
  /* background-color: #f0e7ff; */
  cursor: pointer;
}
.tree-link {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #d1d0d1;
  border-radius: 6px;
  padding: 6px 14px 6px 14px;
  font-weight: 400;
  color: #3b3b3b;
  position: relative; /* above connector lines */
  z-index: 2;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}
.toggle-sub-header {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #278b2a;
  border-radius: 6px;
  padding: 6px 35px 6px 14px;
  font-weight: 400;
  font-size: 14px;
  color: #278b2a;
  position: relative; /* above connector lines */
  z-index: 2;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}
.tree-link{
	background-color: #0779d7;
  border: 0 !important;
  color: #fff;
  font-size: 14px;
}
.tree-link:hover, .toggle-sub-header:hover {
  /* background-color: #f0e7ff; */
  cursor: pointer;
}
.tree-link:hover{
  text-decoration: none !important;
}
.subcatesite{
  background-color: #fff;
  color: #278b2a;
  border: 1px solid #278b2a !important;
}
/* -----------------------TRack My Order form section */
.tmo-form-section{
  width: 100% !important;
  max-width: 500px !important;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  gap: 20px;
}
.tmo-form-section .tmo-form{
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 35px;
  width: 100%;
  display: block;
}
.tmo-form span{
  font-size: 20px;
  font-weight: 600;
  color: #0779d7;
  margin: 2px auto 18px;
  width: 100%;
  display: block;
  text-align: center;
}
.tmo-form .cuformfl{
  font-size: 13px;
  font-weight: 400;
  padding-bottom: 0px;
  margin-bottom: 2px;
  color: #666464;
}

.tmo-form .fc-sec{
  margin-bottom: 16px;
  position: relative;
}
.tmo-form .cuform{
  background-color: #0779d7;
  color: #fff;
  margin-bottom: 18px;
  padding: 8px 10px;
  display: inline-block;
  margin-left: auto;
  text-decoration: none;
  text-align: center;
  width: 100%;
  margin-top: 12px;
  border-radius: 8px
}

.fcip::placeholder {
  font-size: 13px !important;
  color: #9e9898 !important;
}
.tmo-section {
  padding: 10px 20px 45px 20px;
}
.rem{
  font-size: 13px;
}
@media (max-width: 768px){
  .tmo-form-section {
  width: 100% !important;
  max-width: 800px !important;
  display: flex;
  margin: 0 auto;
  gap: 20px;
  flex-direction: column;
}
.tmo-form-section .login-form {
  width: 100%;
}
.tmo-section {
  padding: 0;
  margin-bottom: 50px;
}
}
.tmo-message {
  margin-top: 15px;
  padding: 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #333;
  background-color: #e9ecef;
  display: none;
}

.tmo-message.show {
  display: block;
}
.hold-ban{
  padding: 0 20px 60px;
}
.hold-ban .ban-pro{
  position: relative;
}
.hold-ban .ban-pro {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 991px){
  .hold-ban .ban-pro{
    margin-bottom: 20px;
  }
  .hold-ban {
  padding: 15px 0px 50px !important;
}
}
.hold-ban .ban-pro h1, .hold-ban .ban-pro h2,
.hold-ban .ban-pro h3, .hold-ban .ban-pro h4,
.hold-ban .ban-pro h5, .hold-ban .ban-pro h6{
  margin-bottom: 0;
}
.hold-ban .ban-pro h1 a, .hold-ban .ban-pro h2 a,
.hold-ban .ban-pro h3 a, .hold-ban .ban-pro h4 a,
.hold-ban .ban-pro h5 a, .hold-ban .ban-pro h6 a{
  text-decoration: none;
  font-size: 16px;
  color: #0779d7;
  padding: 16px;
  font-weight: 600;
  display: block;
  background-color: #c2dcf26e;
  text-align: center;
  position: absolute;
  width: 100%;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
  border-radius: 8px 8px 0 0;
  font-family: "Inter", sans-serif;
}
.hold-ban .ban-pro img{
  width: 100%;
  border-radius: 8px;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
  height: 100%;
}
.hold-ban .chrom-cards{
  border: 1px solid #e1e1e1;
  display: grid !important;
  height: 100%;
  max-height: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}
@media (max-width: 576px){
  .hold-ban .ban-pro img {
  height: auto;
  margin-bottom: 10px;
}
}
.hold-ban .chrom-cards .vert-btn {
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hold-ban .vert-btn {
  /* border-top: 1px solid #e1e1e1; */
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: absolute;
  height: fit-content;
  margin: auto 0 0;
  gap: 4px;
  padding: 4px;
  background-color: aliceblue;
  border-radius: 8px 0 0 8px;
  right: 0;
  top: 25%;
  z-index: 9;
}
.hold-ban .chrom-cards:hover .vert-btn {
  opacity: 1;
  transform: translateX(0);
}
.hold-ban .vert-btn .btn {
  padding: 1px 6px;
  border-radius: 0;
  background-color: #fff;
  color: #4f5153;
  display: flex;
  position: relative;
  align-items: center;
}
.hold-ban .chrom-cards:hover {
  /* box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
  border-radius: 8px; */
}
.hold-ban .chrom-product-name {
  padding: 0 15px;
}
.hold-ban .chrom-product-name a {
  text-decoration: none;
}
.hold-ban .chrom-product-name a h1, .hold-ban .chrom-product-name a h2, .hold-ban .chrom-product-name a h3, .hold-ban .chrom-product-name a h4, .hold-ban .chrom-product-name a h5, .hold-ban .chrom-product-name a h6 {
  font-size: 17px;
  color: #2c2c2c;
  font-weight: 600;
  text-align: left;
  font-family: "Inter", sans-serif;
  margin-bottom: 0;
  margin-top: 16px;
  text-align: center;
}
@media (max-width: 576px){
  .hold-ban .chrom-product-name a h1, .hold-ban .chrom-product-name a h2, .hold-ban .chrom-product-name a h3, .hold-ban .chrom-product-name a h4, .hold-ban .chrom-product-name a h5, .hold-ban .chrom-product-name a h6 {
  font-size: 13px;
}
.hold-ban .specs-list ul li {
  margin-bottom: 0 !important;
  font-size: 11px !important;
  display: block !important;
}
.hold-ban .buttons-section a {
  font-size: 10px !important;
}
}
.hold-ban .specs-list {
  margin-bottom: 5px;
  padding: 0 10px;
}
.hold-ban .specs-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hold-ban .specs-list ul li {
  margin-bottom: 4px;
  font-size: 13px;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 991px){
  .hold-ban .specs-list ul li {
  margin-bottom: 0px;
  font-size: 10px;
}
.hold-ban .chrom-product-name a h1, .hold-ban .chrom-product-name a h2, .hold-ban .chrom-product-name a h3, .hold-ban .chrom-product-name a h4, .hold-ban .chrom-product-name a h5, .hold-ban .chrom-product-name a h6 {
  font-size: 14px;
}
}
.hold-ban .specs-list ul li span:first-child {
  font-weight: 600;
  color: #000;
  margin-right: 4px;
  font-family: "Inter", sans-serif;
}
.hold-ban .specs-list ul li span:last-child {
  font-weight: 500;
  color: #5a5a5a;
  font-family: "Inter", sans-serif;
}
.hold-ban .chrom-cards {
  overflow: hidden;
}

.hold-ban .chrom-cards .buttons-section {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hold-ban .chrom-cards:hover .buttons-section {
  opacity: 1;
  transform: translateY(0);
}

.hold-ban .chrom-cards:hover .buttons-section .btn {
  /* transform: scale(1.02); */
  transition: transform 0.2s ease;
}
.hold-ban .buttons-section {
  border-top: 1px solid #e1e1e1;
  display: flex;
  justify-content: end;
  position: relative;
  height: fit-content;
  margin: auto 0 0;
  gap: 4px;
  padding: 4px;
  background-color: aliceblue;
  border-radius: 0 0 8px 8px;
}
.hold-ban .buttons-section .explore-btn {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #0879d7 !important;
  border: 1px solid #0879d7 !important;
  background-color: #fff !important;
  display: flex;
  width: 100%;
  align-content: center;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  border-radius: 8px 0 0 8px !important;
}
.hold-ban .buttons-section a:hover{
  /* background-color: #4ba024;
  border: 1px solid #4ba024;
  color: #fff; */
  color:#4ba024;
  border: 1px solid #4ba024;
}
.hold-ban .buttons-section .btn:nth-child(2) {
  /* border-left: 1px solid #e1e1e1; */
  border-radius: 0 8px 8px 0;
}
.hold-ban .buttons-section .btn:nth-child(3) {
  /* border-left: 1px solid #e1e1e1; */
}
.hold-ban .buttons-section .btn:nth-child(4) {
  /* border-left: 1px solid #e1e1e1; */
  border-radius: 0 8px 8px 0;
}
.hold-ban .buttons-section .btn {
  padding: 4px 10px;
  border-radius: 0;
  background-color: #4ba024;
  color: #fff;
  display: flex;
  position: relative;
}
.hold-ban .buttons-section .btn {
  padding: 10px 0;
  border: none;
  background: #fff;
  cursor: pointer;
}
.hold-ban .buttons-section .btn {
  padding: 1px 6px;
  border-radius: 0;
  background-color: #fff;
  color: #4ba024;
  display: flex;
  position: relative;
  align-items: center;
  border: 1px solid #4ba024;
}
.hold-ban .buttons-section .btn:hover{
  background-color: #fff;
  color: #0779d7;
}
.hold-carousel.slick-initialized.slick-slider {
  height: 100%;
  display: flex;
}
/* Hide arrows by default */
.hold-carousel .slick-prev,
.hold-carousel .slick-next {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

/* Show arrows when hovering carousel area */
.hold-carousel:hover .slick-prev,
.hold-carousel:hover .slick-next {
  opacity: 1;
  visibility: visible;
}
.slick-track {
  height: 100%;
}
.hold-ban .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.3);
  color: #333;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hold-ban .carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hold-ban .prev {
  left: -10px;
}

.hold-ban .next {
  right: -10px;
}
.hold-ban .slick-prev.slick-arrow {
  background: #fff !important;
  color: red !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px !important;
  width: 36px;
  height: 36px;
  font-size: 20px;
  position: absolute;
  top: 50% !important;
  left: 0px !important;
  z-index: 3;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
.hold-ban .slick-next.slick-arrow {
  background: #fff !important;
  color: red !important;
  border: 1px solid #e1e1e1 !important;
  border-radius: 8px !important;
  width: 36px;
  height: 36px;
  font-size: 20px;
  position: absolute;
  top: 50% !important;
  right: 0px !important;
  z-index: 3;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}
.hold-ban .slick-next::before {
  content: '\F285';
  font-family: 'Bootstrap-Icons';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hold-ban .slick-prev::before {
  content: '\F284';
  font-family: 'Bootstrap-Icons';
  font-size: 20px;
  line-height: 37px !important;
  opacity: .75;
  color: #288c2b !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.tab-carousel .cust-col-tab {
  padding: 0 10px;
}

.tab-carousel .chrom-cards {
  height: 100%;
}
.cust-col-tab{
  flex: 0 0 auto;
  width: 20% !important;
}
@media (max-width: 340px){
  .cust-col-tab{
    flex: 0 0 auto;
    width: 100% !important;
     padding: 4px !important;
  }
}
@media (min-width: 340px) and (max-width: 576px){
  .cust-col-tab{
  flex: 0 0 auto;
  width: 50% !important;
  padding: 4px !important;
}
.tabing-product {
  padding: 30px 8px 60px;
}
}
@media (min-width: 576px) and (max-width: 768px){
  .cust-col-tab{
  flex: 0 0 auto;
  width: 33.33% !important;
  padding: 4px !important;
}
.tabing-product {
  padding: 30px 8px 60px;
}
}
@media (min-width: 768px) and (max-width: 991px){
  .cust-col-tab{
  flex: 0 0 auto;
  width: 33.33% !important;
  padding: 4px !important;
}
.tabing-product {
  padding: 30px 8px 60px;
}
}
@media (min-width: 991px) and (max-width: 1300px){
  .cust-col-tab{
  flex: 0 0 auto;
  width: 25% !important;
  padding: 4px !important;
}
}



.cart-off {
  --bs-offcanvas-width: 400px;
}
@media (max-width: 300px){
  .cart-off {
    width: 219px !important;
}
}
@media (min-width: 300px) and (max-width: 576px){
  .cart-off {
    width: 250px !important;
}
.cart-item .cart-details .cart-name {
  font-size: 14px !important;
}
.cart-price {
  font-size: 14px !important;
}
.cart-qty-btn {
  /* width: 20px !important;
  height: 20px !important; */
}
.subtotal {
  font-size: 15px !important;
}
}
#cartItemsContainer {
  /* max-height: 400px; */
  overflow-y: auto;
}

.price-section{
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.price-section span:first-child{
  color: #ff2727;
  font-size: 15px;
  font-weight: 600;
  margin-right: 8px;
  font-family: "Inter", sans-serif;
}
.price-section span:last-child{
  color: #999;
  font-size: 18px;
  font-weight: 500;
  text-decoration: line-through;
  font-family: "Inter", sans-serif;
}
#cartItemsContainer .cart-item{
  position: relative;
}
#cartItemsContainer .cart-item .remove-item{
  display: flex;
  position: absolute;
  right: 0;
  top: 20px;
}
#cartItemsContainer .cart-item .cart-img{
  width: 100%;
  max-width: 50px;
}
.cart-item .cart-details .cart-name{
  font-size: 16px;
  color: #3b3c3c;
  font-weight: 600;
}
.r-qunt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dotted #b0aeae;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.quantity-controls {
  display: flex;
  align-items: center;
  border: 2px solid #868585;
  border-radius: 50px;
  padding: 2px 2px 2px;
  background-color: aliceblue;
}
.cart-qty-btn {
  width: 25px;
  height: 25px;
  border: none;
  background: #0779d7;
  color: #fff;
  font-size: 18px;
  line-height: 0;
  cursor: pointer;
  transition: background 0.2s;
  outline: none;
  padding-bottom: 8px;
  padding-top: 3px;
}
.cart-qty-btn.minus{ 
  border-radius: 50px 0 0 50px;
}
.cart-qty-btn.plus{
  border-radius: 0 50px 50px 0;
}
.quantity-controls .qty {
  padding: 0 8px;
}
.cart-price {
  font-size: 15px;
  font-weight: 600;
}
.subtotal {
  font-size: 15px;
  font-weight: 600;
  color: #29292a;
  background-color: aliceblue;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
}
.remove-item {
  font-size: 13px;
  text-align: end;
  color: red;
  font-weight: 600;
  cursor: pointer;
}
.cart-details {
  border-bottom: 1px solid #535353;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.cart-footer .cart-total {
  font-size: 18px;
  color: red;
  margin-bottom: 10px;
}
.offcanvas-backdrop.show {
  opacity: .2 !important;
}
.cart-body{
  overflow: auto !important;
  padding: 8px 18px 8px 14px !important;
}
.emptycart{
  text-align: center;
}
.shopnow {
  margin-top: 30px;
  display: flex;
  text-align: center;
  justify-content: center;
}
.shopnow a{
  background-color: #0560ab;
  color: #fff;
  padding: 3px 12px 6px;
  display: block;
  border-radius: 8px;
  text-decoration: none;
}
.cart-head{
  background-color: #0560ab;
  color: #fff;
}
.cart-close{
  margin-left: 0 !important;
  position: absolute;
  left: -44px;
  background: #fff !important;
  color: red !important;
  --bs-btn-close-bg: none !important;
  --bs-btn-close-opacity: 1 !important;
}
.cart-close:hover {
  color: var(--bs-btn-close-color);
  text-decoration: none;
  opacity: 1 !important;
}
.cart-close:before{
  content: '\F158';
  font-family: 'Bootstrap-Icons';
  font-size: 22px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.cart-actions {
  display: flex;
  justify-content: end;
  gap: 8px;
}
.cart-actions .co{
  background-color: #278b2a;
  color: #fff;
}
.cart-actions .co:hover{
  background-color:#0779d7;
  color: #fff;
}
.cart-actions .btn{
  font-size: 14px !important;
  font-weight: 600;
}

.wishlist-dropdown {
    position: absolute;
    top: 100%;
    right: 34px;
    width: 350px;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    
}
#wishlistItemsContainer {
  max-height: 400px;
  overflow-y: auto;
}
@media (max-width: 300px){
  .wishlist-dropdown {
    width: 245px;
}
}
@media (min-width: 300px) and (max-width: 412px){
  .wishlist-dropdown {
    width: 254px;
}
}
.wishlist-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wishlist-header {
  padding: 12px;
  border-bottom: 1px solid #e9ecef;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wishlist-header h1, .wishlist-header h2, .wishlist-header h3, .wishlist-header h4, .wishlist-header h5, .wishlist-header h6{
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
}
.wishlist-header .wishlistnumber{
  margin-left: auto;
  border-radius: 50px;
  padding: 5px 8px;
}
.wishlist-empty {
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

.wishlist-empty i {
    font-size: 48px;
    color: #ccc;
    display: block;
    margin-bottom: 15px;
}

.wishlist-item {
    display: flex;
    gap: 15px;
    padding: 15px 20px;
    border-bottom: 1px solid #d8d8d8 !important;
    transition: background 0.2s;
    align-items: center;
}

.wishlist-item:hover {
    background: #f8f9fa;
}

.wishlist-item:last-child {
    border-bottom: none;
}

.wishlist-img {
    width: 60px;
    height: 60px;
    /* object-fit: cover; */
    border-radius: 8px;
}

.wishlist-details {
    flex: 1;
}

.wishlist-name {
    font-weight: 600;
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #0779d7;
}

.wishlist-price {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
}

.wishlist-actions {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  align-items: center;
}

.wishdelete {
    padding: 4px 8px;
    border: 0;
    background: white;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}
.wishlist-btn .hgi.hgi-stroke.hgi-delete-02 {
  color: red;
}
.wishlist-actions .wishview{
  padding: 2px 14px 4px !important;
  background-color: #278b2a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}
.wishlist-btn:hover {
    background: #c2dcf2;
    color: #fff;
    border-color: #c2dcf2;
}

.wishlist-footer {
    padding: 15px 20px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.wishlist-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.wishlist-link:hover {
    color: #0056b3;
}

/* Header positioning */
.account-section {
    position: relative;
    display: inline-block;
}

.count-heart {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}
/* Prevent body scroll when dropdown open */
/* body.dropdown-open {
    overflow: hidden;
} */

.offcanvas-backdrop {
    z-index: 1040 !important;
    opacity: 0.5 !important;
}

.offcanvas {
    z-index: 1045 !important;
}

/* Prevent double backdrops */
.offcanvas-backdrop:not(.show) {
    display: none !important;
}


/* -------------upcate */
.upcate{
  padding: 60px 20px 60px;
}
@media (max-width: 991px){
  .upcate {
  padding: 20px 0px 60px;
  }
}
.upcate .upcatename{
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 24px;
  display: block;
  height: 100%;
}
.upcate .upcatename ul{
  padding: 0;
  margin: 0;
  list-style: none;
}
.upcatename ul li {
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease; 
}
.upcatename ul li::after{
  content: '\F231';
  font-family: 'bootstrap-icons';
  color: #278b2a;
}
.upcate .upcatename ul li a{
  text-decoration: none;
  color: #4b4b4b;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 992px){
  .upcate .upcatename ul li a {
  font-size: 14px;
}
.showpnlist .p-list li a {
  font-size: 14px;
}
}
.upcatename ul li.active a {
  color: #007bff;
  font-weight: 600;
}
.upcatename ul li:hover {
  transform: translateX(4px);
  background-color: aliceblue;
}
/* Middle column fade */
.showcsection{
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 24px;
  display: block;
  height: 100%;
  /* background-color: aliceblue;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px; */
}
.showcs {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
   
}

.showcs.active {
  opacity: 1;
  transform: translateY(0);
}

/* Right product list */
.showpnlist ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 12px 12px;
  margin-bottom: 4px;
  border: 1px solid #e1e1e1;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.25s ease;
  border-radius: 8px;
}

.showpnlist ul li.show {
  opacity: 1;
  transform: translateY(0);
}

.proimgup img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.showcs .upcateimage{
  max-width: 200px;
  width: 100%;
  height: 200px;
  display: block;
  margin: 0 auto;
}
.showcs .upcateimage img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.updesk {
  font-size: 14px;
  display: block;
  height: 200px;
  overflow: auto;
  text-align: justify;
  padding-right: 8px;
}
.upname {
  text-decoration: none;
  margin-top: 14px;
  display: block;
}
.upname .up_name-title {
  font-size: 21px;
  color: #0779d7;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  display: block;
  text-align: center;
}
.showpnlist{
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 24px;
  display: block;
  height: 100%;
}
.showpnlist .p-list{
  padding: 0;
  margin: 0;
  list-style: none;
}
.showpnlist .p-list li a{
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  color: #282828;
}

/* -----------------------------------------compare */

#compareList {
  display: flex !important;
  gap: 12px;
  overflow-x: auto;
  /* padding: 8px 0; */
  scrollbar-width: thin;
}
.compare-item {
  flex-shrink: 0;
  min-width: 260px;
}

.card_compare {
  background: #1d297c;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.card_compare:hover { background: #162465; }
.card_compare.added { background: #28a745; }
.com-off-body{
  padding: 20px !important;
  overflow: auto !important;
}
#offcanvasBottom {
  height: fit-content;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#viewAllCompare {
  font-size: 14px;
  font-weight: 600;
  padding: 1px 12px 3px;
  border-radius: 4px;
}
#countBadge {
  background-color: red !important;
  padding: 6px 10px 7px;
  border-radius: 50px;
}
.com-pname {
  font-size: 14px;
  color: #2d2d2d;
  font-family: "Inter", sans-serif;
}
.remove-compare {
  position: relative;
  bottom: 36px;
  font-size: 20px !important;
  text-decoration: none !important;
}

/* ----------------------qv */
.btn.qview {
  /* position: relative;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0; */
}

.btn.qview .spinner-border {
  position: absolute !important;
  display: none !important ;
}

.btn.qview.loading .icon-wrap {
  opacity: 0.2 !important;
}

.btn.qview.loading .spinner-border {
  display: inline-block !important;
}
.vqmheader{
  border-bottom: 0 !important;
}
.qvtitle{
  font-size: 20px;
  font-weight: 600;
  color: #0779d7;
  font-family: "Inter", sans-serif;
}
.qvrealprice{
  font-size: 18px;
  font-weight: 600;
  color: #ff2727;
  font-family: "Inter", sans-serif;
}
.qvdescription{
  font-size: 14px;
  color: #4b4b4b;
  margin-top: 10px;
  text-align: justify;
}
.qvul{
  padding: 0 0 0 12px;
  margin: 10px 0;
  list-style:circle;
}
.qvul li{ 
  margin-bottom: 6px;
  font-size: 14px;
  color: #333;
}
.qvul li::marker{
  color: #0779d7;
}
.qvfooter{
  border-top: 0 !important;
}

@keyframes bounceInModal {
  0% { transform: scale(0.3) translateY(-50px); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.modal.fade .modal-dialog {
  animation: bounceInModal 0.5s ease-out;
}

.product-image-slider-container {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.qvimage-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.95);
  padding: 24px;
}

.qvimage-slide.active {
  opacity: 1;
  transform: scale(1);
}

.qvimage-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Arrows */
.image-slider-prev,
.image-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(240, 240, 240, 0.8);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
}

.image-slider-prev:hover,
.image-slider-next:hover {
  background: #f0f8ffa6;
  transform: translateY(-50%) scale(1.1);
}

.image-slider-prev {
  left: 10px;
}

.image-slider-next {
  right: 10px;
}

/* Dots */
.image-slider-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(215, 215, 215, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
  background: aliceblue;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .product-image-slider-container {
    height: 200px;
  }
  
  .image-slider-prev,
  .image-slider-next {
    width: 35px;
    height: 35px;
  }
}
.hgi.hgi-stroke.hgi-arrow-left-01 {
  color: #7b7b7b;
}
.hgi.hgi-stroke.hgi-arrow-right-01 {
   color: #7b7b7b;
}
.qvcart-btn{
  display: flex !important;
  gap: 8px !important;
  align-items: center !important;
  font-size: 15px !important;
  font-weight: 600 !important;
}
.qvcart-btn .hgi.hgi-stroke.hgi-shopping-cart-add-02 {
  font-size: 15px !important;
}
.modal-backdrop.show {
  opacity: 0.2 !important;
}

/* --------------------------------------We offer section */
.what-we-offer-section {
  background: linear-gradient(0deg, #fff 0%, rgb(0, 78, 154) 50%);
  padding: 30px 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  margin-bottom: 50px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.1rem;
  color: #fff;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  max-width: 1450px;
  margin: 0 auto;
}

.offer-item {
  text-align: center;
  padding: 0px 20px 45px;
  transition: transform 0.3s ease;
}


.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.offer-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.offer-item p {
  font-size: 14px;
  color: #EDEEEF;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-offer-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 1.9rem;
  }
  
  .offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
  }
}
.icon-wrapper img {
  width: 50px;
}

/* -------------------------Whatsapp */
.whatsapp-float {
 position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  left: 0px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 0 50% 50% 0;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px #999;
  background-color: #128C7E;
}

.whatsapp-float i {
  margin-top: 2px;
}

/* Pulse animation */
@keyframes whatsapp-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: -8%;
  left: -8%;
  width: 70px;
  height: 70px;
  background: rgba(37, 211, 102, 0.3);
  border-radius: 0 50% 50% 0;
  transform: translate(-50%, -50%);
  animation: whatsapp-pulse 2s infinite;
}

/* Responsive */
@media (max-width: 480px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}

/* -------------------------Product by category */
@media (min-width: 991px){
  .filter-button{
    display: block;
  }
}
@media (min-width: 991px) and (max-width: 2000px){
  .filter-button{
    display: none;
  }
}
.filter-button{
 position: fixed;
  top: 45%; 
  left: 0;
  z-index: 1060;
}
.bffbtntab{
  position: absolute;
  top: 0;
  background-color: aliceblue !important;
  border-radius: 0 8px 8px 0 !important;
  padding: 5px 10px 2px 7px !important;
  border: 1px solid #e1e1e1 !important;
  font-size: 20px !important;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px !important;
}
/* -----------------------testimonial */
.testmonial-section{
  padding: 60px 20px 60px;
  background-color: #f8f9fa;
}
.testimonial-carousel {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
   background-image: url(../images/testmon.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Main track */
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 350px;
    align-items: center;
}
/* Single slide */
.carousel-slide {
    min-width: 100%;
    padding: 40px 50px;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 30px;
    opacity: 0.8; 
    transform: scale(0.95);
    transition: all 0.5s ease;
    flex-direction: column;
    text-align: center;
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Profile image */
.profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e9ecef;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* Content */
.testimonial-content {
    flex: 1;
}

.testimonial-text {
    font-size: 18px;
    color: #495057;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 400;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.user-name {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
}

.verified-badge {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

/* Navigation dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
}

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

.dot.active {
    background: #007bff;
    transform: scale(1.2);
}

/* Navigation arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-slide {
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .profile-img {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
}
/* --------------Heightlighted */
.heightlight{
  background-color: aliceblue;
  padding: 10px 16px;
  margin: 0px 0;
  border-radius: 10px;
  height: 95%;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.heightlight img{
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  display: block;
}
.heightlight .trpp{
  font-size: 14px;
  text-align: justify;
  font-family: "Inter", sans-serif;
}
.heightlight .exploree-btn{
  background-color: #278b2a;
  color: #fff;
  padding: 6px 12px 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block !important;
  margin-top: 25px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.banner-add{
  margin-bottom: 30px;
  padding: 30px 30px 30px;
}
@media (max-width: 991px){
  .banner-add{
  padding: 30px 0px 30px;
}
.banner-add .ban-pro{
  margin-bottom: 20px;
}
.banner-add .ban-pro .eolp {
  top: 16px !important;
  left: 22px !important;
  right: 16px !important;
}
.banner-add .ban-pro .exbtn {
  bottom: 50px !important;
  left: 22px !important;
}
.banner-add .ban-pro .eolp {
  font-size: 22px !important;
}
.banner-add .ban-pro .dicp, .banner-add .ban-pro .downc {
  top: 55px !important ;
  left: 22px !important;
}
}
@media (max-width: 768px){
  .bancol{
    display: none;
  }
}
.banner-add .ban-pro{
  /* border: 1px solid #e1e1e1; */
  border-radius: 8px;
  /* padding: 16px; */
  height: 100%;
  display: block;
  position: relative;
}
/* .banner-add .ban-pro:hover img{
  transform: scale(1.05);
  transition: transform 0.3s ease;

} */
.banner-add .ban-pro .eolp{
  text-decoration: none;
  font-size: 28px;
  color: #0779d7;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 9;
}
.banner-add .ban-pro img{
  width: 100%;
  height: auto;
  display: block;
   border-radius: 8px;
  transition: transform 0.3s ease;
box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.banner-add .ban-pro img:hover{
  transform: scale(1.01);
  transition: transform 0.3s ease-out;

}
.banner-add .ban-pro .exbtn{
  position: absolute;
  bottom: 50px;
  left: 50px;
  background-color: #278b2a;
  color: #fff;
  padding: 2px 10px 4px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  z-index: 9;
}
.banner-add .ban-pro .dicp{
  position: absolute;
  top: 100px;
  left: 50px;
  font-size: 14px;
  color: #4b4b4b;
  font-family: "Inter", sans-serif;
  text-align: left;
  width: 320px;
  z-index: 9;
}
.banner-add .ban-pro .downc{
  position: absolute;
  top: 100px;
  left: 50px;
  font-size: 14px;
  color: #4b4b4b;
  font-family: "Inter", sans-serif;
  text-align: left;
  width: 320px;
  z-index: 9;
}
@media (max-width: 576px){
  .banner-add .ban-pro .downc, .banner-add .ban-pro .dicp{
    display: none;
  }
}
.ban2{
  margin-bottom: 30px;
  padding: 30px 30px 30px;
}
@media (max-width: 991px){
  .ban2{
  margin-bottom: 30px;
  padding: 30px 0 30px;
}
}
.ban2 .ban2-content{
  border-radius: 8px;
  height: 100%;
  display: block;
  position: relative;
  background-image: url(../images/chromlab\ small\ banner1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 240px 50px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
.ban2 .ban2-content .ban2h2{
  font-size: 32px;
  color: #1d1e20;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-bottom: 12px;
}
.ban2 .ban2-content .ban2p{
  font-size: 14px;
  color: #4b4b4b;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}
.ban2 .ban2-content .ban2sc{
  position: absolute;
  bottom: 50px;
  left: 50px;
  display: flex;
}
.ban2 .ban2-content .ban2sc .scip{
  border: 1px solid #e1e1e1;
  border-radius: 8px 0 0 8px;;
  padding: 4px 10px 4px;
  font-size: 13px;
  margin-right: 4px;
  width: 100%;
  min-width: 226px;
}
.ban2 .ban2-content .ban2sc .subscribe-btn{
  background-color: #007bff;
  color: #fff;
  padding: 4px 12px 6px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
}
.ban2-img{
  background-image: url(../../assets/images/chromlab\ small\ banner4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  height: 100%;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  position: relative;
}
.ban2-img .pleprh1{
  position: absolute;
  bottom: 80px;
  left: 20px;
  right: 20px;
  color: #000;
  font-weight: 600;
  font-size: 28px;
  display: flex;
  text-align: center;
   font-family: "Inter", sans-serif;
}
.ban2-img .pleprer{
  position: absolute;
  bottom: 40px;
  left: 20px;
  right: 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 13px;
  background-color: #00751e;
  color: #fff;
  text-align: center;
  padding: 2px 10px 4px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 200px;
  font-weight: 600;
  border-radius: 8px;
}

/* -------------------------Back to top */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0779d7; /* Blue theme, matches e-commerce */
  color: white;
  border: none;
  border-radius: 50%; /* Circle for modern look */
  width: 50px;
  height: 50px;
  font-size: 26px;
  cursor: pointer;
  display: none; /* Hidden initially */
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease; /* Smooth opacity & scale */
  opacity: 0;
}

#backToTop:hover {
  background: #0056b3;
  transform: scale(1.1);
}

#backToTop.show {
  display: block;
  opacity: 1;
}

/* Mobile: Smaller on small screens */
@media (max-width: 768px) {
  #backToTop {
    width: 45px;
    height: 45px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
}
