body {
    font-family: 'Amiri', serif;
}

/* Offcanvas Menu Styles */
.offcanvas-end {
    transition: transform 0.5s ease, opacity 0.3s ease;
}

/* Offcanvas Menu Width for Larger Screens */
@media (min-width: 992px) {
    .offcanvas-start {
        width: 350px; /* Adjust this value as needed */
    }
}

/* Offcanvas Menu Width for Smaller Screens */
@media (max-width: 991px) {
    .offcanvas-start {
        width: 300px; /* Adjust this value for smaller screens */
    }
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

/* Navbar Toggler */
.navbar-toggler {
    display: flex;
    align-items: center;
}

/* Navigation Link Styles */
.nav-link {
    position: relative;
    display: inline-block;
    color: #000000;
    text-decoration: none;
    padding-bottom: 5px;
    font-weight: normal; /* Default font weight */
    transition: color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
}

/* Hover Effect for Navigation Links */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #000000; /* Underline color */
    transition: width 0.3s ease-in-out;
}

.nav-link:hover {
    font-weight: bold; /* Bold font on hover */
}

.nav-link:hover::after {
    width: 100%; /* Expand underline on hover */
}

/* Active Link Styles */
.nav-item.active .nav-link {
    color: #000000;
    font-weight: bold;
    border-bottom: none;
}

.nav-item.active .nav-link::after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-caption {
        font-size: 0.9rem;
    }

    .carousel-caption h5 {
        font-size: 1.5rem;
    }
}

/* Utility Classes */

/* Vertical Line */
.vertical-line {
    border-left: 2px solid #000;
    height: auto;
    margin: 0 auto;
}

/* Lead Text */
.lead {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.6;
}

/* Map Styles */
.mapouter {
    position: relative;
    text-align: center;
    border-radius: 35px;
    overflow: hidden;
}

.gmap_canvas {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
}

.social-icons a {
    color: inherit; /* Keeps original color if no hover */
    transition: color 0.3s; /* Smooth transition */
}

.social-icons a.facebook {
    color: #1877f2; /* Facebook Blue */
}

.social-icons a.instagram {
    color: #e4405f; /* Instagram Pink */
}

.social-icons a.twitter {
    color: #1da1f2; /* Twitter Blue */
}

.social-icons a.viber {
    color: #581391; /* viber purple */
}
.social-icons a.whatsapp {
    color: #2fcc1b; /* whatsapp green */
}





/* Custom Icon Colors */
.custom-icon-repair {
    color: #007bff; /* Blue */
}
.custom-icon-accessories {
    color: #28a745; /* Green */
}
.custom-icon-machines {
    color: #dc3545; /* Red */
}
/* Add this CSS to your existing stylesheet */





/* Button hover effect */
.btn {
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05); /* Slightly enlarge the button */
}
/* Ensure the filters section and product cards are mobile-friendly */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* Fix collapsible filter button on small screens */
.collapse.show {
    margin-top: 10px;
}

/* Responsive fixes for small devices */
@media (max-width: 576px) {
    .card-body {
        padding: 10px;
    }

    .btn {
        font-size: 14px;
        padding: 5px 10px;
    }
}
/* Add these styles to your custom CSS file */
.icon-repair {
    color: #FF5733; /* Custom red */
}

.icon-sale {
    color: #28A745; /* Custom green */
}

.icon-support {
    color: #007BFF; /* Custom blue */
}


@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(calc(-150px * 7));
    }
} 

.slider{
    align-items: center;
    justify-content: center;
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: auto;
}
.slider .slide-track{
    animation: scroll 20s linear infinite;
    display: flex;
    width: calc(150px * 14);
}
.slider .slide{
    height: 100px;
    width: 250px;
}


.category-carousel .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* Add space between image and text */
}

.category-carousel .swiper-slide img {
  height: 120px; /* Keep it square */
  object-fit: contain; /* Ensure image covers area without distortion */
  border-radius: 50%; /* Make Public/image circular */
}

.category-carousel .category-title {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}











body {
    --heading-font        : "Inter", sans-serif;
    --bs-link-color: #333;
    --bs-link-hover-color:#333;
  
    --bs-link-color-rgb: 40,40,40;
    --bs-link-hover-color-rgb: 0,0,0;
  
    --bs-light-rgb: 248, 248, 248;
  
    --bs-font-sans-serif: "Inter", sans-serif;
    --bs-body-font-family: var(--bs-font-sans-serif);
    --bs-body-font-size: 1rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 2;
    --bs-body-color: #000000;

  }
  

  h1,h2,h3,h4,h5,h6 {
    font-family: var(--heading-font);
    color: var(--bs-dark);
    font-weight: 700;
  }
  .breadcrumb.text-white {
    --bs-breadcrumb-divider-color: #fff;
    --bs-breadcrumb-item-active-color: var(--bs-primary);
  }

  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 3rem;
  }
  
  @media (min-width: 1400px) {
    .container-lg {
        max-width: 1600px;
    }
  } 
  
  .banner-blocks {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 2rem;
  }
  .block-1 { grid-area: 1 / 1 / 3 / 8; }
  .block-2 { grid-area: 1 / 8 / 2 / 13; }
  .block-3 { grid-area: 2 / 8 / 3 / 13; }
  
  @media screen and (max-width:1140px) {
    .banner-blocks {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, 1fr);
    }
    .block-1 { grid-area: 1 / 1 / 3 / 2; }
    .block-2 { grid-area: 3 / 1 / 4 / 2; }
    .block-3 { grid-area: 4 / 1 / 5 / 2; }
    
  }
  
  /* Swiper carousel */
  .swiper-prev,
  .swiper-next {
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: #F1F1F1;
    color: #222222;
    padding: 0;
    text-align: center;
    border-radius: 10px;
    --bs-btn-border-color: transparent;
    --bs-btn-active-border-color: transparent;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-disabled-color: #ccc;
    --bs-btn-disabled-bg: #eaeaea;
    --bs-btn-disabled-border-color: #eaeaea
  }
  
  /* product tabs */
  .product-tabs .nav-tabs {
    justify-content: flex-end;
    border: none;
    
    --bs-nav-link-hover-color: #111;
    --bs-nav-link-color: #555;
    --bs-nav-tabs-link-border-color: #fff;
    --bs-nav-tabs-link-hover-border-color: transparent;
    --bs-nav-tabs-link-active-border-color: #fff;
  }

  
  /* products-carousel */
  .products-carousel .swiper, .products-carousel .swiper-container {
    overflow: visible;
  }
  
  /* product-grid */
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button {  
     opacity: 1;
  }
  .product-item .button-area .quantity {
    padding: 0.5rem;
  }
  .product-item .button-area {
    display: none;
    position: absolute;
    text-align: center;
    background: #fff;
    width: 100%;
    left: 0;
    bottom: -55px;
    z-index: 1;
    /* transition: box-shadow 0.3s ease-out; */
  }
  .product-item {
    position: relative;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 30px;
    /* transition: box-shadow 0.3s ease-out, margin 0.3s ease-out; */
  }
  .product-item:hover .button-area {
    display: block;
  }
 
  .product-item figure {
    text-align: center;
  }
  .product-item figure img {
    max-height: 210px;
    height: auto;
  }
  .product-item .product-qty {
    width: 85px;
  }
  .product-item .btn-link {
    text-decoration: none;
  }
  .product-item #quantity {
    height: auto;
    width: 28px;
    text-align: center;
    border: none;
    margin: 0;
    padding: 0;
  }
  .product-item .btn-number {
    width: 26px;
    height: 26px;
    line-height: 1;
    text-align: center;
    background: #FFFFFF;
    border: 1px solid #E2E2E2;
    border-radius: 6px;
    color: #222;
    padding: 0;
  }

  
  
 
  
  /* single product */
  /* product-thumbnail-slider */
  .product-thumbnail-slider {
    height: 740px;
  }
  @media screen and (max-width:992px) {
    .product-thumbnail-slider {
      margin-top: 20px;
      height: auto;
    }
  }
  @media screen and (min-width:992px) {
    .product-thumbnail-slider {
      height: 420px;
    }
  }
  @media screen and (min-width:1200px) {
    .product-thumbnail-slider {
      height: 540px;
    }
  }
  @media screen and (min-width:1400px) {
    .product-thumbnail-slider {
      height: 740px;
    }
  }
  
  /* bootstrap extended */
  .border-dashed {
    border-bottom: 1px dashed #d1d1d1;
  }
  .ls-1 {
    letter-spacing: -0.04em;
  }
  .button-area .btn-cart {
    text-wrap: nowrap;
    height: 3.3em;
    line-height: 2em;
    width: 100%;
  }
  .fs-7 {
    font-size: 0.8rem!important;
  }
  
  /* button */
  .btn-link {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: bold;
    font-family: var(--bs-body-font-family);
    letter-spacing: 0.0875rem;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  a.btn-link,
  a.btn-link:after {
    transition: all .5s;
  }
  
  a.btn-link {
    position: relative;
  }
  
  a.btn-link:before,
  a.btn-link:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    background-color: var(--bs-dark);
    height: 2px;
  }
  
  [data-bs-theme=dark] a.btn-link:after {
    background-color: var(--bs-light);
  }
  
  a.btn-link:before {
    background-color: rgba( var(--bs-light-rgb), 0.2 );
    width: 100%;
  }
  
  a.btn-link.is-checked:after,
  a.btn-link:hover:after {
    width: 100%;
  }
  
  a.btn-link.text-white:after {
    background-color: var(--bs-light);
  }
  
  a.btn-link.text-light:after {
    background-color: var(--bs-light);
  }
  

  
  
