.replacement-parts-section {
    padding: 40px 0px 0px;
}

.replacement-parts-section .section_holder {
    width: 100%;
    background: #ffdb19;
    padding: 30px 0px 70px;
}

.replacement-parts-section .content_holder .bold_text {
    font-size: 35px;
    font-weight: 400;
    color: #000;
    text-align: center;
    margin-bottom: 30px;
}

.replacement-parts-section .content_holder .bold_text span {
    font-weight: 700;
}

.replacement-parts-section .content_holder .red_text {
    font-size: 30px;
    font-weight: 700;
    max-width: 1000px;
    color: #e50303;
    text-align: center;
    margin: 50px auto;
}

.replacement-parts-section .section_holder .replacement-parts-title {
    margin: 0;
    text-align: center;
    color: #000;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 400;
}

.replacement-parts-section .section_holder .replacement-parts-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.replacement-parts-section .section_holder .replacement-category {
    display: flex;
    align-items: center;
    gap: 25px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.replacement-parts-section .section_holder .category-separator {
    color: rgba(0, 0, 0, 0.25);
}

/* =========================
   Cards Row
========================= */

.replacement-parts-section .section_holder .replacement-parts-row {
    row-gap: 20px;
}

.replacement-parts-section .section_holder .replacement-parts-row>div {
    padding-left: 9px;
    padding-right: 9px;
}

.replacement-parts-section .section_holder .replacement-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 16px 18px 17px;
    text-align: center;
    overflow: hidden;
    height: 100%;
}

/* =========================
   Product Image
========================= */

.replacement-parts-section .section_holder .replacement-image-wrapper {
    width: 100%;
    height: 287px;
    overflow: hidden;
}

.replacement-parts-section .section_holder .replacement-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* =========================
   Product Content
========================= */

.replacement-parts-section .section_holder .replacement-card-title {
    margin: 18px 0 7px;
    color: #000;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
}

.replacement-parts-section .section_holder .replacement-price {
    margin: 0 0 12px;
    color: #000;
    font-size: 13px;
    line-height: 1.3;
}

/* =========================
   Add To Cart
========================= */

.replacement-parts-section .section_holder .replacement-cart-btn {
    width: 100%;
    height: 44px;
    border: none;
    border-radius: 5px;
    background: #000;
    color: #ffdb19;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.replacement-parts-section .section_holder .replacement-cart-btn:hover {
    background: #222;
    color: #ffdb19;
    transform: translateY(-1px);
}

/* =========================
   Large Tablet
========================= */

@media (max-width: 1199px) {
    .replacement-parts-section .section_holder {
        padding: 30px 25px 8px;
    }

    .replacement-parts-section .section_holder .replacement-parts-title {
        font-size: 42px;
    }

    .replacement-parts-section .section_holder .replacement-image-wrapper {
        height: 260px;
    }

    .replacement-parts-section .section_holder .replacement-card-title {
        font-size: 21px;
    }
}

/* =========================
   Tablet
========================= */

@media (min-width:768px) and (max-width: 991px) {
    .replacement-parts-section .section_holder {
        padding: 30px 20px;
    }

    .replacement-parts-section .section_holder .replacement-parts-title {
        font-size: 38px;
    }

    .replacement-parts-section .section_holder .replacement-parts-categories {
        margin-bottom: 25px;
    }

    .replacement-parts-section .section_holder .replacement-image-wrapper {
        height: 280px;
    }

    .replacement-parts-section .section_holder .replacement-card-title {
        font-size: 21px;
    }

    .replacement-parts-section .content_holder .bold_text {
        font-size: 22px;
    }

    .replacement-parts-section .content_holder .red_text {
        font-size: 18px;
        margin: 30px auto;
    }
}

/* =========================
   Mobile
========================= */

@media (min-width:576px) and (max-width: 767.98px) {
    .replacement-parts-section .section_holder {
        padding: 30px 15px;
    }

    .replacement-parts-section .section_holder .replacement-parts-title {
        font-size: 34px;
    }

    .replacement-parts-section .section_holder .replacement-parts-categories {
        gap: 15px;
        margin-top: 14px;
        margin-bottom: 25px;
    }

    .replacement-parts-section .section_holder .replacement-category {
        gap: 15px;
        font-size: 12px;
    }

    .replacement-parts-section .section_holder .replacement-parts-row {
        row-gap: 20px;
    }

    .replacement-parts-section .section_holder .replacement-card {
        border-radius: 17px;
        padding: 14px 14px 15px;
    }

    .replacement-parts-section .section_holder .replacement-image-wrapper {
        height: auto;
        aspect-ratio: 1.9 / 1;
    }

    .replacement-parts-section .section_holder .replacement-card-title {
        margin-top: 16px;
        font-size: 21px;
    }

    .replacement-parts-section .section_holder .replacement-price {
        font-size: 12px;
    }

    .replacement-parts-section .content_holder .bold_text {
        font-size: 19px;
    }

    .replacement-parts-section .content_holder .red_text {
        font-size: 18px;
        margin: 30px auto;
    }
}

/* =========================
   Small Mobile
========================= */

@media (min-width:0px) and (max-width: 575.98px) {

    .replacement-parts-section .section_holder {
        padding: 25px 0;
    }

    .replacement-parts-section .section_holder .replacement-image-wrapper {
        height: 200px;
    }

    .replacement-parts-section .section_holder .replacement-parts-title {
        font-size: 30px;
    }

    .replacement-parts-section .section_holder .replacement-parts-categories {
        gap: 10px;
    }

    .replacement-parts-section .section_holder .replacement-category {
        gap: 10px;
        font-size: 11px;
    }

    .replacement-parts-section .section_holder .replacement-card-title {
        font-size: 19px;
    }

    .replacement-parts-section .section_holder .replacement-cart-btn {
        height: 42px;
    }

    .replacement-parts-section .content_holder .bold_text {
        font-size: 18px;
    }

    .replacement-parts-section .content_holder .red_text {
        font-size: 15px;
        margin: 30px auto;
    }
}