.title_page_push_list{
    grid-area: 1/1/1/5;
}

.row_display_list{
    width: 60%;
    margin: 0px 20% 10% 20%;
}

.push_grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3.5vh;
    margin-bottom: 10.5rem;
}

.container{
    padding: 0px!important;
}

/* Header banner */
.header_banner_repair {
    height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../../img/pushlist/push_list_banner.webp);
}

.carousel-inner {
    margin: -31px 0 14px;
}

#dynamicSearchOutput {
    padding: 0 2rem;
}

/* Card */
.push_card{
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    user-select: none;
    padding: 10px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.push_card,
.push_card *{
    box-sizing: border-box;
}

.push_card:hover{
    transform: translateY(-4px);
    border-color: #d8e4f2;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.push_card_link:hover .push_card_media{
    box-shadow: 0px 0px 6px -2px #3D3D3D;
}

.push_card_media{
    height: clamp(12rem, 18vw, 17rem);
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0px 0px 3px -2px #3D3D3D;
    transition: box-shadow .5s ease-out;
}

.push_card_media img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.push_card_body{
    min-height: 0;
    overflow: hidden;
}

/* Body */
.push_card_body{
    padding: 1rem 1rem 1.1rem 1rem;
    display: grid;
    gap: 0.55rem;
}

/* Title row */
.push_card_title{
    display: block;
}

.push_badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.16);
    font-weight: 700;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    line-height: 1.2;
}

.push_name{
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.25;
    color: #0f172a;
    display: block;
    min-height: 2.5em;
}

/* Description */
.push_desc{
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.push_desc{
    font-size: clamp(0.84rem, 1.2vw, 0.93rem);
    line-height: 1.4;
    color: #64748b;
    min-height: 2.8em;
}

.push_card_link{
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.push_discount_badge{
    position: absolute;
    top: 5px;
    right: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 41px;
    padding: 1.7rem 1.7rem;
    border-radius: 21px;
    background: linear-gradient(135deg, #f185aa 0%, #f1a0bc 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 10px 18px rgb(241 137 172 / 38%);
    height: 23px;
    border: 2px solid #f26192;
}

.push_price_block{
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.1rem;
}

.push_old_price{
    font-size: 0.92rem;
    line-height: 1.2;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
    min-height: 1.1rem;
}

.push_price{
    font-size: 1.55rem;
    line-height: 1.1;
    color: #65cc99;
    font-weight: 800;
}

.push_footer_row{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 0.35rem;
}

.push_condition {
    color: #FFF;
    padding: 5px;
    border-radius: 7px;
    z-index: 1;
    margin-top: 2px;
    margin-left: 2px;
    cursor: pointer;
    position: absolute;
    right: 12px;
}

.NE{
    background: #ffb26b;
    border: 2px solid #ee9543;
}

.FN{
    background: #ba69c7;
    border: 2px solid #b149c2;
}

.NS{
    background: #93d2f5 !important;
    border: 2px solid #5ec2fa
}

.OH{
    background: #5565dd;
    border: 2px solid #152cdf;
}

.SV{
    background: #66cc99;
    border: 2px solid #00c060;
}

.AR{
    background: #f06191;
    border: 2px solid #ed2266;
}


/* Actions */
.push_actions{
    margin-top: 0;
}



@media (max-width: 1400px){
    .push_grid{
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1100px){
    #dynamicSearchOutput{
        padding: 0 1rem;
    }

    .push_grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 767px){
    .push_grid{
        grid-template-columns: 1fr;
    }

    #dynamicSearchOutput{
        padding: 0 0.5rem;
    }
}

@media (max-width: 420px){
    .push_grid{
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    #dynamicSearchOutput{
        padding: 0 0.25rem;
    }

    .push_card_body{
        padding: 0.85rem;
    }

    .push_price{
        font-size: 1.35rem;
    }

    .push_discount_badge{
        top: 10px;
        right: 10px;
        min-width: 58px;
        padding: 0.4rem 0.6rem;
        font-size: 0.85rem;
    }
}