
/* filter page product css */

.cust_prod_list .right-content ul {
    flex-direction: row !important;
    margin-top: 0;
    gap: 1rem;
    justify-content: end;
}

.cust_prod_list.list_detail {
    gap: 1rem;
}


.cust_prod_list .sizes {
    margin-top: 10px;
}


.cust_prod_list .search_btn {
    height: 30px;
    padding: 8px 13px;
    list-style: 1;
    border-radius: 30px;
}

.list_detail {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 3rem;
    position: relative;
}

.left-content {
    flex: 1;
}

    .left-content strong {
        font-size: 32px;
        color: #c4121a;
        display: block;
        margin-bottom: 12px;
        font-weight: 700;
    }

    .left-content .usage {
        font-size: 22px;
        margin-bottom: 25px;
        color: #222;
    }

        .left-content .usage span {
            font-weight: 500;
        }

.spec-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 2rem;
    margin: 2rem 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
}

    .spec-item .icon {
        width: 40px;
        height: 40px;
        border: 1px solid #e5e5e5;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #c4121a;
        font-size: 18px;
        background: #fff;
    }

.spec-text label {
    display: block;
    font-size: 12px;
    color: #777;
    margin-bottom: 2px;
}

.spec-text span {
    font-size: 14px;
    font-weight: 600;
    color: #222;
}


/*.right-content {
    width: 220px;
}*/

    .right-content ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .right-content li {
        margin-bottom: 15px;
    }

.search_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    border-radius: 40px;
    border: 1px solid #c4121a;
    color: #c4121a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
    background: #fff;
}

    .search_btn:hover {
        background: #c4121a;
        color: #fff;
    }


.sizes {
    margin-top: 30px;
}

.size {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
}

.available-sizes ul {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .available-sizes ul li a {
        padding: 10px 20px;
        background: #e9e9e9;
        border-radius: 30px;
        text-decoration: none;
        color: #444;
        font-size: 18px;
        display: inline-block;
        transition: 0.3s;
    }

        .available-sizes ul li a:hover {
            background: #c4121a;
            color: #fff;
        }


@media(max-width:991px) {

    .list_detail {
        flex-direction: column;
    }

    .right-content {
        width: 100%;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .left-content strong {
        font-size: 26px;
    }

    .left-content .usage {
        font-size: 18px;
    }

    .spec-text span {
        font-size: 16px;
    }

    .size {
        font-size: 20px;
    }
}

@media(max-width:768px) {
    .spec-grid {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-item .icon {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .spec-text span {
        font-size: 12px;
    }
}
