.h-th-pd-section {
    padding: 50px 0;
    background-color: #f8f9fa;
    font-family: 'Roboto', sans-serif;
}

.h-th-pd-breadcumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 30px;
    color: #6c757d;
    flex-wrap: wrap;
}

.h-th-pd-breadcumbs a {
    color: #0088cc;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.h-th-pd-breadcumbs a:hover {
    color: #006699;
    text-decoration: underline;
}

.h-th-pd-breadcumbs span {
    color: #ced4da;
}


.h-th-pd-items-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
}

.h-th-pd-images-wrap {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: sticky;
    top: 20px;
}

.h-th-pd-thumbnail {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.h-th-pd-gallery-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.h-th-pd-gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    background-color: #fff;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.h-th-pd-gallery-item:hover {
    transform: translateY(-2px);
    border-color: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.15);
}

.h-th-pd-gallery-item.is-active {
    border-color: #0088cc;
}


.h-th-pd-content-wrap {
    display: flex;
    flex-direction: column;
}

.h-th-pd-content-wrap h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: inline-flex;
    align-items: center;
}

.h-th-pd-content-wrap h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    color: #1a1a1a;
    margin: 0 0 25px 0;
    letter-spacing: -0.5px;
    border-bottom: 2px solid #eef2f5;
    padding-bottom: 20px;
}

.h-th-vehicle-specs-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.h-th-spec-badge {
    background: #fff;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.h-th-spec-badge i {
    color: #0088cc;
    font-size: 16px;
    margin-bottom: 2px;
}

.h-th-spec-badge span {
    font-size: 11px;
    color: #868e96;
    text-transform: uppercase;
    font-weight: 600;
}

.h-th-spec-badge strong {
    font-size: 13px;
    color: #212529;
    font-weight: 700;
}

.inquiry-form-inner-container {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f5;
    overflow: hidden;
}

.panel-section-title {
    background-color: #f8f9fa;
    padding: 15px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #212529;
    border-bottom: 1px solid #e9ecef;
}



.h-th-pd-specs-sec {
    margin-top: 50px;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid #eef2f5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.h-th-pd-specs-sec h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.h-th-pd-specs-sec h4 i {
    color: #0088cc;
    font-size: 18px;
}

.h-th-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
}

.h-th-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #f1f3f5;
    font-size: 14px;
}

.h-th-specs-grid .h-th-spec-item:nth-last-child(1),
.h-th-specs-grid .h-th-spec-item:nth-last-child(2) {
    border-bottom: none;
}

.spec-label {
    color: #6c757d;
    font-weight: 500;
}

.spec-value {
    color: #212529;
    font-weight: 600;
    text-align: right;
}


.h-th-spec-item.spec-highlight {
    background-color: #fff9db;
    padding: 14px 15px;
    border-radius: 6px;
    border-bottom: none;
    margin-top: 5px;
}

.h-th-spec-item.spec-highlight .spec-label {
    color: #856404;
    font-weight: 700;
}

.h-th-spec-item.spec-highlight .action-text {
    color: #d91e18;
    font-weight: 800;
    letter-spacing: 0.5px;
}


.h-th-rp-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #eef2f5;
}


.h-th-rp-section h4 {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.h-th-f-p-meta-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 7px;
}

.h-th-f-p-price {
    padding-bottom: 5px;
}



.item-grid.item-grid-col-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}


.h-th-rp-product {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.h-th-rp-product a {
    text-decoration: none;
    display: block;
}


.h-th-rp-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 136, 204, 0.2);
}


.h-th-rp-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f8f9fa;
}

.h-th-rp-main-image,
.h-th-rp-hover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.4s ease-in-out;
}

.h-th-rp-main-image {
    opacity: 1;
    z-index: 2;
}

.h-th-rp-hover-image {
    opacity: 0;
    z-index: 1;
    transform: scale(1.05);
}

.h-th-rp-product:hover .h-th-rp-main-image {
    opacity: 0;
}

.h-th-rp-product:hover .h-th-rp-hover-image {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.h-th-f-p-content-wrap {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 135px;
    background: #fff;
}

.h-th-f-p-content-wrap h3 {
    font-size: 13.5px;
    font-weight: 700;
    color: #212529;
    line-height: 1.4;
    margin: 0 0 15px 0;
    display: -webkit-box;
    --webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 56px;
    transition: color 0.2s ease;
}

.h-th-rp-product:hover .h-th-f-p-content-wrap h3 {
    color: #0088cc;
}

.h-th-rp-quote-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #eef2f5;
    color: #495057;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 10px 0;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.h-th-rp-product:hover .h-th-rp-quote-btn {
    background-color: #0088cc;
    color: #ffffff;
}


@media screen and (max-width: 1150px) {
    .h-th-pd-items-wrap {
        gap: 25px;
    }

    .h-th-pd-content-wrap h2 {
        font-size: 26px;
    }

}

@media screen and (max-width: 991px) {
    .h-th-pd-items-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .h-th-pd-images-wrap {
        position: relative;
        top: 0;
    }

    .h-th-pd-content-wrap h2 {
        font-size: 28px;
    }

    .h-th-pd-specs-sec {
        margin-top: 40px;
        padding: 20px;
    }

    .h-th-specs-grid {
        column-gap: 30px;
    }


    .h-th-rp-section h4 {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .h-th-f-p-content-wrap {
        padding: 12px;
        min-height: auto;
    }

    .h-th-f-p-content-wrap h3 {
        font-size: 12.5px;
        height: 52px;
    }

}

@media screen and (max-width: 576px) {
    .h-th-pd-section {
        padding: 25px 0;
    }

    .h-th-pd-breadcumbs {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .h-th-pd-content-wrap h2 {
        font-size: 22px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }

    .h-th-pd-gallery-wrap {
        gap: 8px;
    }

    .h-th-vehicle-specs-matrix {
        grid-template-columns: repeat(2, 1fr);
    }

    .h-th-specs-grid {
        grid-template-columns: 1fr;
    }

    .h-th-specs-grid .h-th-spec-item:nth-last-child(2) {
        border-bottom: 1px solid #f1f3f5;
    }

    .h-th-specs-grid .h-th-spec-item:last-child {
        border-bottom: none;
    }

    .h-th-spec-item {
        padding: 12px 0;
        font-size: 13.5px;
    }

    .item-grid.item-grid-col-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .h-th-rp-product {
        max-width: 340px;
        margin: 0 auto;
        width: 100%;
    }
}