
  * {
      font-family: 'Lato', sans-serif;
  }

  :root {
  --primary-color: #FEB715;
  --primary-light-color: #FFE8A5;
  --primary-color-dark: #E6A013;
  --secondary-text-color: #7F7F7F;  
  --light-border-color: #E0E2E7;
  --black-text-color: #192126;
  --site-success-color: #5CC09A;
}
.btn.bulk-action {
    font-size: 14px;
    background: white;
    border: 1px solid #E0E2E7;
    color: black;
    display: flex;
    justify-content: space-between  ;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
}
.dropdown-item{
    font-size: 14px;
}
.btn-delete-danger{
    border-radius: 6px;
    border: 1px solid #F16363;
    padding: 14px 26px;
    color: #F16363;
    background-color: white;
}
.ps-0{
    padding-inline-start: 0px !important;
}
.pe-0{
    padding-inline-end: 0px !important;
}
.flex-1{
    flex: 1;
}
.fs-12{
    font-size: 12px !important;
}  
.fs-14{
    font-size: 14px !important;
}  
.fs-16{
    font-size: 16px !important;
}  
.fs-22{
    font-size: 22px;
}  
.filter-white{
    filter: brightness(0) invert(1);
}
.filter-black{
    filter: brightness(0) saturate(100%);

}
.filter-gray {
    filter: invert(66%) sepia(0%) saturate(0%) hue-rotate(158deg) brightness(92%) contrast(88%);
}
.me-2{
    margin-inline-end: .5rem!important
}
.pe-10{
    padding-inline-end:10px ;
}
.ps-10{
    padding-inline-start:10px ;
}
.pe-6{
    padding-inline-end:6px ;
}
.ps-3{
    padding-inline-start:1rem !important;
}
.ps-6{
    padding-inline-start:6px ;
}
.ms-3{
    margin-inline-start: 1rem!important;
}
.text-primary{
    color: var(--primary-color) !important;
}
.border-primary{
    border-color: var(--primary-light-color) !important;
}
.text-primary-dark{
    color: var(--primary-color-dark) !important;
}
.text-secodnary{
  color: #84818A !important;
}
.border-secondary{
    border-color: var(--light-border-color) !important;
}
.bg-primary{
   background-color: var(--primary-color) !important;  
}
.bg-primary-light{
    background-color: var(--primary-light-color) !important;
}
.breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 14px;
}
.breadcrumb-item {
    color: #6c757d;
    text-decoration: none;
}
.form-control:focus{
  box-shadow: none !important;
  background-color: transparent;
  border-color: var(--light-border-color) !important;
}
.rtl .nav-back-btn{
    transform: rotate(180deg);
}
.form-select:focus{
  box-shadow: none !important;
  border-color: var(--light-border-color) !important;
}
select:focus{
    outline: none;
    box-shadow: none !important;
    border-color: var(--light-border-color) !important;
}
.btn:hover{
  /* border-color: #d1d1d147 !important; */
  color: black;
}
.icon-w-22{
    width: 22px;
}
.icon-w-16{
    width: 16px;
}
.dropdown-item.active, .dropdown-item:active{
    background-color: var(--primary-color) !important;
    color: black !important;
}
.dir-ltr{
  direction: ltr;
}

.img-muted{
    opacity: 0.6;
}

.btn-primary{
  background-color: var(--primary-color) !important;
  color: black;
  border: 0px;
}
.btn-success{
  background-color: var(--site-success-color) !important;
  color: rgb(253, 253, 253);
  border: 0px;
}
body {
      background-color: #f8f8f8;
      margin: 0;
      padding: 0;
  }

  /* Prevent background scroll */
  .body-lock-scroll {
    overflow: hidden;
    height: 100vh;
  }

  
  .rtl{
    direction: rtl;
  }

  .ltr{
    direction: ltr;
  }

.rtl-image {
    display: none;
}

.h-100vh {
  height: 100vh;
}
.main-content-area{
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
    height: -webkit-fill-available;
}

.text-start{
  text-align: start !important;
}

.text-end{
  text-align: end !important;
}

.border-btn {
    width: 100%;
    background: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    color: rgb(0, 0, 0);
    border: 1.8px solid;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
    transition: all 0.2s;
}

.overflow-auto.scroll-hide {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE 10+ */
}

.overflow-auto.scroll-hide::-webkit-scrollbar {
  display: none;                /* Chrome, Safari, Edge */
}

a{
  box-shadow: none !important;
}

hr {
    border-top: #00000017 solid;
}

.border-btn-primary {
    display: flex;
    gap:10px;
    align-items: center;
    padding: 12px 20px;
    background: none;
    border: 1.4px solid var(--primary-color);
    border-radius: 6px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}
.width-fit-content{
  width: fit-content !important
}


.border-btn-primary:hover {
    background-color: var(--primary-color);
    color: #000;
}


/* When in RTL direction, show RTL image and hide LTR image */
.rtl .rtl-image {
    display: block;
}

.rtl .ltr-image {
    display: none;
}

/* Mobile Media Query */
@media (max-width: 767px) {
  .main-content-area{
    width: 100%;
  }
  .w-sm-100{
    width: 100%;
  }   
  .best-selling-products-slider .product-card{
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .pss-md-0 {
    padding-inline-start: 0px !important;
  }
}

/* Best Selling Products Slider */
.best-selling-products-slider .products-section {
    padding: 40px 0 0 0;
    background-color: #f8f9fa;
}

.best-selling-products-slider .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;    
}

.best-selling-products-slider .section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.best-selling-products-slider .nav-arrows {
    display: flex;
    gap: 8px;
    direction: ltr;
}

.best-selling-products-slider .nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6b7280;
}

.nav-arrow i{
    font-size: 14px;
    color: #303030
}

.best-selling-products-slider .nav-arrow:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.best-selling-products-slider .nav-arrow.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* .rtl .best-selling-products-slider .nav-arrow.active {
    background: white; 
    border-color: #e5e7eb;
    color: white;
} */

.best-selling-products-slider .products-container {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    box-shadow: none !important;
    border-radius: 0px !important;
}

.best-selling-products-slider .products-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

.best-selling-products-slider .products-scroll::-webkit-scrollbar {
    display: none;
}


.best-selling-products-slider .product-card {
    min-width: 280px;
    width: 280px;
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    position: relative;
    padding: 10px;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.discount-item .price {
  text-decoration: line-through;
  color: var(--secondary-text-color) !important;
  font-size: 14px !important;
}

.discounted-price {
  color: #28a745; /* green */
  font-weight: bold;
  font-size: 18px;
}

.discount-badge {
  background: #ff4d4f;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 4px;
}

.best-selling-products-slider .product-image {
    position: relative;
    height: 200px;
    background: #d1d5db;    
    width: 100% !important;
    border-radius: 0px;
}

.best-selling-products-slider .product-badge {
    position: absolute;
    top: 9px;
    left: -48px;
    background: #5CC09A;
    color: white;
    padding: 8px 60px;
    font-size: 13px;
    transform: rotate(328deg);
    font-weight: 500;
    /* clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%); */
    z-index: 2;
}
.product-image i{
    font-size: 18px;
}
.action-btn i{
    font-size: 14px;
}
.wishlist-btn .fas{
    color: #F16363;
}
.wishlist-btn .far{
    color: #292556;
}

.best-selling-products-slider .wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 33px;
    height: 33px;
    background: #FFFFFF33;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    z-index: 2;
}

.best-selling-products-slider .wishlist-btn:hover {
    background: white;
    transform: scale(1.1);
}

.best-selling-products-slider .wishlist-btn.active {
    color: #ef4444;
}

.best-selling-products-slider .product-actions {
    position: absolute;
    bottom: -14px;
    right: 12px;
    display: flex;    
    gap: 6px;
}

.best-selling-products-slider .product-actions-fast-moving {
    position: absolute;
    width: 90%;
    bottom: -14px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

.best-selling-products-slider .action-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    color: #6b7280;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.best-selling-products-slider .action-btn:hover {
    
    transform: scale(1.1);
}

.best-selling-products-slider .action-btn.cart-btn {
    background: var(--primary-color);
    color: white;
}

.best-selling-products-slider .action-btn.cart-btn:hover {
    background: #f97316;
}

.best-selling-products-slider .product-info {
    padding: 30px 15px 16px 15px;
    display: block !important;
}

.best-selling-products-slider .product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.best-selling-products-slider .price {
    font-size: 18px;
    font-weight: 500;
    color: #10b981;
}

.best-selling-products-slider .vat-text {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 500;
    background: #feb7152e;
    padding: 3px 10px;
    border-radius: 5px;
}

.fast-moving-item-badge{
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
    background: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
}

.fast-moving-item-badge .icon{
    font-size: 12px;
    color: white;
}

.best-selling-products-slider .product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.best-selling-products-slider .stars {
    display: flex;
    gap: 2px;
}

.best-selling-products-slider .star {
    color: #fbbf24;
    font-size: 14px;
}

.best-selling-products-slider .rating-count {
    font-size: 12px;
    color: #9ca3af;
}

.best-selling-products-slider .product-name {
    font-size: 18px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 12px;
    cursor: pointer;
}

.best-selling-products-slider .product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #868480;
}
.product-meta img{
    width: 16px;
}

.best-selling-products-slider .availability {
    display: flex;
    align-items: center;
    gap: 6px;
}

.best-selling-products-slider .delivery {
    display: flex;
    align-items: center;
    gap: 6px;
}
/* Best Selling Products Slider END -------- */
