    .part-grid-container{
        margin-block: 60px 80px;
    }

    .part-heading-container{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-block: 40px;
        gap: 40px;
    }

    .part-heading-container .img-container{
        flex-shrink: 0;
    }

    .part-heading__copy{
        width: min(100%, 500px);

        font-size: 15px;
        line-height: 21px;
    }
    .part-heading__copy a{
        text-decoration: underline;
    }
    .part-heading__copy h1{
        font-family: "Sofia Sans Extra Condensed";
        font-size: 42px;
        line-height: 46px;
        font-weight: 600;
    }

    .part-grid{
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(4, 1fr);
    }

    @media (max-width: 1300px) {
        .part-grid{
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 992px) {
        .part-grid{
            grid-template-columns: repeat(2, 1fr);
        }
        .part-heading-container .img-container{
            display: none;
        }
    }

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


    .part-grid .part-grid__item{
        padding: 30px;
        background-color: #F7F8F7;
        border-radius: 10px;
        transition: all ease-in-out 0.3s;
    }

    .part-grid .part-grid__item:hover{
        background-color: #ECEEEC;
    }

    .part-grid .part-grid__item .title{
        font-family: "Sofia Sans Extra Condensed", Sans-serif;
        font-size: 32px;
        line-height: 1;
        font-weight: 600;
        color: #0D0E0D;
        margin: 22px 0 3px;
    }
    .part-grid .part-grid__item .model-key{
        font-family: "Open Sans", Sans-serif;
        font-size: 13px;
        line-height: 16px;
        font-weight: 400;
        color: #0D0E0D;
    }

    .part-grid-container .pagination{
        display: flex;
        justify-content: center;
        gap: 5px;
        margin-top: 50px;
    }
        /* Flexbox for the overall layout */
    .part-form-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px 40px;
    }

    #assembel-parts{
        display: flex;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
    }

    #assembel-parts .select-wrapper{
        border: 1px solid #D2D6D3;
        border-radius: 3px;
        display: grid;
        grid-template-columns: 32px 1fr;
        align-items: center;
        position: relative;
        background-color: #f2f2f2;
    }

    #assembel-parts .select-wrapper:has(option:nth-child(2)){
        background-color: white;
    }

    #assembel-parts .select-wrapper .select2-container--default.select2-container--disabled .select2-selection--single{
        background-color: transparent;
    }

    #assembel-parts .select-wrapper i{
        position: absolute;
        right: 10px;
        font-size: 22px;
        color: #8A8E8A;
        top: calc(50% - 11px);
        pointer-events: none;
    }

    #assembel-parts .select-wrapper .select-wrapper__counter{
        display: grid;
        place-content: center;
        height: 100%;
        border-right: 1px solid #D2D6D3;

        font-size: 15px;
        font-weight: 700;
    }

    #assembel-parts .select-wrapper .select2-container{
        min-width: 200px;
    }

    #assembel-parts .select-wrapper .select2-container .select2-selection--single{
        height: 48px;
        border: none;
    }

    #assembel-parts .select-wrapper .select2-container .select2-selection--single .select2-selection__rendered{
        padding-block: 10px;
        font-size: 15px;
    }

    #assembel-parts .select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow{
        top: 10px;
        display: none;
    }

    span.select2-container--default .select2-results>.select2-results__options {
        max-height: 400px;
    }


    .bg-grey{
        background-color: #F7F8F7;
        padding-block: 20px;
        position: sticky;
        top: 93px;
        z-index: 20;
    }




    .grid{
        display: grid;
    }
    .form-label{
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 20px;
        line-height: 22px;
        letter-spacing: 0;
        font-family: "Sofia Sans Semi Condensed", Sans-serif;
    }

    #search-box-form{
        border: 1px solid #D2D6D3;
        border-radius: 3px;
        display: flex;
    }
    #search-box-form input[type=text]{
        border: none !important;
        flex-grow: 1;
    }
        /* styles.css */

    .part-detail-container{
        display: grid;
        grid-template-columns: 1fr 580px;
        gap: 40px 60px;

        margin-block: 60px 80px;
    }

    @media (max-width: 1200px) {
        .part-detail-container{
            grid-template-columns: 1fr;
        }
    }

    .part-detail{
        margin-bottom: 40px;
    }

    .part-detail .part-detail__model{
        color: #8A8E8A;
        font-size: 15px;
        line-height: 20px;
    }

    .part-detail .part-detail__title{
        font-family: "Sofia Sans Extra Condensed", Sans-serif;
        font-size: 52px;
        line-height: 50px;
        font-weight: 600;

        margin-block: 18px 22px;
        padding: 0;
    }

    .part-detail .part-detail__description{
        color: #0D0E0D;
        font-size: 15px;
        line-height: 21px;
        margin-bottom: 15px;
    }

    .part-detail__enquiry a i{
        margin-left: 5px;
        position: relative;
        top: 2px;
    }


    .zoom-container {
        position: relative;
    }

    .zoom-container-mobile {
        margin-bottom: 40px;
        display: none;
    }

    .zoom-container #zoom-image{
        width: 100%;
        cursor: pointer;
        border: 1px solid #D2D6D3;
    }

    .zoom-result {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        background-repeat: no-repeat;
        /* background-size: contain;*/
        display: none;
        z-index: 1000;
        cursor: pointer;
        overflow: hidden;
    }

    .close-btn,
    .zoom-btn {
        background-color: rgba(0, 0, 0, 0.6);
        color: #fff;
        border: none;
        padding: 0px;
        cursor: pointer;
        border-radius: 50%;
        font-size: 24px;
        z-index: 1001;
        min-height: 35px;
        min-width: 35px;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .zoom-button-container {
        position: absolute;
        width: 100%;
        top: 80%;
        display: flex;
        justify-content: center;
        gap: 15px;
    }

    .part-table{

    }
    .part-table thead{
        position: sticky;
        top: 0;
        z-index: 9;
    }

    .part-table__row{
        display: grid;
        grid-template-columns: 36px 1fr 90px 80px 70px 60px;
        padding: 8px 15px;
        gap: 5px;
    }

    .part-table__row.part-table__row--out-of-stock{
        grid-template-columns: 36px 1fr 90px;
        background-color: #ECEEEC;
        color: #8E918D;
    }

    .part-table__row.part-table__row--out-of-stock .refnum{
        background-color: #8B8E8A;
    }

    .part-table__heading{
        background-color: #ECEEEC;
        font-family: "Open Sans", Sans-serif;
        font-size: 13px;
        line-height: 16px;
        font-weight: 600;
        color: #5F645F;
    }

    .part-table__body{
        max-height: 500px;
        overflow: auto;
    }

    .part-table__row--item{
        background-color: #F7F8F7;
        transition: all ease-in-out 0.3s;
        font-size: 13px;
        line-height: 18px;
        color: #0D0E0D;
        cursor: pointer;
        align-items: center;
    }
    .part-table__row--item:hover{
        background-color: #ECEEEC;
    }
    .refnum{
        color: white;
        font-size: 12px;
        font-weight: 700;
        line-height: 1;
        display: grid;
        place-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background-color: #D0202B;
    }

    .part-name strong{
        font-size: 15px;
        line-height: 20px;
        font-weight: 600;
    }
    .text-end{
        text-align: end;
    }

    .quantity-box{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
    }
    .quantity-box input{
        width: 40px;
        border: 1px solid #D2D6D3;
        border-radius: 2px;
        text-align: center;
        justify-content: center;
    }

    .add-to-cart-form .text-center .add-to-cart-box{
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 5px;
        color: #D0202B;
        cursor: pointer;
    }
    .add-to-cart-form{
        min-width: 75px;
    }
    .back_order{
        color: #d0202b;
    }
    .add-to-cart-box .add-to-cart{
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    color: #D0202B;
    cursor: pointer;
    background: unset;
    border: unset;
    font-weight: 300;
}
    .add-to-cart-box span{
        font-size: 13px;
        text-transform: initial;
    }
    .add-to-cart-box i{
        font-size: 18px;
    }

    .add-to-favorite-box i{
        font-size: 18px;
    }

    @media (max-width: 1024px) {
        .bg-grey{
            top: 55px;
        }

        .zoom-container{
            display: none;
        }

        .zoom-container-mobile{
            display: block;
        }
    }
    .in-stock{
        color: #5BAB56;
    }
    .low-stock{
        color: #ffa500;
    }

    @media (max-width: 768px) {
        .bg-grey{
            position: relative;
            margin-bottom: 80px;
        }
    }


    .part-hero-container{
        text-align: center;
        min-height: 400px;
        color: white;
        background-size: cover;
        padding: 60px 20px;
        display: grid;
        place-content: center;
    }


    .part-hero-container .part-hero__logo{
        max-width: 365px;
    }

    .part-hero-container .part-hero__title{
        font-family: "Sofia Sans Extra Condensed", Sans-serif;
        font-weight: 700;
        font-size: 52px;
        line-height: 1em;
        margin-block: 35px 15px;
    }

    .part-hero-container .part-hero__description{
        font-family: "Open Sans", Sans-serif;
        max-width: 650px;
        font-weight: 400;
        marin-inline: auto;
        font-size: 18px;
        line-height: 26px;
    }

    .parts-filter{
        margin-top: 50px;
    }

    .parts-filter__title{
        font-family: 'Sofia Sans Semi Condensed', sans-serif;
        font-weight: 700;
        font-size: 20px;
        line-height: 22px;
        letter-spacing: 0.024rem;
    }

    .parts-filter__items{
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 10px;
        max-width: 800px;
    }

    .parts-filter__items a{
        padding: 5px 8px;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-width: 50px;
        transition: all 0.2s ease;
        background-color: transparent;
        border: 1px solid #d0202b;
        color: #d0202b;
    }
    .parts-filter__items a span{
        font-size: 15px;
        position: relative;
        font-family: 'Sofia Sans Semi Condensed', sans-serif;
        line-height: 24px;
        font-weight: 700;
    }

    .parts-filter__items a:hover{
        background-color: #d0202b;
        border-color: #d0202b;
        color: #ffffff;
    }

    .shrink-0{
        flex-shrink: 0;
    }
  .parts-filter__items a.filter-active {
    font-weight: bold;
    background-color: #d0202b;
    border-color: #d0202b;
    color: #ffffff;
}
.information-icon-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.label-content-wrap {
  flex: 0 0 calc(90% - 10px - 15px);
}

.vin-popup-wrapper {
  flex: 0 0 15px;
  position: relative;
  cursor: pointer;
    display: none;
}

#popup-content {
  box-sizing: border-box;
  display: none;
  width: 340px;
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 1;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid #00000030;
  padding: 20px 35px;
  min-height: 350px;
  max-height: 450px;
  overflow-y: scroll;

}
#popup-content ::-webkit-scrollbar {
    width: 4px;
}

#popup-content .vin-popup-content h5 {
  margin: 0;
}
#popup-content .vin-popup-content .popup-text {
  margin-top: 15px;
}

@media (max-width: 1325px) {
  #popup-content {
    right: -120px;
  }
}

@media (max-width: 575px) {
  #popup-content {
    width: calc(100vw - 80px);
  }
}
@media (min-width: 767px){
    .vin-popup-wrapper{
        position: unset;
    }
    #popup-content{
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 900px;
        width: 100%;
        overflow-y: auto;
    }

#popup-content .popup-img-wrp{
    display: flex;
    justify-content: center;
    gap: 20px;
}
#popup-content .popup-text{
    max-width: 400px;
}
.popup-img-wrp div{
    width: 33%;
}

}

@media(max-width:768px){
    #maincontent{
        position: relative;
        z-index: 4;
        overflow-x: visible!important;

    }

    #popup-content{
        max-height: 555px;
    }

    .parts-search-model .part-table td:nth-child(2) {
        background-color: #f7f8f7 !important;
    }
}

.table_responsive{
    overflow: auto;
    max-height: 500px;
    height: auto;
}
.table_responsive tr th , .table_responsive tr td{
    text-wrap: nowrap;
    padding: 11px 3px !important;
    align-content: center;
}
.table_responsive tr td:first-child{
    padding-left: 10px !important;
}
.table_responsive tr td input{
    padding: 0 3px;
    width: auto;
    text-align: center;
}
.table_responsive{
    background: #F7F8F7;
}
.table_responsive table thead{
     background: #ECEEEC;
}
.table_responsive .add-to-cart{
    background: unset;
    border: unset;
    color: #d0202b;
    font-weight: 400;
}
.table_responsive .part-table__row{
    display: table-row;
}
.table_responsive tr td strong, .table_responsive tr td .part_code{
    text-wrap: wrap;
}
.table_responsive .add-to-cart-box{
    justify-content: center !important;
}

.parts-index-index .page-title-wrapper {
    display: none;
}
.parts-search-model .part-table th:nth-child(2),
.parts-search-model .part-table td:nth-child(2) {
    position: sticky;
    left: 0;
}

.parts-search-model .part-table thead th:nth-child(2) {
    z-index: 3;
}
.parts-search-model .part-table th:nth-child(2){
    background-color: #ECEEEC;
 }
