/* General Styling */
/* Navbar Styling */
/* Hero Section Styling */
/* Cart & Language Styling */
/* Mobile Styling */
body {
  background-color: #f6f6f6;
  font-family: "Noor", sans-serif!important;
  font-size: 16px!important;
  font-weight: 400!important;
  line-height: 1.3!important;
}
body h1, body h2, body h3, body h4, body h5, body h6, body p {
  margin: 0;
}
body a {
  text-decoration: none;
}
body .btn {
  font-family: "Noor", sans-serif;
  padding: 10px 25px;
  font-size: 15px;
  border-radius: 30px;
  background-color: #DE2424;
  border: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}
body .btn:hover {
  transform: translateY(-2px);
}
body .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .sec-head {
  color: #DE2424;
  font-family: "noor", sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 30px;
}

.container {
  position: relative;
  z-index: 5;
}

.navbar {
  width: 100%;
}
.navbar .search-form {
  width: 100%;
  position: relative;
}
.navbar .search-form .search-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translatey(-50%);
  border: 0;
  background: transparent;
  color: #736962;
}
.navbar .search-form .form-control {
  border-radius: 8px;
  padding: 10px 20px 10px 20px;
  border: 0.25px solid #163160;
}
.navbar .cart {
  display: inline-flex;
  align-items: center;
}
.navbar .cart .cart-icon {
  position: relative;
}
.navbar .cart .cart-icon .fa-shopping-cart {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: #000;
}
.navbar .cart .cart-icon .count {
  position: absolute;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #DE2424;
  color: #fff;
  border-radius: 50%;
  top: -10px;
  right: 0;
}
.navbar .cart .cart-cont {
  display: inline-flex;
  flex-direction: column;
  font-family: "Noor", sans-serif;
  font-size: 13px;
  font-weight: 200;
  color: #000;
}
.navbar .cart .cart-cont span {
  font-size: 16px;
  font-weight: 400;
  color: #000;
}
.navbar .cart .cart-cont .cart-price .currency {
  margin-right: 5px;
  color: #000;
}
.navbar .cart .cart-cont .cart-price .total-price {
  color: #DE2424;
}
.navbar .navbar-toggler {
  border: 0;
  padding: 0;
}
.navbar .language-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid #ccc; /* Add a border if needed */
  border-radius: 4px; /* Rounded corners */
}
.navbar .language-dropdown .selected-language {
  margin-right: 8px;
}
.navbar .language-dropdown .caret {
  margin-right: 10px;
  border: solid black; /* Customize the caret color */
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
}
.navbar .language-dropdown .dropdown-menu {
  display: none; /* Hidden by default */
}
.navbar .language-dropdown:hover .dropdown-menu,
.navbar .language-dropdown:hover .dropdown-menu:hover {
  display: block; /* Show on hover */
}
.navbar .language-dropdown .dropdown-item {
  padding: 8px 12px; /* Adjust padding */
  cursor: pointer;
}
.navbar .language-dropdown .dropdown-item:hover :hover {
  background-color: #e9ecef; /* Hover background color */
}
.navbar .currency-dropdown {
  display: inline-block;
}
.navbar .currency-dropdown .currency-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.navbar .currency-dropdown .currency-selector .selected-currency {
  margin-right: 8px;
}
.navbar .currency-dropdown .currency-selector .dropdown-menu {
  display: none; /* Hidden by default */
}
.navbar .currency-dropdown .currency-selector:hover .dropdown-menu,
.navbar .currency-dropdown .currency-selector:hover .dropdown-menu:hover {
  display: block; /* Show on hover */
}
.navbar .currency-dropdown .currency-selector .dropdown-item {
  padding: 8px 12px; /* Adjust padding */
  cursor: pointer;
}
.navbar .currency-dropdown .currency-selector .dropdown-item:hover {
  background-color: #e9ecef; /* Hover background color */
}

.navbar-brand img {
  width: 90px;
}

.navbar-nav .nav-link {
  font-size: 16px;
  color: #343a40;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover {
  color: #DE2424;
}

.sidemenu-toggle {
  position: relative;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #000;
}
.sidemenu-toggle:hover {
  color: #000;
}

.sidemenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1333333333);
  backdrop-filter: blur(10px);
  background-size: 300px;
  background-repeat: repeat;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transform: translateY(-100%);
  overflow: hidden;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s;
}
.sidemenu .main-links {
  position: relative;
  padding-inline-start: 6vw;
  display: flex;
  height: 60vh;
  flex-wrap: wrap;
}
.sidemenu .main-links .header-links {
  /*padding: 0 15px;*/
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidemenu .main-links .header-links .language-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 10px 20px;
  border: 1px solid #ccc; /* Add a border if needed */
  border-radius: 4px; /* Rounded corners */
}
.sidemenu .main-links .header-links .language-dropdown .selected-language {
  color: #fff;
  margin-right: 8px;
}
.sidemenu .main-links .header-links .language-dropdown .caret {
  margin-right: 10px;
  border: solid #fff; /* Customize the caret color */
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
}
.sidemenu .main-links .header-links .language-dropdown .dropdown-menu {
  display: none; /* Hidden by default */
}
.sidemenu .main-links .header-links .language-dropdown:hover .dropdown-menu,
.sidemenu .main-links .header-links .language-dropdown:hover .dropdown-menu:hover {
  display: block; /* Show on hover */
}
.sidemenu .main-links .header-links .language-dropdown .dropdown-item {
  padding: 8px 12px; /* Adjust padding */
  cursor: pointer;
}
.sidemenu .main-links .header-links .cart {
  display: inline-flex;
  align-items: center;
}
.sidemenu .main-links .header-links .cart .cart-icon {
  position: relative;
}
.sidemenu .main-links .header-links .cart .cart-icon .fa-shopping-cart {
  font-size: 1.2rem;
  margin-right: 0.5rem;
  color: #032064;
}
.sidemenu .main-links .header-links .cart .cart-icon .count {
  position: absolute;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #DE2424;
  color: #fff;
  border-radius: 50%;
  top: -10px;
  right: 0;
}
.sidemenu .main-links .header-links .cart .cart-cont {
  display: inline-flex;
  flex-direction: column;
  font-family: "Noor", sans-serif;
  font-size: 13px;
  font-weight: 200;
  color: #fff;
}
.sidemenu .main-links .header-links .cart .cart-cont span {
  font-size: 16px;
  font-weight: 400;
  color: #de2424;
}
.sidemenu .main-links .header-links .cart .cart-cont .cart-price .currency {
  margin-right: 5px;
  color: #fff;
}
.sidemenu .main-links .header-links .cart .cart-cont .cart-price .total-price {
  color: #DE2424;
}
.sidemenu .main-links .header-links .cart .dropdown-menu {
  background-color: unset;
}
.sidemenu .main-links .header-links .cart .dropdown-menu .dropdown-item {
  padding: 0;
}
.sidemenu .main-links .header-links .cart .dropdown-menu .dropdown-item:hover {
  background-color: unset;
  color: #DE2424;
}
.sidemenu .main-links ul {
  width: 100%;
  margin: 0;
  padding: 0;
}
.sidemenu .main-links ul li {
  list-style-type: none;
  display:block;
}
.sidemenu .main-links .main-link {
  position: relative;
  font-size: 16px;
  font-weight: bolder;
  margin: 15px 0;
  text-transform: uppercase;
  transform: scale(1.2) translateX(50px);
  transition: all 0.2s linear;
  padding-left: 40px;
  color: #042165;
}
.sidemenu .clss {
  font-size: 30px;
  position: absolute;
  top: 25px;
  right: 5.5vw;
  cursor: pointer;
}
.sidemenu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.5s ease, opacity 0.5s ease, visibility 0s linear;
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  z-index: -1;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.6;
  background-image: linear-gradient(to bottom, #000000 0%, #000000 100%);
}
.hero-section .hero-slider {
  position: relative;
  overflow: hidden;
}
.hero-section .hero-slider .item {
  height: 700px;
  width: 100%;
  height: 100%;
}

.category-section {
  padding: 105px 0;
}
.category-section .item {
  margin-bottom: 15px;
  color: #000;
}
.category-section .item .img {
  position: relative;
  margin: auto;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: inset 0 4px 4px -1px rgba(12, 12, 13, 0.05);
  /*background-image: url("images/category-1-bg.png");*/
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: end;
}
.category-section .item .img img {
  transition: all 0.3s ease;
  height: 80px;
  object-fit: contain;
}
.category-section .item .img:hover img {
  height: 100%;
}
.card-wrapper .item .cont {
  text-align:right;
}
.products-slider .item .cont {
  text-align:right;
}
.category-section .item .cont {
  margin-top: 10px;
}
.category-section .item .cont h6 {
  font-size: 16px;
  font-weight: 400;
  font-family: "Noor", sans-serif;
}

.top-seller-section {
  padding-bottom: 70px;
  direction :rtl;
}
.top-seller-section .prodcuts.row {
  display: grid;
}
.top-seller-section .item {
  position: 327px;
  position: relative;
  overflow: hidden;
  padding: 8px;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}
.top-seller-section .item .img {
  /*background-image: url(images/Card.png);*/
  background-position: center;
  background-size: cover;
  height: 150px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.top-seller-section .item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  opacity: 0; /* Start with opacity 0 */
}
.top-seller-section .item .img img:first-child {
  opacity: 1; /* The first image starts fully visible */
}
.top-seller-section .item .title {
  font-family: "Noor", sans-serif;
  font-size: 16px;
  font-weight: 400;
  /*margin-bottom: 10px;*/
  color: #000;
}
.top-seller-section .item .price {
  font-family: "Noor", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #163160;
  margin-bottom: 10px;
}
.top-seller-section .item .price .old-price {
  margin-right: 5px;
  color: #BCB3AD;
  font-family: "Noor", sans-serif;
  font-size: 13px;
  font-weight: 200;
  text-decoration: line-through;
}
.top-seller-section .item .price .discount {
  font-family: "Noor", sans-serif;
  font-size: 13px;
  font-weight: 200;
  color: #DE2424;
}
.top-seller-section .item .quantity {
  font-family: "Noor", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #DE2424;
}
.top-seller-section .item .btn {
  background-color: #14AE5C;
  color: #fff;
  margin-bottom: 20px;
}
.top-seller-section .item .quantity-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 5px 35px;
}
.top-seller-section .item .quantity-selector button {
  border: 0;
  background-color: transparent;
  margin: 0;
  color: #fff;
  font-size: 18px; /* Size of + and - icons */
  cursor: pointer;
}
.top-seller-section .item .quantity-selector input {
  width: 50px; /* Adjust width for a better fit */
  color: #fff;
  text-align: center;
  padding: 5px 0;
  margin: 0 10px;
  border: 0;
  background-color: transparent;
  font-size: 16px; /* Ensure input font size matches */
  appearance: textfield; /* Remove number input arrows in some browsers */
  -moz-appearance: textfield; /* Remove arrows in Firefox */
}
.top-seller-section .item .quantity-selector input::-webkit-scrollbar {
  display: none; /* Hide scrollbars */
}
.top-seller-section .item .item-tag {
  z-index: 9;
  border-radius: 16px 16px 0 16px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 15px;
  color: #fff;
}
.top-seller-section .item .out-of-stock-tag {
  background-color: #f1f0ef;
  color: #4F4F4F;
}
.top-seller-section .item .pre-order-tag {
  background-color: #146c43;  
}
.top-seller-section .item .gift-tag {
  background-color: #14AE5C;
}
.top-seller-section .item .runway-tag {
  background-color: #DE2424;
}
.top-seller-section .item .top-seller-tag {
  background-color: #2B2724;
}
.top-seller-section .item .delivery-tag {
  background-color: #1466E1;
}
.top-seller-section .item:hover {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1333333333);
}

.recently-section {
  padding-bottom: 70px;
}
.recently-section .products-slider {
  position: relative; /* To position the arrows relative to this container */
}
.recently-section .products-slider .slider {
  overflow: hidden;
}
.recently-section .products-slider .item {
  position: relative;
  overflow: hidden;
  padding: 8px;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  direction:ltr;
  height:327px;
}
.recently-section .products-slider .item .img {
  background-image: url(images/Card.png);
  background-position: center;
  background-size: cover;
  height: 150px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  margin-bottom: 10px;
}
.recently-section .products-slider .item .img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  opacity: 0; /* Start with opacity 0 */
}
.recently-section .products-slider .item .img img:first-child {
  opacity: 1; /* The first image starts fully visible */
}
.recently-section .products-slider .item .title {
  font-family: "Noor", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #000;
  padding:0px!important;
}

.recently-section .products-slider .item .price {
  font-family: "Noor", sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: #163160;
  margin-bottom: 10px;
}
.recently-section .products-slider .item .price .old-price {
  margin-right: 5px;
  color: #BCB3AD;
  font-family: "Noor", sans-serif;
  font-size: 13px;
  font-weight: 200;
  text-decoration: line-through;
}
.recently-section .products-slider .item .price .discount {
  font-family: "Noor", sans-serif;
  font-size: 13px;
  font-weight: 200;
  color: #DE2424;
}
.recently-section .products-slider .item .quantity {
  font-family: "Noor", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #DE2424;
}
.recently-section .products-slider .item .btn {
  background-color: #14AE5C;
  color: #fff;
  margin-bottom: 20px;
}
.recently-section .products-slider .item .quantity-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 5px 35px;
}
.recently-section .products-slider .item .quantity-selector button {
  border: 0;
  background-color: transparent;
  margin: 0;
  color: #fff;
  font-size: 18px; /* Size of + and - icons */
  cursor: pointer;
}
.recently-section .products-slider .item .quantity-selector input {
  width: 50px; /* Adjust width for a better fit */
  color: #fff;
  text-align: center;
  padding: 5px 0;
  margin: 0 10px;
  border: 0;
  background-color: transparent;
  font-size: 16px; /* Ensure input font size matches */
  appearance: textfield; /* Remove number input arrows in some browsers */
  -moz-appearance: textfield; /* Remove arrows in Firefox */
}
.recently-section .products-slider .item .quantity-selector input::-webkit-scrollbar {
  display: none; /* Hide scrollbars */
}
.recently-section .products-slider .item .item-tag {
  z-index: 9;
  border-radius: 16px 16px 0 16px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 5px 15px;
  color: #fff;
}
.recently-section .products-slider .item .out-of-stock-tag {
  background-color: #f1f0ef;
  color: #4F4F4F;
}
.recently-section .products-slider .item .pre-order-tag {
  background-color: #146c43;  
}
.recently-section .products-slider .item .gift-tag {
  background-color: #14AE5C;
}
.recently-section .products-slider .item .runway-tag {
  background-color: #DE2424;
}
.recently-section .products-slider .item .top-seller-tag {
  background-color: #2B2724;
}
.recently-section .products-slider .item .delivery-tag {
  background-color: #1466E1;
}
.recently-section .products-slider .item:hover {
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1333333333);
}
.recently-section .products-slider .swiper-button-prev,
.recently-section .products-slider .swiper-button-next {
  position: absolute;
  top: 50%; /* Center vertically */
  transform: translateY(-50%); /* Adjust for centering */
  z-index: 10; /* Ensure arrows are above other elements */
  color: #fff;
  background-color: #DE2424;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.recently-section .products-slider .swiper-button-prev i,
.recently-section .products-slider .swiper-button-next i {
  line-height: 0;
  font-size: 16px;
}
.recently-section .products-slider .swiper-button-prev::after,
.recently-section .products-slider .swiper-button-next::after {
  display: none;
}
.recently-section .products-slider .swiper-button-prev {
  left: -50px; /* Adjust as needed */
  right: unset;
}
.recently-section .products-slider .swiper-button-next {
  right: -50px; /* Adjust as needed */
  left: unset;
}

.ads-section {
  padding-bottom: 70px;
}
.ads-section .ads-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 20px;
}
.ads-section .ads-wrapper .ad-box {
  height: 230px;
  border-radius: 24px;
  overflow: hidden;
}
.ads-section .ads-wrapper .black-friday-ad {
  width: 30%;
}
.ads-section .ads-wrapper .hot-sale-ad {
  width: 70%;
}

.top-footer {
  position: relative;
  background-color: #000;
  padding: 40px 0;
}
.top-footer .item {
  text-align: center;
  margin-bottom: 20px;
}
.top-footer .item .img {
  border: 10px solid #f6f6f6;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  margin-bottom: 20px;
}
.top-footer .item .img img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.top-footer .item .title {
  font-family: "Noor", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #DE2424;
  margin-bottom: 10px;
}
.top-footer .item .description {
  color: #F1F0EF;
  font-family: "Noor", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.top-footer::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 30%;
  left: 0;
  top: 0;
  background-color: #f6f6f6;
}

footer {
  background-color: #000000;
  text-align:right;
}
footer .links-content {
  padding: 40px 0;
}
footer .links-content p {
  font-size: 16px;
  font-weight: 400;
  color: #F9F8F7;
}
footer .links-content .footer-logo {
  margin-bottom: 15px;
}
footer .links-content .social-links {
  margin-top: 20px;
}
footer .links-content .social-links h5 {
  color: #DE2424;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
footer .links-content .social-links p {
  font-size: 16px;
}
footer .links-content .social-links .social-icons {
  margin-top: 20px;
  gap: 25px;
}
footer .links-content .social-links .social-icons .fab , .fas {
  color:#fff;
} 
footer .links-content .social-links .social-icons svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}
footer .links-content .links {
  margin-bottom: 15px;
}
footer .links-content .links h5 {
  color: #A31B1B;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}
footer .links-content .links ul {
  margin: 0;
  padding: 0;
}
footer .links-content .links ul li {
  margin-bottom: 10px;
  padding: 0;
  list-style-type: none;
  color: #F6F6F6;
  font-size: 18px;
  font-weight: 400;
  display:flex;
}
footer .links-content .links ul li a {
  color: inherit;
  text-decoration: none;
}
footer .links-content .links .item {
  margin-bottom: 20px;
}
footer .links-content .links .item .title {
  color: #F6F6F6;
  font-size: 17px;
  margin-bottom: 5px;
}
footer .links-content .links .item .title img {
  width: 24px;
  height: 24px;
  margin-left: 10px;
}
footer .links-content .links .item .description {
  font-family: "Noor", sans-serif;
  color: #F6F6F6;
  font-size: 14px;
  font-weight: 400;
}
footer .links-content .subscribe h5 {
  color: #A31B1B;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 10px;
}
footer .links-content .subscribe .subscribe-form {
  width: 100%;
  margin-top: 20px;
  color: #fff;
}
footer .links-content .subscribe .subscribe-form::placeholder {
  color: #D5D0CC;
}
footer .links-content .subscribe .subscribe-form .form-input {
  position: relative;
}
footer .links-content .subscribe .subscribe-form .form-input .form-control {
  text-align: right;
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #DE2424;
  color: #fff;
  box-shadow: unset;
}
footer .links-content .subscribe .subscribe-form .form-input button {
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  color: #fff;
  background-color: #DE2424;
  margin: unset;
  border-radius: 0px 30px 30px 0px;
}

.copy-right {
  background-color: #2B2724;
  padding: 20px 0;
  background-image: url("images/footer-bottom-bg.png");
  background-position: center;
  background-size: cover;
}
.copy-right p {
  font-size: 18px;
  color: #D5D0CC;
}

@media (min-width: 1200px) {
  .prodcuts.row {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 991px) {
  .sidemenu .clss {
    color: #fff;
  }
  .navbar {
    position: absolute;
    left: 0;
    top: 0;
  }
  .navbar .d-flex {
    justify-content: center;
  }
  .navbar .sidemenu-toggle {
    color: #fff;
  }
  .navbar .cart .cart-icon .fa-shopping-cart {
    color: #1c3671;
  }
  .hero-section .hero-slider .item {
    height: max-content;
  }
  .top-seller-section .prodcuts.row {
    grid-template-columns: repeat(2, 1fr);
  }
  br {
    display: none;
  }
  .md-mb50 {
    margin-bottom: 50px;
  }
  .md-mb30 {
    margin-bottom: 30px;
  }
  .category-section .categories {
    flex-wrap: wrap;
  }
  .recently-section .products-slider .swiper-button-prev, .recently-section .products-slider .swiper-button-next {
    top: unset;
    bottom: -20px;
    transform: unset;
  }
  .recently-section .products-slider .swiper-button-next {
    right: 0;
  }
  .recently-section .products-slider .swiper-button-prev {
    left: 0;
  }
  .ads-section .ads-wrapper {
    flex-wrap: wrap;
  }
  .ads-section .ads-wrapper .ad-box {
    width: 100%;
  }
  .top-footer::after {
    height: 18%;
  }
  footer .footer-logo {
    width: 200px;
  }
}
 .before_footer
 {
     position:relative;
     z-index:1000;
 }
@media (max-width: 720px) {
  .top-seller-section .prodcuts.row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product_detail_social_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
/*# sourceMappingURL=style.css.map */



/*new changes*/
.section-b-space{
    top:100px;
}
.top-seller-section
{
    padding: 130px 0px;
}

 