.pdp-body {
    background: var(--bg-gray-50);
}

.vehicle-id {
    padding: 4px 12px;
    background-color: var(--bg-gray-50);
    border-radius: 4px;
    text-transform: uppercase;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-bottom: 24px;
    font-weight: 600;
}

.vehicle-id.mobile {
        display: none;
    }

.pdp-hero {
    background: var(--white);
}

.pdp-hero .pdp-hero-container {
        max-width: 1512px;
        padding: 24px 64px;
        margin: 0 auto;
    }

.pdp-hero .pdp-hero-container .car-preview-container {
            display: flex;
            gap: 24px;
            align-items: center;
            justify-content: space-between;
        }

.pdp-hero .pdp-hero-container .car-details {
            max-width: 472px;
            width: 100%;
            min-width: 0;
            flex-shrink: 1;
        }

.pdp-main {
    padding: 32px 64px;
    max-width: 1512px;
    margin: 0 auto;
}

.pdp-container {
    display: flex;
    gap: 24px;
}

.pdp-container .pdp-container-left,
    .pdp-container .pdp-container-right {
        display: flex;
        flex-direction: column;
    }

.pdp-container .pdp-container-left {
        flex: 1;
        gap: 32px;
    }

.pdp-container .pdp-container-left .report-buttons-container {
            display: none;
        }

.pdp-container .pdp-container-right {
        max-width: 472px;
        width: 100%;
        gap: 16px;
        min-width: 0;
        flex-shrink: 1;
    }

.pdp-container .description {
        padding: 24px 32px;
        border-radius: 16px;
        background-color: var(--white);
    }

.pdp-container .description .description-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
        }

.pdp-container .description .description-text {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: start;
            gap: 16px;
        }

.pdp-container .description .description-text::after {
                content: "";
                position: absolute;
                width: 100%;
                height: 200px;
                background: linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 0) 0%,
                    rgba(255, 255, 255, 1) 100%
                );
                bottom: 0;
                left: 0;
            }

.pdp-container .description .description-text.expanded::after {
                height: 0px;
            }

.pdp-container .description .see-more-description {
            z-index: 10;
            background-color: transparent;
            color: var(--blue-500);
            margin: 0 auto;
        }

.you-may-also-like-container {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

.you-may-also-like-container button {
        padding: 8px 16px;
        border-radius: 8px;
        background: var(--blue-500);
        color: var(--white);
        margin: 0 auto;
    }

.card-scroll-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 16px 0px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.card-scroll-container::-webkit-scrollbar {
        display: none;
    }

.card {
    flex: 0 0 calc((100% - 32px) / 3);
    scroll-snap-align: start;
}

.card .car-card {
        height: 100%;
    }

@media (max-width: 1300px) {
            .pdp-hero .pdp-hero-container .car-details {
                max-width: 420px;
            }
        .pdp-container .pdp-container-right {
            max-width: 420px;
        }
}

@media (max-width: 1200px) {
            .pdp-hero .pdp-hero-container .car-details {
                max-width: 380px;
            }
        .pdp-container .pdp-container-right {
            max-width: 380px;
        }
}

@media (max-width: 1056px) {
        .vehicle-id.desktop {
            display: none;
        }

        .vehicle-id.mobile {
            display: block;
            margin-bottom: 0px;
            margin-top: 16px;
        }

    .pdp-hero {
        background-color: var(--bg-gray-50);
    }

        .pdp-hero .pdp-hero-container {
            padding: 0px 24px;
        }

            .pdp-hero .pdp-hero-container .car-preview-container {
                flex-direction: column;
            }

            .pdp-hero .pdp-hero-container .car-details {
                display: flex;
                align-items: stretch;
                gap: 16px;
                width: 100%;
                max-width: 100%;
            }

    .pdp-main {
        padding: 16px 24px;
    }

    .pdp-container {
        flex-direction: column;
    }

        .pdp-container .pdp-container-left {
            gap: 16px;
        }

            .pdp-container .pdp-container-left .report-buttons-container {
                display: block;
            }

        .pdp-container .pdp-container-right {
            max-width: 100%;
        }

            .pdp-container .pdp-container-right .report-buttons-container {
                display: none;
            }

    .calculator-container {
        display: none;
    }

    .card {
        flex: 0 0 45%;
    }

    .card-scroll-container {
        overflow-x: auto;
        flex-wrap: nowrap;
    }
}

@media (max-width: 768px) {
        .pdp-hero .pdp-hero-container {
            padding: 0px;
        }

            .pdp-hero .pdp-hero-container .car-preview-container {
                gap: 0px;
            }

            .pdp-hero .pdp-hero-container .car-details {
                flex-direction: column;
                gap: 4px;
            }

    .pdp-main {
        padding: 4px 0px;
    }
        .pdp-container .pdp-container-left {
            gap: 4px;
        }

        .pdp-container .description {
            padding: 24px;
            border-radius: 0px;
        }

    .you-may-also-like-container {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .card {
        flex: 0 0 90%;
    }
}
