.space_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount_price {
    font-size: 0.8rem;
}

.category-hover-wrapper {
    position: relative;
    overflow: hidden;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-hover-wrapper:hover .category-overlay {
    opacity: 1;
}

.category-overlay .cat_btn1 {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.category-overlay .cat_btn1:hover {
    background: #fff;
    color: #000;
}


.pt_40 {
    padding-top: 40px;
}

.pb_20 {
    padding-bottom: 20px !important;
}


.font-size {
    font-size: 1rem !important;
    white-space: inherit !important;
}