.product-page {
    padding: 28px 24px 0;
}

.product-page__shell {
    max-width: var(--content-width);
    margin: 0 auto;
}

.product-page__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
}

.product-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 372px);
    gap: 26px;
    align-items: start;
}

.product-page__main {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.product-page__aside {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.product-page__hero-primary,
.product-page__cover,
.product-page__summary,
.product-offer,
.product-page__features,
.product-page__details {
    border: 1px solid var(--border);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(20, 33, 51, 0.92), rgba(14, 23, 35, 0.96));
    box-shadow: var(--shadow-lg);
}

.product-page__hero-primary {
    overflow: hidden;
}

.product-page__cover {
    overflow: hidden;
}

.product-page__head {
    padding: 24px;
}

.product-page__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.product-page__badge {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-page__badge--success {
    border-color: rgba(39, 198, 123, 0.22);
    background: rgba(39, 198, 123, 0.12);
    color: #9de6c0;
}

.product-page__badge--muted {
    border-color: rgba(255, 107, 107, 0.22);
    background: rgba(255, 107, 107, 0.1);
    color: #ffb7b7;
}

.product-page__head h1 {
    margin-bottom: 14px;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    line-height: 0.95;
}

.product-page__subhead {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.product-page__media {
    padding: 0 20px 20px;
}

.product-page__media-main {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    aspect-ratio: 16 / 9;
    background: #0e1724;
}

.product-page__media-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-page__media-video,
.product-page__media-video-poster {
    display: block;
    width: 100%;
    height: 100%;
}

.product-page__media-video-poster {
    position: relative;
    padding: 0;
    border: 0;
    background: #0e1724;
    cursor: pointer;
}

.product-page__media-video-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 13, 20, 0.08), rgba(8, 13, 20, 0.32));
    pointer-events: none;
}

.product-page__media-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 76px;
    height: 76px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(10, 16, 25, 0.74);
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
}

.product-page__media-video-play::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid rgba(255, 255, 255, 0.94);
    transform: translate(-35%, -50%);
}

.product-page__discount {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(39, 198, 123, 0.94);
    color: #0b1320;
    font-size: 0.78rem;
    font-weight: 900;
}

.product-page__cover-media {
    position: relative;
    overflow: hidden;
    background: #0e1724;
}

.product-page__cover-media img {
    display: block;
    width: 100%;
    aspect-ratio: 460 / 215;
    object-fit: cover;
}

.product-page__media-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
}

.product-page__media-thumbs {
    display: flex;
    flex: 1 1 auto;
    gap: 12px;
    min-width: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-page__media-thumbs::-webkit-scrollbar {
    display: none;
}

.product-page__media-nav {
    display: flex;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary);
    cursor: pointer;
    transition: border-color .15s ease, transform .15s ease, opacity .15s ease;
}

.product-page__media-nav[hidden] {
    display: none;
}

.product-page__media-nav:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.product-page__media-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.product-thumb {
    position: relative;
    flex: 0 0 156px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 16px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: start;
    box-shadow: inset 0 0 0 1px var(--border);
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.product-thumb.is-active {
    border-color: rgba(252, 228, 77, 0.92);
    box-shadow: inset 0 0 0 1px rgba(252, 228, 77, 0.38);
}

.product-thumb:hover {
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.product-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.product-thumb__video-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    border-radius: 999px;
    background: rgba(10, 16, 25, 0.78);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.66rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-page__summary {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
}

.product-page__summary-head h2 {
    margin-top: 8px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    line-height: 1.08;
}

.product-page__summary-label,
.product-page__section-head span {
    color: rgba(252, 228, 77, 0.76);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-page__meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.product-meta-item {
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
}

.product-meta-item__label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-meta-item strong {
    line-height: 1.5;
}

.product-meta-item__tooltip {
    display: inline-flex;
    align-items: baseline;
}

.product-meta-item__expand {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-decoration: underline;
    text-underline-offset: 0.14em;
    cursor: pointer;
}

.product-meta-item__tooltip-content {
    max-width: 320px;
    text-align: left;
}

.product-meta-item__tooltip:hover .tooltip-content,
.product-meta-item__tooltip:focus-within .tooltip-content {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.product-meta-item__tooltip--open .tooltip-content,
.product-meta-item__tooltip--open:hover .tooltip-content,
.product-meta-item__tooltip--open:focus-within .tooltip-content {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.product-page__summary-points {
    display: none;
    gap: 12px;
}

.product-summary-point {
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    line-height: 1.65;
}

.product-page__empty-note {
    padding: 16px 18px;
    border: 1px dashed var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-secondary);
    line-height: 1.7;
}

.product-page__empty-note--media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    text-align: center;
}

.product-page__empty-note--compact {
    margin-bottom: 16px;
}

.product-offer {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
}

.product-offer__legal,
.product-feature-card p,
.product-step-card p,
.product-page__section-head p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.product-offer__price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(77, 215, 154, 0.28);
    border-radius: 16px;
    background: rgba(77, 215, 154, 0.08);
}

.product-offer__price-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-offer__price-value {
    display: flex;
    align-items: end;
    gap: 8px;
    color: #8ff0bd;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    font-weight: 900;
    line-height: 1;
}

#price {
    position: relative;
}

.fullprice {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    min-width: 72px;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: center;
    text-decoration: line-through;
    transform: translateX(-50%);
}

.fullprice--hidden {
    display: none;
}

.product-offer__form {
    display: grid;
    gap: 14px;
    margin-top: 0;
}

.product-offer__native-select {
    width: 100%;
    min-width: 0;
    padding: 12px 44px 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background-color: rgba(255, 255, 255, 0.04);
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) calc(50% - 3px),
        calc(100% - 14px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    color: var(--text-primary);
    font: inherit;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.product-offer__native-select:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.product-offer__native-select:focus {
    outline: none;
    border-color: rgba(77, 215, 154, 0.42);
    box-shadow: 0 0 0 4px rgba(77, 215, 154, 0.12);
}

.product-offer__native-select option {
    color: #0f1724;
}

.product-offer__edition-options,
.product-offer__region-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-offer__edition-button,
.product-offer__region-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
    width: auto;
    max-width: 100%;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font: inherit;
    font-weight: 600;
    line-height: 1.3;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.product-offer__edition-button {
    padding: 7px 12px;
    font-size: 0.9rem;
}

.product-offer__region-button {
    padding: 10px 14px;
    gap: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.product-offer__edition-button:hover,
.product-offer__region-button:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-primary);
}

.product-offer__edition-button:focus {
    outline: none;
    border-color: rgba(77, 215, 154, 0.42);
    box-shadow: none;
}

.product-offer__region-button:focus {
    outline: none;
    border-color: rgba(77, 215, 154, 0.42);
    box-shadow: 0 0 0 4px rgba(77, 215, 154, 0.12);
}

.product-offer__edition-button.is-active,
.product-offer__edition-button[aria-pressed="true"],
.product-offer__region-button.is-active,
.product-offer__region-button[aria-pressed="true"] {
    border-color: rgba(77, 215, 154, 0.4);
    background: rgba(77, 215, 154, 0.12);
    color: var(--text-primary);
}

.product-offer__region-flag {
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 1;
}

.product-offer__region-name {
    min-width: 0;
}

.product-offer__region-button--more {
    color: var(--text-primary);
}

.product-offer__purchase-card {
    display: grid;
    gap: 12px;
}

.product-form-group__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-form-group__label label {
    font-weight: 800;
}

.product-recent-profiles {
    display: grid;
    gap: 8px;
}

.product-recent-profiles__extra {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    will-change: opacity, transform;
    transition: grid-template-rows 0.22s ease, opacity 0.16s ease, transform 0.16s ease;
}

.product-recent-profiles__extra.is-expanded {
    grid-template-rows: 1fr;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.product-recent-profiles__extra-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 0;
    overflow: hidden;
}

.product-recent-profiles__extra--no-transition {
    transition: none;
}

.product-recent-profiles__toggle {
    justify-self: start;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--text-secondary);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: underline;
    text-underline-offset: 0.14em;
    cursor: pointer;
    transition: color 0.18s ease;
}

.product-recent-profiles__toggle:hover {
    color: var(--text-primary);
}

.product-recent-profile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
}

.product-recent-profile__select {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    width: auto;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.product-recent-profile__select:hover {
    background: rgba(255, 255, 255, 0.07);
}

.product-recent-profile__select:focus {
    outline: none;
    border-color: rgba(77, 215, 154, 0.42);
    box-shadow: 0 0 0 4px rgba(77, 215, 154, 0.12);
}

.product-recent-profile__select.is-active {
    border-color: rgba(77, 215, 154, 0.4);
    background: rgba(77, 215, 154, 0.12);
}

.product-recent-profile__flag {
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 1;
}

.product-recent-profile__avatar {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

.product-recent-profile__name {
    display: block;
    max-width: 168px;
    padding-right: 16px;
    overflow: hidden;
    position: relative;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.15em;
}

.product-recent-profile__name::after {
    content: '↗';
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--text-secondary);
    font-size: 0.72rem;
    line-height: 1;
    transform: translateY(-58%);
    transition: color 0.18s ease;
}

.product-recent-profile__name:hover {
    color: #ffffff;
}

.product-recent-profile__name:hover::after {
    color: #ffffff;
}

.product-profile-input {
    position: relative;
}

.product-profile-input__loader {
    position: absolute;
    top: 50%;
    right: 16px;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    border: 2px solid rgba(255, 255, 255, 0.16);
    border-top-color: rgba(77, 215, 154, 0.88);
    border-radius: 50%;
    pointer-events: none;
    animation: product-profile-loader-spin 0.7s linear infinite;
}

.product-profile-input__loader[hidden] {
    display: none;
}

.product-profile-preview {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    box-sizing: border-box;
    overflow: hidden;
}

.product-profile-preview[hidden] {
    display: none;
}

.product-profile-preview__avatar {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
}

.product-profile-preview__body {
    min-width: 0;
    width: 0;
    flex: 1 1 0;
    max-width: 100%;
    overflow: hidden;
}

.product-profile-preview__name {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    color: var(--text-primary);
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
    text-decoration: none;
}

.product-profile-preview__name:hover {
    color: #ffffff;
}

.product-profile-preview__reset {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 36px;
    min-width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
    font-size: 1.35rem;
    line-height: 1;
}

.product-profile-preview__reset:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.08);
}

.product-profile-preview__reset:focus {
    outline: none;
    border-color: rgba(77, 215, 154, 0.42);
    box-shadow: 0 0 0 4px rgba(77, 215, 154, 0.12);
}

#steam-url-input.is-loading {
    opacity: 0.72;
}

#steam-url-input {
    padding-right: 46px;
}

@keyframes product-profile-loader-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#buy-submit {
    width: 100%;
    min-height: 50px;
    background: linear-gradient(135deg, #24d184 0%, #2bc2ff 100%);
    color: #06111a;
    box-shadow: 0 18px 38px rgba(36, 209, 132, 0.24);
}

#buy-submit:hover:not(:disabled) {
    color: #06111a;
    transform: translateY(-1px);
}

#buy-submit.button-not-available,
#buy-submit:disabled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    box-shadow: none;
    transform: none;
}

.product-offer__guide {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.product-offer__guide summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 800;
    list-style: none;
}

.product-offer__guide summary::-webkit-details-marker {
    display: none;
}

.product-offer__guide summary::after {
    content: "+";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(252, 228, 77, 0.72);
    font-size: 1.1rem;
    font-weight: 900;
    flex-shrink: 0;
}

.product-offer__guide[open] summary::after {
    content: "−";
}

.product-offer__guide-body {
    display: grid;
    gap: 12px;
    padding: 0 18px 18px;
    border-top: 1px solid var(--border);
}

.product-offer__guide-label {
    color: rgba(252, 228, 77, 0.76);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 14px;
}

.product-offer__guide h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.12;
}

.product-offer__guide p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.65;
}

.product-offer__guide-steps {
    display: grid;
    gap: 12px;
}

.product-offer__guide-steps .product-step-card {
    padding: 14px 16px;
    border-radius: 18px;
}

.product-offer__guide-steps .product-step-card h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.product-offer__guide-steps .product-step-card__index {
    width: 36px;
    height: 36px;
    margin-bottom: 10px;
    border-radius: 12px;
}

.product-offer__points {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 16px 18px;
    list-style: none;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
}

.product-offer__points li {
    position: relative;
    padding-left: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.product-offer__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(252, 228, 77, 0.62);
    transform: translateY(-50%);
}

.product-page__features,
.product-page__details {
    margin-top: 24px;
    padding: 24px;
}

.product-page__section-head {
    max-width: 760px;
    margin-bottom: 18px;
}

.product-page__section-head h2 {
    margin: 8px 0 10px;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.product-page__steps-grid,
.product-page__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.product-feature-card,
.product-step-card {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
}

.product-feature-card__label {
    display: inline-block;
    margin-bottom: 10px;
    color: rgba(252, 228, 77, 0.76);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-feature-card h3,
.product-step-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product-step-card__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: inset 0 0 0 1px rgba(252, 228, 77, 0.08);
    color: rgba(252, 228, 77, 0.76);
    font-weight: 900;
}

.product-page__screens-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.product-page__screens-grid img {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

@media (max-width: 1180px) {
    .product-page__hero {
        grid-template-columns: 1fr;
    }

    .product-offer {
        position: static;
    }
}

@media (max-width: 900px) {
    .product-page__features,
    .product-page__meta-grid,
    .product-page__screens-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .product-page {
        padding: 20px 18px 0;
    }

    .product-page__head,
    .product-page__hero-primary,
    .product-page__summary,
    .product-page__cover,
    .product-offer,
    .product-page__features,
    .product-page__details {
        padding: 20px;
    }

    .product-page__head {
        padding: 0 0 20px;
    }

    .product-page__media {
        padding: 0;
    }

    .product-page__cover {
        padding: 0;
    }

    .product-page__media-thumbs-wrap {
        gap: 8px;
    }

    .product-page__media-nav {
        flex-basis: 36px;
        width: 36px;
        height: 36px;
    }

    .product-thumb {
        flex-basis: 120px;
    }

    .product-offer__edition-options,
    .product-offer__region-options {
        gap: 6px;
    }

    .product-offer__native-select {
        padding-right: 42px;
    }
}
