.lpc-offers,
.lpc-offer-single,
.lpc-offer-card {
    box-sizing: border-box;
    overflow-wrap: anywhere;
}
.lpc-offers *,
.lpc-offer-single *,
.lpc-offer-card * {
    box-sizing: border-box;
}
.lpc-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}
.lpc-offer-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dfe2e0;
    border-radius: 7px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.lpc-offer-card:hover {
    box-shadow: 0 12px 30px #18232912;
}
.lpc-offer-photo {
    display: block;
    aspect-ratio: 1.6;
    overflow: hidden;
    position: relative;
    background: #ecefed;
    text-decoration: none;
}
.lpc-offer-photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s;
}
.lpc-offer-card:hover .lpc-offer-photo > img {
    transform: scale(1.035);
}
.lpc-offer-kind {
    position: absolute;
    left: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 6px 11px;
    border-radius: 3px;
    background: #101516;
    color: #fff;
    font-size: 10px;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-left: 3px solid var(--accent, #c9232b);
}
.lpc-offer-placeholder {
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: linear-gradient(140deg, #eef0ee, #dce1de);
    color: #626e68;
    padding: 25px 25px 65px;
}
.lpc-offer-placeholder span {
    font-size: 11px;
}
.lpc-offer-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.lpc-offer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    font-size: 11px;
    color: #69716e;
    margin-bottom: 14px;
}
.lpc-offer-reserved {
    padding: 2px 8px;
    border: 1px solid #d9dfdc;
    border-radius: 3px;
    color: #323b36;
    font-weight: 700;
}
.lpc-offer-card h2,
.lpc-offer-card h3 {
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: -0.035em;
    margin: 0 0 14px;
}
.lpc-offer-card h2 a,
.lpc-offer-card h3 a {
    color: #101516;
    text-decoration: none;
}
.lpc-offer-excerpt {
    font-size: 14px;
    line-height: 1.7;
    color: #62696b;
    margin: 0 0 25px;
}
.lpc-offer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    padding-top: 19px;
    border-top: 1px solid #e2e6e3;
    margin-top: auto;
}
.lpc-offer-price {
    display: block;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.035em;
    color: #101516;
}
.lpc-offer-bottom small {
    display: block;
    font-size: 11px;
    line-height: 1.5;
    color: #62696b;
    max-width: 220px;
    margin-top: 6px;
}
.lpc-offer-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}
.lpc-offer-filters a {
    padding: 11px 17px;
    border: 1px solid #dfe2e0;
    border-radius: 4px;
    background: #fff;
    color: #303a35;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}
.lpc-offer-filters a:hover {
    border-color: var(--accent, #c9232b);
}
.lpc-offer-filters a.is-active {
    background: var(--accent, #c9232b);
    border-color: var(--accent, #c9232b);
    color: white;
}
.lpc-offer-count {
    font-size: 13px;
    color: #62696b;
    margin: 0 0 25px;
}
.lpc-offer-single {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 55px;
    align-items: start;
}
.lpc-offer-main-photo {
    aspect-ratio: 1.4;
    background: #edf0ed;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lpc-offer-main-photo > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lpc-offer-main-photo .lpc-offer-placeholder {
    width: 100%;
    padding: 30px;
}
.lpc-offer-summary h1 {
    font-size: clamp(32px, 4vw, 51px);
    line-height: 1.08;
    letter-spacing: -0.04em;
    margin: 12px 0 20px;
}
.lpc-offer-availability {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 11px;
    border: 1px solid #d6ddd9;
    border-radius: 3px;
    color: #35423a;
    margin: 0;
}
.lpc-offer-validity {
    font-size: 13px;
    color: #62696b;
    margin: 20px 0;
}
.lpc-offer-summary .lpc-button {
    margin-top: 15px;
}
.lpc-offer-description {
    grid-column: 1/-1;
    width: 100%;
    max-width: 1000px;
}
.lpc-offer-description:empty {
    display: none;
}
.lpc-offer-description figure {
    max-width: 100%;
}
.lpc-offer-description img {
    max-width: 100%;
    height: auto;
}
.lpc-offer-filters a:focus-visible,
.lpc-offer-card a:focus-visible {
    outline: 3px solid #2867d3;
    outline-offset: 3px;
}
@media (max-width: 1050px) {
    .lpc-offers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }
    .lpc-offer-single {
        gap: 32px;
    }
    .lpc-offer-body {
        padding: 22px;
    }
}
@media (max-width: 650px) {
    .lpc-offers-grid {
        grid-template-columns: 1fr;
        gap: 23px;
    }
    .lpc-offer-single {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .lpc-offer-filters {
        gap: 8px;
    }
    .lpc-offer-filters a {
        font-size: 12px;
        padding: 9px 12px;
    }
    .lpc-offer-summary h1 {
        font-size: 35px;
    }
    .lpc-offer-card h2,
    .lpc-offer-card h3 {
        font-size: 24px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .lpc-offer-card,
    .lpc-offer-photo > img {
        transition: none;
    }
}

.lpc-vehicle-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    font-size: 12px;
    color: #37443c;
}
.lpc-vehicle-summary li {
    background: #f0f3f1;
    border-radius: 3px;
    padding: 5px 8px;
}
.lpc-vehicle-details {
    grid-column: 1/-1;
    padding: 30px;
    border: 1px solid #dfe2e0;
    background: #f7f8f7;
    border-radius: 6px;
}
.lpc-vehicle-details h2 {
    margin: 0 0 24px;
    font-size: 27px;
    letter-spacing: -0.03em;
}
.lpc-vehicle-specs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0 28px;
    margin: 0;
}
.lpc-vehicle-specs > div {
    padding: 16px 0;
    border-top: 1px solid #dfe2e0;
    min-width: 0;
}
.lpc-vehicle-specs dt {
    font-size: 12px;
    color: #62696b;
    margin-bottom: 5px;
}
.lpc-vehicle-specs dd {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #17221b;
}
.lpc-carpass {
    margin-top: 15px;
}
@media (max-width: 900px) {
    .lpc-vehicle-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 480px) {
    .lpc-vehicle-details {
        padding: 20px;
    }
    .lpc-vehicle-specs {
        grid-template-columns: 1fr;
    }
    .lpc-vehicle-details h2 {
        font-size: 24px;
    }
}

.lpc-gallery {
    min-width: 0;
}
.lpc-gallery [hidden] {
    display: none !important;
}
.lpc-gallery-viewport {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border-radius: 6px;
    background: #edf0ed;
}
.lpc-gallery-slide {
    flex: 0 0 100%;
    min-width: 0;
    margin: 0;
    aspect-ratio: 1.4;
    scroll-snap-align: start;
}
.lpc-gallery-slide > a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.lpc-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lpc-gallery.is-ready .lpc-gallery-viewport {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}
.lpc-gallery-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0;
    font-size: 13px;
}
.lpc-gallery-controls button {
    width: 44px;
    height: 44px;
    background: #fff;
    color: #17221b;
    border: 1px solid #c7cec9;
    border-radius: 5px;
    cursor: pointer;
    font-size: 22px;
}
.lpc-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px;
}
.lpc-gallery-thumbs button {
    flex: 0 0 76px;
    height: 62px;
    padding: 3px;
    background: #fff;
    border: 2px solid #d6ddd9;
    border-radius: 5px;
    cursor: pointer;
}
.lpc-gallery-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.lpc-gallery-thumbs button[aria-current='true'] {
    border-color: var(--accent, #c9232b);
    box-shadow: 0 0 0 1px var(--accent, #c9232b);
}
.lpc-gallery button:hover {
    border-color: var(--accent, #c9232b);
}
.lpc-gallery:focus-visible,
.lpc-gallery button:focus-visible,
.lpc-gallery a:focus-visible {
    outline: 3px solid #2867d3;
    outline-offset: 3px;
}
