body{
  font-family: 'Heebo' !important;
}
.product-img {
    border-radius: 10px;
    object-fit: cover;
    height: 100%;
    max-height: 350px;
}

.them-slide{
    position: relative;
}
.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: #4385f5;
}

.btn-heart {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px 16px;
    background: #fff;
}

.btn-heart i {
    color: #a855f7;
}

.thumbnail-container {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.thumbnails-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.3s ease;
    height: fit-content;
}

.thumbnails-viewport {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.carousel-nav {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 30px;
    height: 20px;
    border-radius: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    z-index: 10;
    align-self: center;
    position: absolute;
}
.up{
    top: -10px;
}
.down{
    bottom: 0;
}
.carousel-nav:hover {
    background: rgba(0, 0, 0, 0.9);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* Hide scrollbar */
.thumbnail-container::-webkit-scrollbar {
    display: none;
}

.thumbnail-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}


  .cart-container {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  }

  .cart-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
  }

  .cart-item:last-child {
    border-bottom: none;
  }

  .product-img {
    width: 100px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }

  .qty-btn {
    background-color: #e9ecef;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
  }

  .qty-input {
    width: 40px;
    text-align: center;
    background: transparent;
    border: none;
    font-weight: 600;
  }

  .summary-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
  }

  @media (max-width: 767.98px) {
    /* .cart-item {
      flex-direction: column;
      align-items: start !important;
    } */

    .product-img {
      margin-bottom: 10px;
    }

    .qty-control {
      margin-top: 10px;
    }
  }

  .checkout-btn{
    border:2px solid #4385f5 !important;
    color: #4385f5 !important;
    transition: all ease-in 0.4s !important;
    background-color: white;
  }
  .checkout-btn:hover{
    background-color: #4385f5 !important;
    color: #ffffff !important;
  }
  
  .cart-item img{
    width: 100%;
  }
   @media (max-width: 767px) {
    .cart-item img{
       margin-bottom: 20px;
      }
   }

   .empty-cart-message {
    display: flex;
    justify-content: center;  /* Center horizontally */
    align-items: center;      /* Center vertically */
    height: 200px;            /* Adjust as needed */
    text-align: center;
    font-size: 18px;
    color: #555;
}

/* marketplace */
.marketplace-sec {
    padding: 5% 0;
    background-color: #f8f9fc; 
}
.category-bg{
   padding: 5% 0;
}

.category-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* subtle shadow */
    border: none; /* remove border for cleaner look */
}

.category-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.category-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #e9ecef; /* light border around images */
    background-color: #fff;
}

.category-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.marketplace-sec .row {
    row-gap: 30px;
}
/* featured-sec */
.featured-sec{
  padding-bottom: 5%;
  width: 100%;
 
}
.featured-bg{
   background-color: #f8f9fc !important; 
}
.featured-sec .row{
    row-gap: 16px
} 
.featured-sec .product-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease-in-out;
    text-align: center;
    padding: 15px;
    height: 100%;
}

.featured-sec .product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.featured-sec .product-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.featured-sec .product-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
    display: -webkit-box;        
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2;      
    overflow: hidden;           
    text-overflow: ellipsis; 
}

.featured-sec .product-price {
    font-weight: 700;
    font-size: 18px;
    color: #000;
}

.about-caption .home-title{
    max-width: 635px;
    width: 100% !important;
}



.cart-count{
    top: -9px !important;
    padding: 9px;
    border-radius: 50px;
    display: inline-block;
    line-height: 0.5;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-size: 9px;
    line-height: 3.8px;
}

.cart-btn-log {
    border: 2px solid #4385f5 !important;
    transition: all ease-in 0.6s !important;
    border-radius: 50px !important;
    background: white;
    height: 40px;
    width: 40px;
    padding: 0;
}

.cart-btn-log:hover{
  background-color: #4385f5 !important;
}

.cart-btn-log .fa-shopping-cart {
    color: #4385f5 !important;
    transition: color 0.4s ease-in;
}

.cart-btn-log:hover .fa-shopping-cart {
    color: #fff !important;
}

.cart-btn{
    border:2px solid #4385f5 !important;
    transition: all ease-in 0.6s !important;
    border-radius: 50px !important;
    background: white;
}
.cart-btn:hover {
    background-color: #4385f5 !important;
  }

.cart-btn .fa-shopping-cart {
    color: #4385f5 !important;
    transition: color 0.4s ease-in;
}

.cart-btn:hover .fa-shopping-cart {
    color: #fff !important;
}

/* cheeckout */

.payment-container {
      background: #fff;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }

    .form-control:focus {
      box-shadow: none;
    }

    .secure-text {
      font-size: 0.85rem;
      color: #888;
    }

    .brand-icons img {
      height: 28px;
      margin-right: 10px;
    }

    .nav-pills .nav-link {
      background-color: #f1f3f5;
      color: #333;
      transition: all 0.2s ease;
      font-weight: 500;
      border-radius: 50rem;
    }

    .nav-pills .nav-link.active {
      background-color: #007bff;
      color: #fff;
      box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
    }

    @media (max-width: 767.98px) {
      .payment-container {
        padding: 1rem;
      }

      .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .nav-pills::-webkit-scrollbar {
        display: none;
      }

      .nav-link {
        white-space: nowrap;
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
      }
    }

    .payment-container {
      background: #fff;
      padding: 2rem;
      border-radius: 15px;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
    }

    .form-control:focus {
      box-shadow: none;
    }

    .secure-text {
      font-size: 0.85rem;
      color: #888;
    }

    .brand-icons img {
      height: 28px;
      margin-right: 10px;
    }

    .nav-pills .nav-link {
      background-color: #f1f3f5;
      color: #333;
      transition: all 0.2s ease;
      font-weight: 500;
      border-radius: 50rem;
    }

    .nav-pills .nav-link.active {
      background-color: #0d6efd;
      color: #fff;
      box-shadow: 0 2px 8px rgba(13, 110, 253, 0.2);
    }

    @media (max-width: 767.98px) {
      .payment-container {
        padding: 1rem;
      }

      .nav-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
      }

      .nav-pills::-webkit-scrollbar {
        display: none;
      }

      .nav-link {
        white-space: nowrap;
        padding: 0.5rem 1.2rem;
        font-size: 0.9rem;
      }
    }

.delivery-address h4 {
    font-size: 1.25rem;
}
.address-item{
  border: 1px solid #dee2e6 !important ;
}
.address-item.active{
    border: 2px solid #007bff !important;
    background-color: #f8f9fa !important;
}

.address-content {
    line-height: 1.5;
    font-size: 0.95rem;
}

#addAddressForm .form-control::placeholder {
    color: #888;
    font-style: italic;
}

 .address-error-message {
    color: red;
    font-size: 0.875em;
    margin-top: 4px;
  }

/* place order */

  .order-container {
      background: #fff;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    }

    /* .section-title {
      border-bottom: 2px solid #ffb400;
      padding-bottom: 10px;
      margin-bottom: 25px;
      font-weight: 600;
    } */

    .address-box {
      border: 1px solid #ddd;
      padding: 15px;
      border-radius: 5px;
      margin-bottom: 15px;
      position: relative;
    }
    .address-box .form-check{
      padding-right: 70px;
    }
    .address-actions {
      position: absolute;
      right: 10px;
      top: 10px;
    }

    .btn-place-order {
      border: 2px solid #4385f5;
      color:#4385f5;
      background: #fff;
      font-weight: bold;
    }

    .btn-place-order:hover {
      background-color: #4385f5;
      color: #fff;
    }

    @media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1320px;
    }

    .custom-link {
    color: #4385f5 !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
    }

    .custom-link:hover {
        color: #2c63c7 !important;
    }

    h3.home-title {
    color: #4385f5;
    text-transform: uppercase;
}
}
 .bg-color {
        background-color: #f8f9fc !important;
        padding: 5px;
    }
    
    .featured-sec .product-manage{
      padding-right: 8px;
      padding-left: 8px;
    }

    .filter-space{
      padding-left: 8px;
      padding-right: 8px;
    }

    .filter-btn{
    font-size: 13px;
    height: fit-content;
    }