:root {
  --c1: #111;
  --c2: #2a2a2a;
  --c3: #929090;
  --c5: #696868;
  --bg: #9fd7fa;
  --c4: #fbfbeb;
  --w: #fff;
  --light-gray: #f8f9fa;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../Montserrat-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Assistant';
  src: url('../Assistant-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'assistant-semibold';
  src: url('../Assistant-SemiBold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Arimo';
  src: url('../Arimo/Arimo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Lato';
  src: url('../Lato-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../OpenSans-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  font-family: 'Open Sans', sans-serif;
}

html {
  font-family: 'Lato', sans-serif;
}

p {
  font-family: 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Assistant', sans-serif !important;
}

.c1 {
  color: var(--c1) !important;
}

.c2 {
  color: var(--c2) !important;
}

.c3 {
  color: var(--c3) !important;
}

.c4 {
  color: var(--c4) !important;
}

.c5 {
  color: var(--c5) !important;
}

.bg {
  background-color: var(--bg);
}

.bg-c1 {
  background-color: var(--c1);
}

.bg-w {
  background-color: var(--w);
}

.w {
  color: #fff !important;
}

.b {
  color: black !important;
}

a {
  text-decoration: none !important;
}

.ls {
  letter-spacing: 1px;
}

.lh {
  line-height: 2rem !important;
}

.ls3 {
  letter-spacing: 3px !important;
}

body.no-scroll {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
}

.hf {
  font-family: 'Open Sans', sans-serif;
}

html {
  width: 100vw !important;
  overflow-x: hidden !important;
}

body {
  margin: 0% !important;
  padding: 0% !important;
  width: 100vw;
  margin: 0%;
  padding: 0%;
  scroll-behavior: smooth !important;
  background-color: white;
}

* {
  box-sizing: border-box;
}

/* top nav */
.announcement-bar {
  display: flex;
  align-items: center;
  background: #131917;
  color: white;
  position: relative;
  height: 40px;
  overflow: hidden;
}

.marquee-wrapper {
  overflow: hidden;
  width: 100%;
}

.marquee-content {
  display: flex;
  white-space: nowrap;
  animation: scroll-marquee 40s linear infinite;
  width: max-content;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-block;
  padding: 0 40px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.marquee-item::after {
  content: '|';
  position: absolute;
  right: 0;
  color: rgba(255, 255, 255, 0.3);
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.arrow-announcement {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.arrow-announcement:hover {
  opacity: 0.7;
}

/* navbar */
.navbar {
  transition: all .5s;
  box-shadow: -10px -10px 25px rgba(255, 255, 255, .08), 10px 10px 25px rgba(0, 0, 0, .08);
}

.logo {
  width: 130px;
}

.nav-menus {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.newnav {
  position: fixed !important;
  top: 0% !important;
  left: 0%;
  width: 100%;
  z-index: 50;
  background: #ffffff !important;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  animation: mymove .5s;
  border-bottom: 1px solid var(--c1);
}

.home-d-nav {
  display: unset !important;
}

.newnav .nav-link {
  color: #121212BF !important;
}

@keyframes mymove {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.dropdown-item {
  color: black !important;
}

.nav-item {
  padding: 0px 10px;
}

.nav-link {
  font-weight: 600 !important;
  line-height: 18px !important;
  letter-spacing: .72px !important;
  color: #121212BF !important;
  font-size: 14px !important;
  padding: 3px 10px !important;
  font-family: 'Lato', sans-serif !important;
  transition: all .4s ease !important;
}

.navbar .nav-link {
  text-transform: capitalize;
}

.nav-active {
  color: var(--c1) !important;
  font-weight: bold !important;
}

.nav-link.nav-active {
  color: var(--c1) !important;
  font-weight: bold !important;
}

.nv-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-i {
  font-size: 25px;
}

.nv-icon p {
  margin-bottom: 0% !important;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: unset !important;
}

.dropdown:hover .dropdown-menu {
  transform: scale(1);
}

.dropdown-item {
  background-color: unset !important;
  transition: all .5s;
  font-size: 14px;
  color: black !important;
  display: flex !important;
  align-items: center;
}

.dropdown-item i {
  margin-right: 6px;
}

.dropdown-menu {
  border-radius: 0% !important;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px !important;
  border: unset !important;
}

.dropdown-item:hover {
  transition: all .5s;
  background-color: var(--bg-dark) !important;
}

.navbar .dropdown-menu {
  min-width: 220px;
  border-radius: 0% !important;
}

.dropdown-menu li:hover>.dropdown-menu {
  display: block;
}

.dropdown-menu .dropdown-menu {
  left: 100%;
  top: 0;
  margin-top: 0;
}

.navbar .dropdown-item {
  font-size: 14px;
  font-family: 'Lato', sans-serif !important;
}

.dropdown-menu[data-bs-popper] {
  top: 100% !important;
  left: 0;
  margin-top: var(--bs-dropdown-spacer);
}

.arow-right .dropdown-toggle::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid transparent;
  border-right: 0;
  border-bottom: .3em solid transparent;
  border-left: .3em solid;
  position: absolute;
  right: 18px;
  top: 37%;
}

.navbar .dropdown-item:hover {
  transform: unset;
  background-color: #f6f6f6 !important;
  color: var(--c1) !important;
  transition: all .5s;
}

.nv-fl {
  position: relative;
  overflow: hidden;
}

.dropdown-toggle:focus {
  color: unset !important;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }

  100% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 1;
  }

  0% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 0;
  }
}

.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn;
}

.animate {
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.mob-s-nav .ab-lgo-bx {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c1);
}

.mob-s-nav .ab-lgo-bx img {
  width: 50%;
}

img.nav-i {
  width: 70%;
  height: 70%;
}

/* for navbar to open dropdown on hover */
.nav-item-custom {
  position: relative;
}

.nav-link-custom {
  text-decoration: none;
  padding: 10px 15px;
  display: block;
}

.dropdown-menu-custom {
  display: none;
  position: absolute;
  top: 157%;
  left: 0;
  z-index: 1000;
  min-width: 160px;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: #fff;
  border: 1px solid #ccc;
}

.dropdown-menu-custom li {
  padding: 5px 10px;
}

.dropdown-menu-custom li a {
  text-decoration: none;
  color: #000;
  display: block;
}

.dropdown-menu-custom li a:hover {
  background-color: #f8f9fa;
}

.menu-next-img {
  font-size: 13px;
  font-weight: bold;
}

/* mobile nav */
.mob-menu-pop {
  width: 100% !important;
  height: 100vh !important;
}

.pop-menu-div {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.modal-body {
  overflow-y: auto;
}

.pop-menu-img {
  width: 100%;
  height: 140px !important;
  object-fit: cover;
  object-position: center;
}

.pop-menu-name {
  color: #000 !important;
}

/* image in dropdown menu */
.new-nav-drop-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: top center;
}

/* category */
.collection-title {
  font-family: 'Lato', sans-serif !important;
  font-weight: 700;
  letter-spacing: 1px;
  display: inline-block;
  position: relative;
  font-size: 15px;
  color: #111;
  text-transform: capitalize !important;
  transition: border 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover Effect - Border Appears */
.collection-card:hover .collection-title {
  color: #333;
}

.category-arrow {
  font-size: 20px;
  display: inline-block;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.btn-cart-new:hover .category-arrow {
  transform: translateX(5px);
  color: #555;
}

.collection-card:hover .category-arrow {
  transform: translateX(5px);
  color: #555;
}

.collection-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.logo-icon {
  height: 22px;
}

/* footer */
.footer-top {
  background-color: #1f2235;
  color: white;
  padding: 20px 0;
  font-family: 'Montserrat', sans-serif !important;
}

.footer-top .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.footer-top .text {
  font-size: 14px;
}

.footer-bottom {
  background-color: #ececec;
  padding: 40px 20px 10px 20px;
  font-family: 'Arimo', sans-serif !important;
}

.footer-bottom h6 {
  font-weight: bold;
  margin-bottom: 15px;
}

.footer-bottom ul {
  list-style: none;
  padding-left: 0;
}

.footer-bottom ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-bottom .contact-info p {
  font-size: 14px;
  margin-bottom: 8px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  border-radius: 50%;
}

.text {
  font-weight: 500;
}

.no-underline {
  color: unset !important;
}

.all-items {
  width: 100%;
}

/* product design */
.pro-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.pro-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-img {
  position: absolute;
  top: 0%;
  left: 0%;
  opacity: 0;
  transition: all .5s;
}

.pro-img:hover .other-img {
  opacity: 1;
  transition: all .5s;
}

.pro-text {
  width: 100%;
}

.name {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0%;
}

.pro-text p {
  font-weight: 600;
  font-size: 14px;
}

.stock-bx {
  position: absolute;
  left: 3%;
  top: 2%;
  z-index: 4;
  background-color: var(--c1);
}

.stock-bx p {
  font-size: 12px;
  color: #FFF;
}

.out-of-stock {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3 !important;
  top: 0%;
  left: 0%;
  /* opacity: 2; */
  background-color: #ffffff9f !important;
  cursor: not-allowed;
}

.pro-card:hover .main-pro-size-box {
  display: flex !important;
}

.catgeory-description ul li span {
  font-size: 18px !important;
  line-height: 2.5rem;
  font-family: 'Lato', sans-serif;
}

/* slider */
.slides-new {
  max-height: calc(122vh - 100px);
  /* overflow: auto; */
  position: sticky;
  overflow: hidden;
  top: 50px;
  transition: top 0.5s ease-out 0s;
  vertical-align: baseline;
  scroll-behavior: smooth;
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

/* Swiper container setup */
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 16px !important;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  color: #FFF;
}

/* Swiper container setup */
.swiper {
  height: 100%;
  width: auto;
  overflow: hidden;
}

.mySwiper {
  width: 100%;
  /* Thumbnails: 20% of col-lg-6 */
  height: 150px;
  /* Set a max height */
  margin-top: 5px !important;
  cursor: pointer;
}

.mySwiper2 {
  width: 100%;
  /* Main slider: 80% of col-lg-6 */
  height: 650px;
}

/* Prevent overflow */
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Styling navigation arrows */
.swiper-button-next,
.swiper-button-prev {
  color: #000;
}

/* Pagination styles */
.swiper-pagination-bullet {
  background: #8e8e8e !important;
  /* Default color */
  opacity: 0.8 !important;
  width: 7px !important;
  /* Custom width */
  height: 7px !important;
  /* Custom height */
  transition: all 0.3s ease;
  /* Smooth transition for hover/active states */
}

/* Active bullet styles */
.swiper-pagination-bullet-active {
  background: #ffffff !important;
  /* Active bullet color */
  opacity: 1 !important;
  width: 10px;
  /* Custom width for active bullet */
  height: 10px;
  /* Custom height for active bullet */
}

.lightbox-trigger {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px;
  padding: 10px;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 13px;
  text-decoration: none;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
  /* Ensures the click works on mobile */
}

.lightbox-trigger:hover {
  background: rgba(0, 0, 0, 0.8);
}

.new-top-fix {
  position: relative;
}

.qty-btn {
  background: #eee !important;
  border: none !important;
  font-size: 16px !important;
  width: 28px !important;
  height: 28px !important;
  cursor: pointer !important;
  border-radius: 5px !important;
  font-weight: bold !important;
}

.qty-btn:hover {
  background: #ddd !important;
}

.quantity-box {
  width: 60px !important;
  text-align: center;
  border: 1px solid rgb(102, 102, 102) !important;
  border-radius: 4px;
}

.in-stock {
  font-size: 0.85rem;
  color: #555;
}

.product-heading {
  font-family: 'assistant-semibold', sans-serif !important;
}

.product-subheading {
  font-family: 'Arimo', sans-serif !important;
}

.product-specs {
  font-family: sans-serif;
  padding: 16px;
  /* border: 1px solid #c4c1c1; */
  border-radius: 12px;
  background-color: white;
  margin: 20px auto;
}

.specs-column-info-specification {
  display: flex;
  justify-content: space-between;
}

.column-info-specification p {
  margin: 12px 0;
  padding-left: 2px;
  line-height: 1.4;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
  font-family: var(--font-global);
}

.column-info-specification strong {
  display: block;
  font-weight: 600;
  color: #000;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}

.product-details-specification {
  margin-top: 16px;
}

.product-details-specification p {
  margin: 6px 0;
  font-size: 14px;
  color: #333;
  font-family: var(--font-global);
}

.product-details-specification strong {
  font-weight: 600;
  color: #000;
}

.specs-column-info {
  gap: 20px;
  align-items: flex-start;
}

.custom-dashed-border {
  border: 2px dashed var(--c1);
  /* Dashed border with yellow color */
}

.btn-c2 {
  background-color: var(--c1) !important;
  border: 1px solid var(--c1) !important;
  color: #fff !important;
  margin-top: 20px;
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 16px;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
}

.badge {
  font-size: 10px !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important
}

.custom-badge {
  font-size: 0.9rem;
  /* Slightly smaller for better readability */
  font-weight: 600;
  /* Bold for emphasis */
  padding: 5px 12px;
  /* Add padding for better spacing */
  border-radius: 50px;
  /* Rounded corners */
  color: #fff;
  /* White text */
  text-transform: uppercase;
  /* Uppercase for consistency */
  letter-spacing: 1px;
  /* Slightly increase letter spacing for clarity */
  display: inline-block;
  /* Ensure it behaves like an inline element */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Subtle shadow effect */
  transition: transform 0.2s ease-in-out;
  /* Smooth hover effect */
}

.custom-badge:hover {
  transform: scale(1.1);
  /* Slight zoom effect on hover */
  cursor: pointer;
  /* Change cursor to pointer */
}

.bg-success {
  background-color: #28a745 !important;
  /* Green color for success */
}

/* Sidebar styles */
.sidebar {
  width: 380px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
  transform: translateX(100%);
  /* Initially hidden */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sidebar.open {
  transform: translateX(0);
  /* Show sidebar when open */
}

/* Show sidebar */
.body-sidebar-open .sidebar {
  transform: translateX(0);
}

/* Backdrop */
.sidebar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5) !important;
  /* Semi-transparent black */
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show backdrop when sidebar is open */
.body-sidebar-open .sidebar-backdrop {
  opacity: 1;
  visibility: visible;
}

.body-sidebar-open {
  height: 100vh !important;
  width: 100% !important;
  overflow: hidden !important;
}

.closex-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #111;
}

.products-section {
  flex: 1;
  min-height: 55%;
  max-height: 70%;
  overflow-y: auto;
  padding: 10px;
  background-color: #fff;
}


.sidebar-preloader {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(91, 91, 91, 0.7);
  /* Glassed black background */
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.spinner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: var(--c1);
  border-radius: 50%;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modal-con1 {
  height: 135px;
  width: 40% !important;
}

.modal-con-img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cart-bar-button {
  background-color: #f6f6f6 !important;
  border-radius: 0% !important;
  font-size: 16px !important;
}

.cart-bar-button:disabled {
  border: unset !important;
}

.cart-wth {
  padding: 6px 12px;
  width: 33.3% !important;
  text-align: center !important;
  border: unset;
}

.in-slide-crt {
  color: #000000 !important;
}

.empty-cart {
  width: 230px !important;
}


.acc-card {
  position: relative;
  height: 400px;
  width: 100%;
  transition: all .5s;
  background-image: fill 0 linear-gradient(#0001, #000);
  overflow: hidden;
  border-radius: 10px;
  filter: brightness(80%);

}


.acc-card:hover {
  transform: scale(1.01);
  transition: all .5s;

}

.acc-card-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all .5s;
}

.acc-card:hover .acc-card-img {
  transform: scale(1.1);
  transition: all .5s;
  filter: brightness(100%);
}


.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  display: block;
}

.arrow {
  font-size: 15px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
}

.bottom-arrow {
  position: static;
  transform: none;
  background-color: unset;
  color: rgb(118 118 118);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  border-bottom: .1rem solid rgba(129, 129, 129, 0.08);
}

.dots {
  display: flex;
  gap: 1rem;
}

.dot {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #000;
}

.pause-play {
  background-color: unset;
  font-size: 15px;
  border: none;
  border-left: 1px solid rgba(129, 129, 129, 0.2);
  /* <-- added line */
  border-radius: 0;
  padding: 8px 12px;
  cursor: pointer;
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  /* Adjust the margin as needed */
}

.page-item {
  margin: 0 5px;
  /* Add space between the buttons */
}

.page-link {
  display: inline-block;
  padding: 10px 15px;
  /* Adjust padding to make it circular */
  border-radius: 50%;
  /* This makes the button circular */
  text-align: center;
  color: var(--c1) !important;
  background-color: transparent;
  border: 2px solid var(--c1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-link:hover {
  background-color: var(--c1);
  /* Hover effect */
  color: #FFF;
  /* Text color on hover */
}

.active>.page-link,
.page-link.active {
  color: #FFF !important;
  background-color: var(--c1) !important;
  border-color: var(--c1) !important;
}

.page-item.disabled .page-link {
  color: #ccc;
  /* Disabled state color */
  border-color: #ccc;
  /* Disabled border color */
}

.page-item.disabled .page-link:hover {
  background-color: transparent;
  /* Remove hover effect for disabled links */
  color: #ccc;
  /* Keep color consistent with disabled state */
}

.profile-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 380px;
  padding: 2rem 1.5rem;
}

.profile-avatar {
  font-family: 'Montserrat', sans-serif !important;
  width: 100px;
  height: 100px;
  background: #000;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  text-transform: uppercase;
}

.profile-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: #fff;
  color: #000;
  margin-bottom: 0.7rem;
  text-decoration: none;
  border: 1px solid #000;
  transition: 0.3s ease;
}

.profile-link:hover {
  background-color: #000;
  color: #fff;
}

.profile-link i {
  font-size: 1.2rem;
}

.logout-link {
  display: block;
  margin: 1.5rem auto 0;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 0.6rem;
  border: 2px solid #000;
  color: #000;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.logout-link:hover {
  background-color: #000;
  color: #fff;
}

.custom-toast {
  min-width: 300px;
  max-width: 350px;
  min-height: 60px;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.btn-grad {
  background-color: #000 !important;
  color: #FFF !important;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-grad:disabled {
  background-color: #888;
  /* Greyed out */
  cursor: not-allowed;
  opacity: 0.6;
}

.address-btn {
  background-color: #000 !important;
  color: #fff !important;
}

.form-section {
  font-family: 'Lato', sans-serif;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.order-summary {
  font-family: 'Lato', sans-serif;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.product-img {
  width: 60px;
  height: auto;
}

.product-item {
  font-family: 'Lato', sans-serif;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

/* Modal popup container - hidden by default */
.ad-pop-up {
  position: fixed;
  /* Fix on screen */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  /* Dark semi-transparent background */
  z-index: 9999;
  /* On top of everything */

  /* HIDE popup initially */
  display: none;

  /* Flex container to center content */
  justify-content: center;
  align-items: center;
}

/* Show popup when active */
.ad-pop-up.active {
  display: flex;
}

/* Popup white box */
.pop-up-wrapper {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
}

/* Close button styling */
.ad-pop-up-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  background-color: #fff;
  height: 30px;
  width: 30px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Layout inside popup */
.pop-up-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

/* Image section */
.pop-up-image {
  flex: 1;
  min-width: 300px;
}

.pop-up-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text section */
.pop-up-text {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.pop-up-text h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pop-up-text p {
  font-size: 1rem;
  color: #333;
}

/* Disable scrolling on body when modal open */
.no-scroll {
  overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pop-up-row {
    flex-direction: column;
  }

  .pop-up-image {
    height: 200px;
  }

  .pop-up-text {
    padding: 20px;
    text-align: center;
  }
}

.toast-success {
  background-color: #166534 !important;
  /* Dark green, fully opaque */
  color: #ffffff !important;
  font-weight: 500;
  border-radius: 5px;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

.toast-error {
  background-color: #991b1b !important;
  /* Tailwind's red-800 */
  color: #ffffff !important;
  font-weight: 500;
  border-radius: 5px;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

table {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
}

table th {
  background-color: #d3d3d3 !important;
  font-weight: 800 !important;
}

table th, table td {
  padding: 14px;
  text-align: center;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.no-border-card {
  border: none !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  /* even on all sides */
}

.order-new-img {
  width: 100%;
  object-fit: cover;
}

.product-description {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  border-radius: 10px;
  max-width: 700px;
  margin: 20px auto;
}

.product-description ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-description li {
  padding: 8px 0;
  font-family: 'Lato';
}

.product-description li:last-child {
  border-bottom: none;
}

.product-description strong {
  font-weight: 600;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px !important;
}

.product-description p {
  margin: 0;
  padding-left: 2rem;
  color: #333;
  font-size: 0.95rem;
  font-family: var(--font-global);
}

/* Modal Background */
.custom-modal {
  display: none;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  /* dim background */
  backdrop-filter: blur(2px);
  padding: 20px;
  /* ensures spacing on smaller screens */
  box-sizing: border-box;
}

/* Modal Content (Card) */
.modal-content {
  background-color: #fff !important;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  box-sizing: border-box;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}

/* Image inside Modal */
.modal-content img {
  width: 100%;
  height: auto;
  display: block;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 26px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  z-index: 1;
}

/* Prevent background scroll */
body.modal-open {
  overflow: hidden;
}

/* Fade animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modal-content {
    padding: 16px;
    border-radius: 8px;
  }
}

.size-chart-clean {
  font-family: cursive;
  display: inline-block;
  font-weight: 700;
  /* bold text */
  color: #232323 !important;
  /* black text */
  text-decoration: none;
  font-size: 1rem;
  padding-bottom: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.size-chart-clean:hover {
  opacity: 0.8;
}

/* ---------- marquee ----------- */
.marque-top {
  box-shadow: rgba(14, 30, 37, 0.089) 0px 2px 4px 0px, rgba(14, 30, 37, 0.203) 0px 2px 16px 0px;
}

.marqueeimg {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  /* optional */
}

.firstmarquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

.firstmarquee {
  display: flex;
}

.marquee-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.marquee-item img {
  width: 100px;
  margin-bottom: 16px !important;
}

.marquee-item p {
  font-size: 11px;
  font-family: 'Montserrat', sans-serif !important;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Optional: pause on hover */
.marqueeimg:hover .firstmarquee-wrapper {
  animation-play-state: paused;
}

/* Show buttons in PhotoSwipe always */
.pswp__button,
.pswp__counter,
.pswp__button--arrow--prev,
.pswp__button--arrow--next {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.pswp__ui {
  opacity: 1 !important;
  visibility: visible !important;
}

.pswp__img {
  object-fit: contain !important;
}

.color-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Color Button Styling */
.c-btn {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.3s ease;
}

/* Hover Effect */
.c-btn:hover {
  transform: scale(1.1);
}

/* Image inside button */
.color-swatch {
  /* width: 50px; */
  height: 170px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin-bottom: 5px;
}

/* Name label below image */
.color-swatch+div {
  font-size: 12px;
  color: #333;
  font-weight: 500;
  text-transform: capitalize;
  margin-top: 4px;
  line-height: 1.2;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom-tabs .nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-transform: capitalize;
  color: #000000;
  /* Text color */
  border: none;
  border-bottom: 2px solid transparent;
  /* Bottom border for inactive */
  background: transparent;
  /* No background color */
  transition: all 0.3s ease;
}

.custom-tabs .nav-link.active {
  font-weight: bold !important;
  color: #000;
  /* Active text color */
  border-bottom: 2px solid #000;
  /* Underline for active tab */
}

.custom-tabs .nav-link:hover {
  color: #555;
  /* Hover text color */
  border-bottom: 2px solid #aaa;
  /* Hover underline */
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--c2) !important;
  background-color: #eaeaea !important;
}

ul#pills-tab {
  display: inline-grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: flex-start;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}


/* Modal backdrop (covers the entire screen) */
.custom-modal-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent black for backdrop */
  z-index: 1040;
}

/* Add background color outside the modal */
body.custom-modal-open {
  background-color: rgba(0, 0, 0, 0.4);
  /* Darken the body background when modal is active */
  overflow: hidden;
  /* Prevent body scrolling when modal is open */
}

/* Base styles for the modal */
.custom-bottom-modal {
  display: none;
  position: fixed;
  left: 0;
  width: 100%;
  max-height: 90vh; 
  background-color: rgba(255, 255, 255, 1);
  /* White modal background */
  overflow-y: auto; 
  z-index: 1050;
  /* Above the backdrop */
}

/* Modal content */
.custom-bottom-modal-content {
  background-color: white;
  padding: 20px;
  height: 100%;
  position: relative;
}

/* Close button */
.custom-close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  color: black;
  cursor: pointer;
}

/* Slide-up animation for bottom view */
.custom-bottom-modal.active {
  display: block;
  animation: slideUp 0.4s ease-out;
}

/* Show the backdrop when modal is active */
.custom-modal-backdrop.active {
  display: block;
}


.wish-qty-btn {
  /* background-color: var(--c1) !important; */
  color: #fff !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 30px;
}

/* Remove the spinner controls for all number inputs */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart1-img {
  min-height: 140px;
}

.cqty {
  height: 30px !important;
  width: 50px !important;
}


/* Animation for sliding up */
@keyframes slideUp {
  from {
    bottom: -30%;
  }

  to {
    bottom: 0;
  }
}

.mod-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}


.mod-font {
  font-size: 30px !important;
}


.txt-small {
  font-size: 14px;
}

.support-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1.5px solid #b3b3b3;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.support-whatsapp-btn:hover {
  background: #000;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  border-color: #000;
}

.support-whatsapp-btn i {
  font-size: 18px;
  margin-right: 8px;
  color: #25D366;
  transition: color 0.3s ease;
}

.support-whatsapp-btn:hover i {
  color: #fff;
}

.ls1 {
  letter-spacing: 1px;
}

.reseller-benefits {
  background-color: #ffffff;
  padding-bottom: 80px !important;
}

.benefit-card {
  background-color: #f6f6f6;
  padding: 35px 25px;
  border-radius: 24px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-card:hover {
  background-color: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: #eee;
}

.benefit-icon-box {
  min-width: 50px;
  height: 50px;
  background-color: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 22px;
  flex-shrink: 0;
  border: 1px solid #d1d1d1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover .benefit-icon-box {
  background-color: #111;
  color: #fff;
  border-color: #111;
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.benefit-content h5 {
  font-weight: 800;
  font-size: 17px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: 'Assistant', sans-serif !important;
}

.benefit-content p {
  color: #666;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .benefit-card {
    padding: 25px 20px;
  }

  .benefit-content h5 {
    font-size: 16px;
  }
}

/* make it responsive */

/* Hide thumbnails and expand the main slider on smaller screens */
@media screen and (max-width:720px) {
  .mySwiper {
    width: 100%;
    /* Thumbnails: 20% of col-lg-6 */
    height: 130px;
    /* Set a max height */
    margin-top: 5px !important;
    cursor: pointer;
  }

  .mySwiper2 {
    width: 100%;
    /* Main slider: 80% of col-lg-6 */
    height: 500px;
  }
}

/* Hide pagination on larger screens */
@media (min-width: 769px) {
  .swiper-pagination {
    display: none;
  }
}

@media screen and (max-width:1400px) {}

@media screen and (max-width:1200px) {
  .nav-link {
    padding-right: 0.5rem !important;
  }
}

@media screen and (max-width:1025px) {

  /* navbar */
  .top-nav-one {
    display: none;
  }

  .menu {
    width: 42px;
  }

  .nav-menus {
    display: flex;
    align-items: unset !important;
    justify-content: unset;

  }

  .offcanvas {
    width: 80% !important;
    z-index: 1000;
  }

  .dropdown-item {
    white-space: unset !important;
    font-size: 12px;
  }

  .menu {
    width: 52px;
  }

  .offcanvas-header {
    background-color: var(--c2);
  }
}

@media screen and (max-width:1024px) {}

@media screen and (min-width:1550px) {
  .pro-img {
    width: 100%;
    height: unset;
    overflow: hidden;
    position: relative;
  }
}

@media screen and (min-width:960px) and (max-width:1030px) {
  .pro-img {
    width: 100%;
    height: 330px;
    overflow: hidden;
    position: relative;
  }

  .logo {
    width: 120px;
  }

  .nav-link {
    font-size: 13px !important;
  }
}

@media screen and (max-width:920px) {
  .announcement-container {
    width: 80%;
  }

  /* navbar */
  .top-nav-one {
    display: none;
  }

  .menu {
    width: 42px;
  }

  .nav-menus {
    display: flex;
    align-items: unset !important;
    justify-content: unset;
  }

  .nav-link {
    display: inline-block;
    width: 100%;
    padding: 16px 24px;
    font-size: 13px;
    color: #25263a;
    font-weight: 500;
    text-transform: capitalize;
  }

  .nav-item {
    padding: unset;
  }

  .newnav .nav-active {
    color: var(--c1) !important;
  }

  .offcanvas {
    width: 80% !important;
  }

  .dropdown-item {
    white-space: unset !important;
    font-size: 16px;
  }

  .dropdown-menu {
    border: unset !important;
    box-shadow: unset !important;
  }

  @-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }

    100% {
      -webkit-transform: translateY(-8%);
      -webkit-opacity: 1;
    }

    0% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 0;
    }
  }

  .menu {
    width: 52px;
  }

  .offcanvas-header {
    background-color: #f6f6f6;
  }

  .nav-active {
    background-color: unset !important;
    color: var(--c1) !important;
    font-weight: bold !important;
    border-bottom: unset !important;
  }

  .navbar .nav-item {
    border-bottom: 1px solid #eaeaec;
    width: 100%;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .dropdown:hover .dropdown-menu {
    margin-top: 2rem !important;
  }

  .active.btn.login {
    padding-right: 10px;
    border-right: 1.5px solid #fff !important;
    margin-right: 10px;
  }

  .header-top .container .right {
    padding-left: 0% !important;
  }

  .nav-i {
    font-size: 25px;
    padding: 10px;
  }

  .navbar>.container,
  .navbar>.container-fluid,
  .navbar>.container-lg,
  .navbar>.container-md,
  .navbar>.container-sm,
  .navbar>.container-xl,
  .navbar>.container-xxl {
    display: flex;
    flex-wrap: unset !important;
    align-items: center;
    justify-content: space-between;
  }

  /* category */
  .mySwiper {
    min-height: 200px;
    height: unset !important;
  }

  .lightbox-trigger {
    position: absolute;
    top: 10px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 8px;
    padding: 10px;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    text-decoration: none;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
    /* Ensures the click works on mobile */
  }

  .slides-new {
    position: unset;
  }

  .collection-title {
    font-size: 14px;
  }

  .c-btn {
    width: 100%;
    height: auto;
  }

  .color-swatch {
    height: 140px;
  }

  .color-swatch+div {
    font-size: 13px;
  }
}

@media (max-width: 767px) {

  .footer-top .col-md-3,
  .footer-bottom .col-md-3 {
    /* text-align: center; */
    margin-bottom: 6px;
  }

  .footer-top .feature-icon {
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .catgeory-description ul li span {
    font-size: 16px;
  }
}

/* Mobile view: modal appears at the bottom */
@media (max-width: 768px) {
  .custom-bottom-modal {
    bottom: 0;
    min-height: 55%;
    height: unset;
  }

  .mod-img {
    width: 100%;
    height: 100px !important;
    object-fit: cover;
  }

  .mod-font {
    font-size: 14px !important;
  }
}

/* Desktop view: modal appears at the center */
@media (min-width: 769px) {
  .custom-bottom-modal {
    top: 50%;
    left: 50%;
    height: auto;
    width: 50%;
    transform: translate(-50%, -50%);
  }

  /* Center animation */
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translate(-50%, -60%);
    }

    to {
      opacity: 1;
      transform: translate(-50%, -50%);
    }
  }
}

@media screen and (max-width:660px) {

  /* Sidebar styles */
  .sidebar {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    transition: transform 0.3s ease;
    transform: translateX(100%);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }

  .acc-card {
    position: relative;
    height: 250px;
    width: 100%;
    transition: all .5s;
    background-image: fill 0 linear-gradient(#0001, #000);
    overflow: hidden;
    border-radius: 10px;
    filter: brightness(80%);
  }

  .marquee-item img {
    width: 35px;
    margin-bottom: 16px !important;
  }

  .marquee-item {
    padding: 0 13px;

  }

  .marquee-item p {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .pause-play {
    padding: 6px 10px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 576px) {
  .profile-card {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .catgeory-description ul li span {
    font-size: 14px;
  }
}

@media screen and (max-width:620px) {
  .menu {
    width: 23px;
  }

  .logo {
    width: 103px;
  }

  .pro-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
  }
}

@media screen and (max-width:400px) {
  .logo {
    width: 110px;
    object-fit: contain;
  }

  .nav-i {
    font-size: 20px;
    padding-right: 1px;
  }
}

@media screen and (max-width:370px) {
  .nav-i {
    font-size: 20px;
    padding: 6px;
  }
}

@media screen and (max-width:346px) {
  .logo {
    width: 100px;
    object-fit: contain;
  }

  .nav-i {
    font-size: 16px;
  }
}

/* Preloader full screen */
#preloader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  /* change if needed */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* Center content */
.preloader-content {
  text-align: center;
}

/* Logo animation (optional) */
.preloader-logo {
  width: 120px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

/* Smooth animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@media (max-width: 767.98px) {
  .footer-col {
    border-bottom: 1px solid #eeeeee;
    padding: 10px 0;
  }

  .footer-col:last-child {
    border-bottom: none;
  }

  .footer-toggle {
    cursor: pointer;
    margin-bottom: 0 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 15px !important;
  }

  .footer-content {
    display: none;
    padding-bottom: 15px;
  }

  .footer-content.show {
    display: block;
  }

  .footer-toggle i {
    transition: transform 0.3s ease;
    font-size: 14px;
  }

  .footer-col.active .footer-toggle i {
    transform: rotate(180deg);
  }
}

/* Thin Scroller Utility */
.thin-scroller::-webkit-scrollbar {
  width: 6px;
}

.thin-scroller::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.thin-scroller::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.thin-scroller::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* For Firefox */
.thin-scroller {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}