/* =================
  2. STYLE ALL RULES
=================== */
/* @import url(arabic.css); */
/* @import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@700&display=swap');
/* @font-face {
    font-family: "theSans";
    src: url("../fonts/WOFF2/TheSansOffice-Regular_TRIAL.woff2") format("woff2"),
      url("../fonts/TTF/TheSansOffice-Regular_TRIAL.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: "theSans";
    src: url("../fonts/WOFF2/TheSansOffice-Bold_TRIAL.woff2") format("woff2"),
      url("../fonts/TTF/TheSansOffice-Bold_TRIAL.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
  }

  @font-face {
    font-family: "theSans";
    src: url("../fonts/WOFF2/TheSansOffice-Italic_TRIAL.woff2") format("woff2"),
      url("../fonts/TTF/TheSansOffice-Italic_TRIAL.ttf") format("truetype");
    font-weight: normal;
    font-style: italic;
  }

  @font-face {
    font-family: "theSans";
    src: url("../fonts/WOFF2/TheSansOffice-BoldItalic_TRIAL.woff2")
        format("woff2"),
      url("../fonts/TTF/TheSansOffice-BoldItalic_TRIAL.ttf") format("truetype");
    font-weight: bold;
    font-style: italic;
  } */ */


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



body {
    /* font-family: "theSans", sans-serif; */
    font-family: "Almarai", serif;
    font-weight: 700;
    font-style: normal;
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.452;
    color: #0c0606;


}

.language-link {
    display: none; /* إخفاء جميع اللغات في البداية */
}

.language-link:first-child {
    display: inline-block; /* إظهار أول لغة فقط */
}


/* [dir="rtl"] body {
    font-family: "theSans", sans-serif !important;
} */

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #221e1e;
}
a,
span {
  display: inline-block;
}
img {
  vertical-align: middle;
}
input:not(input[type="radio"], input[type="checkbox"]),
textarea,
select,
button {
  outline: none;
  /* font-family:"theSans", sans-serif !important; */
  width: 100%;
}

.floating-image {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-image img {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.floating-image img:hover {
    transform: scale(1.1); /* تأثير تكبير عند تمرير الماوس */
}



/* Align based on direction */
html[dir="rtl"] .floating-image {
    float: right;
    margin-left:50px !important;
}

html[dir="ltr"] .floating-image {
    float: left; /* Move to the left for English */
}


.remove-caret::-webkit-outer-spin-button,
.remove-caret::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.img-fluid {
  max-width: 100%;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-white {
  color: #fff;
}

.btn {
    /* font-family:"theSans", sans-serif !important; */
  padding: 9px 15px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  border-radius: 3px;
  text-align: center;
}

/* .btn-primary{
    background-color: #f4e9d3 !important;
    color:black;
    border-color:  #f4e9d3 !important;
    border-radius:20px;
} */
button[type="submit"] {
  width: fit-content;
}
.btn-primary[disabled] {
  cursor: not-allowed;
}
.btn-outline-primary {
  color: #221e1e;
  border: 1px solid #221e1e;
  background-color: transparent;
  transition: 250ms ease-in-out;
}


.position-relative {
  position: relative;
}

.overflow-hidden {
  overflow: hidden;
}

.section {
  padding: 40px 15px;
}

label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}
.main-input {
  border-radius: 12px;
  border: 1px solid #d8d8d8;
  padding: 10px 15px;
  height: 43px;
}

.btn-outline-primary:hover {
    background-color: transparent !important;
    color: inherit !important;
    border-color: inherit !important;
}
/* .btn-primary:hover {
    background-color: transparent !important;
    color: inherit !important;
    border-color: inherit !important;
} */


.main-input:hover {
  border: 1px solid #bababa;
}

.invalid {
  margin-top: 10px;
  color: #f00;
  font-weight: 500;
  display: none;
}
.invalid.active {
  display: block;
}
.loader {
  width: 48px;
  height: 48px;
  display: inline-block;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader::after,
.loader::before {
  content: "";
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #221e1e;
  position: absolute;
  left: 0;
  top: 0;
  animation: animloader 1.5s linear both infinite;
}
.loader::after {
  animation-delay: 1s;
}

@keyframes animloader {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.text-lg-right {
  text-align: right;
}
@media screen and (max-width: 992px) {
  .text-lg-right {
    text-align: center !important;
  }
}

.icons a {
  transition: 90ms ease-in-out;
}
.icons a.active {
  color: rgb(255, 48, 64);
}
.icons a svg.active {
  fill: rgb(255, 48, 64);
  stroke: rgb(255, 48, 64);
  transform: scale(1.169);
  animation: scaleIn 0.5s ease-in-out both;
}

@keyframes scaleIn {
  0% {
    transform: scale(1.11);
  }
  75% {
    transform: scale(1.8);
  }
  100% {
    transform: scale(1.11);
  }
}
@media screen and (max-width: 576px) {
  .text-sm-center {
    text-align: center;
  }
}
@media screen and (max-width: 300px) {
  .text-sm-center {
    text-align: center;
  }
}

/*===========================
    STYLE HEADER-TOP
============================*/
.top {
  background-color: #f4e9d3;
}
.header-top {
  padding: 10px 0;
}

.header-top .socail a {
  margin-right: 25px;
  font-size: 17px;
}

a.logo img {
  max-width: 140px;
}

@media screen and (max-width: 768px) {
  a.logo img {
    max-width: 100px;
  }
  .header-top .socail a {
    margin-right: 15px;
    /* font-family:"theSans", sans-serif !important; */
  }
}

.header-top .head-right {
  gap: 25px;
}
.header-top a.login {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  opacity: 0.8;
  padding: 10px 0;
  color: #000;
  font-weight: bold;
}

.header-top form.search {
  position: relative;
  width: 200px;
}

.header-top form.search input {
  width: 100%;
  border-radius: 25px;
  padding: 8px 27px 8px 10px;
  font-size: 12px;
  /* font-family:"theSans", sans-serif !important; */
  border: 1px solid #231f20;
  color: #333;
  outline: none;
  font-weight: 500;
  background-color: transparent;
}

.header-top form.search .fa-magnifying-glass {
  position: absolute;
  top: 50%;
  right: 12px;
  font-size: 12px;
  transform: translateY(-50%);
  color: #222;
}


.username {
    font-weight: bold;
    font-size: 0.8rem;
    color: #333;
    text-transform: capitalize;
    border-radius: 50%;

}


.username:hover {
    color: #000000;
    text-decoration: underline;
}


.logout-btn {
    background-color: #000000;
    border: none;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;

}
.logout-btn:hover {

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}


.logout-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.5);
}


.header-top form.search button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: transparent;
  border: none;
  background: transparent;
  width: 33px;
  cursor: pointer;
}

@media screen and (max-width: 992px) {
  .header-top form.search {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 4;
  }
  .header-top form.search.active {
    display: block !important;
  }
  .header-top form.search input {
    padding: 8px 43px 8px 10px;
  }

}
@media screen and (max-width: 500px) {
    .header-top{
        height:15px;
    }
    #wishlistIcon,
    #cartIcon {
        justify-content: flex-start !important; /* Force alignment to the left */
        text-align: left !important;          /* Ensure content aligns left */
        margin-left: 0 !important;           /* Remove any margin */
        padding-left: 0 !important;         /* Remove any padding */
    }

    #wishlistIcon a,
    #cartIcon a {
        display: inline-flex !important;    /* Ensure correct display mode */
        align-items: center !important;    /* Center icon and text vertically */
    }
}
.header-top .head-right li svg {
  display: block;
}
.header-top .head-right li svg path,
.header-top ul li i {
  cursor: pointer;
}

.header-top .head-right li[data-cart] svg:hover path {
  fill: #000;
}

.head-right li {
  position: relative;
  cursor: pointer;
}
.head-right li[data-heart]::before {
  content: attr(data-heart);
}
.head-right li[data-cart]::before {
  content: attr(data-cart);
}

.head-right li::before,
.head-right li::before {
  font-size: 9px;
  background-color: #cd2122;
  color: #fff;
  width: 16px;
  height: 16px;
  display: block;
  text-align: center;
  line-height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  left: -12px;
  font-weight: 600;
  /* font-family:"theSans", sans-serif !important; */
}

[dir="rtl"] .cart-item-info {
    margin-right:10px !important;
    text-align: right !important;
  }

/* CARRT-BOX */
.cart-box-overlay {
  position: fixed;
  z-index: 1100;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  transition: 0.4s;
  visibility: hidden;
  opacity: 0;
}
.cart-box-overlay.visible {
  visibility: visible;
  opacity: 1;
}
.cart-box-overlay .cart-box {
  position: fixed;
  z-index: 1100;
  width: 390px;
  height: 100vh;
  top: 0;
  right: 0;
  right: -400px;
  background-color: #fff;
  transition: 0.4s;
  box-shadow: 0 3px 6px 0px rgba(0, 0, 0, 0.18);
  padding: 20px 25px 0 65px;
}
.cart-box-overlay .cart-box.active {
  right: 0;
}
.cart-box-overlay .cart-box h2 {
  text-transform: uppercase;
  font-size: 18px;
}
.cart-box-overlay .cart-box span.close-cart {
  font-size: 39px;
  cursor: pointer;
}
.cart-box-overlay .cart-box .cart-box-product {
  height: 250px;
  padding-right: 10px;
  overflow: scroll;
}

.cart-box-overlay .cart-box .cart-box-product img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.cart-box-overlay .cart-box .cart-box-product a {
  color: #000;
  letter-spacing: 2px;
  font-weight: 500;
}

.cart-box-overlay .cart-box-product .close-pro {
  font-size: 18px;
  cursor: pointer;
}

.cart-box-overlay .cart-box-product::-webkit-scrollbar {
  width: 2px;
}
.cart-box-overlay .cart-box-product::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 100px;
  opacity: 0;
  visibility: hidden;
}
.cart-box-overlay .cart-box-product:hover::-webkit-scrollbar-thumb {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width: 500px) {
    .products-card .wishlist-icon {
        display: none !important;
    }
}
/*===========================
    STYLE NAV-MENU
============================*/

nav.menu {
  gap: 12px;
  z-index: 999;
  display: flex;
  justify-content: center;
}

nav.menu a {
  color: #4c4c4c;
  text-transform: capitalize;
  font-size: 15px;
  font-weight: 500;
  padding: 10px;
  /* display: flex; */
  flex-direction: column;
  align-items: center;
  transition: 150ms ease-in-out;
}

nav.menu a i {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  nav.menu a span {
    font-size: 1rem;
  }

nav.menu a:hover,
nav.menu a.active {
  color: #221e1e;
}

.bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: fit-content;
  z-index: 1;
  position: relative;
}

.bars span {
  width: 20px;
  height: 2px;
  opacity: 1;
  margin-bottom: 5px;
  border-radius: 2px;
  background-color: #000;
  transition: 250ms linear;
}
.bars span:last-child {
  margin-bottom: 0;
}
.bars.active span:first-child {
  transform: rotate(135deg) translateX(10px);
  margin-left: 10px;
}
.bars.active span:nth-child(2) {
  transform: translateX(-100px);
  opacity: 0;
}
.bars.active span:last-child {
  transform: rotate(-135deg) translateX(10px);
  margin-left: 10px;
}
.mobile {

    position: absolute;
    top: 65px; /* Align with the top of the parent container */
    left: 100%; /* Position it off-screen to the right */
    height: 100vh; /* Ensure it covers the full height */
    width: 250px; /* Adjust width as needed */
    transition: 250ms linear;
    z-index: 100;
    background-color: #f4e9d3 !important;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    overflow: hidden;
    clip-path: polygon(0 0, 0 100%, 0 100%, 0 0); /* Initially collapsed to the left */
  }

  .mobile.active {
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0); /* Expands horizontally */
    left: 0; /* Move it into view */
  }

  .mobile a {
    text-transform: capitalize;
    opacity: 0.9;
    color: black;
    padding: 20px 20px;
    font-weight: 500;
    font-size:20px;
    letter-spacing: 1px;
    display: block;
    text-decoration: none; /* Remove underline */
  border-bottom: 1px solid #ddd; /* Line separator between links */
  transition: background-color 0.3s ease, color 0.3s ease;
  }


  .mobile a:hover {
    background-color: #f0f0f0; /* Highlight on hover */
    /* Change text color on hover */
  }

  .mobile a.active {
    color: #f1bf5a; /* Active link color */
    font-weight: bold; /* Highlight active link */
  }

  .mobile-soci {
    /* background-color: #f4e9d3; */
    display: flex; /* Arrange items in a row */
    justify-content: center;
    top:30px !important;
    gap: 15px;
    /* margin-top: auto; */
    margin-top:150px /* Push to the bottom */
    /* padding: 20px 0;  */
    /* border-top: 1px solid #ddd; */
  }

  .mobile-soci a {

    color: black;
    font-size: 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
  }


  [dir="rtl"] .mobile {
    left: auto; /* Reset left */
    right: 100%; /* Off-screen to the left */
}

.cart-item .remove-item{
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
  }

[dir="rtl"] .mobile.active {
    right: 0; /* Slide into view from the left */
}
  /* .arabicmobile {
    margin-top: 10px;
    font-size: 16px;
    text-align: right;
    color: #253af7;
  } */

  @media screen and (max-width:320px) {
    .mobile-soci {
        /* background-color: #f4e9d3; */
        display: flex; /* Arrange items in a row */
        justify-content: center;
        top:20px !important;
        gap: 15px;
        padding: 120px 0;
        /* margin-bottom: 600px !important; */
      }
      .mobile a {
        text-transform: capitalize;
        opacity: 0.9;
        color: black;
        padding: 19px 19px !important;
        font-weight: 500;
        font-size:20px;
        letter-spacing: 1px;
        display: block;
        text-decoration: none; /* Remove underline */
      border-bottom: 1px solid #ddd; /* Line separator between links */
      transition: background-color 0.3s ease, color 0.3s ease;
      }
      .mobile {
        position: fixed !important; /* Keep the sidebar fixed to the viewport */
        top: 0 !important; /* Align it to the top of the screen */
        left: 0 !important; /* Align it to the left */
        height: 100vh !important; /* Ensure it takes the full height of the viewport */
        width: 80%; /* Adjust width for responsiveness */
        max-width: 300px; /* Optional: Set a maximum width */
        background-color: #fff; /* Background for sidebar */
        z-index: 100; /* Place it above other content */
        padding: 15px; /* Add spacing */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
        overflow-y: auto !important; /* Enable vertical scrolling */
        overflow-x: hidden !important; /* Prevent horizontal scrolling */
        transition: transform 0.3s ease-in-out;  /* Subtle shadow for depth */
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);/* Initially collapsed to the left */
      }
      .add-size{
        width:340px !important;
      }
      .sizeChartBtn{
        width:100px !important;
      }
      .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin: auto !important;
        justify-content: center !important;
        align-items: center !important;
      }
      [dir="rtl"] .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-left: 35px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      .wishlist-card .d-flex button {
        width:60px !important;
        font-size:9px;
        word-wrap: break-word !important; /* Ensure that long words break to fit the button */
       white-space: normal !important; /* Allow text to break into new lines */
       word-break: break-word !important;
      }
      .wishlist-card .form-control{
        width:40px !important;
      }
      .cart-item{
        width:310px !important;
        height:120px !important;
        text-wrap: nowrap;
        text-align: center;
        justify-content: center;
        left:0;
      }

      .cart-item .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width:200px !important;
    }
    .item-image {
       /* Ensure the image is responsive */
        height: auto;    /* Maintain the aspect ratio */
    }
      .cart-item .quantity-input{
        width:40px;
        text-align:right;
        margin-left:30px;
      }
      .cart-item .remove-item{
       text-align:left;
      }
      .cart-summary{
        width:290px !important;
        height:300px !important;
        text-wrap:nowrap;
      }
      .cart-summary table{
        width:200px !important;
      }
      .cart-header button{
        text-wrap: nowrap;
        width:100px !important;
        height:35px !important;
        margin-top:7px !important;
        text-align: center;

      }
      .cart-item-info h4{
        font-size:15px !important;
      }
      #grand-total{
       margin-right:250px !important;
       font-size:14px !important;
      }

      .stores-header h4{
        text-wrap: nowrap;
        font-size:10px !important;
      }
      .category-header h4{
        font-size:150px !important;
      }
      .stores-header a{
        width:95px !important;
        height:35px !important;
        margin-bottom:25px !important;
        border-radius:10px;
      }
      .product img{
        height:120px !important;
        width:100px !important;
      }
      .products-card{
        width:40px !important;
        position: relative;

      }
      .products-card .products-img{
        width:100px !important;
        height: auto;
        /* height: 100px !important; */
        /* right:80px !important; */
      }
      .products-card .products-details{
        display:none;
      }
      .products-card .products-body{
        height:50px !important;
      }
      .products-card .discounted-price {
       text-wrap: nowrap;
       font-size:11.5px !important;
       margin-right:10px !important;
    }
    .products-card .product-wishlist{
        display: none !important;
    }
    .product-card .wishlist-icon {
        position: absolute;
        top: 10px; /* Position it relative to the image */
        right: 10px; /* Align closer to the edge */
        font-size: 18px; /* Adjust size for consistency */
        color: black;
        background: rgba(255, 255, 255, 0.8); /* Optional visibility enhancement */
        border-radius: 50%;
        padding: 5px;
        z-index: 10; /* Ensure icon appears on top */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;

    }

    .products-card .far:hover {
        transform: scale(1.1); /* Slight zoom effect */
        /* Change icon color on hover */
    }
    .products-additional-info{
        max-width:292px !important;
      margin-right:500px !important;
    }
    .products-additional-info .nav-main li{
        font-size:5px !important;
    }
    .product-image-frame{
        margin-top: 40px !important;
        margin: 40px auto !important; /* توسيط العنصر */
        max-width: 100% !important; /* منع تجاوز الحجم */
        text-align: center;
      }
    .storematerials-img{
        min-width:200px !important;
        /* margin-left:5px !important; */
    }
    .storematerials-title{
        text-wrap:nowrap !important;
    }

  }

  @media screen and (min-width:340px) and (max-width:355px) {
    .mobile-soci {
        /* background-color: #f4e9d3; */
        display: flex; /* Arrange items in a row */
        justify-content: center;
        top:40px !important;
        gap: 15px;
        padding: 0  !important;
        margin-top: auto;
      }
      .mobile {
        position: fixed !important; /* Keep the sidebar fixed to the viewport */
        top: 0 !important; /* Align it to the top of the screen */
        left: 0 !important; /* Align it to the left */
        height: 100vh !important; /* Ensure it takes the full height of the viewport */
        width: 80%; /* Adjust width for responsiveness */
        max-width: 300px; /* Optional: Set a maximum width */
        background-color: #fff; /* Background for sidebar */
        z-index: 100; /* Place it above other content */
        padding: 15px; /* Add spacing */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
        overflow-y: auto !important; /* Enable vertical scrolling */
        overflow-x: hidden !important; /* Prevent horizontal scrolling */
        transition: transform 0.3s ease-in-out;  /* Subtle shadow for depth */
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);/* Initially collapsed to the left */
      }
      .add-size{
        width:340px !important;
      }
      .sizeChartBtn{
        width:100px !important;
      }
      .wishlist-card{
        width:220px !important;
      }
      [dir="rtl"] .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-right: 65px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      .wishlist-card .d-flex button {
        width:60px !important;
        font-size:9px;
        word-wrap: break-word !important; /* Ensure that long words break to fit the button */
       white-space: normal !important; /* Allow text to break into new lines */
       word-break: break-word !important;
      }
      .wishlist-card .form-control{
        width:40px !important;
      }
      .cart-item{
        width:310px !important;
        height:120px !important;
        text-wrap: nowrap;
        text-align: center;
        justify-content: center;
        left:0;
      }

      .cart-item .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width:200px !important;
    }
    .item-image {
       /* Ensure the image is responsive */
        height: auto;    /* Maintain the aspect ratio */
    }
      .cart-item .quantity-input{
        width:40px;
        text-align:right;
        margin-left:30px;
      }
      .cart-item .remove-item{
       text-align:left;
      }
      .cart-summary{
        width:290px !important;
        height:300px !important;
        text-wrap:nowrap;
      }
      .cart-summary table{
        width:200px !important;
      }
      .cart-header button{
        text-wrap: nowrap;
        width:100px !important;
        height:35px !important;
        margin-top:7px !important;
        text-align: center;

      }
      .cart-item-info h4{
        font-size:15px !important;
      }
      #grand-total{
       margin-right:250px !important;
       font-size:14px !important;
      }
      .stores-header h4{
        text-wrap: nowrap;
        font-size:20px !important;
      }
      .category-header h4{
        font-size:23px !important;
      }
      .stores-header a{
        width:95px !important;
        height:35px !important;
        margin-bottom:25px !important;
        border-radius:10px;
      }
      .category-header a{
        width:95px !important;
        height:35px !important;
        border-radius:10px;
      }
      .product img{
        height:120px !important;
        width:120px !important;
      }
      /* .row-categories img{
        height:130px !important;
        width:130px !important;
      } */
      .products-card{
        width:40px !important;
        position: relative;

      }
      .products-card .products-img{
        width:100px !important;
        height: auto;
        /* height: 100px !important; */
        /* right:80px !important; */
      }
      .products-card .products-details{
        display:none;
      }
      .products-card .products-body{
        height:50px !important;
      }
      .products-card .discounted-price {
       text-wrap: nowrap;
       font-size:11.5px !important;
       margin-right:10px !important;
    }
    .products-card .product-wishlist{
        display: none !important;
    }
    .product-card .wishlist-icon {
        position: absolute;
        top: 10px; /* Position it relative to the image */
        right: 10px; /* Align closer to the edge */
        font-size: 18px; /* Adjust size for consistency */
        color: black;
        background: rgba(255, 255, 255, 0.8); /* Optional visibility enhancement */
        border-radius: 50%;
        padding: 5px;
        z-index: 10; /* Ensure icon appears on top */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;

    }

    .products-card .far:hover {
        transform: scale(1.1); /* Slight zoom effect */
        /* Change icon color on hover */
    }
    .products-additional-info{
        max-width:285px !important;
        /* margin-right:50px !important; */

    }
    .product-image-frame{
        margin-top: 40px !important;
        margin: 40px auto !important; /* توسيط العنصر */
        max-width: 100% !important; /* منع تجاوز الحجم */
        text-align: center;
      }
    .storematerials-img{
        min-width:200px !important;
        /* margin-left:5px !important; */
    }
    .storematerials-title{
        text-wrap:nowrap !important;
    }
  }

  @media screen and (max-width:360px) {
    .mobile-soci {
        /* background-color: #f4e9d3; */
        display: flex; /* Arrange items in a row */
        justify-content: center;
        top:40px !important;
        gap: 15px;
        padding: 0  !important;
        margin-top: auto;
      }
      .mobile a {
        text-transform: capitalize;
        opacity: 0.9;
        color: black;
        padding: 13px 13px !important;
        font-weight: 500;
        font-size:20px;
        letter-spacing: 1px;
        display: block;
        text-decoration: none; /* Remove underline */
      border-bottom: 1px solid #ddd; /* Line separator between links */
      transition: background-color 0.3s ease, color 0.3s ease;
      }
      .mobile {
        position: fixed !important; /* Keep the sidebar fixed to the viewport */
        top: 0 !important; /* Align it to the top of the screen */
        left: 0 !important; /* Align it to the left */
        height: 100vh !important; /* Ensure it takes the full height of the viewport */
        width: 80%; /* Adjust width for responsiveness */
        max-width: 300px; /* Optional: Set a maximum width */
        background-color: #fff; /* Background for sidebar */
        z-index: 100; /* Place it above other content */
        padding: 15px; /* Add spacing */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
        overflow-y: auto !important; /* Enable vertical scrolling */
        overflow-x: hidden !important;
        transition: transform 0.3s ease-in-out;  /* Subtle shadow for depth */
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
       /* Initially collapsed to the left */
      }
      .add-size{
        width:330px !important;
      }
      .sizeChartBtn{
        width:100px !important;
      }
      .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-left: 65px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      [dir="rtl"] .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-right: 65px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      .wishlist-card .d-flex button {
        width:70px !important;
        font-size:9px;
       word-wrap: break-word !important; /* Ensure that long words break to fit the button */
       white-space: normal !important; /* Allow text to break into new lines */
       word-break: break-word !important;
      }
      .wishlist-card .form-control{
        width:40px !important;
      }
      .cart-item{
        width:310px !important;
        height:120px !important;
        text-wrap: nowrap;
        text-align: center;
        justify-content: center;
        left:0;
      }

      .cart-item .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width:200px !important;
    }
    .item-image {
       /* Ensure the image is responsive */
        height: auto;    /* Maintain the aspect ratio */
    }
      .cart-item .quantity-input{
        width:40px;
        text-align:right;
        margin-left:30px;
      }
      .cart-item .remove-item{
       text-align:left;
      }
      .cart-summary{
        width:290px !important;
        height:300px !important;
        text-wrap:nowrap;
      }
      .cart-summary table{
        width:200px !important;
      }
      .cart-header button{
        text-wrap: nowrap;
        width:100px !important;
        height:35px !important;
        margin-top:7px !important;
        text-align: center;

      }
      .cart-item-info h4{
        font-size:15px !important;
      }
      #grand-total{
       margin-right:250px !important;
       font-size:14px !important;
      }
      .stores-header h4{
        text-wrap: nowrap;
        font-size:20px !important;
      }
      .category-header h4{
        font-size:23px !important;
      }
      .stores-header a{
        width:95px !important;
        height:35px !important;
        margin-bottom:25px !important;
        border-radius:10px;
      }
      .category-header a{
        width:95px !important;
        height:35px !important;
        border-radius:10px;
      }
      .product img{
        height:120px !important;
        width:120px !important;
      }
      .row-categories img{
        height:200px !important;
        width:130px !important;
      }
      /* .category-card{
        max-width:120px !important;
        max-height:150px !important;

      } */
      .category-title{
        font-size:25px !important;
      }
      .category-header{
        text-wrap: nowrap;
      }
      .subcategory-card img{
        max-height: 160px !important;
        max-width:120px !important;
      }
      .subcategory-card{
        max-width:150px !important;
        max-height:200px !important;
        text-wrap:nowrap;

      }
      .subcategory-card p{
        font-size:15px !important;
      }

      .products-card{
        max-width:165px !important;
        /* text-wrap: nowrap !important; */
      }
      .products-card .products-img{
        max-width:130px !important;
       /* right:100px !important; */

      }
      .products-card .products-details{
        display:none;
      }
      .products-card .discounted-price{
       text-wrap: nowrap;
    }
    .products-card .product-wishlist{
        display: none !important;
    }
    .product-card .wishlist-icon {
        position: absolute;
        top: 10px; /* Position it relative to the image */
        right: 10px; /* Align closer to the edge */
        font-size: 18px; /* Adjust size for consistency */
        color: black;
        background: rgba(255, 255, 255, 0.8); /* Optional visibility enhancement */
        border-radius: 50%;
        padding: 5px;
        z-index: 10; /* Ensure icon appears on top */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;

    }
    .qty-input{
        width: 40px !important;
      }

    .products-card .far:hover {
        transform: scale(1.1); /* Slight zoom effect */
         /* Change icon color on hover */
    }
    .products-additional-info{
        width:325px !important;
        /* margin-right:50px !important; */

    }
    .product-image-frame{
        margin-top: 40px !important;
        margin: 40px auto !important; /* توسيط العنصر */
        max-width: 100% !important; /* منع تجاوز الحجم */
        text-align: center;
      }
    .storematerials-img{
        min-width:200px !important;
        /* margin-left:5px !important; */
    }
    .storematerials-title{
        text-wrap:nowrap !important;
    }
  }


  @media screen and (max-width:375px) {
    .mobile-soci {
        /* background-color: #f4e9d3; */
        display: flex; /* Arrange items in a row */
        justify-content: center;
        gap: 15px;
        padding: 0  !important;
        margin-top: auto;
        /* padding: 30px 0 !important; */
      }
      .mobile a {
        text-transform: capitalize;
        opacity: 0.9;
        color: black;
        padding: 5px 5px !important;
        font-weight: 500;
        font-size:14px !important;
        letter-spacing: 1px;
        display: block;
        text-decoration: none; /* Remove underline */
      border-bottom: 1px solid #ddd; /* Line separator between links */
      transition: background-color 0.3s ease, color 0.3s ease;
      }
      .mobile {
        position: fixed !important; /* Keep the sidebar fixed to the viewport */
        top: 0 !important; /* Align it to the top of the screen */
        left: 0 !important; /* Align it to the left */
        height: 100vh !important; /* Ensure it takes the full height of the viewport */
        width: 80%; /* Adjust width for responsiveness */
        max-width: 300px; /* Optional: Set a maximum width */
        background-color: #fff; /* Background for sidebar */
        z-index: 100; /* Place it above other content */
        padding: 15px; /* Add spacing */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
        overflow-y: auto !important; /* Enable vertical scrolling */
        overflow-x: hidden !important; /* Prevent horizontal scrolling */
        transition: transform 0.3s ease-in-out;  /* Subtle shadow for depth */
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0); /* Initially collapsed to the left */
      }
      .add-size{
        width:340px !important;
      }
      .sizeChartBtn{
        width:100px !important;
      }
      .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-left: 65px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      [dir="rtl"] .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-right: 65px !important;
        justify-content: center !important;
        align-items: center !important;
      }

      .wishlist-card .d-flex button {
        width:60px !important;
        font-size:9px;
        word-wrap: break-word !important; /* Ensure that long words break to fit the button */
       white-space: normal !important; /* Allow text to break into new lines */
       word-break: break-word !important;
      }
      .wishlist-card .form-control{
        width:40px !important;
      }

      .cart-item{
        width:330px !important;
        height:120px !important;
        text-wrap: nowrap;
        text-align: center;
        justify-content: center;
        left:0;
      }

      .cart-item .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width:200px !important;
    }
    .item-image {
       /* Ensure the image is responsive */
        height: auto;    /* Maintain the aspect ratio */
    }
      .cart-item .quantity-input{
        width:40px;
        text-align:right;
        margin-left:50px;
      }
      [dir="rtl"] .cart-item-info {
        margin-right:10px !important;
        text-align: right !important;
      }
      [dir="rtl"] .cart-item .remove-item{
        margin-left: 100px !important;
        align-items: right !important;
        text-align: right !important;

       }
      .cart-summary{
        width:290px !important;
        height:350px !important;
        text-wrap:nowrap;
      }
      .cart-summary table{
        width:200px !important;
      }
      [dir="rtl"]  .cart-summary {
       width:300px !important;
       }
      [dir="rtl"]  .cart-summary th{

       align-items: right !important;
        text-align: right !important;
      }
      .cart-header button{
        text-wrap: nowrap;
        width:100px !important;
        height:35px !important;
        margin-top:7px !important;
        text-align: center;

      }
      .cart-item-info h4{
        font-size:15px !important;
      }
      #grand-total{
       margin-right:250px !important;
       font-size:14px !important;
      }
       .stores-header h4{
        text-wrap: nowrap;
        font-size:20px !important;
      }
      .category-header h4{
        font-size:23px !important;
      }
      .stores-header a{
        width:95px !important;
        height:35px !important;
        margin-bottom:25px !important;
        border-radius:10px;
      }
      .category-header a{
        width:95px !important;
        height:35px !important;
        border-radius:10px;
      }
      #productsContainer .col-6 {
        padding: 0px !important; /* Decrease the padding between grid items */
        margin-bottom: 10px !important; /* Adjust the bottom margin */
    }

    #productsContainer .product {
        margin: 0 auto !important; /* Center-align the product container */
    }

    #productsContainer #imgdiv {
        width: 100% !important; /* Ensure the div takes full width */
        padding: 5px !important; /* Reduce padding inside the image container */
    }

    #productsContainer img {
        max-width: 190px !important; /* Adjust the size of the images */
        max-height: 140px !important; /* Adjust the height of the images */
    }


    #storeMaterialsContainer .col-6 {
        padding: 0px !important; /* Decrease the padding between grid items */
        margin-bottom: 10px !important; /* Adjust the bottom margin */
    }

    #storeMaterialsContainer .product {
        margin: 0 auto !important; /* Center-align the product container */
    }

    #storeMaterialsContainer #imgdiv {
        width: 100% !important; /* Ensure the div takes full width */
        padding: 5px !important; /* Reduce padding inside the image container */
    }

    #storeMaterialsContainer img {
        max-width: 190px !important; /* Adjust the size of the images */
        max-height: 140px !important; /* Adjust the height of the images */
    }
      .row-categories img{
        height:130px !important;
        width:130px !important;
      }
      .wishlist-product{
        width: 5px !important;
      }
      .detail-product{
        display:none;
      }
      /* .category-card{
        max-width:120px !important;
        max-height:160px !important;

      } */
      .category-title{
        font-size:25px !important;
      }
      .category-header{
        text-wrap: nowrap;
      }
      .subcategory-card img{
        max-height: 100px !important;
        max-width:150px !important;
      }
      .subcategory-card{
        max-width:150px !important;
        max-height:200px !important;
        text-wrap:nowrap;

      }
      .subcategory-card p{
        font-size:15px !important;
      }
      .products-card{
        max-width:165px !important;
      }

      .products-card .products-img{
        max-width:200px !important;
        margin-left:10px !important;
    object-fit: cover !important;
      }
      .products-card .products-details{
        display:none;
      }
      .products-card .discounted-price{
       text-wrap: nowrap;
    }
    [dir="rtl"] .products-card .discounted-price{
        white-space: normal;
      font-size:14px !important;
     }
     [dir="rtl"] .products-card .original-price{
        text-wrap: nowrap !important;
     }

     /* [dir="rtl"] .products-body{
        max-height: 220px !important;
     } */
    .products-card .product-wishlist{
        display: none !important;
    }
    .product-card .wishlist-icon {
        position: absolute;
        top: 10px; /* Position it relative to the image */
        right: 10px; /* Align closer to the edge */
        font-size: 18px; /* Adjust size for consistency */
        color: black;
        background: rgba(255, 255, 255, 0.8); /* Optional visibility enhancement */
        border-radius: 50%;
        padding: 5px;
        z-index: 10; /* Ensure icon appears on top */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;

    }

    .products-card .far:hover {
        transform: scale(1.1); /* Slight zoom effect */
        /* Change icon color on hover */
    }
    .products-additional-info{
        width:325px !important;
        /* margin-right:50px !important; */

    }
    .product-image-frame{
      margin-top: 40px !important;
      margin: 40px auto !important; /* توسيط العنصر */
      max-width: 100% !important; /* منع تجاوز الحجم */
      text-align: center;
    }
    .qty-input{
      width: 40px !important;
    }
    .storematerials-img{
        min-width:200px !important;
        /* margin-left:5px !important; */
    }
    .storematerials-title{
        text-wrap:nowrap !important;
    }
   .gift-cart-item{
    width:280px !important;
    height:130px !important;
   }

}
  @media screen and (min-width: 390px) and (max-width: 400px) {
    .mobile-soci {
        display: flex; /* Arrange items in a row */
        justify-content: center;
        gap: 15px;
        padding: 0  !important;
        margin-top: auto;
    }
    .qty-input{
        width: 40px !important;
      }
    .add-size{
        width:340px !important;
      }
      .products-card .products-details{
        display:none;
      }
      .sizeChartBtn{
        width:100px !important;
      }
    .mobile a {
        text-transform: capitalize;
        opacity: 0.9;
        color: black;
        padding: 10px 10px !important;
        font-weight: 500;
        font-size:20px;
        letter-spacing: 1px;
        display: block;
        text-decoration: none; /* Remove underline */
      border-bottom: 1px solid #ddd; /* Line separator between links */
      transition: background-color 0.3s ease, color 0.3s ease;
      }


    .mobile {
        position: fixed !important; /* Keep the sidebar fixed to the viewport */
        top:0 !important; /* Align it to the top of the screen */
        left: 0 !important; /* Align it to the left */
        height: 100vh !important; /* Ensure it takes the full height of the viewport */
        width: 80%; /* Adjust width for responsiveness */
        max-width: 300px; /* Optional: Set a maximum width */
        background-color: #fff; /* Background for sidebar */
        z-index: 100; /* Place it above other content */
        padding: 15px; /* Add spacing */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
        overflow-y: auto !important; /* Enable vertical scrolling */
        overflow-x: hidden !important; /* Prevent horizontal scrolling */
        transition: transform 0.3s ease-in-out;  /* Subtle shadow for depth */
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0); /* Initially collapsed to the left */
        display: flex;
        flex-direction: column; /* Ensures all child elements stack vertically */
    }

    .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-left: 65px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      [dir="rtl"] .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-right: 65px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      .wishlist-card .d-flex button {
        width:60px !important;
        font-size:9px;
        word-wrap: break-word !important; /* Ensure that long words break to fit the button */
       white-space: normal !important; /* Allow text to break into new lines */
       word-break: break-word !important;
      }
      .wishlist-card .form-control{
        width:40px !important;
      }
      .cart-item{
        width:310px !important;
        height:120px !important;
        text-wrap: nowrap;
        text-align: center;
        justify-content: center;
        left:0;
      }

      .cart-item .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width:200px !important;
    }
    .item-image {
       /* Ensure the image is responsive */
        height: auto;    /* Maintain the aspect ratio */
    }
      .cart-item .quantity-input{
        width:40px;
        text-align:right;
        margin-left:30px;
      }
      .cart-item .remove-item{
       text-align:left;
      }
      .cart-summary{
        width:300px !important;
        height:300px !important;
        text-wrap:nowrap;
      }
      .cart-summary table{
        width:200px !important;
      }
      .cart-header button{
        text-wrap: nowrap;
        width:100px !important;
        height:35px !important;
        margin-top:7px !important;
        text-align: center;

      }
      [dir="rtl"] .cart-item-info {
        margin-right:10px !important;
        text-align: right !important;
      }
      [dir="rtl"] .cart-item .remove-item{
        margin-left: 100px !important;
        align-items: right !important;
        text-align: right !important;

       }
      .cart-summary{
        width:290px !important;
        height:350px !important;
        text-wrap:nowrap;
      }
      .cart-summary table{
        width:200px !important;
      }
      [dir="rtl"]  .cart-summary {
       width:300px !important;
       }
      [dir="rtl"]  .cart-summary th{

       align-items: right !important;
        text-align: right !important;
      }
      .cart-item-info h4{
        font-size:15px !important;
      }
      #grand-total{
       margin-right:250px !important;
       font-size:14px !important;
      }
      .stores-header h4{
        text-wrap: nowrap;
        font-size:20px !important;
      }
      .category-header h4{
        font-size:23px !important;
      }
      .stores-header a{
        width:95px !important;
        height:35px !important;
        margin-bottom:25px !important;
        border-radius:10px;
      }
      .category-header a{
        width:95px !important;
        height:35px !important;
        border-radius:10px;
      }
      .product img{
        height:120px !important;
        width:120px !important;
      }
      .row-categories img{
        height:130px !important;
        width:130px !important;
      }
      .row-categories img{
        height:130px !important;
        width:130px !important;
      }
      /* .category-card{
        max-width:120px !important;
        max-height:160px !important;

      } */
      .category-title{
        font-size:25px !important;
      }
      .category-header{
        text-wrap: nowrap;
      }
      .subcategory-card img{
        max-height: 100px !important;
        max-width:150px !important;
      }
      .subcategory-card{
        max-width:150px !important;
        max-height:200px !important;
        text-wrap:nowrap;

      }
      .subcategory-card p{
        font-size:15px !important;
      }
      .products-card{
        max-width:165px !important;
        /* text-wrap: nowrap !important; */
      }
      .products-card .products-img{
        max-width:200px !important;
        margin-left:10px !important;
      }
      .products-card .products-details{
        display:none;
      }
      .products-card .discounted-price{
       text-wrap: nowrap;
    }
    .products-card .product-wishlist{
        display: none !important;
    }
    .product-card .wishlist-icon {
        position: absolute;
        top: 10px; /* Position it relative to the image */
        right: 10px; /* Align closer to the edge */
        font-size: 18px; /* Adjust size for consistency */
        color: black;
        background: rgba(255, 255, 255, 0.8); /* Optional visibility enhancement */
        border-radius: 50%;
        padding: 5px;
        z-index: 10; /* Ensure icon appears on top */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;

    }

    .products-card .far:hover {
        transform: scale(1.1); /* Slight zoom effect */
       /* Change icon color on hover */
    }
    .products-additional-info{
        width:325px !important;
        /* margin-right:50px !important; */

    }
    .product-image-frame{
        margin-top: 40px !important;
        margin: 40px auto !important; /* توسيط العنصر */
        max-width: 100% !important; /* منع تجاوز الحجم */
        text-align: center;
      }
    .storematerials-img{
        min-width:200px !important;
        /* margin-left:5px !important; */
    }
    .storematerials-title{
        text-wrap:nowrap !important;
    }
}

@media screen and (min-width: 412px) and (max-width: 450px) {
    .mobile-soci {
        display: flex; /* Arrange items in a row */
        justify-content: center;
        gap: 15px;
        padding: 0  !important;
        margin-top: auto;
    }
    .qty-input{
        width: 40px !important;
      }
    .add-size{
        width:340px !important;
      }
      .sizeChartBtn{
        width:100px !important;
      }
      .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-left: 75px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      [dir="rtl"] .wishlist-card{
        max-width:100% !important;
        /* max-width:220px !important; */
        display: flex !important;
        text-align: center !important;
        margin-right: 75px !important;
        justify-content: center !important;
        align-items: center !important;
      }
      .wishlist-card .d-flex button {
        width:60px !important;
        font-size:9px;
        word-wrap: break-word !important; /* Ensure that long words break to fit the button */
        white-space: normal !important; /* Allow text to break into new lines */
        word-break: break-word !important;
      }
      .wishlist-card .form-control{
        width:40px !important;
      }
    .mobile a {
        text-transform: capitalize;
        opacity: 0.9;
        color: black;
        padding: 25px 25px !important;
        font-weight: 500;
        font-size:20px;
        letter-spacing: 1px;
        display: block;
        text-decoration: none; /* Remove underline */
      border-bottom: 1px solid #ddd; /* Line separator between links */
      transition: background-color 0.3s ease, color 0.3s ease;
      }

    .mobile {
        position: fixed !important; /* Keep the sidebar fixed to the viewport */
        top: 0 !important; /* Align it to the top of the screen */
        left: 0 !important; /* Align it to the left */
        height: 100vh !important; /* Ensure it takes the full height of the viewport */
        width: 80%; /* Adjust width for responsiveness */
        max-width: 300px; /* Optional: Set a maximum width */
        background-color: #fff; /* Background for sidebar */
        z-index: 100; /* Place it above other content */
        padding: 15px; /* Add spacing */
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
        overflow-y: auto !important; /* Enable vertical scrolling */
        overflow-x: hidden !important; /* Prevent horizontal scrolling */
        transition: transform 0.3s ease-in-out;  /* Subtle shadow for depth */
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0);
        display: flex;
        flex-direction: column; /* Ensures all child elements stack vertically */
    }
    .cart-item{
        width:310px !important;
        height:120px !important;
        text-wrap: nowrap;
        text-align: center;
        justify-content: center;
        left:0;
      }

      .cart-item .image-container {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width:200px !important;
    }
    .item-image {
       /* Ensure the image is responsive */
        height: auto;    /* Maintain the aspect ratio */
    }
      .cart-item .quantity-input{
        width:40px;
        text-align:right;
        margin-left:30px;
      }
      .cart-item .remove-item{
       text-align:left;
      }
      .cart-summary{
        width:340px !important;
        height:300px !important;
        text-wrap:nowrap;
      }
      .cart-summary table{
        width:300px !important;
      }
      [dir="rtl"] .cart-item-info {
        margin-right:10px !important;
        text-align: right !important;
      }
      [dir="rtl"] .cart-item .remove-item{
        margin-left: 100px !important;
        align-items: right !important;
        text-align: right !important;

       }
      .cart-summary{
        width:290px !important;
        height:350px !important;
        text-wrap:nowrap;
      }
      .cart-summary table{
        width:200px !important;
      }
      [dir="rtl"]  .cart-summary {
       width:300px !important;
       }
      [dir="rtl"]  .cart-summary th{

       align-items: right !important;
        text-align: right !important;
      }
      .cart-header button{
        text-wrap: nowrap;
        width:100px !important;
        height:35px !important;
        margin-top:7px !important;
        text-align: center;

      }
      .cart-item-info h4{
        font-size:15px !important;
      }
      #grand-total{
       margin-right:250px !important;
       font-size:14px !important;
      }
      .stores-header h4{
        text-wrap: nowrap;
        font-size:20px !important;
      }
      .category-header h4{
        font-size:23px !important;
      }
      .stores-header a{
        width:95px !important;
        height:35px !important;
        margin-bottom:25px !important;
        border-radius:10px;
      }
      .category-header a{
        width:95px !important;
        height:35px !important;
        border-radius:10px;
      }
      .product img{
        height:120px !important;
        width:120px !important;
      }
      .row-categories img{
        height:130px !important;
        width:130px !important;
      }
      .row-categories img{
        height:130px !important;
        width:130px !important;
      }
      /* .category-card{
        max-width:120px !important;
        max-height:160px !important;

      } */
      .category-title{
        font-size:25px !important;
      }
      .category-header{
        text-wrap: nowrap;
      }
      .subcategory-card img{
        max-height: 100px !important;
        max-width:150px !important;
      }
      .subcategory-card{
        max-width:150px !important;
        max-height:200px !important;
        text-wrap:nowrap;

      }
      .subcategory-card p{
        font-size:15px !important;
      }
      .products-card{
        max-width:165px !important;
        margin-left:20px !important;
        /* text-wrap: nowrap !important; */
      }
      .products-card .products-img{
        max-width:200px !important;
        margin-left:9px !important;
      }
      .products-card .products-details{
        display:none !important;
      }
      .products-card .discounted-price{
       text-wrap: nowrap;
    }
    .products-card .product-wishlist{
        display: none !important;
    }
    .product-card .wishlist-icon {
        position: absolute;
        top: 10px; /* Position it relative to the image */
        right: 10px; /* Align closer to the edge */
        font-size: 18px; /* Adjust size for consistency */
        color: black;
        background: rgba(255, 255, 255, 0.8); /* Optional visibility enhancement */
        border-radius: 50%;
        padding: 5px;
        z-index: 10; /* Ensure icon appears on top */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;

    }

    .products-card .far:hover {
        transform: scale(1.1); /* Slight zoom effect */
       /* Change icon color on hover */
    }
    .products-additional-info{
        width:325px !important;
        /* margin-right:50px !important; */

    }
    .product-image-frame{
        margin-top: 40px !important;
        margin: 40px auto !important; /* توسيط العنصر */
        max-width: 100% !important; /* منع تجاوز الحجم */
        text-align: center;
      }
    .storematerials-img{
        min-width:200px !important;
        /* margin-left:5px !important; */
    }
    .storematerials-title{
        text-wrap:nowrap !important;
    }
}




@media screen and (max-width: 500px) {
    footer .category{
        /* border-bottom: 1px solid #2b2929; */
        padding: 20px 20px;
        margin-top:50px;
    }
    /* footer .download{
        padding: 20px 20px;
    } */
    footer .category h3,
    footer .download h3 {
    font-size: 22px; /* Increase font size */
    font-weight: 700; /* Make the font bold */
    color: #333; /* Use a dark color for the text */
    text-transform: uppercase; /* Uppercase text for a more professional look */
    margin-bottom: 20px; /* Increase bottom margin for spacing */
    letter-spacing: 1px; /* Add a little letter spacing for a sleek feel */

}


@media screen and (max-width: 375px) {
    .category-card {
        margin-top: 15px !important;
    }

    .category-image {
        width: auto !important;  
        height: 250px !important; 
        object-fit: cover !important;
        margin-top: 20px !important;
    }

    .category-overlay {
        position: absolute;
        bottom: 0;
        width: 100%;  /* Make it span the full width of the parent container */
        height: 40px; /* Fixed height */
        background: rgba(255, 255, 255, 0.5);
        color: black;
        padding: 10px 0;
        text-align: center;
        margin-bottom: 0 !important;

        /* Flexbox setup to center the content */
        display: flex;
        align-items: center !important;   /* Vertically center the content */
        justify-content: center !important;
    }


}

.products-card .products-details{
    display:none !important;
  }

footer .category h3::after,
footer .download h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #000000; /* Green line under the heading */
    margin-top: 10px; /* Space the line from the heading */
}

footer .category a {
    display: block;
    font-size: 16px;
    color: #555; /* Slightly lighter color for the links */
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

footer .category a:hover {
 /* Change color on hover */
    text-decoration: underline; /* Add underline on hover */
}


    .mobile-social {
      display: none;

    }
    .navbar-nav{
        display: none !important; /* Ensure it's treated as a flex container */
        flex-direction: column; /* Stack items vertically (if not already) */
        align-items: flex-start; /* Align items to the left */
        text-align: left; /* Align text content to the left */
        padding-left: 0 !important;

    }
    .navbar-nav .nav-item {
        width: 100%; /* Ensure each item takes full width if needed */
    }

}

@media screen and  (max-width: 800px) {
    .mobile-soci {
        display: flex; /* Arrange items in a row */
        justify-content: center;
        gap: 15px;
        padding: 80px 0;
        /* margin-bottom: auto; */
    }
    .add-size{
        width:340px !important;
      }
      .sizeChartBtn{
        width:100px !important;
      }
      .wishlist-card{
        width:220px !important;
      }
      .wishlist-card .d-flex button {
        width:60px !important;
        font-size:9px;
        word-wrap: break-word !important; /* Ensure that long words break to fit the button */
       white-space: normal !important; /* Allow text to break into new lines */
       word-break: break-word !important;
      }
      .wishlist-card .form-control{
        width:40px !important;
      }
    .mobile a {
        text-transform: capitalize;
        opacity: 0.9;
        color: black;
        padding: 24px 24px !important;
        font-weight: 500;
        font-size:20px;
        letter-spacing: 1px;
        display: block;
        text-decoration: none; /* Remove underline */
      border-bottom: 1px solid #ddd; /* Line separator between links */
      transition: background-color 0.3s ease, color 0.3s ease;
      }

    .mobile {
        position: absolute;
        top: 65px; /* Align with the top of the parent container */
        left: 100%; /* Position it off-screen to the right */
        height: 92vh; /* Ensure it covers the full height */
        width: 220px; /* Adjust width as needed */
        transition: 250ms linear;
        z-index: 100;
        background-color: #fff;
        border-radius: 10px; /* Rounded corners */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
        overflow: hidden;
        clip-path: polygon(0 0, 0 100%, 0 100%, 0 0); /* Initially collapsed to the left */
        display: flex;
        flex-direction: column; /* Ensures all child elements stack vertically */
    }
}
@media screen and (min-width:800px) and (max-width:950px){
    .product-card .card-body{
        max-height:350px !important;
    }
  .products-img{
    height:165px !important;
  }
}

/*===========================
    STYLE SLIDER
============================*/
.slider-items {
    width: 100%;
    min-height: calc(100vh - 100px);
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  /* height: 70vh;  */
  position: relative !important;
    display: flex !important;

}

.slider-frame{

  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  /* height: 70vh;  */
  position: relative !important;
    display: flex !important;
}


.slider-items.slider01 {
  background: url(../images/slider-01.png) center / cover no-repeat;
  min-height: calc(100vh - 100px);
}

.slider-items.slider02 {
  background: url(../images/slider02.jpg) center / cover no-repeat;
  min-height: calc(100vh - 100px);
}
.slider-items.slider03 {
    background: url(../images/services02.jpg) center / cover no-repeat;
    min-height: calc(100vh - 100px);
  }
@media screen and (min-width: 600px){
    .slider-frame.slider04 {
    /* background: url(/uploads/product/design-4.jpg) center / cover no-repeat; */
    min-height: calc(90vh - 90px) !important;
    width: 70% !important;
    margin-right: 200px !important;
    }
    .slider-frame.slider05 {
    /* background: url(/uploads/product/sakba3.jpg) center / cover no-repeat; */
    min-height: calc(90vh - 90px);
    width:70% !important;
    margin-right: 200px !important;
    }
    .slider-frame.slider06 {
        /* background: url(../uploads/product/glasses\ 2.jpg) center / cover no-repeat; */
        min-height: calc(90vh - 90px);
        width: 70% !important;
        margin-right: 200px !important;
    }
}
  

    .owl-nav {
        display: none !important;
    }

    .owl-prev, .owl-next {
      display: none !important;
      }




  
@media screen and (max-width: 500px) {
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling issues */
}
.slider-parent {
    margin: 0 !important; /* Overrides any external margins */
    padding: 0 !important; /* Overrides any external paddings */
    position: relative; /* Ensures alignment */
    top: 0 !important; /* Aligns it directly under the header */
}
header {
    margin-bottom: 0; /* Ensures the header doesn't push the slider down */
}
.owl-carousel {
    margin: 0 !important;
    padding: 0 !important;
}

    .slider-items.slider01 {
    background: url(../images/slider-01.png) center / cover no-repeat;
    min-height: calc(40vh - 100px);
    }
    .slider-items.slider02 {
    background: url(../images/slider02.jpg) center / cover no-repeat;
    min-height: calc(40vh - 100px);
    }
    .slider-items.slider03 {
        background: url(../images/services02.jpg) center / cover no-repeat;
        min-height: calc(40vh - 100px);
    }


.slider-items {
    margin: 0 !important; /* Removes extra spacing around slider items */
    padding: 0 10% !important;
    width: 100%;
    /* min-height: calc(100vh - 100px); */
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    position:relative;
    display:flex;

}

.slider-items:first-child {
background-repeat: no-repeat;
}
.slider-items .slider-caption h2 {
font-size: 5px !important;
}

.slider-caption p {
font-size: 5px !important;
}
}


.slider-items .slider-caption h2 {
    font-size: 5px !important;
    }

    .slider-caption p {
    font-size: 5px !important;
    }


@media screen and (max-width: 375px) {
    body, html {
        margin: 0;
        padding: 0;
        overflow-x: hidden; /* Prevents horizontal scrolling issues */
    }
    .slider-parent {
        margin: 0 !important; /* Overrides any external margins */
        padding: 0 !important; /* Overrides any external paddings */
        position: relative; /* Ensures alignment */
        top: 0 !important; /* Aligns it directly under the header */
    }
    header {
        margin-bottom: 0; /* Ensures the header doesn't push the slider down */
    }
    .owl-carousel {
        margin: 0 !important;
        padding: 0 !important;
    }

        .slider-items.slider01 {
        background: url(../images/slider-01.png) center / cover no-repeat;
        min-height: calc(40vh - 100px);
        }
        .slider-items.slider02 {
        background: url(../images/slider02.jpg) center / cover no-repeat;
        min-height: calc(40vh - 100px);
        }
        .slider-items.slider03 {
            background: url(../images/services02.jpg) center / cover no-repeat;
            min-height: calc(40vh - 100px);
        }



    .slider-items {
        margin: 0 !important; /* Removes extra spacing around slider items */
        padding: 0 10% !important;
        width: 100%;
        /* min-height: calc(100vh - 100px); */
        background-size: contain;
        background-position: center center;
        background-repeat: no-repeat;
        position:relative;
        display:flex;

    }

    .slider-items:first-child {
    background-repeat: no-repeat;
    }
    .slider-items .slider-caption h2 {
    font-size: 15px !important;
    }

    .slider-caption p {
    font-size: 10px !important;
    }
    }




.slider-items .slider-caption h2 {
  font-size: 2vw !important;
  line-height: 1.2;
  margin: 0;
  padding: 10px;
}


.slider-items .slider-caption p {
  font-size: 1.2vw !important;
}
.slider-parent .owl-nav,
.slider-parent .owl-theme {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
.slider-parent .owl-nav button.owl-next,
.slider-parent .owl-nav button.owl-prev {
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  color: #221e1e;
  font-weight: bold;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #221e1e;
}

.slider-parent .owl-nav button.owl-next:hover,
.slider-parent .owl-nav button.owl-prev:hover {
  background-color: #fff !important;
  color: #221e1e;
}
.slider-parent .owl-nav button.owl-prev {
  left: 15px;
}
.slider-parent .owl-nav button.owl-next {
  right: 15px;
}

.services01 {
  background-color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 15px;
  transform: translateY(-50px);
  z-index: 9999;
  position: relative;
  border-radius: 8px;
}

.services01 p {
  margin: 15px 0;
}

/*===========================
    STYLE SERVICES
============================*/
.container-fluid {
    max-width: 100%;

  }
  .p2 {
    white-space: nowrap !important;
  }
  .banner-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    grid-gap: 2rem;
  }


  /* General styles for block-1, block-2 */
.block-1, .block-2 {
    background-color: #f4e9d3 !important;
    border-radius: 8px;
    height: 330px !important;
    padding-top: 40px !important;
}

/* Adjustments for RTL */
body[dir="rtl"] .block-1,
body[dir="rtl"] .block-2 {
    margin-right: 270px !important; /* In RTL, margin-right applies instead of margin-left */
    margin-left: 0 !important; /* Ensure no margin-left is applied in RTL */
}

@media screen and (min-width:700px){
.block-2 .nav-link{
    position: absolute;
    bottom: 2;
    left: 0;
    text-align: left;
    border-radius:20px !important;
}
.block-3 .nav-link{
    position: absolute;
    bottom: 2;
    left: 0;
    text-align: left;
    border-radius:20px !important;
}
}


body[dir="rtl"] .block-3 {
    margin-left: 270px !important; /* In RTL, margin-left applies instead of margin-right */
    margin-right: 0 !important; /* Ensure no margin-right is applied in RTL */
}

/* Adjustments for LTR */
body[dir="ltr"] .block-1,
body[dir="ltr"] .block-2 {
    margin-left: 270px !important; /* In LTR, margin-left applies */
    margin-right: 0 !important; /* Ensure no margin-right is applied in LTR */
}

body[dir="ltr"] .block-3 {
    margin-right: 270px !important; /* In LTR, margin-right applies */
    margin-left: 0 !important; /* Ensure no margin-left is applied in LTR */
}

.block-1 {
    grid-column: 1 / 2 !important;
    grid-row: 1 / 2 !important;
    background-color: #f4e9d3 !important;
}

.block-2 {
    grid-column: 2 / 3 !important; /* Second column */
    grid-row: 1 / 2 !important;
    background-color: #f4e9d3 !important;
}

 [dir="rtl"] .block-3 {
    grid-column: 1 / 3 !important; /* Center block-3 across both columns */
    grid-row: 2 / 3 !important; /* Second row */
    background-color: #f4e9d3 !important;
    display: flex !important;
    margin-right:270px !important;
    justify-content: center !important; /* Centers the content horizontally */
    align-items: center !important; /* Centers the content vertically */
    width: 60%; /* Decrease width */
    height: 300px;
}

[dir="ltr"] .block-3 {
    grid-column: 1 / 3 !important; /* Center block-3 across both columns */
    grid-row: 2 / 3 !important; /* Second row */
    background-color: #f4e9d3 !important;
    display: flex !important;
    margin-left:270px !important;
    justify-content: center !important; /* Centers the content horizontally */
    align-items: center !important; /* Centers the content vertically */
    width: 60%; /* Decrease width */
    height: 300px;
}

  [dir="rtl"] .nav-link{
    position: absolute;
    bottom: 2;
    left: 0;
    text-align: left;
  }

  [dir="ltr"] .nav-link{
    position: absolute;
    bottom: 2;
    right: 0;
    text-align: right !important;
    align-items: right !important;
    width:190px !important;
    margin-left:400px !important;
  }

  [dir="ltr"] .nav-link img {
    transform: rotate(180deg);
  }
.banner-title {
    white-space: nowrap;

  }

  @media screen and (max-width: 480px) {
    .banner-blocks {
            grid-template-columns: 1fr 1fr;
            /* grid-template-rows: repeat(3, auto); */
          }

          .block-2,
          .block-3 {
              grid-column: 1 / 2;
              grid-row: auto;
              font-size: 0.9rem;
              padding: 10px;
              width: 290px !important;
              margin: 0 auto;

          }
      .block-1{
        justify-content:center;
        grid-column: 1 / 2;
        grid-row: auto;
        font-size: 0.9rem;
        padding: 10px;
        width: 50px !important;
        margin: 0 auto;
        height:330px;
      }
      .banner-title {
        white-space: nowrap;
        font-size: 20px !important;

      }
      .banner-content span ,.gift{
        font-size:15px !important;
      }
      .block-2{
        height:310px;
      }
      .block-3{
        height: 320px;
      }
      .banner-content{
        bottom: 40px;
        right:20px;
      }

}

@media screen and (max-width: 500px) {
    .banner-blocks {
            grid-template-columns: 1fr 1fr;
            /* grid-template-rows: repeat(3, auto); */
          }

          .block-2,
          .block-3 {
              grid-column: 1 / 2;
              grid-row: auto;
              font-size: 0.9rem;
              padding: 10px;
              width: 300px;
              margin: 0 auto;
          }
      .block-1{
        grid-column: 1 / 2;
        grid-row: auto;
        font-size: 0.9rem;
        padding: 10px;
        width: 300px !important;
        margin: 0 auto;
      }
      .banner-title {
        white-space: wrap;

      }

}

  .banner-content .fa-solid {
    margin-bottom: 10px;
}
.icon-wrapper {
    text-align: center;
}
.banner-content .col-md-2 {
    text-align: left;
}
.banner-content .col-md-10 {
    padding-left: 1rem;
}

  /* banner ad */
  .banner-ad {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: linear-gradient(to bottom right,  #f4e9d3, #d3c2a4);
    color: #333;
    background-size: cover;
    background-position: center;
    padding: 1.5rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  }

  /* Specific styling for wave effect */
.banner-ad::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: radial-gradient(circle at top, #f4e9d3, transparent 70%);
    z-index: 0;
}

  .banner-ad.blue {
    background: #e6f3fb;
  }


  .banner-ad .banner-content {
    padding: 10px;
    position: relative;
    z-index: 1;

  }
  .banner-ad.large .banner-content {
    padding: 90px;
  }
  .banner-ad .banner-content .categories {
    font-family: 'Garamond';
    font-size: 37px;
    text-transform: capitalize;
    color: var(--dark-color);
  }
  .banner-ad .banner-content .sale {
    position: relative;
    display: inline-block;
  }
  .banner-ad .banner-content .sale:before {
    content: '';
    width: 80px;
    border-bottom: 1px solid #111;
    position: absolute;
    bottom: 6px;
  }
  .banner-ad .banner-content .sale:after {
    content: 'SALE';
    font-family: var(--body-font);
    position: absolute;
    font-size: 11px;
    line-height: 15px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #252525;
    bottom: 0;
    right: 0;
  }
  .banner-ad .banner-content .banner-title {
    letter-spacing: 0.02em;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .banner-ad.large .banner-content .categories {
    color: var(--accent-color);
  }
  .banner-ad.large .banner-content  {
    font-size: 54px;
  }
  .banner-ad p{
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bolder;
    /* white-space: nowrap; */
  }

  .btn-link {
    margin-right: 30px;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    text-align: right;
    text-transform: capitalize;
    color: #787878;
  }

  .order-btn {
    background: transparent;
    border: none;
    padding-top: 30px;
    margin-left: auto;
    text-align: right;
    width: 200px;
}

.order-btn a {
    display: flex;
    align-items: center;
    color: #fff; /* Text color */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    border-color: #000;
    transition: background-color 0.3s ease;
    color:#000;
}



.arrow-icon {
    margin-left: 8px; /* Space between text and arrow */
}

.banner-ad {
    padding: 30px;
    border-radius: 10px;
}

.bg-success-subtle {
    background-color: #d4edda !important;
}

.bg-danger {
    background-color: #f8d7da !important;
}

.block-1 .block-img{
    width: 100px !important;
    height: 200px !important;
  }

/*===========================
    RESPONSIVENESS FOR VERY SMALL SCREENS (400px)
============================*/

@media screen and (max-width: 500px) {
    .slider-items {
      background-size: contain; /* Ensure slider images are properly contained */
      min-height: 250px; /* Reduce the height to fit smaller screens */
    }
    .banner-title{
        font-size: 14px;
        white-space: normal;
    }
    .banner-ad .p2{
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: bolder;
        white-space: normal;
      }


    .banner-ad {
      padding: 10px; /* Reduce padding for smaller screens */
    }

    .banner-content .fa-solid {
      font-size: 1.5rem; /* Reduce icon size for small screens */
    }

    .banner-blocks {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; /* توسيط العناصر */
        gap: 1rem !important;/* Stack services vertically */
    }

    .block-1, .block-2, .block-3 {
        width: 350px !important;
        margin: 0 !important;
        height: 300px !important;
    }

    .block-1 .block-img{
      width: 80px !important;
      height: 250px !important;
    }

    .block-2 .block-img{
        width: 70px !important;
        height: 100px !important;
      }

      .block-3 .block-img{
       margin-left: 270px !important;
       width: 80px !important;
       height: 100px !important;
      }
      [dir="rtl"]  .block-3 .block-img{

        width: 80px !important;
        height: 100px !important;
       }

    .block-1 .nav-link{
        font-size: 10px !important;
        width:150px !important;
    }
    .block-2 .nav-link{
        right: 0 !important;
        margin-right: 0px !important;
        font-size: 10px !important;
        width:150px !important;
        text-align: left;
        border-radius:20px !important;
    }
    .block-3{
      margin-right: 270px !important;
    }

    .block-3 .nav-link{
        margin-right: 270px !important;
        font-size: 10px !important;
        width:150px !important;
        border-radius:20px !important;
  }
  .block-3 .gift{
    width: 50%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

  }
  .block-1 p{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;

  }
  [dir="rtl"] .block-1 {
    margin-right: 0 !important;
    text-align: right !important;
}
  [dir="rtl"] .block-2 {
    margin-right: 0 !important;
    text-align: right !important;
    height:350px !important;
}
  [dir="rtl"] .block-3 {
    margin-right: 0 !important;
    text-align: right !important;
    height:250px !important;
}

[dir="rtl"] .block-2 p{
    width: 50%;
    overflow: hidden !important;
    white-space: normal !important;
    text-overflow: ellipsis !important;
}

  [dir="rtl"] .block-2 .p2 {
  font-size: 85% !important;
  }

  [dir="rtl"] .block-1 .block-img,
  [dir="rtl"] .block-2 .block-img {
    /* left: 0 !important;
    margin-left: auto !important;
    margin-right: 0 !important; */
    display: block !important;
    float: right !important;
    width:70px !important;
    height:30px;
  }


[dir="rtl"] .block-1 .banner-title{
    margin-left: 150px !important;
}
[dir="rtl"] .block-2 .banner-title{
  margin-left: 150px !important;
}
[dir="rtl"] .block-1 p{
    width: 50% !important;
    white-space: normal !important;
}
[dir="rtl"] .block-2 p {
  width: 50% !important;
  white-space: normal !important;

}


/* تصحيح محاذاة الصور في Block 3 في RTL */
[dir="rtl"] .block-3 .block-img {
    margin-left: 0 !important;
    padding-right: 75px !important;
    width: 150px !important;
}
[dir="rtl"] .block-1 .nav-link {
  margin-left: 30px !important;
    text-align: right !important;
    justify-content: flex-end !important;
}
[dir="rtl"] .block-2 .nav-link {
  margin-right: 170px !important;
    text-align: right !important;
    justify-content: flex-end !important;
}
/* تحسين تصميم الزر في RTL */
[dir="rtl"] .block-3 .nav-link {
  margin-left: 130px !important;
    text-align: right !important;
    justify-content: flex-end !important;
}
  }

/* Ensure proper scaling for very small screens */
@media screen and (max-width: 400px) {
    .slider-items {
      background-size: contain; /* Ensure slider images are properly contained */
      min-height: 250px; /* Reduce the height to fit smaller screens */
    }
    .banner-title{
        font-size: 14px;
        white-space: normal;
    }
    .banner-ad .p2{
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: bolder;
        white-space: normal;
      }


    .banner-ad {
      padding: 10px; /* Reduce padding for smaller screens */
    }

    .banner-content .fa-solid {
      font-size: 1.5rem; /* Reduce icon size for small screens */
    }

    .order-btn {
      width: 100%; /* Make the order button full width on small screens */
      padding-top: 20px;
      text-align: center; /* Center the button text */
    }

    .banner-blocks {
      grid-template-columns: 1fr; /* Stack services vertically */
    }

    .block-1, .block-2, .block-3 {
      grid-column: 1 / 2;
    }
  }
/*===========================
    STYLE OUR-STORE
============================*/
.our-store h3 {
  color: #292621;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .our-store h3 {
    text-align: center;
  }
}
.our-store .store-head li {
  margin-left: 35px;
  position: relative;
}
.our-store .store-head li:last-child {
  margin-left: 0;
}
.our-store .store-head li.active::before {
  position: absolute;
  right: 0;
  bottom: -4px;
  height: 2px;
  width: 100%;
  background: #cd2122;
  content: "";
  opacity: 0;
}
.our-store .store-head li:hover::before,
.our-store .store-head li.active::before {
  opacity: 1;
}
.our-store .store-head a {
  transition: 250ms ease-in-out;
  font-size: 14px;
  list-style: none;
  display: inline-block;
  color: #111111;
  cursor: pointer;
}

.our-store .store-head a:last-of-type {
  margin-right: 0;
}
.our-store .store-head a.active,
.our-store .store-head a:hover {
  color: #221e1e;
}
.our-store .fa-magnifying-glass {
  position: absolute;
  left: 15px;
  top: 15px;
  cursor: pointer;
}


/* General Border and Background for Filter Section */
.row.no-gutters {
    margin-left: 0;
    margin-right: 0;
}

.col-md-3.p-0 {
    padding: 0;
}

.our-store-left {
    background-color: #f8f9fa; /* Light gray background */
    border: 2px solid #dee2e6; /* Subtle border */
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
    padding: 10px;
    margin-right: 50px;
}

/* Title Styling */
.left-catalog h4 {
    font-size: 18px;
    font-weight: bold;
    color: #343a40; /* Dark gray for text */
    border-bottom: 2px solid #007bff; /* Blue underline */
    padding-bottom: 8px;
    margin-bottom: 20px;
}

/* Radio Button List Styling */
ul.filter-size, ul.filter-color {
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Radio Buttons and Labels Styling */
ul.filter-size li, ul.filter-color li {
    display: flex;
    align-items: center;
    margin: 0; /* Remove any margin */
    padding-left: 0; /
}

ul.filter-size input[type="radio"], ul.filter-color input[type="radio"] {
    margin-right: 10px;
    accent-color: #007bff; /* Blue styling for radio button */
    cursor: pointer;
}

ul.filter-size label, ul.filter-color label {
    font-size: 14px;
    font-weight: 500;
    color: #495057; /* Neutral dark text */
    cursor: pointer;
    padding-left: 0 !important;
    transition: color 0.2s;
}

ul.filter-size label:hover, ul.filter-color label:hover {
    color: #007bff; /* Highlight on hover */
}

/* Adjusting Padding for Larger Click Areas */
ul.filter-size input[type="radio"], ul.filter-color input[type="radio"],
ul.filter-size label, ul.filter-color label {
    padding: 0;
}

/* Responsive Behavior */
@media (max-width: 768px) {
    .our-store-left {
        margin-top: 20px;
        box-shadow: none;
    }
}

/* =================
  2. STYLE FOOTER
=================== */
.bottom{
    background-color: #f4e9d3;
}
footer .container,
footer .footer-bottom {
    margin-top: 50px;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}
footer h3 {
  font-size: 16px;
  text-transform: uppercase;
}
footer p {
  margin: 24px 0 15px;
}
footer .socail a {
  color: #221e1e;
  text-align: center;
  border-radius: 50%;
  font-size: 16px;
}

footer .category a {
  display: block;
  margin-bottom: 12px;
  color: #221e1e;
}

footer .copy a {
  color: #221e1e;
  font-weight: bold;
}
footer img.logo-footer {
  width: 140px;
}

/* ================= SIGNUP && LOGIN PAGES ================= */

.sec-title {
  background-color: #fbfdf9;
  border-radius: 9px;
}

.sec-title .sec-head a,
.sec-title .sec-head i {
  color: #636270;
}

.sec-title .sec-head .fa-angle-right {
  font-size: 10px;
  margin: 0 2px;
}

.sec-title .sec-head a:last-of-type {
  font-weight: 600;
  color: #221e1e;
}

.sign-up {
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(39, 35, 67, 0.12);
  border-radius: 12px;
  max-width: 648px;
  width: 100%;
  margin: auto;
  padding: 32px;
}

.sign-up h3 {
  font-size: 32px;
}
.sign-up label,
.forget .forget-inner label {
  font-size: 12px;
}
.sign-up .pin-code label span {
  color: var(--primary);
  font-weight: 500;
}
.sign-up form a {
  text-decoration: underline;
  font-weight: 500;
  transition: 150ms ease-in-out;
}

.sign-up form .link-footer a,
.sign-up form .forget-pin {
  text-decoration: none;
  color: #00f;
}

.sign-up form input[type="text"],
.sign-up form input[type="number"],
.forget .forget-inner form input[type="number"] {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  padding: 10px 15px;
}

.sign-up form input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.sign-up .pin-code input[type="text"] {
  width: 54px;
  height: 43px;
  text-align: center;
  margin-right: 10px;
}
#message {
  margin-top: 10px;
  color: #f00;
  font-weight: 500;
}
.sign-up button,
.forget-inner button {
  border: none;
  width: fit-content;
  cursor: pointer;
}

.forget-pin {
  font-weight: bold !important;
  color: #636270 !important;
}

.forget {
  position: fixed;
  inset: 0;
  width: 100%;
  z-index: 999;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 250ms ease;
}
.forget.active {
  opacity: 1;
  visibility: visible;
}
.forget .forget-inner {
  width: 350px;
  background-color: #fff;
  border-radius: 9px;
  padding: 30px 40px;
  position: relative;
  margin-top: 200px;
  opacity: 0;
  visibility: hidden;
  transition: 250ms ease;
}
.forget .forget-inner.active {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}
.forget .forget-inner span.close-forget {
  font-size: 22px;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
}

.forget .forget-inner p {
  font-size: 15px;
}

.forget .forget-inner form input {
  width: 100%;
}

/*======================
    cart-parent
=======================*/
.cart-parent table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}
/* .cart-parent table.table-cart tbody tr:nth-child(odd) {
  background-color: #f4e9d3;
} */



.cart-parent table tr th {
  padding: 20px;
  border-bottom: 1px solid #f4e9d3;
  background-color: #f4e9d3;
  text-transform: capitalize;
  font-weight: 600;
}
.cart-parent table tbody td {
  padding: 25px;
}
.cart-parent table.table-cart td .color-table {
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-radius: 100%;
}
@media screen and (min-width: 992px) {
  .cart-parent table.table-cart td[data-cart="color"] span:not(.wishlist-cart table.table-cart td[data-cart="color"] span),
  .cart-parent table.table-cart td[data-cart="size"] span:not(.wishlist-cart table.table-cart td[data-cart="size"] span){
    width: 125px;
  }
}

.cart-parent table.table-cart td[data-cart="price"] span,
.cart-parent table.table-cart td[data-cart="subtotal"] span {
  color: #cd2122;
  font-weight: 500;
}
.cart-parent table.table-cart tbody td img {
  width: 50px;
  margin-right: 15px;
}
.cart-parent table.table-cart tbody td a {
  color: #221e1e;
}
.cart-parent table.table-cart tbody td input[type="number"] {
  width: 100px !important;
  height: 52px;
  border: 1px solid #e1e3e5;
  color: #555;
  text-align: center;
  padding: 10px;
}

.cart-parent table.table-cart .close {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  line-height: 27px;
  margin-right: 20px;
  cursor: pointer;
  background-color: #292621;
  color: #f4e9d3;
  transition: 150ms ease-in;
}
.cart-parent table.table-cart .close:hover {
  background-color: #000;
}
@media screen and (max-width: 992px) {
  .cart-parent table.table-cart {
    width: 100%;
    border-collapse: collapse;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }
  .cart-parent table.table-cart tbody td:first-child {
    margin-top: 60px;
  }
  .cart-parent table.table-cart tbody td img {
    display: none;
  }
  .cart-parent table.table-cart tbody td span.close {
    position: absolute;
    right: 20px;
    top: 20px;
    margin-right: 0;
  }
  .cart-parent table.table-cart tbody td input[type="number"] {
    margin-top: -17px;
  }
  .cart-parent table.table-cart tr td span.float-end,
  .cart-parent table.table-cart tr td a {
    float: right;
  }
  .cart-parent table.table-cart td::before {
    content: attr(data-cart);
    text-transform: capitalize;
    color: #221e1e;
    font-weight: 500;
  }
  .cart-parent table.table-cart thead {
    display: none;
  }
  .cart-parent table.table-cart tbody tr:last-of-type td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .cart-parent table.table-cart tbody td {
    display: block !important;
    width: 100%;
    text-align: left;
  }
}

.cart-parent .cart-total {
  background-color: #fdfdfe;
}

.cart-parent .table-total th {
  color: var(--primary);
}

.cart-parent .table-total td:last-child {
  color: #221e1e;
  font-weight: 600;
}

/*======================
    details
=======================*/
.details .images-left img {
  opacity: 0.5;
  width: 100px;
  transition: 150ms ease-in-out;
  cursor: pointer;
}
.details .images-left img:hover,
.details .images-left img.active {
  opacity: 1;
}
.details .big-images img {
  width: 430px;
  height: 430px;
  object-fit: cover;
}
@media screen and (max-width: 992px) {
  .details .big-images img {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .details .big-images img {
    width: 100%;
  }
  .details .fa-magnifying-glass {
    bottom: 10px;
    right: 10px;
  }
}
.details .images img {
  opacity: 0.4;
  transition: 0.2s ease-in-out;
  cursor: pointer;
  border-radius: 5px;
}

.details .images img:hover,
.details .images img.active {
  opacity: 1;
}
.details .fa-magnifying-glass {
  position: absolute;
  bottom: 20px;
  right: 50px;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.6);
  transition: 0.2s ease-in-out;
  background: red;
  padding: 10px 15px;
  border-radius: 5px;
  background: #313131;
  color: #ffff;
}

@media screen and (max-width: 768px) {
  .details .big-images img {
    width: 100%;
  }
  .details .fa-magnifying-glass {
    bottom: 10px;
    right: 10px;
  }
}
@media screen and (max-width: 992px) {
  .details .fa-magnifying-glass {
    bottom: 10px;
    right: 10px;
  }
}
.head {
  border-bottom: 1px solid #f9f9f9;
}

.details-desc h3 {
  font-size: 28px;
}

.details-desc .fa-star {
  color: #dbdbdb;
  cursor: pointer;
  font-size: 12px;
  color: #ffb321;
}

.details-desc span.price {
  font-size: 20px;
  font-weight: 600;
  color: #ca1515;
  margin-bottom: 15px;
}

.details-desc span.discount {
  color: #b1b0b0;
  font-size: 16px;
  font-weight: 500;
  text-decoration: line-through;
}
.details-desc ul li span {
  font-weight: 500;
  margin-right: 15px;
  width: 120px;
}
.details-desc ul.color-label label {
  margin-right: 28px;
  cursor: pointer;
}
.details-desc ul.size-label label {
  margin-right: 10px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 400;
  width: 29px;
  border-radius: 2px;
  height: 26px;
  border: 1px solid #a8a8a8;
  text-align: center;
  line-height: 26px;
  font-weight: bold;
}
.details-desc ul.size-label label.active {
  color: #ca1515;
  border: 1px solid #000;
  box-shadow: 0 0 2px #999;
}

.details-desc input[type="radio"] {
  visibility: hidden;
  position: absolute;
}
.details-desc input[type="radio"]:last-child {
  margin-right: 0;
}
.details-desc span.checkmark {
  position: absolute;
  left: -2px;
  top: -4px;
  height: 20px;
  width: 20px;
  background: #e31e2f;
  border-radius: 50%;
  content: "";
  outline: 1px solid #f4f4f4;
  outline-offset: 2px;
}
.details-desc span.checkmark::before {
  position: absolute;
  left: 3px;
  top: 5px;
  width: 13px;
  height: 6px;
  border: solid #ffffff;
  border-width: 2.5px 2.5px 0px 0px;
  transform: rotate(127deg);
  opacity: 0;
  content: "";
}
.details-desc input[type="radio"]:checked ~ span.checkmark {
  outline: 1px solid #000;
  outline-offset: 2px;
}
.details-desc input[type="radio"]:checked ~ span.checkmark::before {
  opacity: 1;
}

.details-desc .size span {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  color: #221e1e;
  font-size: 13px;
  background-color: #f8f8f8;
  margin-right: 5px;
  cursor: pointer;
}
.details-desc .details-footer button {
  width: fit-content;
}
.details-desc .details-footer .wishlist {
  cursor: pointer;
  color: #221e1e;
  margin-left: 10px;
}
.details-desc .size span.active {
  outline: 1px solid var(--primary);
  outline-offset: 4px;
}

.details-desc input:not(input[type="radio"]) {
  height: 43px;
  font-size: 12px;
  border: 1px solid #eaeaea;
  outline: none;
  padding: 2px;
  width: 70px !important;
  text-align: center !important;
  color: inherit;
  margin-right: 5px;
  border-radius: 8px;
}
.details-desc button {
  border: none;
  height: 43px;
  cursor: pointer;
}

.details-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: zoom-out;
  transition: 0.3s linear;
  opacity: 0;
  z-index: 8888;
  visibility: hidden;
}
.details-overlay.active {
  opacity: 1;
  visibility: visible;
}
.details-overlay .details-over-inner {
  max-width: 493px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}
.details-overlay .details-over-inner .caption {
  color: #fff;
  opacity: 0.7;
  text-align: right;
}

.details-overlay .details-over-inner span.close {
  display: block;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  color: #aaa;
  text-align: right;
  transition: 150ms linear;
}
.details-overlay .details-over-inner span.close:hover {
  color: #fff;
}
.details-overlay .details-over-inner img {
  width: 100%;
  max-height: 500px;
  transform: scale(0.5);
  transition: 250ms ease-in-out;
}

.details-overlay.active img {
  transform: scale(1);
}

.next,
.prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #fff;
  text-align: center;
  border-radius: 100%;
  line-height: 40px;
}

.prev {
  left: 25px;
}

.next {
  right: 25px;
}

.fa-star p {
  position: relative;
}

.color ul li {
  width: 22px;
  height: 22px;
  margin-right: 10px;
  cursor: pointer;
  border-radius: 2px;
  padding: 2px;
  border-radius: 50%;
}

.color ul li.active {
  outline: 1px solid var(--primary);
  outline-offset: 4px;
}

.details-footer {
  margin-top: 80px;
}

.details-footer ul li a {
  font-weight: 700;
  color: #221e1e;
  opacity: 0.5;
  transition: 150ms ease-in-out;
  padding: 15px 25px;
}

.details-footer ul li a.active {
  opacity: 1;
  background-color: #fdfdfd;
  border-top: 2px solid var(--primary);
}

.details-footer .tab {
  background-color: #fdfdfd;
}

textarea {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  padding: 10px 15px;
  resize: vertical;
}

/*======================
    our-store
=======================*/
.our-store-left {
  padding: 30px 19px 30px 30px;
}
.left-catalog h4 {
  font-size: 16px;
    display: block;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 22px;
}

.our-store ul li {
  margin-bottom: 10px;
}
.our-store input {
  cursor: pointer;
  margin-right: 5px;
}

.our-store label {
  position: relative;
  text-transform: capitalize;
  cursor: pointer;
  font-weight: 600;
}

.our-store .images {
  width: 100%;
  max-width: 300px;
}
.our-store img {
  width: 100%;
  height: 235px;
  object-fit: cover;
}

@media screen and (max-width: 350px) {
  .our-store img {
    height: auto !important;
  }
}

.sec-image {
  position: absolute;
  width: 100%;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: 150ms ease-in-out;
}
.product:hover img {
  opacity: 1;
}
.catalog-desc {
  transition: 150ms linear;
}
.catalog-desc p a {
  color: #221e1e;
  letter-spacing: 2px !important;
  font-size: 15px;
}
.catalog-desc svg {
  font-size: 20px;
  margin-right: 5px;
  margin-top: -2px;
  stroke: #221e1e;
  transition: 90ms ease-in-out;
}

.product:hover .catalog-desc {
  transform: translateY(-30px);
  background-color: #fff;
  box-shadow: 0 8px 19px 8px rgba(0, 0, 0, 0.01);
}
.product .catalog-desc a {
  color: #000;
  letter-spacing: 1px;
}
.product .catalog-desc a.btn {
  padding: 5px 12px;
}
.product span.price {
  margin-right: 4px;
  font-size: 15px;
  font-weight: 500;
  margin-right: 4px;
}

.our-store span.discount {
  color: #ee0202;
  font-weight: 500;
  text-decoration: line-through;
}

.our-store .icons {
  transform: translateY(30px);
  transition: 250ms linear;
  opacity: 0;
  visibility: hidden;
}
.our-store .product:hover .icons {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}



@media screen and (max-width: 350px) {
  .col-xs-12 {
    width: 100%;
  }
}

/*======================
    Checkout
=======================*/

select {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.checkout i {
  position: absolute;
  top: 42px;
  right: 29px;
  font-size: 12px;
  pointer-events: none;
}

.checkout label span {
  color: #f00;
}
.checkout form button {
  width: fit-content;
  background-color: transparent;
  cursor: pointer;
}
.checkout button.btn-tab {
  background-color: transparent;
  border: none;
  color: #221e1e;
  transition: 150ms ease-in-out;
  margin: 0 15px;
  width: fit-content;
  cursor: pointer;
  transition: 150ms ease-in-out;
  font-size: 15px;
  width: fit-content;
}

.checkout button.btn-tab.active,
.checkout button.btn-tab:hover {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

.checkout textarea {
  resize: vertical;
}

.checkout table {
  width: 100%;
  text-align: left;
  background-color: #fdfdfd;
}

.checkout .tabs {
  display: none;
}

.checkout .tabs.active {
  display: block;
}

/*======================
    Contact
=======================*/
.contact input,
.contact textarea {
  width: 100%;
  border: 1px solid #ced4da;
  color: #292621;
  padding: 10px 15px;
  /* font-family:"theSans", sans-serif !important; */
  font-size: 13px;
  border-radius: 2px;
}
.contact #msg {
  height: 140px;
  resize: vertical;
}

.contact button {
  cursor: pointer;
}
.contact .form-circle {
  background: #292621;
  border-radius: 100%;
  text-align: center;
  margin-left: auto;
  max-width: 350px;
  height: 350px;
  padding: 100px 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.contact .form-circle li {
  margin: 10px 0;
  display: flex;
}
.contact .form-circle li i {
  font-size: 18px;
}

@media screen and (min-width: 992px) {
  .contact .form-circle {
    float: right;
  }
}

@media screen and (max-width: 400px) {
  .contact .form-circle {
    max-width: 270px;
    height: 270px;
  }
  .contact .form-circle h3 {
    font-size: 12px;
  }
}

/* .contact button {
  border: none;
  width: fit-content;
  cursor: pointer;
}

.contact .contact-info {
  background-color: #f9f9f9;
  padding: 25px;
}
.contact .contact-info ul li {
  margin-bottom: 15px;
}
.contact .contact-info ul li a {
  color: #221e1e;
}

.contact .contact-info ul li i {
  margin-right: 15px;
  font-size: 17px;
} */
/*======================
    404 page
=======================*/

.page_404 {
  padding: 40px 0;
  background: #fff;
}

.page_404 img {
  width: 100%;
}

.four_zero_four_bg {
  background-image: url(https://cdn.dribbble.com/users/285475/screenshots/2083086/dribbble_1.gif);
  height: 400px;
  background-position: center;
}

.four_zero_four_bg h1 {
  font-size: 80px;
}

.four_zero_four_bg h3 {
  font-size: 80px;
}

.link_404 {
  color: #fff !important;
  padding: 10px 20px;
  background: #39ac31;
  margin: 20px 0;
  display: inline-block;
}
.contant_box_404 {
  margin-top: -50px;
}

/*===========================
    STYLE TERMS OF SERVICES
============================*/

.terms-inner span {
  font-weight: 400;
  font-size: 20px;
}

.terms-inner h4 {
  font-size: 15px;
}
.terms-inner p {
  color: #444;
}
.terms-inner ul li {
  list-style-type: disc;
}

.gift form {
  width: 280px;
}

.table-cart span.colors {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.classic .sort {
  height: 34px;
  outline: none;
  font-size: 13px;
  font-weight: 400;
  border-radius: 3px;
  padding-left: 10px;
  padding-right: 30px;
  background-size: 6px 12px;
  border: 1px solid #d9d9d9;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  background-image: url(../images/select-arrow.svg);
  -webkit-appearance: none;
  appearance: none;
  transition: all 0.2s ease-out;
  cursor: pointer;
  width: 200px;
}

.classic .classic-top span {
  background: #221e1e;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-weight: 400;
  border-radius: 5px;
  font-size: 14px;
  padding: 2px 10px;
}
.classic .classic-product img {
  height: 350px;
  width: 100%;
  object-fit: cover;
}
.classic .classic-product .catalog-desc .plus-dash {
  height: 50px;
  width: 150px;
  border: 1px solid #ebebeb;
  border-radius: 50px;
  padding: 0 20px;
  overflow: hidden;
  display: inline-block;
}

.classic .classic-product .catalog-desc .increment,
.classic .classic-product .catalog-desc .decrement {
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  float: left;
  width: 12px;
  line-height: 46px;
}

.classic .classic-product .catalog-desc input {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  border: none;
  float: left;
  width: 84px;
  text-align: center;
  height: 48px;
}

.classic .classic-product .catalog-desc {
  transition: 150ms linear;
}
.classic .classic-product .catalog-desc p a {
  color: #221e1e;
  letter-spacing: 2px !important;
  font-size: 15px;
}
.classic .classic-product .catalog-desc svg {
  font-size: 20px;
  margin-right: 5px;
  margin-top: -2px;
  stroke: #221e1e;
  transition: 90ms ease-in-out;
}

.classic .classic-product .product:hover .catalog-desc {
  transform: translateY(-30px);
  background-color: #fff;
  box-shadow: 0 8px 19px 8px rgba(0, 0, 0, 0.01);
}
.classic .classic-product .product .catalog-desc a {
  color: #221e1e;
  letter-spacing: 1px;
}
.classic .classic-product .product .catalog-desc a.btn {
  padding: 5px 12px;
}
.classic .classic-product span.price {
  margin-right: 4px;
  font-size: 15px;
  font-weight: 500;
  margin-right: 4px;
}

/* Style for the filter icon */
#filter-icon {
    font-size: 20px;
    color: #555;
    cursor: pointer;
}

.dropdown-menu {
    min-width: 150px; /* Set dropdown width */
    padding: 0;
    position: absolute !important; /* Ensure proper placement */
    right: 0; /* Align to the right */
    transform: translate(0, 0) !important; /* Prevent unwanted transformations */
}

.dropdown-item {
    font-size: 14px;
    padding: 10px 15px;
    text-align: left;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #333;
}


@media screen and (max-width: 360px){

    #filter-icon {
        font-size: 20px;
        color: #555;
        cursor: pointer;
        text-align:right;
    }
    .classic-product img{
        height: 100px !important;
        object-fit: cover;
        width: 100%;
    }
    .quantity-control{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;

    }
    .classic-product .card-body{
        height: 170px !important;
    }
    .animated-btn {
        font-size: 14px;  /* Decreased font size */
        font-weight: bold;
        padding: 5px 10px;  /* Decreased padding */
        transition: all 0.3s ease;
        border-radius: 50%;
        width: 10px !important;  /* Decreased width */
        height: 25px !important;  /* Decreased height */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;

    }
    .design-inner p{
        white-space: wrap !important;
        text-align: center !important;
    }
    .qty-input{
        width: 40px !important;
      }
    .animated-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    }

    .decrease-qty {
        background-color: #f4e9d3 !important;
        color: #0c0c0c;
        border: none;
    }

    .increase-qty {
        background-color: #f4e9d3 !important;
        color: #020202;
        border: none;
    }


    .classic .sort {
        display: inline-block;
        height: 34px;
        outline: none;
        font-size: 10px;
        font-weight: 400;
        border-radius: 3px;
        padding-left: 10px;
        /* padding-right: 30px; */
        background-size: 6px 12px;
        border: 1px solid #d9d9d9;
        background-repeat: no-repeat;
        background-position: calc(100% - 10px) center;
        background-image: url(../images/select-arrow.svg);
        -webkit-appearance: none;
        appearance: none;
        transition: all 0.2s ease-out;
        cursor: pointer;
        width: 100px;
      }
      .qty-title{
        display:none;
    }
      .classic .sort option{
    width:100px !important;
      }

      .classic .classic-top h3 {

        display: inline-block;
        text-align: center;
        font-weight: 400;
        border-radius: 5px;
        font-size: 18px;
        padding: 2px 10px;
      }
}




@media screen and (max-width: 375px){
    .classic-product img{
        max-height: 150vw !important;
        object-fit: cover;
        width: 100%;
    }
    .quantity-control{
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;


    }
    .classic-product .card-body{
        max-height: 150vw !important;
    }
    .qty-title{
        display:none;
    }
    .animated-btn {
        font-size: 14px;  /* Decreased font size */
        font-weight: bold;
        padding: 5px 7px;  /* Decreased padding */
        transition: all 0.3s ease;
        border-radius: 50%;
        width: 10px !important;  /* Decreased width */
        height: 25px !important;  /* Decreased height */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        cursor: pointer;

    }
    .design-inner p{
        white-space: wrap !important;
        text-align: center !important;
    }

    .animated-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    }

    .decrease-qty {
        background-color: #f4e9d3 !important;
        color: #020202;
        border: none;
    }

    .increase-qty {
        background-color: #f4e9d3 !important;
        color: #020202;
        border: none;
        margin-left: 20px !important;
    }

    .classic .sort {
        display: inline-block;
        height: 34px;
        outline: none;
        font-size: 10px;
        font-weight: 400;
        border-radius: 3px;
        padding-left: 10px;
        /* padding-right: 30px; */
        background-size: 6px 12px;
        border: 1px solid #d9d9d9;
        background-repeat: no-repeat;
        background-position: calc(100% - 10px) center;
        background-image: url(../images/select-arrow.svg);
        -webkit-appearance: none;
        appearance: none;
        transition: all 0.2s ease-out;
        cursor: pointer;
        width: 150px;
      }

      .classic .classic-top h3 {

        display: inline-block;
        text-align: center;
        font-weight: 400;
        border-radius: 5px;
        font-size: 18px;
        padding: 2px 10px;
      }
}

@media screen and (max-width: 576px) {
  .classic .classic-top h3,
  .classic .classic-top .text-right {
    text-align: center;
  }
  .qty-title{
    display:none;
}
}

.design .catalog-desc h3 {
  text-transform: uppercase;
}

/* overlay images */
.modal-images .details-over-inner img {
  display: none;
}

.modal-images .details-over-inner img.active {
  display: block;
}



.dishdasha .dishdasha-head1 {
  padding: 30px;
  background: linear-gradient(to bottom right,  #e6d1a8, #f7e3bc);
  box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
  transition: .3s all ease-in-out;
  top: 0;
  position: relative;
}
.dishdasha .dishdasha-head2 {
    padding: 30px;
    background: linear-gradient(to bottom right, #e6d1a8, #f7e3bc);
    box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
    transition: .3s all ease-in-out;
    top: 0;
    position: relative;
  }

  .dishdasha .dishdasha-head3 {
    padding: 30px;
    background: linear-gradient(to bottom right, #e6d1a8, #f7e3bc);
    box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
    transition: .3s all ease-in-out;
    top: 0;
    position: relative;
  }
  .dishdasha .dishdasha-head4 {
      padding: 30px;
      background: linear-gradient(to bottom right, #e6d1a8, #f7e3bc);
      box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
      transition: .3s all ease-in-out;
      top: 0;
      position: relative;
    }


.dishdasha .dishdasha-head1:hover, .dishdasha-head2:hover {
  -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
  top: -10px;
}

.dishdasha .dishdasha-head4:hover, .dishdasha-head3:hover {
    -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
    top: -10px;
  }

#plusIcon {
    background-color: #ffffff;
    color: black;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 10px;
    margin-left: 10px;
    display: inline-block;
    transition: background-color 0.3s ease-in-out;
}

#plusIcon:hover {
    background-color: #0056b3;
}
@media screen and (max-width: 500px) {
    .dishdasha .dishdasha-head1, .dishdasha-head2 {
        padding: 20px;
        box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
        transition: .3s all ease-in-out;
        top: 0;
        position: relative;
        margin-bottom: 30px;
    }
    .dishdasha .dishdasha-head1:hover {
        -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        top: -10px;
      }

      .dishdasha .dishdasha-head2:hover {
        -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        bottom: 10px;
      }

      .dishdasha .dishdasha-head3, .dishdasha-head4 {
        padding: 20px;
        box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
        transition: .3s all ease-in-out;
        top: 0;
        position: relative;
        margin-bottom: 30px;
    }
    .dishdasha .dishdasha-head3:hover {
        -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        top: -10px;
      }

      .dishdasha .dishdasha-head4:hover {
        -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        bottom: 10px;
      }


  }

  @media screen and (max-width: 800px) {
    .dishdasha .dishdasha-head1, .dishdasha-head2 {
        padding: 20px;
        box-shadow: 0 1px 2px 0px rgba(0, 0, 0, 0.1);
        transition: .3s all ease-in-out;
        top: 0;
        position: relative;
        margin-bottom: 30px;
    }
    .dishdasha .dishdasha-head1:hover {
        -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        top: -10px;
      }

      .dishdasha .dishdasha-head2:hover {
        -webkit-box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        box-shadow: 0 8px 50px -5px rgba(0, 0, 0, 0.1);
        bottom: 10px;
      }
  }
  .card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    /* margin: 10px; */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 0; /* Prevent unnecessary spacing */
    width: 100%;
}
/* .card-img-top {
    width: 100% !important;
    height: auto;
} */
.card-body {
    padding: 15px;
    background-color:#cecec9;

}
.row-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    /* margin-top: 50px; */
}
@media screen and (max-width: 600px) {
    .row-categories {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
                /* justify-content: space-between; */
    }

    /* .category-card {
        flex: 0 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
        scroll-snap-align: start;
    } */
    .row-categories::-webkit-scrollbar {
        display: none;
    }

    .card {
        width: 100%; /* Allow card to fill its container */
         /* Remove margin if gap is handling spacing */
    }

}
/* Styling the brand slider container */
.brand-slider ul {
    display: flex;
    overflow-x: auto;
    list-style-type: none;
    padding: 0;
    gap: 20px; /* Adds spacing between items */
    justify-content: flex-start; /* Aligns items to the left */
    scroll-snap-type: x mandatory; /* Enables smooth snap scrolling */
}

/* Styling each list item */
.brand-slider li {
    flex: 0 0 auto; /* Prevents list items from shrinking or stretching */
    margin-right: 15px; /* Adds space between items */
    scroll-snap-align: start; /* Ensures smooth snap to item */
}

/* Styling the brand button */
.brand-slider .btn-brand {
    background: linear-gradient(145deg, #f4e9d3, #d1c4b1); /* Gradient background */
    color: black;
    padding: 12px 20px; /* Increased padding for a larger button */
    border-radius: 30px; /* Rounded corners for a more modern look */
    text-decoration: none;
    font-size: 16px; /* Larger font size */
    font-weight: 600; /* Bold font for emphasis */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow around the button */
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease; /* Adds smooth transitions */
    display: inline-block;
}

/* Hover effect for brand button */
.brand-slider .btn-brand:hover {
    background-color: #0056b3; /* Darker background on hover */
    transform: scale(1.05); /* Slightly enlarges the button on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Increases shadow on hover */
    color: #fff; /* Changes text color on hover */
}

/* Scrollbar styling */
.brand-slider::-webkit-scrollbar {
    display: none; /* Vertical scrollbar width */
}

.brand-slider::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2); /* Light scrollbar thumb color */
    border-radius: 10px; /* Rounded edges for the thumb */
}

/* Optional: Add animation on load to the buttons */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-slider .btn-brand {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Optional: Add an overall slider fade-in */
.brand-slider ul {
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
    animation-delay: 0.2s;
}

.quantity-control {
    margin: 20px 0;
}

.animated-btn {
    font-size: 16px !important;
    font-weight: bold;
    padding: 2px 8px !important;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin-right: 10px !important;
}

.animated-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.decrease-qty {
    background-color: #f4e9d3 !important;
    color: #020202;
    border: none;
}


.increase-qty {
    background-color: #f4e9d3 !important;
    color: #020202;
    border: none;

}

.qty-input {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.price-text {
    color: blue;
    font-weight: bold;
    padding-top: 10px;
}



.design-image {
    height: 350px;
    object-fit: cover;
    width: 100%;
}

@media screen and  (max-width:320px) {
    .design-product {
        display: flex;
        flex-wrap: wrap;
    }
    .classic-product .card-body{
        height: 160px !important;
        width: 135px !important;
    }
    .design-product .col-md-4 {
        /* Make each card take up half the width */
        flex: 1 0 50%;
        /* max-width: 70%; */
        display: flex; /* Make cards stretch equally */
        flex-direction: column;
    }

    .design-product .card {
        display: flex;
        flex-direction: column;
        height: 180px !important; /* Make all cards stretch to the same height */
    }

    .design-image {
        height: 230px;
        object-fit: cover;
        width: 100%;
    }
    .design-product .card-body {
        flex-grow: 1; /* Push the body content to fill the remaining space */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .design-product .card-title{
        font-size:5px !important;
    }
    .design-product button{
        font-size:15px;
        bottom:10px;
        right:10px;
    }
    .qty-input{
        width: 40px !important;
      }
    .classic-product .col-md-4{
        flex: 1 0 50%;
        max-width: 50%;
    }
    .classic-product .gallery-item img{
        height:200px;
    }
   .classic-product .quantity-control .qty-input{
        width: 50px !important;
    }

}
@media screen and (max-width: 360px){
    .classic-product .quantity-control .qty-input{
        width: 5px !important;
    }
}

@media screen and  (max-width: 375px) {
    .design-product {
        display: flex;
        flex-wrap: wrap;
    }

    .design-product .col-md-4 {
        /* Make each card take up half the width */
        flex: 1 0 50%;
        max-width: 50%;
        display: flex; /* Make cards stretch equally */
        flex-direction: column;
    }

    .design-product .card {
        display: flex;
        flex-direction: column;
        height: 280px !important; /* Make all cards stretch to the same height */
    }

    .design-image {
        height: 120px;
        object-fit: cover;
        width: 100%;
    }
    .design-product .card-body {
        flex-grow: 1; /* Push the body content to fill the remaining space */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .design-product .card-title{
        font-size:15px !important;
    }
    .design-product button{
        font-size:15px;
        bottom:10px !important;
    }
    .classic-product .col-md-4{
        flex: 1 0 50%;
        max-width: 50%;
    }
    .classic-product .gallery-item img{
        height:200px;
    }
   .classic-product .quantity-control .qty-input{
        width: 5px !important;
    }

}

/* Media query for max-width: 500px */
@media screen and  (max-width: 500px) {
    .design-product {
        display: flex;
        flex-wrap: wrap;
    }

    .design-product .col-md-4 {
        /* Make each card take up half the width */
        flex: 1 0 50%;
        max-width: 50%;
        display: flex; /* Make cards stretch equally */
        flex-direction: column;
    }

    .design-product .card {
        display: flex;
        flex-direction: column;
        height: 280px; /* Make all cards stretch to the same height */
    }

    .design-image {
        height: 120px;
        object-fit: cover;
        width: 100%;
    }
    .design-product .card-body {
        flex-grow: 1; /* Push the body content to fill the remaining space */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .design-product .card-title{
        font-size:15px !important;
    }
    .design-product button{
        font-size:15px;
        bottom:5px;
    }
    .classic-product .col-md-4{
        flex: 1 0 50%;
        max-width: 50%;
    }
    .classic-product .gallery-item img{
        height:200px;
    }
   .classic-product .quantity-control .qty-input{
        width: 5px !important;
    }

}
.classic-product .quantity-control .qty-input{
    width: 40px !important;
}
.stylish-btn {
    background-color: #f0dcb4;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

/* Hover effect */
.stylish-btn:hover {
    background-color: #f7d3d3;
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Ripple effect */
.stylish-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
}

.stylish-btn:active:after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    transition: 0s;
}

.our-store .sort {
    height: 34px;
    outline: none;
    font-size: 13px;
    font-weight: 400;
    border-radius: 3px;
    padding-left: 10px;
    padding-right: 30px;
    background-size: 6px 12px;
    border: 1px solid #d9d9d9;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    background-image: url(../images/select-arrow.svg);
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.2s ease-out;
    cursor: pointer;
    width: 150px;
    text-align: right;
}

.size .row {
    display: flex;
    justify-content: flex-end;
    gap: 0;
}

.col-sm-6 {
    padding: 0 !important; /* Remove padding */
    margin: 0 !important;    /* Remove any margin between the columns */
}

.mt-4, .mt-sm-0 {
    margin-top: 0 !important; /* Remove the top margin to avoid space */
}

.text-right {
    text-align: right; /* Keep the text right-aligned */
}
.filter-size {
    margin-bottom: 0; /* Remove any extra bottom margin */
}

.original-price {
    text-decoration: line-through;
    color: #a1a1a1;
}

.discounted-price {
    color: #d9534f;
    font-weight: bold;
}


#productsContainer, #storeMaterialsContainer {
    display: flex;
    flex-wrap: wrap;
}


#productsContainer .col-lg-3,
#storeMaterialsContainer .col-lg-3 {
    flex: 1 0 25%; /* 4 items per row */
    max-width: 25%;
}

@media screen and (max-width: 900px) {
    #productsContainer,
    #storeMaterialsContainer {
        display: flex;
        flex-wrap: nowrap; /* Prevent wrapping */
        overflow-x: auto; /* Enable horizontal scrolling */
        scroll-snap-type: x mandatory; /* Snap scrolling behavior */
        -webkit-overflow-scrolling: touch; /* Smooth scrolling for mobile */
        gap: 16px; /* Space between items */
        /* width: 100%; */
    }

    #productsContainer::-webkit-scrollbar,
    #storeMaterialsContainer::-webkit-scrollbar {
        display: none;
    }

    #productsContainer .col-lg-3,
    #storeMaterialsContainer .col-lg-3 {
        flex: 0 0 45%;
        max-width: 45%;
        scroll-snap-align: start;
    }
    .wishlist-product
  {
    /* margin-left:5px; */
      width:80px !important;
      text-align:center;
      justify-content: center;
      font-size:10px;
      height:28px;
    }
    .detail-product{
        margin-left:5px;
        width:80px !important;
        font-size:9px;
    }
    .stores-title{
        font-size:25px !important;
    }
}


   body.rtl {
    direction: rtl;
    text-align: right;
  }




  body.rtl a:not(.arabic) {
    font-weight: bold;
  }
  body.rtl label {
    font-size: 18px;
  }
  body.rtl input {
    font-size: 15px;
  }
  /* body.rtl input , select {
    font-family:"theSans", sans-serif !important;
  } */
  /* ================ HEADER ================ */
  body.rtl .header-top form.search input {
  display:none;
  }
  body.rtl .header-top form.search button {
      display:none;
  }

  @media screen and (max-width: 992px) {
    body.rtl .header-top form.search {
      right: auto;
      left: 0;
    }
    body.rtl .header-top form.search.active {
      left: 0;
    }
  }

  body.rtl .cart-box-overlay .cart-box {
    right: auto;
    left: -400px;
    opacity: 1;
    visibility: visible;
  }

  body.rtl .cart-box-overlay .cart-box .cart-box-product {
    padding-right: 0;
  }
  body.rtl .cart-box-overlay .cart-box .cart-box-product .me-3 {
    margin-right: auto !important;
    margin-left: 1rem;
  }
  body.rtl .cart-box-overlay .cart-box.active {
    right: auto;
    left: 0;
  }
  body.rtl .cart-box-overlay .cart-box .me-2 {
    margin-right: auto !important;
    margin-left: 1rem;
  }

  body.rtl .header-top .head-right {
    gap: 18px;
  }

  /* ================ MENU ================ */
  body.rtl .menu a,
  body.rtl .mobile a {
    font-size: 18px;
    font-weight: bold;
  }

  body.rtl .our-store .store-head li {
    margin-right: 0;
    font-size: 22px;
  }
  body.rtl .our-store .store-head li a {
    font-size: 17px;
  }
  body.rtl .our-store .store-head li:not(:last-child) {
    margin-left: 35px;
  }
  body.rtl .btn {
    font-size: 15px;
    letter-spacing: 0;
  }
  body.rtl .services .service-desc h2 {
    font-size: 32px;
  }
  body.rtl .services .service-desc a {
    font-size: 18px;
  }
  body.rtl .footer .me-auto {
    margin-right: 0 !important;
    margin-left: auto;
  }
  body.rtl .footer h3 {
    font-size: 20px;
  }

  body.dir .owl-carousel {
    direction: rtl;
  }

  body.rtl .forget .forget-inner span.close-forget {
    right: auto;
    left: 20px;
    font-size: 28px;
  }

  body.rtl .pin-code input {
    margin-right: 0px !important;
    margin-left: 10px !important;
  }
  body.rtl .classic .sort {
    padding-left: 30px;
    padding-right: 10px;
    font-size: 16px;
    background-repeat: no-repeat;
    background-position: calc(11% - 10px) center;
    background-image: url(../images/select-arrow.svg);
  }
  body.rtl .classic .classic-top .text-right {
    text-align: left ;
  }
  @media screen and (max-width: 576px) {
    .classic .classic-top h3,
    .classic .classic-top .text-right {
      text-align: center !important;
    }
  }

  body.rtl .design h3 {
    font-size: 30px;
  }
  body.rtl .design p {
    font-size: 18px;
  }

  body.rtl .sec-head {
    font-size: 20px;
  }
  body.rtl .left-catalog h4 {
    font-size: 25px;
  }
  @media screen and (min-width: 992px) {
    body.rtl .contact .form-circle {
      float: left;
  }
  }
  body.rtl .contact .form-circle li .pe-3 {
    padding-right: 0 !important;
    padding-left: 1rem !important;
  }
  /* body.rtl .cart-parent table.table-cart tbody td img {
    margin-left: 1rem;
    margin-right: 1rem;
  } */


  body.rtl .slider-caption {
    float: right !important;
    text-align: right !important;
  }

  body.rtl .slider-items.slider01 {
    background: url(../images/slider01Ar.jpg) center / cover no-repeat;
    height: 500px;
  }

  body.rtl .slider-items.slider02 {
    background: url(../images/slider01En.jpg) center / cover no-repeat;
    height: 500px;
  }

  [dir="rtl"] .slider-items .slider-caption h2 {
    font-size: 2vw !important;
  }

  [dir="rtl"] .slider-items .slider-caption p {
    font-size: 1.2vw !important;
    text-wrap: nowrap !important;
  }
  [dir="rtl"] .btn {
    font-size: 13px;
  }
  .slider-caption {
    float: left;
    text-align: left;
  }


  [dir="rtl"] #filter-icon {
      font-size: 20px;
      color: #555;
      cursor: pointer;
      text-align:right !important;
      /* margin-left: 100px !important; */
  }
  [dir="rtl"] .dropdown-menu-right{
    right: auto !important;
    left: 0 !important;
  }



