*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    color: #000000;
    font-family: "Arial", Sans-serif;
}
a{
    text-decoration: none;
}
.wrapper{

    max-width: 1370px;
    margin-left: auto;
    margin-right: auto;
}
.primary-color{
    color: #00796b;
}
.generic-heading-btn {
    display: flex;
    gap: 15px;
    color: #000000;
    align-items: center;
    justify-content: space-between;
}
.generic-heading-btn h3{
    display: flex;
    gap: 4px;
    font-size: 22px;
    line-height: 22px;
    align-items: center;
    white-space: nowrap;
    text-transform: capitalize;
}
.generic-heading-btn h3 span{
    color: #1BAB6F;
    font-size: 13px;
    line-height: 13px;
    display: inline-block;
    white-space: break-spaces;
}
.generic-heading-btn a{
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
}
.see-all-btn a{
    display: flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 18px;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    transition: all .3s ease-in-out;
}
.see-all-btn a i {
  transition: transform 0.3s ease-in-out;
}
.see-all-btn a:hover{
    color: #00796B;
}
.see-all-btn a:hover i{
    transform: rotate(-35deg);
}
.recent-product-con{
    width: 100%;
    float: left;
    padding-top: 24px;
    padding-bottom: 24px;
}
.price-filter-btns {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    overflow-scrolling: touch; /* for smooth scrolling on mobile */
    gap: 15px;
    padding-top: 24px;
    scrollbar-width: none;
}

.price-filter-btns::-webkit-scrollbar {
    height: 6px;
}

.price-filter-btns::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.filter-btn {
    flex: 0 0 auto; /* Prevent items from shrinking */
}

.filter-btn a {
    padding: 12px 16px;
    font-size: 13px;
    color: #000000;
    line-height: 13px;
    border-radius: 8px;
    background: rgb(211 249 233/var(--tw-bg-opacity,1));
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
}

.filter-btn a:hover {
    color: white;
    background: #00796b;
}
.d-none{
    display: none;
}