.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 10px;
  text-align: start !important;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-card img {
  min-height: 250px;
  object-fit: contain;
  padding: 30px;
  background-color: rgba(251, 250, 250, 1);
}

.product-card .card-body {
  text-align: start;
}

.product-card .btn {
  background-color: #e76f51;
  border: none;
  font-weight: 500;
}

.product-card .btn:hover {
  background-color: #cf593d;
}

.tab-button {
  min-width: 150px;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 0;
}

.tab-button.btn-warning {
  background-color: #e76f51;
  color: white;
  border-color: #e76f51;
}

.tab-button.btn-outline-warning {
  color: #e76f51;
  border-color: #e76f51;
}

.tab-button.btn-outline-warning:hover {
  background-color: #e76f51;
  color: white;
}

.filter-btn {
  margin: 4px;
  border-radius: 0px;
  padding: 6px 18px;
  font-weight: 500;
  background-color: white;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: rgba(253, 239, 233, 1) ;
  color:rgba(236, 93, 36, 1) !important;
  border-color: rgba(244, 161, 128, 1);
}
i.fas.fa-times {
    margin-left: 5px;
    background-color: rgba(236, 93, 36, 1) !important;
    color: aliceblue;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
}

    
.search-bar{
    min-width: 450px;
}
@media (max-width: 767px) {
    .search-bar {
        min-width: 100%; /* or min-width: 300px; */
    }
}
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: rgba(91, 31, 22, 1) !important;
  border-bottom: 3px solid #e76f51;
  display: inline-block;
  padding-bottom: 6px;
}
hr.custom-hr {
  all: unset; /* resets all default hr styles */
  display: block;
  height: 3px;
  background-color: rgb(66, 18, 13);
  margin: 10px 0 20px;
  width: 100%;
}
h4{
     color: rgba(91, 31, 22, 1) ;
}
 

    /* Media query for mobile view */
    @media (max-width: 767.98px) {
        .dropdown-menu {
            display: block;
            position: static;
            background: none;
            border: none;
            padding: 0;
        }

        .dropdown-menu.show {
            display: block;
        }

        #filterDropdownMenu {
            display: none;
        }

        #filterDropdownMenu.show {
            display: block;
        }
    }