.tailorSection {
    /* max-width: 650px; */
    /* margin: 0px auto; */
    background: #fff;
    border-radius: 0px;
    padding: 20px 12px;
    border: 1px solid #ececec;
    /* font-family: Arial, sans-serif; */
}

.tailorSection h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
}

.tailorSection .subTitle {
    margin-top: 5px;
    color: #777;
    font-size: 12px;
}

.tailorSection .tailorList {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: 600px;
    overflow: auto;
    scrollbar-width: thin;
}

.tailorSection .tailorCard {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 15px;
    border: 1px solid #dddddd;
    border-radius: 12px;
    transition: 0.25s;
    position: relative;
    flex-wrap: wrap;
}

.tailorSection .tailorCard:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.tailorSection .tailorImage {
    width: 95px;
    height: 100px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.tailorSection .tailorImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.tailorSection .tailorContent {
    flex: 1;
}

.tailorSection .tailorContent h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.tailorSection .location {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 12px;
}

.tailorSection .ratingRow {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    font-weight: 600;
}

.tailorSection .express {
    background: #2f9143;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 13px;
}

.tailorSection .newShop {
    background: #ececec;
    color: #666;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.tailorSection .bottomRow {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tailorSection .price {
    color: #fb0000;
    font-size: 20px;
    font-weight: bold;
}

.tailorSection .bottomRow .Common_Red_btn .Red_btn {
    font-size: 12px;
}

.tailorSection .checkboxArea {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
}

.tailorSection .checkboxArea input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #fb0000;
}




@media (min-width:0px) and (max-width: 575px) {
    .tailorSection .tailorImage {
        margin: 0 auto;
    }

    .tailorSection .tailorContent h4 {
        text-align: center;
        font-size: 14px;
    }

    .tailorSection .ratingRow {
        font-size: 12px;
    }

    .tailorSection .express {
        font-size: 11px;
        padding: 4px 4px;
    }

    .tailorSection .location {
        text-align: center;
    }

    .tailorSection .price {
        font-size: 16px;
    }
}

@media (min-width:440px) and (max-width: 575px) {


    .tailorSection .tailorContent h4 {
        text-align: left;
    }

    .tailorSection .location {
        text-align: left;
    }

}

@media (min-width:576px) and (max-width: 767.98px) {

    .tailorSection .price {
        font-size: 16px;
    }
}


@media (min-width:992px) and (max-width: 1199px) {
    .tailorSection .tailorImage {
        margin: 0 auto;
    }

    .tailorSection .tailorContent h4 {
        text-align: center;
    }

    .tailorSection .ratingRow {
        font-size: 12px;
    }

    .tailorSection .express {
        font-size: 11px;
        padding: 4px 6px;
    }

    .tailorSection .location {
        text-align: center;
    }

    .tailorSection .price {
        font-size: 16px;
    }
}


@media (min-width:1200px) and (max-width: 1399px) {
    .tailorSection .tailorImage {
        margin: 0 auto;
    }

    .tailorSection .tailorContent h4 {
        text-align: center;
    }

    .tailorSection .location {
        text-align: center;
    }

    .tailorSection .price {
        font-size: 16px;
    }
}

@media (min-width:1400px) and (max-width: 1599px) {
    .tailorSection .price {
        font-size: 16px;
    }

    .tailorSection .bottomRow .Common_Red_btn .Red_btn {
        font-size: 12px;
        padding: 7px 7px;
    }
}