.ltg-catalog-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 64px;
    align-items: start;
}

.ltg-catalog-item-stack {
    grid-column: 1;
    min-width: 0;
}

.ltg-catalog-item-info,
.ltg-catalog-item-details {
    min-width: 0;
}

.ltg-catalog-item-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 25px;
    border-radius: 100rem;
    background: var(--ltg-color-primary);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
}

.ltg-catalog-item-children {
    margin: 18px 0 0;
    color: #a0a2a8;
    font-size: 14px;
    line-height: 1.4;
}

.ltg-catalog-item-date {
    display: block;
    color: #000;
    font-size: 14px;
    line-height: 1;
    margin-bottom: 13px;
}

.ltg-catalog-item-title {
    color: #000000;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 30px;
}

.ltg-catalog-item-price {
    color: var(--ltg-color-primary);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 80px;
}

.ltg-catalog-item-vat {
    color: var(--ltg-color-primary);
    font-size: 1rem;
    font-weight: 500;
}

.ltg-catalog-item-description {
    color: #000000;
    font-size: 1rem;
    line-height: 1.5;   
    margin-bottom: 40px;
}

.ltg-catalog-item-specs {
    padding: 40px 0;
    border-top: 1px solid #A0A2A8;
    border-bottom: 1px solid #A0A2A8;
    display: flex;  
    flex-direction: column;
    gap: 16px;
}

.ltg-catalog-item-spec {
    width: 100%;
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.ltg-catalog-item-spec-label {
    color: #000000;
    font-weight: 400;
    font-size: 1rem;
}

.ltg-catalog-item-spec-value {
    color: #000000;
    font-weight: 600;
}

.ltg-catalog-item-form {
    margin-top: 40px;
}

.ltg-catalog-item h2.ltg-catalog-item-form-title {
    margin: 0 0 20px;
    color: #000000;
    font-family: "Euclid Circular A", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
    line-height: 23px;
    letter-spacing: 0;
}

.ltg-catalog-item-share {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #A0A2A8;
}

.ltg-catalog-item-share-label {
    color: #000000;
    font-family: "Euclid Circular A", sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
}

.ltg-catalog-item-share-link {
    display: inline-flex;
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
}

.ltg-catalog-item-share-link .ltg-icon {
    display: block;
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 1;
}

.ltg-catalog-item-gallery {
    min-width: 0;
    grid-column: 2;
}

.ltg-catalog-item-stage {
    display: grid;
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 502 / 374;
}

.ltg-catalog-item-gallery img.ltg-catalog-item-photo {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ltg-catalog-item-photo:not(.is-active) {
    visibility: hidden;
}

.ltg-catalog-item-nav {
    display: inline-flex;
    position: absolute;
    z-index: 1;
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #707070;
    box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.12);
    transform: translateY(-50%);
    cursor: pointer;
}

.ltg-catalog-item-nav--prev {
    left: 1rem;
}

.ltg-catalog-item-nav--next {
    right: 1rem;
}

.ltg-catalog-item-nav svg {
    display: block;
}

.ltg-catalog-item-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.ltg-catalog-item-thumb {
    display: block;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 1rem;
    background: #f4f5f8;
    cursor: pointer;
}

img.ltg-catalog-item-thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 165 / 120;
    object-fit: cover;
}

.ltg-catalog-item-thumb[aria-current="true"] {
    box-shadow: inset 0 0 0 2px var(--ltg-color-primary);
}

.ltg-catalog-item-nav:focus-visible,
.ltg-catalog-item-thumb:focus-visible,
.ltg-catalog-item-share-link:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 3px;
}

html.ltg-a11y-contrast-true .ltg-catalog-item-title,
html.ltg-a11y-contrast-true .ltg-catalog-item-description,
html.ltg-a11y-contrast-true .ltg-catalog-item-spec-label,
html.ltg-a11y-contrast-true .ltg-catalog-item-spec-value {
    color: #ffffff;
}

html.ltg-a11y-contrast-true .ltg-catalog-item-children,
html.ltg-a11y-contrast-true .ltg-catalog-item-date,
html.ltg-a11y-contrast-true .ltg-catalog-item-vat {
    color: aqua;
}

html.ltg-a11y-contrast-true .ltg-catalog-item-badge,
html.ltg-a11y-contrast-true .ltg-catalog-item-price {
    color: #000000;
    background: aqua;
}

html.ltg-a11y-contrast-true .ltg-catalog-item-price {
    background: transparent;
    color: aqua;
}

html.ltg-a11y-contrast-true .ltg-catalog-item-stage,
html.ltg-a11y-contrast-true .ltg-catalog-item-thumb {
    background: #272727;
}

html.ltg-a11y-contrast-true .ltg-catalog-item-specs,
html.ltg-a11y-contrast-true .ltg-catalog-item-share {
    border-color: #ffffff;
}

html.ltg-a11y-contrast-true .ltg-catalog-item-share-label {
    color: #ffffff;
}

html.ltg-a11y-contrast-true .ltg-catalog-item-thumb[aria-current="true"] {
    box-shadow: inset 0 0 0 2px aqua;
}

@media screen and (max-width: 1025px) {
    .ltg-catalog-item {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .ltg-catalog-item-stack {
        display: contents;
    }

    .ltg-catalog-item-info {
        order: 1;
    }

    .ltg-catalog-item-gallery {
        order: 2;
        margin-bottom: 40px;
    }

    .ltg-catalog-item-details {
        order: 3;
    }

    .ltg-catalog-item-badge {
        margin-bottom: 15px;
    }

    .ltg-catalog-item-price {
        margin-bottom: 25px;
    }
    .ltg-catalog-item-description {
        margin-bottom: 35px;
    }

    .ltg-catalog-item-thumbs {
        display: none;
    }

    .ltg-catalog-item-specs {
        border-top: none;
        padding-top: 0;
        padding-bottom: 35px;
    }

    .ltg-catalog-item-form {
        margin-top: 35px;
    }

    .ltg-catalog-item-share {
        padding-top: 35px;
        margin-top: 35px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ltg-catalog-item-nav,
    .ltg-catalog-item-thumb {
        transition: none;
    }
}
