.product-shingle-page .shingle-models {
    padding: 88px 0;
    background: #f7f9fc;
}

.product-shingle-page .shingle-models__list {
    display: grid;
    gap: 56px;
}

.product-shingle-page .shingle-model {
    padding-top: 56px;
    border-top: 1px solid #dbe2eb;
}

.product-shingle-page .shingle-model:first-child {
    padding-top: 0;
    border-top: 0;
}

.product-shingle-page .shingle-model__card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dce4ee;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(23, 34, 52, 0.08);
}

.product-shingle-page .shingle-model__media {
    min-height: 380px;
    background: #e9edf2;
}

.product-shingle-page .shingle-model__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    transition: opacity 180ms ease;
}

.product-shingle-page .shingle-model__media img.is-changing {
    opacity: 0.45;
}

.product-shingle-page .shingle-model__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px;
}

.product-shingle-page .shingle-model__eyebrow {
    margin: 0 0 10px;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.product-shingle-page .shingle-model__title {
    margin: 0;
    color: var(--color-dark);
    font-size: clamp(1.65rem, 3vw, 2.2rem);
    line-height: 1.18;
}

.product-shingle-page .shingle-model__desc {
    margin: 16px 0 24px;
    color: var(--color-gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

.product-shingle-page .shingle-model__palette-label {
    margin: 0 0 12px;
    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 700;
}

.product-shingle-page .shingle-model__palette {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-shingle-page .shingle-model__swatch {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    overflow: hidden;
    cursor: pointer;
    background: var(--shingle-swatch);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #bec8d5;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-shingle-page .shingle-model__swatch:hover {
    transform: translateY(-2px);
}

.product-shingle-page .shingle-model__swatch:focus-visible {
    outline: 3px solid rgba(232, 97, 26, 0.45);
    outline-offset: 3px;
}

.product-shingle-page .shingle-model__swatch[aria-pressed="true"] {
    box-shadow: 0 0 0 3px var(--color-primary), 0 0 0 5px #ffffff;
}

.product-shingle-page .shingle-model__swatch[aria-pressed="true"]::after {
    color: #ffffff;
    content: "✓";
    font-size: 1rem;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.product-shingle-page .shingle-model__selected {
    min-height: 1.4em;
    margin: 16px 0 0;
    color: var(--color-gray-600);
    font-size: 0.88rem;
}

.product-shingle-page .shingle-model__selected strong {
    color: var(--color-dark);
}

.product-shingle-page .shingle-model__visualizer {
    display: inline-flex;
    width: fit-content;
    min-height: 44px;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    padding: 10px 16px;
    border: 1px solid rgba(232, 97, 26, 0.22);
    border-radius: 999px;
    color: var(--color-dark);
    background: rgba(232, 97, 26, 0.07);
    font-size: 0.86rem;
    font-weight: 750;
    line-height: 1.2;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.product-shingle-page .shingle-model__visualizer i:first-child {
    color: var(--color-orange);
}

.product-shingle-page .shingle-model__visualizer i:last-child {
    font-size: 0.72rem;
    transition: transform 180ms ease;
}

.product-shingle-page .shingle-model__visualizer:hover {
    border-color: var(--color-orange);
    color: #fff;
    background: var(--color-orange);
    transform: translateY(-1px);
}

.product-shingle-page .shingle-model__visualizer:hover i:first-child {
    color: #fff;
}

.product-shingle-page .shingle-model__visualizer:hover i:last-child {
    transform: translateX(3px);
}

.product-shingle-page .shingle-model__specs {
    margin-top: 24px;
}

.product-shingle-page .shingle-model__specs-title {
    margin: 0 0 16px;
    color: var(--color-dark);
    font-size: 1.05rem;
}

.product-shingle-page .shingle-model__specs-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    border-top: 1px solid #dbe2eb;
    border-left: 1px solid #dbe2eb;
}

.product-shingle-page .shingle-model__specs-list > div {
    min-height: 96px;
    padding: 16px 18px;
    background: #ffffff;
    border-right: 1px solid #dbe2eb;
    border-bottom: 1px solid #dbe2eb;
}

.product-shingle-page .shingle-model__specs-list dt {
    margin: 0 0 7px;
    color: var(--color-gray-600);
    font-size: 0.78rem;
    font-weight: 700;
}

.product-shingle-page .shingle-model__specs-list dd {
    margin: 0;
    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

@media (min-width: 821px) {
    .product-shingle-page .shingle-model__card {
        height: 510px;
    }

    .product-shingle-page .shingle-model__media {
        height: 510px;
        min-height: 0;
    }

    .product-shingle-page .shingle-model__content {
        min-height: 0;
    }
}

@media (max-width: 820px) {
    .product-shingle-page .shingle-models {
        padding: 64px 0;
    }

    .product-shingle-page .shingle-models__list {
        gap: 40px;
    }

    .product-shingle-page .shingle-model {
        padding-top: 40px;
    }

    .product-shingle-page .shingle-model__card {
        grid-template-columns: 1fr;
    }

    .product-shingle-page .shingle-model__media {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .product-shingle-page .shingle-model__content {
        min-height: 470px;
        padding: 30px;
    }

    .product-shingle-page .shingle-model__specs-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .product-shingle-page .shingle-model__content {
        padding: 24px 20px;
    }

    .product-shingle-page .shingle-model__media {
        aspect-ratio: 1 / 0.8;
    }

    .product-shingle-page .shingle-model__swatch {
        width: 38px;
        height: 38px;
    }

    .product-shingle-page .shingle-model__visualizer {
        width: 100%;
        justify-content: center;
    }

    .product-shingle-page .shingle-model__specs-list {
        grid-template-columns: 1fr;
    }
}
