/* ============================================
   AVTOBAZA - Product Detail Page Styles
   Created: December 8, 2024
   Last Updated: December 8, 2024
   Version: 2.0
   ============================================ */

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. MAIN LAYOUT & STRUCTURE
   2. PRODUCT IMAGE SLIDER
   3. GUARANTEE BADGE & STYLING
   4. PRODUCT OPTIONS (Oil Wrappers)
   5. QUANTITY COUNTER
   6. PRODUCT TABS & NAVIGATION
   7. FEATURES & SPECIFICATIONS
   8. COMPATIBILITY CHARTS
   9. RIGHTSIDE SECTION
   10. BRAND & WISHLIST ICONS
   11. RESPONSIVE - MOBILE STYLES
   ============================================ */

/* ============================================
   1. MAIN LAYOUT & STRUCTURE
   ============================================ */

#ProductDetailPage {
    background: #f7f7f7;
    padding: 30px 0;
    margin-top: 30px;
}

@media (max-width: 768px) {
    #ProductDetailPage {
        padding: 30px 0 0 !important;
    }
}

/* Product Detail Page Header */
#ProductDetailPage .productDetailPage_header_wrapper {
    background-color: #0f0f4c;
    border: 1px solid #000;
    border-radius: 5px;
}

#ProductDetailPage .productDetailPage_header_wrapper .header_wrapper_container {
    width: 97%;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ProductDetailPage .productDetailPage_header_wrapper .header_wrapper_container .header_wrapper_leftside {
    color: #fff;
}

#ProductDetailPage .productDetailPage_header_wrapper .header_wrapper_container .header_wrapper_leftside .avto_name_content {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}

#ProductDetailPage .productDetailPage_header_wrapper .header_wrapper_container .header_wrapper_leftside .avto_detail_name {
    padding-top: 5px;
    font-weight: 700;
    font-size: 18px;
    line-height: 21px;
}

#ProductDetailPage .productDetailPage_header_wrapper .header_wrapper_container .header_wrapper_leftside .avto_detail_name .whitespace {
    font-weight: 400;
}

#ProductDetailPage .productDetailPage_header_wrapper .header_wrapper_container .change-btn {
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 500;
    line-height: 12px;
}

/* Main Row Layout */
#ProductDetailPage .row {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper {
    position: relative;
    display: flex;
    gap: 30px;
}

@media (max-width: 768px) {
    #ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper {
        gap: 0;
        display: flex;
        flex-direction: column-reverse;
    }
}

.product_detail_wrapper {
    width: -webkit-fill-available;
    flex: 1;
}

.detail_top_container {
    padding: 0;
}

/* ============================================
   2. PRODUCT IMAGE SLIDER
   ============================================ */

.slider__wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-width: 360px;
}

@media (max-width: 768px) {
    .slider__wrapper {
        margin-top: 20px;
        max-width: 100%;
    }
}

/* Main Product Slider with Guarantee Support */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider__wrapper #ProductDetailSliderDesktopTwo {
    border: 1px solid #707070;
    border-radius: 5px;
    position: relative;
}

#ProductDetailSliderDesktopTwo {
    width: 100%;
    height: 360px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f8f8;
}

#ProductDetailSliderDesktopTwo .swiper-wrapper {
    align-items: center;
}

#ProductDetailSliderDesktopTwo .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

#ProductDetailSliderDesktopTwo .swiper-slide img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

#ProductDetailSliderDesktopTwo .swiper-slide img:hover {
    transform: scale(1.05);
}

/* Heart Icon on Slider */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider__wrapper #ProductDetailSliderDesktopTwo .heart_icon {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
    cursor: pointer;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider__wrapper #ProductDetailSliderDesktopTwo .heart_icon img {
    width: 20px;
    height: 18px;
}

/* Green Border for Products with Guarantee */
.col-slider_and_detail_wrapper.has-guarantee #ProductDetailSliderDesktopTwo {
    border: 4px solid #28a745 !important;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.15);
}

.col-slider_and_detail_wrapper.has-guarantee #ProductDetailSliderDesktopTwo .swiper-slide img {
    /* Image stays within bordered container */
}

/* Thumbnail Slider */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider__wrapper #ProductDetailSliderDesktop {
    width: 100%;
}

#ProductDetailSliderDesktop {
    height: 100px;
    margin-top: 15px;
    padding: 10px 0;
}

#ProductDetailSliderDesktop .swiper-slide {
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
}

#ProductDetailSliderDesktop .swiper-slide:hover,
#ProductDetailSliderDesktop .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #FFB91D;
}

#ProductDetailSliderDesktop .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    border: 1px solid #000;
}

#ProductDetailSliderDesktop .swiper-slide-thumb-active {
    opacity: 1;
}

/* Mobile Product Slider */
#ProductDetailPage #ProductSliderMobile {
    height: 360px;
    position: relative;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content {
    position: absolute;
    padding: 15px;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content-top,
#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content-top {
    display: flex;
    justify-content: end;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content-bottom {
    position: absolute;
    bottom: 15px;
    width: 100%;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content-bottom .cart-content-bottom-left {
    position: absolute;
    left: 0;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content-bottom .all_images {
    background: #fff;
    padding: 4px 20px;
    border-radius: 6px;
    cursor: pointer;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content-bottom .all_images span {
    color: #000;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content .icon-wrapper {
    border: none;
    padding: 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ProductDetailPage #ProductSliderMobile .swiper-slide .img_wrapper .cart-content .icon-wrapper img {
    width: 25px;
    height: 25px;
}

#ProductDetailPage #ProductSliderMobile .swiper-pagination {
    background: #fff;
    display: inline;
    width: auto;
    padding: 5px;
    border-radius: 6px;
    position: absolute;
    right: 10px;
    bottom: 15px;
    left: auto;
}

#ProductDetailPage #ProductSliderMobile .swiper-pagination span {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

/* ============================================
   3. GUARANTEE BADGE & STYLING
   ============================================ */

/* Guarantee Badge positioned at bottom-left inside slider border */
#ProductDetailSliderDesktopTwo .check_guarantee_detail {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #28a745;
    border: none;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 50;
    font-weight: 700;
    font-size: 11px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

#ProductDetailSliderDesktopTwo .check_guarantee_detail:hover {
    background: #229639;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#ProductDetailSliderDesktopTwo .check_guarantee_detail img {
    width: 14px;
    height: 14px;
    display: inline-block;
    filter: brightness(0) invert(1);
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

#ProductDetailSliderDesktopTwo .check_guarantee_detail .official_guarantee {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

/* ============================================
   4. PRODUCT OPTIONS (Oil Wrappers)
   ============================================ */

/* Product Detail Info Section */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .engine_code_wrapper {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8a8a8a;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .engine_code_wrapper .code {
    margin-left: 1px;
}

@media (max-width: 768px) {
    #ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .engine_code_wrapper .product_code {
        display: none;
    }
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .engine_code_wrapper .engine_block {
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .product_name {
    font-weight: 700;
    font-size: 30px;
    line-height: 40px;
    margin-top: 9px;
}

/* Availability and Installment */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .available_installment_wrapper {
    display: flex;
    gap: 20px;
    margin-top: 9px;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .available_installment_wrapper .btn {
    border-radius: 3px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .available_installment_wrapper .available-btn {
    background-color: #14e79f;
    color: #09704d;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .available_installment_wrapper .installment-btn {
    color: #1965e8;
    background: rgba(32, 134, 236, 0.4);
}

/* Volume/Options Wrapper */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .volume_wrapper {
    margin-top: 13px;
}

.volume_wrapper {
    margin: 20px 0;
}

.volume_wrapper h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .volume_wrapper .oils_wrapper {
    margin-top: 6px;
    display: flex;
    gap: 10px;
}

.oils_wrapper {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .volume_wrapper .oils_wrapper .oil_img_wrapper {
    border: 1px solid #707070;
    border-radius: 5px;
    padding: 5px 10px;
    position: relative;
    cursor: pointer;
}

.oil_img_wrapper {
    cursor: pointer;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.oil_img_wrapper:hover {
    border-color: #FFB91D;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 185, 29, 0.2);
}

.oil_img_wrapper.active {
    border-color: #FFB91D;
    background: rgba(255, 185, 29, 0.05);
}

.oil_img_wrapper .svg-active {
    display: none;
}

.oil_img_wrapper.active .svg-active {
    display: block;
}

.oil_img_wrapper .svg-inactive {
    display: block;
}

.oil_img_wrapper.active .svg-inactive {
    display: none;
}

.oil_img_wrapper .svg-icon {
    width: 32px;
    height: 40px;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .volume_wrapper .oils_wrapper .oil_img_wrapper .volume {
    position: absolute;
    right: 20px;
    top: 25px;
    color: #fff;
    font-size: 9px;
    font-weight: 500;
}

.oil_img_wrapper .volume {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* ============================================
   5. QUANTITY COUNTER
   ============================================ */

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .count_wrapper {
    margin-top: 12px;
}

.count_wrapper {
    margin: 20px 0;
}

.count_wrapper h1 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .count_wrapper .increase_decrease_count_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
}

.increase_decrease_count_wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .count_wrapper .increase_decrease_count_wrapper .increase_and_decrease {
    padding: 0 8px;
    border: 1px solid #707070;
    border-radius: 5px;
    cursor: pointer;
}

.increase_and_decrease {
    width: 40px;
    height: 40px;
    background-color: #f8f8f8;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    transition: all 0.2s ease;
    user-select: none;
}

.increase_and_decrease:hover {
    background-color: #FFB91D;
    color: #fff;
}

.increase_and_decrease:active {
    transform: scale(0.95);
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .count_wrapper .increase_decrease_count_wrapper .number_wrapper {
    font-weight: 400;
    font-size: 17px;
    line-height: 34px;
    padding: 0 8px;
    border: 1px solid #707070;
    border-radius: 5px;
}

.number_wrapper.qty {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    outline: none;
}

/* Price Wrapper */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .price_wrapper {
    margin-top: 8px;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .price_wrapper .price {
    font-size: 15px;
    line-height: 29px;
    font-weight: 500;
    color: #8a8a8a;
    text-decoration: line-through;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .price_wrapper .discount_price {
    display: block;
    font-size: 29px;
    line-height: 29px;
    font-weight: 500;
}

/* Detail Buttons */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .detail_btns {
    display: flex;
    gap: 15px;
    margin-top: 17px;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .detail_btns button {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    border-radius: 5px;
    padding: 10px 0;
    width: 50%;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .detail_btns .add-basket-btn {
    color: #000;
    border: 2px solid rgba(112, 112, 112, 0.2);
    background-color: #ffb91d;
    outline: none;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .detail_btns .buy-now-btn {
    color: #fff;
    border: 2px solid #0f0f4c;
    background-color: #0f0f4c;
    outline: none;
}

/* ============================================
   6. PRODUCT TABS & NAVIGATION
   ============================================ */

#ProductDetailPage .row .detail_page_leftside .product_other_details_section {
    border: 1px solid #c4c4c4;
    margin-top: 35px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    #ProductDetailPage .row .detail_page_leftside .product_other_details_section {
        margin-top: 20px;
        border: 0;
    }
}

.product_other_details_section {
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
}

#ProductDetailPage .row .detail_page_leftside .product_other_details_section .other_detail_lists {
    display: flex;
    gap: 55px;
    padding: 20px 0 20px 30px;
    border-bottom: 1px solid #c4c4c4;
}

@media (max-width: 768px) {
    #ProductDetailPage .row .detail_page_leftside .product_other_details_section .other_detail_lists {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        padding: 10px;
    }
}

.other_detail_lists {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    gap: 55px;
    padding: 10px 0;
    border-bottom: 1px solid #c4c4c4;
}

#ProductDetailPage .row .detail_page_leftside .product_other_details_section .other_detail_lists .other_detail_list_name {
    color: #000;
    font-size: 12px;
    line-height: 26px;
    font-weight: 500;
    cursor: pointer;
}

#ProductDetailPage .row .detail_page_leftside .product_other_details_section .other_detail_lists .other_detail_list_name a {
    color: #000;
}

.other_detail_list_name {
    padding: 12px 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    position: relative;
}

.other_detail_list_name:hover {
    color: #FFB91D;
}

.other_detail_list_name.active {
    border-bottom-color: #FFB91D;
    color: #333;
    font-weight: 600;
}

.tab-content {
    margin-top: 30px;
    display: none;
}

.tab-content.active {
    display: block;
}

#ProductDetailPage .row .detail_page_leftside .product_other_details_section .general_desc_title {
    font-size: 18px;
    line-height: 40px;
    font-weight: 700;
    padding: 20px 50px 20px 30px;
}

.general_desc_title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

#ProductDetailPage .row .detail_page_leftside .product_other_details_section .general_description_wrapper {
    padding: 0 50px 20px 30px;
}

.general_description_wrapper {
    padding: 0;
    line-height: 1.8;
}

#ProductDetailPage .row .detail_page_leftside .product_other_details_section .general_description_wrapper .general_desc {
    font-size: 12px;
    line-height: 26px;
    font-weight: 400;
}

.general_desc p {
    max-width: fit-content;
    margin-bottom: 15px;
    color: #555;
}

#ProductDetailPage .row .detail_page_leftside .product_other_details_section .features_wrapper {
    padding: 20px 50px 20px 30px;
}

/* ============================================
   7. FEATURES & SPECIFICATIONS
   ============================================ */

.features-section {
    width: 85%;
    margin-top: 20px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.2s ease;
}

.feature-item:nth-child(odd) {
    background-color: #f8f8f8;
}

.feature-item:hover {
    background-color: rgba(255, 185, 29, 0.05);
    transform: translateX(4px);
}

.feature-key {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    text-align: left;
}

.feature-value {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    text-align: right;
}

/* ============================================
   8. COMPATIBILITY CHARTS
   ============================================ */

.search_results {
    margin-top: 0 !important;
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart_top {
    padding-right: 30px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    #ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart_top {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart_top .avto_compatibility_chart_name {
    color: #0f0f4c !important;
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart_top .search_wrapper {
    position: relative;
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart_top .search_wrapper-input {
    font-weight: 400;
    font-size: 12px;
    line-height: 12px;
    padding: 8px 40px 8px 15px;
    border: 1px solid #000;
    border-radius: 5px;
    outline: none;
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart_top .search_wrapper-input::placeholder {
    color: rgba(0, 0, 0, 0.2);
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart_top .search_wrapper .icon-wrapper {
    background-color: #0f0f4c;
    border-radius: 5px;
    border: 1px solid #000;
    height: 98%;
    width: 30px;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart_top .search_wrapper .search-icon {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 15px;
    height: 15px;
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart .search_results {
    margin-top: 30px;
}

#ProductDetailPage .row .detail_page_leftside .avto_compatibility_chart .search_results .result_lists .oem_name {
    margin-top: 10px !important;
}

.avto_compatibility_chart {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.avto_compatibility_chart:hover {
    border-color: #FFB91D;
    box-shadow: 0 2px 8px rgba(255, 185, 29, 0.1);
}

.avto_compatibility_chart_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px;
    background-color: #f8f8f8;
    margin-bottom: 0;
    transition: all 0.2s ease;
}

.avto_compatibility_chart_top:hover {
    background-color: rgba(255, 185, 29, 0.1);
}

.avto_compatibility_chart_name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.icon {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    transition: transform 0.3s ease;
}

.avto_compatibility_chart.open .icon {
    transform: rotate(180deg);
}

.collapse {
    display: none;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
}

.collapse.show {
    display: block;
}

.result_lists {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
    background: #fff;
}

.oem_name {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    color: #555;
}

.oem_name:last-child {
    border-bottom: none;
}

/* ============================================
   9. RIGHTSIDE SECTION
   ============================================ */

#ProductDetailPage .row .detail_page_rightside .discounted_registration_wrapper {
    background-color: #0f0f4c;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 992px) {
    #ProductDetailPage .row .detail_page_rightside .discounted_registration_wrapper .img_wrapper {
        width: 150px !important;
    }
}

#ProductDetailPage .row .detail_page_rightside .discounted_registration_wrapper .img_wrapper img {
    width: 100%;
}

#ProductDetailPage .row .detail_page_rightside .socials_wrapper {
    border-top: 1px solid #fff;
}

#ProductDetailPage .row .detail_page_rightside .socials_wrapper p {
    font-weight: 500;
    font-size: 16px;
    line-height: 18px;
}

#ProductDetailPage .row .detail_page_rightside .socials_wrapper ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

@media (max-width: 992px) {
    #ProductDetailPage .row .detail_page_rightside .socials_wrapper ul {
        gap: 12px;
    }
}

#ProductDetailPage .row .detail_page_rightside .socials_wrapper ul li {
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0f0f4c;
    border-radius: 50%;
}

#ProductDetailPage .row .detail_page_rightside .socials_wrapper ul li img {
    width: 16px;
    height: 16px;
}

#ProductDetailPage .row .detail_page_rightside .product_card {
    margin-top: 25px;
}

#ProductDetailPage .row .detail_page_rightside .product_card .main_btn {
    padding-left: 25px;
    padding-right: 25px;
}

@media (max-width: 992px) {
    #ProductDetailPage .row .detail_page_rightside .product_card .main_btn {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

@media (max-width: 768px) {
    #ProductDetailPage .row .detail_page_rightside {
        display: none;
    }
}

@media (max-width: 768px) {
    #ProductDetailPage .Products {
        padding: 20px 0 0;
    }
}

/* ============================================
   10. BRAND & WISHLIST ICONS
   ============================================ */

/* Slider wrapper additional styles from style.css */
#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider_wrapper_top .product_card {
    border: 1px solid #707070;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider_wrapper_top .product_card .img_wrapper {
    width: 330px;
    height: 330px;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider_wrapper_top .product_card .img_wrapper img {
    width: 100%;
    height: 100%;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider_wrapper_bottom {
    margin-top: 20px;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider_wrapper_bottom .related_product {
    display: flex;
    align-items: center;
    gap: 11px;
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider_wrapper_bottom .related_product .image_wrapper {
    border: 1px solid #707070;
    border-radius: 5px;
    height: 76px;
    cursor: pointer;
}

@media (max-width: 768px) {
    #ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider_wrapper_bottom .related_product .image_wrapper {
        width: 40% !important;
        height: 100px !important;
    }
}

#ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .slider_wrapper_bottom .related_product .image_wrapper img {
    width: 100%;
    height: 100%;
}

.bmw_icon {
    width: 65px !important;
    height: 65px !important;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 12;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.bmw_icon:hover {
    opacity: 1;
}

.heart_icon {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 12;
    cursor: pointer;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.heart_icon:hover {
    background: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.heart_icon img {
    width: 20px;
    height: 20px;
}

.addwish.added-to-wishlist img {
    filter: hue-rotate(0deg) saturate(100%) brightness(100%);
}

/* ============================================
   11. RESPONSIVE - MOBILE STYLES
   ============================================ */

@media (max-width: 768px) {
    /* Page Layout */
    #ProductDetailPage {
        padding: 0 !important;
    }

    /* Product Name */
    #ProductDetailPage .row .detail_page_leftside .col-slider_and_detail_wrapper .product_detail_wrapper .product_name {
        font-weight: 700;
        font-size: 22px;
        line-height: 30px;
        margin-top: 2px;
    }

    /* Product Tabs */
    #ProductDetailPage .row .detail_page_leftside .product_other_details_section {
        border: 0;
    }

    #ProductDetailPage .row .detail_page_leftside .product_other_details_section .other_detail_lists {
        display: flex;
        gap: 10px;
        padding: 10px;
        border-bottom: 1px solid #c4c4c4;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #ProductDetailPage .row .detail_page_leftside .product_other_details_section .other_detail_lists .other_detail_list_name {
        color: #000;
        font-size: 15px;
        line-height: 20px;
        font-weight: 500;
        cursor: pointer;
        white-space: nowrap;
        padding: 8px 12px;
    }

    #ProductDetailPage .row .detail_page_leftside .product_other_details_section .general_description_wrapper {
        padding: 0 20px 20px 20px;
    }

    /* Features Section */
    .features-section {
        width: 100%;
        margin-top: 10px;
    }

    .feature-item {
        flex-direction: column;
        gap: 8px;
        padding: 12px 15px;
    }

    .feature-key,
    .feature-value {
        text-align: left;
        font-size: 14px;
    }

    /* Guarantee Badge - Mobile */
    #ProductDetailSliderDesktopTwo .check_guarantee_detail {
        bottom: 10px;
        left: 10px;
        padding: 5px 10px;
        font-size: 10px;
        gap: 5px;
    }

    #ProductDetailSliderDesktopTwo .check_guarantee_detail img {
        width: 12px;
        height: 12px;
    }

    #ProductDetailSliderDesktopTwo .check_guarantee_detail .official_guarantee {
        font-size: 10px;
    }

    /* Green Border - Mobile */
    .col-slider_and_detail_wrapper.has-guarantee #ProductDetailSliderDesktopTwo {
        border-width: 3px;
    }

    /* Brand Icon - Mobile */
    .bmw_icon {
        width: 50px !important;
        height: 50px !important;
        top: 10px;
        left: 10px;
    }

    /* Product Slider - Mobile */
    #ProductDetailSliderDesktopTwo .swiper-slide {
        padding: 10px;
    }

    #ProductDetailSliderDesktopTwo .swiper-slide img {
        max-height: 300px;
    }

    /* Quantity Counter - Mobile */
    .increase_and_decrease {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 18px;
    }

    .number_wrapper.qty {
        width: 50px;
        height: 36px;
        font-size: 14px;
    }

    /* Oil Options - Mobile */
    .oils_wrapper {
        gap: 8px;
    }

    .oil_img_wrapper {
        padding: 10px 16px;
    }
}

/* ============================================
   END OF STYLESHEET
   ============================================ */

