.price, .currency-symbol {
    font-family: Arial, "Segoe UI", sans-serif; /* Supports Arabic Unicode */
}
.product_wrap {
    position: relative;
    overflow: hidden;
}
.headerb-item-left .logo-img {
    max-height: 50px; /* Set a max-height based on your design needs */
    width: auto; /* Maintain aspect ratio */
    display: block; /* Prevent image from being inline */
    height: auto; /* Adjust the height to maintain aspect ratio */
}

/* Optional: If you want to control the space around the logo */
.headerb-item-left .brand {
    display: flex;
    align-items: center; /* Vertically align logo */
    justify-content: center; /* Center the logo horizontally */
}
.product_action_box {
    position: absolute;
    bottom: -100px; /* Start from the bottom */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease-in-out; /* Use transform for better animation */
    transform: translateY(100%); /* Hide it initially by moving it down */
    padding: 10px;
}

.product_wrap:hover .product_action_box {
    transform: translateY(10%); /* Slide it up to show */
}

.product_action_box ul {
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product_action_box ul li {
    margin: 0 5px;
}

.product_action_box a {
    display: inline-block;
    text-align: center;
    color: #333;
    text-decoration: none;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.product_action_box a:hover {
    background-color: #f5f5f5;
}
  @-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  color: #121212;
  background: #fafafa;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  a,
  button {
    cursor: default !important;
    border: none;
    outline: none;
  }
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  max-width: 80rem;
  width: 100%;
  height: auto;
  padding: 0 2rem;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .container {
    padding: 0 1rem;
    margin: 0 auto;
  }
}

   /* Fix for sticky header mobile menu */
    .bottom_header_sticky {
        z-index: 1000;
    }
    
    .mobile-side-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        z-index: 1100;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }
    
    .mobile-side-menu.active {
        transform: translateX(0);
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1050;
        display: none;
    }
    
    .mobile-menu-overlay.active {
        display: block;
    }
    
    /* Ensure mobile menu content is visible */
    .mobile-menu-content {
        padding: 15px;
    }
    
    .mobile-menu-content .navbar-nav > li > a {
        display: block;
        padding: 10px 10px;
        border-bottom: 1px solid #eee;
    }
    
    /* Make sure ecommerce icons are visible on mobile */
    @media (max-width: 991px) {
        .attr-nav {
            display: flex !important;
            margin-left: auto;
        }
        
        .attr-nav > li {
            margin: 0 8px !important;
        }
    }
.mobile-side-menu .navbar-nav > li > a {
    color: #333 !important; /* Dark text color */
    display: block;
    padding: 12px 15px;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
}

.mobile-side-menu .navbar-nav > li > a:hover {
    background-color: #f8f9fa;
    color: #0077b6 !important;
}

/* Sticky Header Specific Fix */
.bottom_header_sticky .mobile-side-menu .navbar-nav > li > a {
    color: #333 !important; /* Ensure color stays dark in sticky mode */
}

/* Mobile Menu Header */
.mobile-menu-header {
    background: #f8f9fa; /* Light gray background for header */
    border-bottom: 1px solid #ddd;
}

.mobile-menu-header strong {
    color: #333; /* Dark text for menu title */
}

/* Close Button Styling */
.mobile-menu-header .close {
    color: #333 !important; /* Dark color for close button */
    font-size: 24px;
    opacity: 1;
    text-shadow: none;
}

/* Ecommerce Icons Visibility */
.mobile-side-menu .attr-nav {
    display: flex !important;
    flex-direction: column;
    margin-left: 0;
    padding: 15px;
}

.mobile-side-menu .attr-nav > li {
    margin: 5px 0 !important;
}

.mobile-side-menu .attr-nav > li > a {
    color: #333 !important;
    display: flex;
    align-items: center;
}

.mobile-side-menu .attr-nav i {
    margin-right: 10px;
    color: #1ba7b3;
}
.zoomContainer {display:none;}