.catalog h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 0;
    font-weight: 800;
    color: #1F2937;
    @media screen and (max-width: 1200px) {
        font-size: 36px;
    }
    @media screen and (max-width: 992px) {
        font-size: 28px;
    }
    @media screen and (max-width: 768px) {
        font-size: 24px;
    }
    @media screen and (max-width: 575px) {
        font-size: 20px;
    }
}
#categoryLiveSearch input {
    padding:15px 30px;
    box-shadow:0 0 15px 0 rgba(0, 0, 0, 0.1);
    border:none;
    border-radius:6px;
    color:#4F46E5;
    width:100%;
    margin:30px 0 0 0;
}
.no_result_categorys_grid {
    margin:15px auto 0 auto;
    text-align:center;
    font-weight:500;
    max-width:700px;
    width:100%;
}
.grid_category_boxes {
    display:grid;
    grid-template-columns: repeat(5, 1fr);
    gap:30px;
    margin:40px 0;
    @media screen and (max-width:1430px) {
        grid-template-columns: repeat(4, 1fr);
    }
    @media screen and (max-width:1200px) {
        gap:15px;
    }
    @media screen and (max-width:768px) {
        grid-template-columns: repeat(3, 1fr);
        margin:25px 0;
    }
    @media screen and (max-width:575px) {
        grid-template-columns: repeat(2, 1fr);
        gap:5px;
        margin:15px 0;
    }
}
.grid_category_boxes .grid_category_link {
    padding:15px 30px;
    border-radius:6px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s;
    @media screen and (max-width:1200px) {
        padding:15px;
    }
    @media screen and (max-width:992px) {
        font-size:13px;
        padding:16px 15px;
    }
    @media screen and (max-width:575px) {
        font-size:12px;
        padding:16.4px 5px;
    }
}
.grid_category_boxes .grid_category_link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.no_result_categorys_grid {
    width:100%;
    text-align:center;
    @media screen and (max-width:992px) {
        font-size:14px;
    }
    @media screen and (max-width:575px) {
        font-size:12px;
    }
}
.grid_listing_items {
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:30px;
    @media screen and (max-width:1200px) {
        gap:15px;
    }
    @media screen and (max-width:768px) {
        grid-template-columns: repeat(2, 1fr);
        gap:15px;
    }
    @media screen and (max-width:575px) {
        gap:0 7px;
    }
}
.listing_item_box {
    border-radius:16px;
    box-shadow:0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding:20px;
    @media screen and (max-width:1200px) {
        padding:15px;
    }
    @media screen and (max-width:575px) {
        padding:15px 5px;
    }
}
.listing_item_box_image {
    margin:0 -20px;
    display:block;
    @media screen and (max-width:1200px) {
        margin:0 -15px;
    }
    @media screen and (max-width:575px) {
        margin:0 -5px;
    }
}
.listing_item_box_image img {
    width:100%;
    aspect-ratio: 1 / 1;
    border-top-left-radius:16px;
    border-top-right-radius:16px;
    object-fit:cover;
}
.listing_item_box_title {
    font-size:16px;
    font-weight:600;
    line-height:1.35;
    text-decoration:none;
    display:block;
    margin:15px 0 0 0;
    color:#1F2937;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow:hidden;
    height:48.6px;
    @media screen and (max-width:1200px) {
        font-size:16px;
        height:43.2px;
    }
    @media screen and (max-width:992px) {
        font-size: 14px;
        height: 37.8px;
        margin: 5px 0 0 0;
    }
    @media screen and (max-width:575px) {
        font-size:12px;
        margin:0;
        font-weight:400;
        height:48.6px;
        -webkit-line-clamp: 3;
    }
}
.listing_item_box_price {
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:15px;
    @media screen and (max-width:992px) {
        justify-content:center;
    }
    @media screen and (max-width:575px) {
        margin-bottom:10px;
    }
}
.listing_item_box_price .main_price {
    font-size: 20px;
    font-weight: 800;
    color: #4f46e5;
    @media screen and (max-width:992px) {
        font-size:18px;
    }
    @media screen and (max-width:575px) {
        font-size:14px;
    }
}
.listing_item_box_price .old_price {
    color: #9CA3AF;
    text-decoration: line-through;
    @media screen and (max-width:575px) {
        display:none;
    }
}
.listing_item_box .btn {
    margin: 0 0 0 auto;
    @media screen and (max-width:992px) {
        margin:0 auto;
    }
}
.listing_item_box .btn span {
    @media screen and (max-width:1200px) {
        font-size:13px;
    }
    @media screen and (max-width:992px) {
        font-size:12px;
        display:none;
    }
    @media screen and (max-width:768px) {
        display:inline;
    }
    @media screen and (max-width:575px) {
        display:none;
    }
}
.listing_item_box .btn img {
    width:30px;
    @media screen and (max-width:575px) {
        width:21px;
        height:24px;
    }
}