/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/


body {
  font-family: var(--font-primary);
  color: #313030;
  overflow-x: hidden;
  transition: 2s;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: var(--white);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.footer-bottom-nav {
  list-style: none;
  margin: 0px;
}
.footer-bottom-nav a{
  color: var(--primary-dark-color);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header#header.fixed-top{
  right: 1rem !important;
  left: 1rem !important;
  padding: 20px;
  border-radius: 0px 0px 20px 20px;
  box-shadow: var(--primary-box-shadow);
}
.header-main {
  padding-top: 10px;
  border-radius: 0px 0px 20px 20px;
  box-shadow: var(--primary-box-shadow);
}

/*-- Top Bar --*/

#topbar {
  background: var(--primary-color);
  font-size: 14px;
  padding: 0;
  border-radius: 30px;
  color: var(--white);
  height: 30px;
}

#topbar a {
  font-style: normal;
  color: var(--white);
  letter-spacing: 1px;
}

#topbar span {
  font-weight: 600;
}

#topbar a:hover {
  color: var(--secondary-color);
}

span.icon-box {
  height: 22px;
  background: var(--light-color);
  width: 22px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
span.icon-box img{
  width: 18px;
}

.top-nav a, .top-nav span{
  color: var(--white);
  font-size: 12px;
  font-weight: 300;
}

/*-- Main Header --*/

#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  border-radius: 20px;
  background: var(--white);
}

#header.header-fixed {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

#main {
  z-index: 3;
  overflow-x: hidden !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 14px;
  color: var(--secondary-dark-color);
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--primary-color);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--primary-color);
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: var(--white);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: var(--white);
  background: #ff6b3b;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
span.divider-dot {
  color: var(--primary-color);
  margin: 15px;
  font-size: 12px;
}
.top-cart-section{
  display: flex;
  align-items: center;
  justify-content: center;
}
.top-cart-section a {
  width: 34px;
  height: 34px;
  border-radius: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background-color:  var(--light-color);
}
.top-cart-section a:hover{
  background-color:  var(--primary-color);
}
.top-cart-section a img{
  width: 18px;
  height: 18px;
}
a.cart-bag {
  width: auto;
  padding: 6px;
}
a.cart-bag h6{
  font-size: 12px;
  font-weight: 700;
  line-height: 11px;
  margin-right: 6px;
  font-family: var(--font-primary);
}
a.cart-bag h6 span {
  font-size: 8px;
  color: var(--secondary-color);
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: var(--primary-dark-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: var(--primary-dark-color);
}
i.mobile-nav-toggle {
  background: var(--light-color);
  margin-left: 6px;
  border-radius: 40px;
  padding: 3px;
}

.nav-mobile .top-cart-section {
  display: none;
}



.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(43, 37, 35, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: var(--white);
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #473d3a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: var(--white);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: var(--primary-color);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 30px 0;
  overflow: hidden;
}

.section-bg {
  background-color: var(--white);
}

.section-title h2{
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title h6 {
  font-size: 18px;
  color: var(--secondary-color);
  font-weight: 600;
  font-family: var(--font-primary);
}

.title-img {
  width: 28px;
  height: 28px;
  border-radius: 30px;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center ;
}

.title-img img{
  width: 16px;
  height: 16px;
}

/*--------------------------------------------------------------
# Main Banner
--------------------------------------------------------------*/
.carousel{
  border-radius: 20px;
  box-shadow: var(--primary-box-shadow);
}
.carousel-item img {
  height: 70vh;
  object-fit: cover;
  border-radius: 20px;
}
.carousel-control-next, .carousel-control-prev {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 36px;
  height: 36px;
  padding: 6px;
  color: var(--secondary-dark-color);
  opacity: 1;
  transition: opacity .15s ease;
  background: var(--white);
  border-radius: 40px;
  box-shadow: var(--primary-box-shadow);
}
.carousel-control-next{
  right: 10px;
}
.carousel-control-prev{
  left: 10px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f4f2f2;
  margin-bottom: 40px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #635551;
  content: "/";
}

/*--------------------------------------------------------------
# Category
--------------------------------------------------------------*/

section.category{
  box-shadow: var(--primary-box-shadow);
  border-radius: 20px;
  padding: 40px;
}

.category .swiper-wrapper{
  justify-content: center;   
  height: 220px;
}
.category .swiper-slide{
  margin: 0px 60px !important;
} 
.category-img {
    padding: 9px;
    border: 1px dotted var(--light-color);
    border-radius: 100px;
}
.category-box:hover .category-img{
  background: var(--light-color);
}
.category-box h3{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--secondary-dark-color);
  font-family: var(--font-primary);
  /* white-space: nowrap; */
}
.category-box a{
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
}
.swiper-pagination-bullet{
  width: 14px;
  height: 14px;
  background: var(--light-color);
  border: 3px solid var(--primary-color);
}
.swiper-pagination-bullet-active{
  background: var(--primary-color);
}

/*--------------------------------------------------------------
# Banner Two Image
--------------------------------------------------------------*/

.bg-img{
  background: var(--light-color);
  box-shadow: var(--primary-box-shadow);
  border-radius: 20px;
  padding: 40px;
  background: url("../img/bg-one.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*--------------------------------------------------------------
# Banner Two Image
--------------------------------------------------------------*/

section.highlights {
  overflow: visible;
}

.highlights-box {
  position: relative;
  padding: 25px 20px;
  background: var(--white); 
  z-index: 1; 
  overflow: hidden; 
  box-shadow: var(--primary-box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
}

.highlights-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/diamond-bg.jpg") no-repeat center center/cover;
  opacity: 0.5; 
  z-index: -1; 
}

.highlights-img{
  width: 120px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.highlights-img img{
  width: 80px;
  height: 80px;
}
.highlights-box h5{
  font-size: 16px;
  font-family: var(--font-primary);
  font-weight: 600;
  padding-top: 10px;
}

.shine {
  position: relative;
  overflow: hidden;
}
.shine::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  display: block;
  height: 100%;
  left: -75%;
  position: absolute;
  top: 0;
  transform: skewX(-25deg);
  width: 50%;
  z-index: 2;
}
.shine:hover::before, .shine:focus::before {
  -webkit-animation: shine 0.85s;
          animation: shine 0.85s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}

/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
.product-side-banner{
  box-shadow: var(--primary-box-shadow);
  border-radius: 10px;
  overflow: hidden;
  height: 600px;
}
.product-side-banner img{
  width: 100%;
  object-fit: cover;
}
.products-title{
  border-bottom: 1px dashed var(--primary-color);
}
.products .swiper-button-next,
.products .swiper-button-prev{
  width: 36px;
  background: var(--white);
  color: var(--secondary-dark-color);
  box-shadow: var(--primary-box-shadow);
  height: 36px;
  border: 1px solid var(--light-color);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.products .swiper-button-next:hover,
.products .swiper-button-prev:hover{
  box-shadow: none;
  border: 1px solid var(--primary-color);
}
.arrow {
  width: 100px;
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 16px !important;
  font-weight: 700;
}
/* .swiper-button-prev {
  left: -100px;
} */
.product-box{
  padding: 10px;
}
.product-img{
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--light-color);
}
.product-img img{
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}
.product-box:hover .product-img{
  box-shadow: var(--primary-box-shadow);
}
.product-box:hover img {
  transform: scale(1.1);
}
.product-content h4 {
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: 700;
  min-height: 40px;
  color: var(--secondary-dark-color);
}
.product-content h6{
  font-size: 14px;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--primary-dark-color);
}
.product-content h3 {
  font-size: 20px;
  font-family: var(--font-primary);
  font-weight: 700;
  color: var(--secondary-dark-color);
}
button.add-to-cart-btn {
  background: none;
  border: 0;
  border-bottom: 1px solid;
  padding: 2px;
  font-weight: 800;
  color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  width: 90px;
  text-align: center;
}
button.add-to-cart-btn i{
  margin-left: 8px;
  position: absolute;
  left: -30px;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
button.add-to-cart-btn:hover{
  width: 120px;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  text-align: left;
}
button.add-to-cart-btn:hover i{
  left: 96px;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
  /* position: relative; */
}

.product-box .wishlist{
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--white);
  position: absolute;
  right: 10px;
  top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  box-shadow: var(--primary-box-shadow);
  cursor: pointer;
}
.product-box .quick-view{
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: var(--white);
  position: absolute;
  right: 10px;
  top: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  box-shadow: var(--primary-box-shadow);
  cursor: pointer;
  transition-duration: 0.5s;
  transition-delay: 0.5s;
}
.product-box:hover .quick-view{
  top: 50px;
}

.product-box .product-badge{
  position: absolute;
  top: 10px;
  left: 10px;
  text-align: left;
  display: flex;
  gap: 4px;

}
.product-box .product-badge .offer{
  background: var(--secondary-color);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  padding: 1px 10px;
  border-radius: 20px;
  box-shadow: var(--primary-box-shadow);

}
.product-box .product-badge .type{
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-dark-color);
  text-align: center;
  padding: 1px 10px;
  border-radius: 20px;
  box-shadow: var(--primary-box-shadow);
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
.banner-two-img{
  height: 300px;
  box-shadow: var(--primary-box-shadow);
  border-radius: 10px;
  overflow: hidden;
}
.banner-two-img img{
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Brands
--------------------------------------------------------------*/

.brands-img {
  width: 100%;
  box-shadow: var(--primary-box-shadow);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.brands-img img{
  width: 80%;
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.portfolio-item{
  position: relative;
  width: 300px;
  height: 300px;
  box-shadow: var(--primary-box-shadow);
  border-radius: 400px;
  overflow: hidden;
}

.portfolio-item img{
  width: 300px;
  height: 300px;
  -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.portfolio-item::before {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: block;
	content: '';
	width: 0;
	height: 0;
	background: rgba(255,255,255,.2);
	border-radius: 100%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
}
.portfolio-item:hover::before {
	-webkit-animation: circle .99s;
	animation: circle .99s;
}
.portfolio-item:hover img{
  -webkit-transform: scale(1.3);
	transform: scale(1.3);
  rotate: 5deg;
}
@-webkit-keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}
@keyframes circle {
	0% {
		opacity: 1;
	}
	40% {
		opacity: 1;
	}
	100% {
		width: 200%;
		height: 200%;
		opacity: 0;
	}
}


/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 20px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--white);
  opacity: 1;
  border: 1px solid var(--primary-color);
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(71, 61, 58, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--white);
  background: url("../img/bg-one.jpg");
  border-top: 2px solid var(--primary-color);
  overflow-x: hidden;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--white)9f7;
}
.footer-bottom{
  border-top: 2px solid var(--primary-color);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  border-left: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
}



#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--title-font);
  color: #656262;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  color: var(--secondary-color);
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #ffa587;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #656262;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  color: var(--secondary-color);
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: var(--white);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #ffe2d9;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--primary-color);
  color: var(--primary-dark-color);
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: var(--secondary-color);
  color: var(--white);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #313030;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: var(--secondary-color);
  color: var(--white);
  text-decoration: none;
}

.category-slider-mob {
  display: none;
}
.navbar .mobile-only{
  display: none;
}
span.cart-value {
  height: 16px;
  min-width: 16px;
  background: var(--secondary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  border-radius: 30px;
  position: absolute;
  top: -3px;
  right: -3px;
  line-height: 16px;
}
.nav-mobile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.nav-mobile-section h6{
  font-weight: 800;
  font-size: 10px;
  font-family: var(--font-primary);
}


@media (max-width: 1500px) {
  .mobile-nav-toggle, .navbar.navbar-mobile li, .navbar.navbar-mobile li .mobile-only {
    display: block;
  }

  span.divider-dot, .navbar li {
    display: none;
  }
  
}
@media (max-width: 1200px){
  .section-title h2 {
    font-size: 30px;
  }
  .banner-two-img img{
    height: 300px;
  }
}
@media (max-width: 800px){
  #topbar{
    display: none;
  }
  header#header.fixed-top {
    right: 0rem !important;
    left: 0rem !important;
    padding: 10px;
  }
  .navbar.navbar-mobile {
    display: block;
  }
  main{
    margin-top: 90px;
  }
  .top-cart-section .tab{
    display: none;
  }
  header#header.fixed-top{
    padding-top: 10px;
  }
  .nav-mobile .top-cart-section, .top-cart-section .mob {
    display: flex !important;
    justify-content: space-evenly;
  }
  .nav-mobile {
    position: fixed;
    bottom: 0px;
    z-index: 9999;
    background: var(--white);
    padding: 10px;
    left: 0px;
    right: 0px;
    width: 100%;
    border-top: 1px solid var(--secondary-color);
    box-shadow: var(--secondary-box-shadow);
    border-radius: 18px 18px 0 0;
  }
  section{
    overflow-x: hidden;
  }
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: -2px;
    bottom: 70px;
  }
  .carousel-item img {
    height: 20vh;
  }
  .carousel-control-next, .carousel-control-prev{
    display: none;
  }
  section.category {
    padding: 15px;
  }
  .section-title h2 {
    font-size: 24px;
    margin-top: 6px;
  }
  .swiper {
    height: 141px;
  }
  .bg-img{
    padding: 10px;
    margin-bottom: 20px;
  }
  .highlights-box h5 {
    font-size: 9px;
    padding-top: 10px;
    text-align: center;
  }
  .highlights-img img {
    width: 60px;
    height: 60px;
  }
  .highlights-box{
    padding: 16px 5px;
  }
  .highlights-img {
    border-bottom: 1px solid var(--secondary-color);
  }
  .product-side-banner {
    margin-bottom: 25px;
  }
  .product-img {
    height: 200px;
  }
  .product-slider.swiper, .product-all-slider {
    height: 460px;
  }
  .product-content h3 {
    font-size: 16px;
  }
  .product-content h4 {
    font-size: 14px;
  }
  section {
      padding: 0px 0 30px 0;
      overflow: hidden;
  }
  .product-side-banner {
    height: 400px;
  }
  .banner-two-img {
    height: auto;
    margin-bottom: 20px;
  }
  .portfolio-item, .portfolio-item img {
    width: 200px;
    height: 200px;
  }
  footer{
    margin-bottom: 60px;
  }
  .footer-bottom ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
  .category-box{
    text-align: center;
  }
  .category-box h3 {
    font-size: 12px;
    text-align: center;
  }
  .category-box a {
    font-size: 10px;
    text-align: center;
  }
  .category-slider-mob {
    display: block;
  }
  .category-slider{
    display: none;
  }
  #footer .footer-newsletter {
    text-align: center;
  }
  #footer .footer-top .footer-links {
    text-align: left;
}
}
@media (max-width: 500px){
  .product-img {
    height: 160px;
  } 
  .section-title h6 {
    font-size: 12px;
  }
  .title-img {
    width: 20px;
    height: 20px;
  }
  .title-img img {
    width: 10px;
    height: 10px;
  }
  .section-title h2 {
    font-size: 20px;
    margin-top: 6px;
  }
  .section-title h2 {
    font-size: 20px;
    margin-top: 6px;
  }
  .product-slider.swiper, .product-all-slider {
    height: 400px;
  }
  .portfolio-item, .portfolio-item img {
    width: 150px;
    height: 150px;
  }
  .banner-two-img img {
    height: 160px;
  }
  .title-img{
    display: none;
  }
  button.add-to-cart-btn{
    border: 1px solid var(--secondary-color);
    width: auto;
    padding: 2px 5px;
    white-space: nowrap;
  }
  button.add-to-cart-btn:hover{
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    padding: 2px;
    text-align: left !important ;
  }
  .product-box .quick-view{
    top: 50px;
  }
}