:root {
    --shop-outline: rgba(255, 255, 255, 0.1);
    --shop-surface: rgba(255, 255, 255, 0.04);
    --shop-surface-strong: rgba(255, 255, 255, 0.08);
    --shop-image-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    --shop-selection-accent: #a6cf6f;
    --shop-selection-surface: rgba(166, 207, 111, 0.12);
    --shop-selection-surface-transparent: rgba(166, 207, 111, 0);
    --shop-selection-shadow: rgba(110, 151, 54, 0.3);
    --shop-selection-text: #edf8d7;
    --shop-selection-check-ink: #142209;
}

html[data-theme="light"] {
    --shop-outline: rgba(34, 39, 45, 0.08);
    --shop-surface: rgba(10, 16, 24, 0.03);
    --shop-surface-strong: rgba(10, 16, 24, 0.06);
    --shop-image-shadow: 0 24px 56px rgba(65, 54, 33, 0.12);
    --shop-selection-accent: #5b7b2a;
    --shop-selection-surface: rgba(91, 123, 42, 0.1);
    --shop-selection-surface-transparent: rgba(91, 123, 42, 0);
    --shop-selection-shadow: rgba(91, 123, 42, 0.18);
    --shop-selection-text: #20310c;
    --shop-selection-check-ink: #fbf7ee;
}

.theme-shop .site-main {
    padding-bottom: 5rem;
}

.page-hero__frame.shop-hero__frame {
    align-items: stretch;
}

.page-hero__frame.shop-hero__frame--landing {
    grid-template-columns: minmax(0, 1fr);
}

.page-hero__frame.shop-hero__frame--product {
    grid-template-columns: 1.15fr 0.85fr;
}

.shop-hero__aside {
    display: grid;
    gap: 0.85rem;
}

.shop-hero__badges {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.65rem;
}

.shop-pill,
.shop-card__meta span {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--shop-outline);
    border-radius: 999px;
    background: var(--shop-surface);
    color: var(--color-muted-strong);
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-category-section,
.shop-copy-section,
.shop-product-section,
.shop-feature-section,
.shop-spec-section,
.shop-brochure-section,
.shop-config-section,
.shop-request-section,
.shop-intro-grid {
    margin-top: 1.2rem;
}

.shop-category-section .section-heading,
.shop-product-section .section-heading,
.shop-feature-section .section-heading,
.shop-spec-section .section-heading,
.shop-config-section .section-heading {
    margin-bottom: 1.35rem;
}

.shop-category-grid,
.shop-product-grid,
.shop-feature-grid,
.shop-intro-grid,
.shop-detail-grid,
.shop-brochure-grid,
.shop-request-layout {
    display: grid;
    gap: 1rem;
}

.shop-category-grid,
.shop-feature-grid,
.shop-intro-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.shop-product-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.shop-product-grid--single {
    grid-template-columns: minmax(0, min(100%, 25rem));
}

.shop-detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.shop-detail-grid--direct-request {
    grid-template-columns: minmax(0, 1fr);
}

.shop-request-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.shop-configurator__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 1rem;
    align-items: start;
}

.shop-configurator__layout--direct-request {
    grid-template-columns: minmax(0, 1fr);
}

.shop-configurator__groups,
.shop-configurator__aside {
    display: grid;
    gap: 1rem;
}

.shop-configurator__aside--direct-request {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
}

.shop-card,
.shop-copy-card,
.shop-note-card,
.shop-request-product,
.shop-config-group {
    position: relative;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: var(--color-panel);
    box-shadow: var(--shadow-panel);
    isolation: isolate;
    overflow: hidden;
}

.shop-card::before,
.shop-copy-card::before,
.shop-note-card::before,
.shop-request-product::before,
.shop-config-group::before {
    position: absolute;
    inset: 1px;
    z-index: 0;
    border-radius: inherit;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 32%),
        linear-gradient(320deg, rgba(208, 217, 227, 0.05), transparent 30%);
    content: "";
    pointer-events: none;
}

.shop-card > *,
.shop-copy-card > *,
.shop-note-card > *,
.shop-request-product > *,
.shop-config-group > * {
    position: relative;
    z-index: 1;
}

.shop-card {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.shop-card:hover {
    transform: translateY(-4px);
    border-color: rgba(219, 227, 234, 0.18);
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.38);
}

html[data-theme="light"] .shop-card,
html[data-theme="light"] .shop-copy-card,
html[data-theme="light"] .shop-note-card,
html[data-theme="light"] .shop-request-product,
html[data-theme="light"] .shop-config-group {
    border-color: rgba(84, 95, 106, 0.12);
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.96) 0%, rgba(246, 237, 226, 0.98) 100%);
    box-shadow: 0 24px 68px rgba(113, 86, 57, 0.12);
}

html[data-theme="light"] .shop-card::before,
html[data-theme="light"] .shop-copy-card::before,
html[data-theme="light"] .shop-note-card::before,
html[data-theme="light"] .shop-request-product::before,
html[data-theme="light"] .shop-config-group::before {
    background:
        radial-gradient(circle at 18% 10%, rgba(224, 196, 167, 0.14), transparent 24%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.34), transparent 42%);
}

html[data-theme="light"] .shop-card:hover {
    border-color: rgba(84, 95, 106, 0.18);
    box-shadow: 0 32px 82px rgba(113, 86, 57, 0.16);
}

.shop-card__media,
.shop-request-product__media,
.shop-display {
    position: relative;
    display: grid;
    place-items: center;
    padding: 1.1rem;
    min-height: 18rem;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
        linear-gradient(165deg, rgba(26, 30, 36, 0.88) 0%, rgba(9, 12, 16, 0.94) 100%);
    overflow: hidden;
}

html[data-theme="light"] .shop-card__media,
html[data-theme="light"] .shop-request-product__media,
html[data-theme="light"] .shop-display,
html[data-theme="light"] .shop-config-option__media {
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.72), transparent 24%),
        linear-gradient(165deg, rgba(251, 245, 236, 0.98) 0%, rgba(236, 226, 214, 0.94) 100%);
}

.shop-card__media {
    --shop-card-media-height: clamp(15rem, 26vw, 18rem);
    min-height: 0;
    height: var(--shop-card-media-height);
}

.shop-card--category .shop-card__media {
    min-height: 0;
    height: auto;
    aspect-ratio: 5 / 3;
    padding: 0;
}

.shop-card--product .shop-card__media {
    --shop-card-media-height: clamp(16.5rem, 24vw, 19.5rem);
    padding: 0;
}

.shop-request-product__media {
    min-height: 0;
    height: 24rem;
    padding: 0;
}

.shop-display {
    min-height: 0;
    height: clamp(28rem, 42vw, 36rem);
    padding: 0;
    border-radius: calc(var(--radius-xl) - 0.4rem);
    box-shadow: var(--shop-image-shadow);
}

.shop-display__trigger {
    position: relative;
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    overflow: hidden;
}

.shop-card__media picture,
.shop-request-product__media picture,
.shop-display__trigger picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.shop-offer-slide__media picture {
    display: grid;
    place-items: center;
    width: 100%;
}

.shop-card--product .shop-card__media img,
.shop-request-product__media img,
.shop-display__trigger img {
    position: absolute;
    inset: 1.1rem;
    display: block;
    width: calc(100% - 2.2rem);
    height: calc(100% - 2.2rem);
    margin: 0;
    object-fit: contain;
    object-position: center center;
}

.shop-card--category .shop-card__media img {
    position: absolute;
    inset: 0.95rem;
    display: block;
    width: calc(100% - 1.9rem);
    height: calc(100% - 1.9rem);
    margin: 0;
    object-fit: contain;
    object-position: center center;
}

.shop-card--product .shop-card__media img {
    inset: 1.1rem;
}

.shop-request-product__media img {
    inset: 1.1rem;
}

.shop-display__hint,
.shop-config-option__media-hint {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.85rem;
    min-width: 1.85rem;
    padding: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(6, 9, 12, 0.72);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.shop-display__hint::before,
.shop-config-option__media-hint::before,
.shop-display__hint::after,
.shop-config-option__media-hint::after {
    position: absolute;
    content: "";
}

.shop-display__hint {
    left: 0.85rem;
    bottom: 0.85rem;
}

.shop-display__hint::before,
.shop-config-option__media-hint::before {
    top: 50%;
    left: 50%;
    width: 0.68rem;
    height: 0.68rem;
    margin-top: -0.48rem;
    margin-left: -0.48rem;
    border: 2px solid currentColor;
    border-radius: 999px;
}

.shop-display__hint::after,
.shop-config-option__media-hint::after {
    top: 50%;
    left: 50%;
    width: 0.48rem;
    height: 2px;
    margin-top: 0.18rem;
    margin-left: 0.04rem;
    border-radius: 999px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}

.shop-display__trigger:hover .shop-display__hint,
.shop-display__trigger:focus-visible .shop-display__hint,
.shop-config-option__media:hover .shop-config-option__media-hint,
.shop-config-option__media:focus-visible .shop-config-option__media-hint {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(14, 19, 24, 0.82);
    transform: translateY(-1px);
}

.shop-display__trigger:focus-visible,
.shop-config-option__media:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--shop-selection-accent) 56%, white 10%);
    outline-offset: 4px;
}

.shop-card__placeholder,
.shop-display__placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: end start;
    padding: 1.25rem;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.14), transparent 18%),
        linear-gradient(135deg, rgba(16, 20, 26, 0.98) 0%, rgba(6, 8, 11, 0.98) 100%);
}

.shop-card__placeholder::before,
.shop-display__placeholder::before {
    position: absolute;
    inset: 14% 18% 14% auto;
    width: clamp(9rem, 22vw, 14rem);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.75rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
    content: "";
}

.shop-card__placeholder::after,
.shop-display__placeholder::after {
    position: relative;
    z-index: 1;
    max-width: 14ch;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    line-height: 0.96;
    letter-spacing: -0.04em;
    content: attr(data-shop-label);
}

html[data-theme="light"] .shop-card__placeholder,
html[data-theme="light"] .shop-display__placeholder {
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.74), transparent 18%),
        linear-gradient(135deg, rgba(247, 239, 229, 0.98) 0%, rgba(235, 223, 209, 0.98) 100%);
}

html[data-theme="light"] .shop-card__placeholder::before,
html[data-theme="light"] .shop-display__placeholder::before {
    border-color: rgba(84, 95, 106, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.2) 100%),
        linear-gradient(90deg, rgba(84, 95, 106, 0.04) 0%, transparent 100%);
    box-shadow: 0 18px 40px rgba(113, 86, 57, 0.12);
}

html[data-theme="light"] .shop-card__placeholder::after,
html[data-theme="light"] .shop-display__placeholder::after {
    color: rgba(24, 33, 42, 0.78);
}

.shop-card__body,
.shop-copy-card,
.shop-note-card,
.shop-request-product__body,
.shop-config-group {
    position: relative;
    z-index: 1;
}

.shop-card__body,
.shop-copy-card,
.shop-note-card,
.shop-request-product__body,
.shop-config-group {
    padding: 1.25rem;
}

.shop-card__body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.shop-card__copy {
    display: grid;
    gap: 0.85rem;
}

.shop-card__header,
.shop-card__actions,
.shop-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.shop-card__header {
    justify-content: space-between;
    align-items: center;
    min-height: 2.2rem;
}

.shop-card__eyebrow {
    color: var(--color-accent);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.shop-card h2,
.shop-copy-card h2,
.shop-note-card h2,
.shop-request-product h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.03em;
}

.shop-card__copy h2 {
    display: -webkit-box;
    min-height: 3em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.shop-card p,
.shop-card__summary,
.shop-copy-card p,
.shop-note-card p,
.shop-request-product p {
    margin: 0;
    color: var(--color-muted);
}

.shop-card__copy p,
.shop-card__summary {
    display: -webkit-box;
    min-height: 7.1em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.shop-card__summary p,
.shop-offer-slide__summary p {
    margin: 0;
}

.shop-copy-card,
.shop-note-card {
    display: grid;
    gap: 0.9rem;
}

.shop-copy-card--detail {
    grid-template-rows: auto minmax(7.75rem, auto) 1fr auto;
}

.shop-copy-card--profile,
.shop-detail-grid--direct-request .shop-copy-card--detail {
    grid-template-rows: auto auto 1fr auto;
}

.shop-detail-grid--direct-request .shop-copy-card--detail {
    gap: 0.7rem;
}

.shop-copy-card__headline,
.shop-copy-card__body-copy {
    display: grid;
    align-content: start;
}

.shop-process-list {
    display: grid;
    gap: 0.75rem;
    margin: 0;
    padding-left: 1.15rem;
    color: var(--color-muted);
}

.shop-process-list li::marker {
    color: var(--color-muted-strong);
    font-weight: 600;
}

.shop-card__meta {
    margin-top: auto;
}

.shop-card__actions {
    margin-top: 0.15rem;
}

.shop-card__actions .button {
    flex: 1 1 auto;
    justify-content: center;
}

.shop-spec-list {
    display: grid;
    gap: 0.7rem;
    padding: 1.2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background: var(--color-panel);
    box-shadow: var(--shadow-panel);
}

.shop-spec-list__row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--shop-outline);
    border-radius: var(--radius-lg);
    background: var(--shop-surface);
}

.shop-spec-list__row span {
    color: var(--color-muted);
}

.shop-spec-list__row strong {
    color: var(--color-muted-strong);
    font-weight: 500;
    text-align: right;
}

.shop-brochure-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.shop-brochure-card {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.9rem;
    align-items: center;
    min-height: 6.75rem;
    padding: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: var(--color-panel);
    color: inherit;
    text-decoration: none;
    box-shadow: var(--shadow-panel);
    overflow: hidden;
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shop-brochure-card::before {
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        linear-gradient(140deg, rgba(255, 255, 255, 0.06), transparent 34%),
        linear-gradient(320deg, rgba(208, 217, 227, 0.05), transparent 30%);
    content: "";
    pointer-events: none;
}

.shop-brochure-card:hover,
.shop-brochure-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(219, 227, 234, 0.22);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.2);
}

.shop-brochure-card:focus-visible {
    outline: 2px solid color-mix(in srgb, var(--shop-selection-accent) 56%, white 10%);
    outline-offset: 3px;
}

.shop-brochure-card__icon,
.shop-brochure-card__copy {
    position: relative;
    z-index: 1;
}

.shop-brochure-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.75rem;
    border: 1px solid var(--shop-outline);
    border-radius: 0.45rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
        var(--shop-surface);
    color: var(--shop-selection-text);
}

.shop-brochure-card__icon::before {
    color: var(--color-muted-strong);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    content: "PDF";
}

.shop-brochure-card__icon::after {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 0.82rem;
    height: 0.82rem;
    border-left: 1px solid var(--shop-outline);
    border-bottom: 1px solid var(--shop-outline);
    border-radius: 0 0.45rem 0 0.2rem;
    background: color-mix(in srgb, var(--shop-selection-accent) 46%, transparent);
    content: "";
}

.shop-brochure-card__copy {
    display: grid;
    gap: 0.28rem;
    min-width: 0;
}

.shop-brochure-card__copy strong {
    color: var(--color-muted-strong);
    font-size: 1rem;
    line-height: 1.35;
}

.shop-brochure-card__copy small {
    color: var(--color-muted);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

html[data-theme="light"] .shop-brochure-card {
    border-color: rgba(84, 95, 106, 0.12);
    background: linear-gradient(180deg, rgba(255, 251, 246, 0.96) 0%, rgba(246, 237, 226, 0.98) 100%);
    box-shadow: 0 22px 56px rgba(113, 86, 57, 0.12);
}

html[data-theme="light"] .shop-brochure-card::before {
    background:
        radial-gradient(circle at 18% 10%, rgba(224, 196, 167, 0.14), transparent 24%),
        linear-gradient(140deg, rgba(255, 255, 255, 0.34), transparent 42%);
}

.shop-request-product {
    display: grid;
}

.shop-config-group {
    display: grid;
    gap: 1rem;
}

.shop-config-group__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.9rem;
    align-items: start;
}

.shop-config-group__meta {
    display: grid;
    justify-items: end;
    gap: 0.55rem;
}

.shop-config-group__header h3,
.shop-configurator__form-head h3 {
    margin: 0.35rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}

.shop-config-group__hint {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.8rem;
    border: 1px solid var(--shop-outline);
    border-radius: 999px;
    background: var(--shop-surface);
    color: var(--color-muted-strong);
    font-size: 0.74rem;
    line-height: 1.45;
    text-align: right;
}

.shop-config-group__badge {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.42rem 0.78rem;
    border: 1px solid color-mix(in srgb, var(--shop-selection-accent) 46%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--shop-selection-surface) 100%, transparent);
    color: var(--shop-selection-text);
    font-size: 0.74rem;
    letter-spacing: 0.05em;
    text-align: right;
}

.shop-config-option-list {
    display: grid;
    gap: 0.85rem;
}

.shop-config-option {
    display: block;
    cursor: pointer;
}

.shop-config-option__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-config-option__panel {
    position: relative;
    display: block;
    padding: 1rem 1.05rem;
    border: 1px solid var(--shop-outline);
    border-radius: var(--radius-lg);
    background: var(--shop-surface);
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    overflow: hidden;
    cursor: pointer;
}

.shop-config-option:hover .shop-config-option__panel {
    transform: translateY(-1px);
    border-color: rgba(219, 227, 234, 0.22);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.shop-config-option__input:checked + .shop-config-option__panel {
    border-color: color-mix(in srgb, var(--shop-selection-accent) 68%, transparent);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--shop-selection-surface) 100%, transparent) 0%, var(--shop-selection-surface-transparent) 100%),
        var(--shop-surface-strong);
    box-shadow: 0 20px 40px var(--shop-selection-shadow);
}

.shop-config-option__input:focus-visible + .shop-config-option__panel {
    outline: 2px solid color-mix(in srgb, var(--shop-selection-accent) 56%, white 10%);
    outline-offset: 3px;
}

.shop-config-option__check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border: 1px solid var(--shop-outline);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.shop-config-option__check::after {
    width: 0.36rem;
    height: 0.68rem;
    border-right: 2px solid var(--shop-selection-check-ink);
    border-bottom: 2px solid var(--shop-selection-check-ink);
    content: "";
    opacity: 0;
    transform: translateY(-0.05rem) rotate(45deg);
    transition: opacity 180ms ease;
}

.shop-config-option__input:checked + .shop-config-option__panel .shop-config-option__check {
    border-color: color-mix(in srgb, var(--shop-selection-accent) 82%, transparent);
    background: var(--shop-selection-accent);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--shop-selection-shadow) 36%, transparent);
}

.shop-config-option__input:checked + .shop-config-option__panel .shop-config-option__check::after {
    opacity: 1;
}

.shop-config-option__content {
    display: grid;
    gap: 0.9rem;
    padding-right: 2.35rem;
}

.shop-config-option__content--with-media {
    grid-template-columns: minmax(0, 9.5rem) minmax(0, 1fr);
    align-items: center;
}

.shop-config-option__media {
    display: grid;
    place-items: center;
    position: relative;
    width: 100%;
    min-height: 8.8rem;
    padding: 0;
    border: 1px solid var(--shop-outline);
    border-radius: calc(var(--radius-lg) - 0.35rem);
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 24%),
        linear-gradient(155deg, rgba(26, 31, 38, 0.9) 0%, rgba(9, 12, 16, 0.98) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.shop-config-option__media:hover {
    transform: translateY(-1px);
    border-color: rgba(219, 227, 234, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 16px 34px rgba(0, 0, 0, 0.18);
}

.shop-config-option__media img {
    position: absolute;
    inset: 0.85rem;
    display: block;
    width: calc(100% - 1.7rem);
    height: calc(100% - 1.7rem);
    object-fit: contain;
    object-position: center center;
}

.shop-config-option__media-hint {
    right: 0.65rem;
    bottom: 0.65rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    cursor: zoom-in;
}

.shop-config-option__copy {
    display: grid;
    gap: 0.75rem;
}

.shop-config-option__title-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.8rem;
    align-items: start;
}

.shop-config-option__title-row strong {
    color: var(--color-muted-strong);
    font-size: 1rem;
    line-height: 1.5;
}

.shop-config-option__input:checked + .shop-config-option__panel .shop-config-option__title-row strong {
    color: var(--shop-selection-text);
}

.shop-config-option__price {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-muted-strong);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.shop-config-option__input:checked + .shop-config-option__panel .shop-config-option__price {
    background: color-mix(in srgb, var(--shop-selection-accent) 18%, transparent);
    color: var(--shop-selection-text);
}

.shop-config-option__summary {
    color: var(--color-muted);
    line-height: 1.75;
}

.shop-config-option__input:checked + .shop-config-option__panel .shop-config-option__summary,
.shop-config-option__input:checked + .shop-config-option__panel .shop-config-option__details {
    color: color-mix(in srgb, var(--shop-selection-text) 78%, white 10%);
}

.shop-config-option__details {
    color: var(--color-muted);
    line-height: 1.75;
    font-size: 0.92rem;
}

.shop-config-option__summary + .shop-config-option__details {
    padding-top: 0.05rem;
}

.shop-note-card--config-summary {
    align-content: start;
}

.shop-config-summary__pricing {
    display: grid;
    gap: 0.85rem;
    margin-top: 0.35rem;
}

.shop-config-summary__pricing--sticky {
    margin: 0 0 1rem;
}

.shop-config-summary__price-chip {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border: 1px solid var(--shop-outline);
    border-radius: var(--radius-lg);
    background: var(--shop-surface);
}

.shop-config-summary__price-chip span,
.shop-config-summary__total-label {
    color: var(--color-muted-strong);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-config-summary__price-chip strong {
    color: var(--color-muted-strong);
}

.shop-config-summary__total-card {
    display: grid;
    gap: 0.28rem;
    padding: 1rem 1.05rem;
    border: 1px solid color-mix(in srgb, var(--shop-selection-accent) 56%, transparent);
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--shop-selection-surface) 100%, transparent) 0%, var(--shop-selection-surface-transparent) 100%),
        var(--shop-surface);
    box-shadow: 0 18px 38px var(--shop-selection-shadow);
}

.shop-config-summary__total-card--sticky {
    padding: 1rem;
}

.shop-config-summary__total-value {
    color: var(--shop-selection-text);
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 2rem);
    line-height: 1;
    letter-spacing: -0.03em;
}

.shop-config-summary__total-card small {
    color: var(--color-muted);
    line-height: 1.65;
}

.shop-config-summary__total-card.is-empty {
    border-color: var(--shop-outline);
    background: var(--shop-surface);
    box-shadow: none;
}

.shop-config-summary__total-card.is-empty .shop-config-summary__total-value {
    color: var(--color-muted-strong);
}

@supports (-moz-appearance: none) {
    .theme-shop .button:not(.button--ghost) {
        background: #dce4ea;
        background-image: none;
        color: #06080b;
    }

    .theme-shop .button:not(.button--ghost):hover {
        background: #e5ecf1;
    }

    .theme-shop .button::after {
        display: none;
        background: none;
        content: none;
        transform: none;
        transition: none;
    }

    .theme-shop .shop-config-option__input:checked + .shop-config-option__panel,
    .theme-shop .shop-config-summary__total-card:not(.is-empty) {
        background: var(--shop-selection-surface);
    }
}

.shop-config-summary__submitted {
    display: grid;
    gap: 0.8rem;
    margin-top: 0.35rem;
    padding-top: 0.9rem;
    border-top: 1px solid var(--shop-outline);
}

.shop-config-summary__submitted strong {
    color: var(--color-muted-strong);
}

.shop-config-summary__group {
    display: grid;
    gap: 0.2rem;
}

.shop-config-summary__group span,
.shop-config-summary__total span {
    color: var(--color-muted-strong);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-config-summary__group p,
.shop-config-summary__total strong {
    margin: 0;
}

.shop-config-summary__total {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.35rem;
    border-top: 1px solid var(--shop-outline);
}

.shop-configurator__form-head {
    display: grid;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.theme-shop .contact-panel--shop {
    grid-template-columns: 1fr;
}

.contact-panel--shop {
    min-height: 100%;
}

.contact-panel--shop .contact-panel__form-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-left: 0;
    border-top: 0;
    border-left: 0;
}

.field--compact {
    max-width: 16rem;
}

.field__error--block {
    display: block;
    margin-bottom: 0.95rem;
}

.shop-configurator__message-field {
    margin-top: 0.35rem;
}

.shop-configurator__privacy-field {
    margin-top: 1.4rem;
}

.shop-configurator__submit {
    width: 100%;
    justify-content: center;
    margin-top: 1.3rem;
}

.site-footer__shop-note {
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.82rem;
    line-height: 1.7;
}

.shop-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.shop-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(3, 5, 8, 0.82);
    cursor: zoom-out;
    backdrop-filter: blur(10px);
}

.shop-lightbox__dialog {
    position: relative;
    display: grid;
    gap: 1rem;
    width: min(88rem, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    margin: 1rem auto;
    padding: 1.1rem;
    border: 1px solid var(--color-border);
    border-radius: calc(var(--radius-xl) - 0.2rem);
    background: rgba(8, 12, 16, 0.94);
    box-shadow: 0 36px 120px rgba(0, 0, 0, 0.52);
}

.shop-lightbox__header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
}

.shop-lightbox__header h3 {
    margin: 0.35rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
}

.shop-lightbox__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid var(--shop-outline);
    border-radius: 999px;
    background: var(--shop-surface);
    color: var(--color-muted-strong);
    font-size: 1.9rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.shop-lightbox__close:hover {
    transform: translateY(-1px);
    border-color: rgba(219, 227, 234, 0.22);
    background: var(--shop-surface-strong);
}

.shop-lightbox__figure {
    display: grid;
    gap: 0.85rem;
    min-height: 0;
    margin: 0;
}

.shop-lightbox__figure img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 10rem);
    margin: 0 auto;
    object-fit: contain;
}

.shop-lightbox__caption {
    margin: 0;
    color: var(--color-muted-strong);
    text-align: center;
}

html[data-theme="light"] .shop-lightbox__dialog {
    background: rgba(251, 248, 241, 0.96);
    box-shadow: 0 28px 80px rgba(65, 54, 33, 0.18);
}

html[data-theme="light"] .shop-lightbox__backdrop {
    background: rgba(20, 22, 26, 0.58);
}

html[data-theme="light"] .shop-display__hint,
html[data-theme="light"] .shop-config-option__media-hint {
    border-color: rgba(84, 95, 106, 0.16);
    background: rgba(255, 252, 247, 0.88);
    color: rgba(24, 33, 42, 0.9);
}

.shop-price-note {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.shop-price-note a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14rem;
}

.metric-card .shop-price-note,
.shop-config-summary__total-card .shop-price-note {
    margin-top: 0.15rem;
}

.shop-hero__frame--landing-with-offers {
    gap: 1.2rem;
}

.shop-hero__offer-stage {
    min-width: 0;
}

.shop-offer-slider {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 1rem;
    height: 100%;
    padding: 1.1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(13, 18, 24, 0.96) 0%, rgba(6, 10, 14, 0.98) 100%);
    box-shadow: var(--shadow-panel);
    overflow: hidden;
}

.shop-offer-slider__viewport {
    position: relative;
    z-index: 1;
    min-height: clamp(34rem, 46vw, 39rem);
    transition: height 220ms ease;
}

.shop-offer-slider::before {
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 34%),
        linear-gradient(330deg, rgba(208, 217, 227, 0.04), transparent 30%);
    content: "";
    pointer-events: none;
}

.shop-offer-slider__flag {
    position: absolute;
    top: 1.05rem;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    min-height: 2.15rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 251, 246, 0.96);
    color: rgb(15, 23, 42);
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.shop-offer-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: grid;
    gap: 1rem;
    align-content: start;
    align-self: stretch;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    padding-top: 1.35rem;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.shop-offer-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.shop-offer-slide.is-measuring {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.shop-offer-slide__media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: clamp(17rem, 24vw, 19rem);
    padding: 1.2rem;
    border: 1px solid var(--shop-outline);
    border-radius: calc(var(--radius-xl) - 0.35rem);
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.14), transparent 24%),
        linear-gradient(165deg, rgba(26, 30, 36, 0.88) 0%, rgba(9, 12, 16, 0.94) 100%);
    overflow: hidden;
}

.shop-offer-slide__media img {
    display: block;
    width: auto;
    max-width: min(100%, 21rem);
    height: auto;
    max-height: clamp(13rem, 25vw, 17.75rem);
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
}

.shop-offer-slide__body,
.shop-offer-slide__copy {
    display: grid;
    gap: 0.8rem;
}

.shop-offer-slide__body {
    align-content: start;
}

.shop-offer-slide__copy h2 {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.04em;
}

.shop-offer-slide__copy p,
.shop-offer-slide__summary {
    margin: 0;
    color: var(--color-muted);
}

.shop-offer-slider__controls {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.75rem;
}

.shop-offer-slider__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    min-width: 0;
}

.shop-offer-slider__dot,
.shop-offer-slider__nav {
    border: 0;
    cursor: pointer;
}

.shop-offer-slider__dot {
    width: 0.72rem;
    height: 0.72rem;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.22);
    transition: transform 180ms ease, background-color 180ms ease;
}

.shop-offer-slider__dot.is-active {
    transform: scale(1.16);
    background: var(--color-accent);
}

.shop-offer-slider__nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    padding: 0;
    border: 1px solid var(--shop-outline);
    border-radius: 999px;
    background: rgba(12, 18, 24, 0.78);
    color: var(--color-text);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.shop-offer-slider__nav::before {
    width: 0.68rem;
    height: 0.68rem;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
}

.shop-offer-slider__nav[data-shop-offer-prev]::before {
    transform: rotate(-135deg);
}

.shop-offer-slider__nav:hover,
.shop-offer-slider__dot:hover {
    transform: translateY(-1px);
}

.shop-offer-slider__nav:hover {
    border-color: rgba(219, 227, 234, 0.24);
    background: var(--shop-surface-strong);
}

html[data-theme="light"] .shop-offer-slider {
    background:
        radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.52), transparent 24%),
        linear-gradient(180deg, rgba(255, 250, 244, 0.98) 0%, rgba(242, 233, 222, 0.98) 100%);
    border-color: rgba(84, 95, 106, 0.12);
    box-shadow: 0 24px 68px rgba(113, 86, 57, 0.14);
}

html[data-theme="light"] .shop-offer-slide__media {
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.72), transparent 24%),
        linear-gradient(165deg, rgba(251, 245, 236, 0.98) 0%, rgba(236, 226, 214, 0.94) 100%);
}

html[data-theme="light"] .shop-offer-slider__nav {
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 24px rgba(113, 86, 57, 0.12);
}

@media (min-width: 960px) {
    .page-hero__frame.shop-hero__frame {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.55fr);
    }

    .page-hero__frame.shop-hero__frame--landing {
        grid-template-columns: minmax(0, 0.96fr);
    }

    .page-hero__frame.shop-hero__frame--landing-with-offers {
        grid-template-columns: minmax(0, 0.96fr) minmax(20rem, 0.72fr);
    }

    .page-hero__frame.shop-hero__frame--product {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr) minmax(0, 0.42fr);
    }

    .shop-hero__frame:not(.shop-hero__frame--product) .hero__actions {
        align-items: flex-start;
        gap: 0.65rem;
    }

    .shop-hero__frame:not(.shop-hero__frame--product) .hero__actions .button {
        min-height: 2.95rem;
        padding: 0.72rem 1.08rem;
        font-size: 0.98rem;
    }

    .shop-detail-grid--configurable {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-detail-grid--configurable .shop-copy-card--profile {
        grid-column: 1 / -1;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) {
        align-items: stretch;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-configurator__groups,
    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-configurator__aside {
        align-content: start;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop {
        --shop-offer-panel-padding: clamp(0.62rem, 1.55svh, 1.3rem);
        --shop-offer-sticky-top: clamp(4.75rem, 12.8svh, 6.4rem);
        --shop-offer-form-top: clamp(0.32rem, 0.95svh, 1rem);
        --shop-offer-head-gap: clamp(0.16rem, 0.52svh, 0.35rem);
        --shop-offer-head-margin: clamp(0.32rem, 1.08svh, 1rem);
        --shop-offer-grid-gap: clamp(0.34rem, 1.08svh, 1.15rem);
        --shop-offer-field-gap: clamp(0.14rem, 0.58svh, 0.55rem);
        --shop-offer-label-size: clamp(0.58rem, 0.98svh, 0.78rem);
        --shop-offer-input-padding: clamp(0.28rem, 0.9svh, 0.95rem);
        --shop-offer-textarea-height: clamp(4rem, 12svh, 8.75rem);
        --shop-offer-checkbox-size: clamp(1rem, 1.78svh, 1.25rem);
        --shop-offer-privacy-margin: clamp(0.34rem, 1.32svh, 1.4rem);
        --shop-offer-submit-margin: clamp(0.36rem, 1.26svh, 1.3rem);
        --shop-offer-submit-height: clamp(2.35rem, 5.25svh, 3.15rem);
        --shop-offer-price-margin: clamp(0.48rem, 1.12svh, 0.95rem);
        --shop-offer-price-padding: clamp(0.7rem, 1.45svh, 1rem);
        position: sticky;
        top: var(--shop-offer-sticky-top);
        align-self: start;
        padding: var(--shop-offer-panel-padding);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-config-summary__pricing--sticky {
        margin-bottom: var(--shop-offer-price-margin);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-config-summary__total-card--sticky {
        gap: clamp(0.18rem, 0.46svh, 0.28rem);
        padding: var(--shop-offer-price-padding);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-config-summary__total-card--sticky .shop-config-summary__total-value {
        font-size: 1.68rem;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-config-summary__total-card--sticky .shop-price-note {
        line-height: 1.45;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .contact-panel__form-wrap {
        padding-top: var(--shop-offer-form-top);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-configurator__form-head {
        gap: var(--shop-offer-head-gap);
        margin-bottom: var(--shop-offer-head-margin);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-configurator__form-head h3 {
        font-size: clamp(1rem, 2.32svh, 1.55rem);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .contact-form__grid {
        gap: var(--shop-offer-grid-gap);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field {
        gap: var(--shop-offer-field-gap);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field span {
        font-size: var(--shop-offer-label-size);
        letter-spacing: 0.09em;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field input,
    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field textarea,
    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field select {
        padding-top: var(--shop-offer-input-padding);
        padding-bottom: var(--shop-offer-input-padding);
        font-size: clamp(0.86rem, 1.55svh, 1rem);
        line-height: 1.35;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-configurator__message-field {
        margin-top: clamp(0.12rem, 0.55svh, 0.35rem);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-configurator__message-field textarea {
        height: var(--shop-offer-textarea-height);
        min-height: 0;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-configurator__privacy-field {
        margin-top: var(--shop-offer-privacy-margin);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field-checkbox {
        gap: clamp(0.5rem, 1.24svh, 0.85rem);
        line-height: 1.35;
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field-checkbox__indicator {
        width: var(--shop-offer-checkbox-size);
        height: var(--shop-offer-checkbox-size);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field--captcha {
        gap: var(--shop-offer-field-gap);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .contact-panel--shop .field--captcha altcha-widget {
        --altcha-checkbox-size: clamp(1rem, 1.9svh, 1.35rem);
        --altcha-border-radius: clamp(0.6rem, 1.25svh, 1rem);
        font-size: clamp(0.78rem, 1.42svh, 1rem);
    }

    .shop-configurator__layout:not(.shop-configurator__layout--direct-request) .shop-configurator__submit {
        min-height: var(--shop-offer-submit-height);
        margin-top: var(--shop-offer-submit-margin);
        padding-top: clamp(0.48rem, 1.1svh, 0.9rem);
        padding-bottom: clamp(0.48rem, 1.1svh, 0.9rem);
    }

    .shop-hero__frame--product .shop-hero__badges {
        gap: 0.5rem;
    }

    .shop-hero__frame--product .shop-pill {
        min-height: 1.85rem;
        padding: 0.38rem 0.72rem;
        font-size: 0.68rem;
        letter-spacing: 0.07em;
    }

    .shop-hero__frame--product .hero__actions {
        align-items: flex-start;
        gap: 0.65rem;
    }

    .shop-hero__frame--product .hero__actions .button {
        min-height: 2.95rem;
        padding: 0.72rem 1.08rem;
        font-size: 0.98rem;
    }

    .shop-hero__frame--product > .shop-hero__aside {
        align-self: start;
    }
}

@media (min-width: 1280px) {
    .shop-hero__frame:not(.shop-hero__frame--product) .hero__actions {
        gap: 0.55rem;
    }

    .shop-hero__frame:not(.shop-hero__frame--product) .hero__actions .button {
        min-height: 2.75rem;
        padding: 0.62rem 0.96rem;
        font-size: 0.94rem;
    }

    .shop-hero__frame--product .shop-hero__badges {
        gap: 0.45rem;
    }

    .shop-hero__frame--product .shop-pill {
        min-height: 1.72rem;
        padding: 0.34rem 0.62rem;
        font-size: 0.64rem;
        letter-spacing: 0.05em;
    }

    .shop-hero__frame--product .hero__actions {
        gap: 0.55rem;
    }

    .shop-hero__frame--product .hero__actions .button {
        min-height: 2.75rem;
        padding: 0.62rem 0.96rem;
        font-size: 0.94rem;
    }
}

@media (max-width: 959px) {
    .page-hero__frame.shop-hero__frame--product,
    .shop-request-layout,
    .shop-configurator__layout {
        grid-template-columns: 1fr;
    }

    .shop-configurator__aside--direct-request {
        grid-template-columns: 1fr;
    }

    .shop-display {
        height: 22rem;
    }

    .shop-offer-slide__media {
        min-height: 16rem;
    }

    .shop-offer-slider__viewport {
        min-height: 35rem;
    }
}

@media (max-width: 720px) {
    .shop-category-grid,
    .shop-product-grid,
    .shop-feature-grid,
    .shop-intro-grid,
    .shop-detail-grid {
        grid-template-columns: 1fr;
    }

    .shop-card--product .shop-card__media,
    .shop-request-product__media {
        height: 15rem;
    }

    .shop-card--category .shop-card__media {
        height: auto;
        aspect-ratio: 5 / 3;
    }

    .shop-card--product .shop-card__media img,
    .shop-request-product__media img {
        inset: 1.1rem;
    }

    .shop-card__actions {
        flex-direction: column;
    }

    .shop-card__actions .button {
        width: 100%;
    }

    .shop-config-group__hint,
    .shop-config-group__badge,
    .shop-config-option__price {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .shop-config-option__title-row,
    .shop-config-summary__total {
        flex-direction: column;
    }

    .shop-config-option__content--with-media {
        grid-template-columns: 1fr;
    }

    .shop-config-option__content {
        padding-right: 0;
    }

    .shop-config-option__check {
        top: 0.85rem;
        right: 0.85rem;
    }

    .shop-config-group__meta {
        width: 100%;
        justify-items: stretch;
    }

    .shop-display__hint,
    .shop-config-option__media-hint {
        left: auto;
        right: 0.7rem;
    }

    .shop-lightbox__dialog {
        width: calc(100vw - 1rem);
        max-height: calc(100vh - 1rem);
        margin: 0.5rem auto;
        padding: 0.95rem;
    }

    .shop-lightbox__figure img {
        max-height: calc(100vh - 11rem);
    }

    .shop-offer-slider {
        padding: 0.95rem;
    }

    .shop-offer-slider__flag {
        top: 0.8rem;
    }

    .shop-offer-slide {
        padding-top: 1.8rem;
    }

    .shop-offer-slide__media {
        min-height: 15.5rem;
    }

    .shop-offer-slider__viewport {
        min-height: 35rem;
    }

    .shop-offer-slider__controls {
        gap: 0.5rem;
    }

    .shop-offer-slider__nav {
        width: 3.1rem;
        height: 3.1rem;
        background: rgba(8, 12, 18, 0.88);
    }
}
