body.page-id-11767 .site-main,
body.single-electronic_screen .site-main {
    max-width: none;
    padding: 0;
}

body.page-id-11767 .page-header,
body.page-id-11767 .entry-header {
    display: none;
}

.es-page {
    --es-red: #e51b23;
    --es-red-dark: #b90f17;
    --es-yellow: #ffc213;
    --es-ink: #202126;
    --es-muted: #6f7279;
    --es-soft: #f4f5f7;
    --es-line: #e3e4e8;
    --es-green: #62c72f;
    --es-brown: #864c2e;
    --es-white: #ffffff;
    width: 100%;
    overflow: clip;
    color: var(--es-ink);
    background: var(--es-white);
    font-family: "Cairo", "Tahoma", sans-serif;
    line-height: 1.75;
}

.es-page,
.es-page *,
.es-page *::before,
.es-page *::after {
    box-sizing: border-box;
}

.es-page img {
    display: block;
    max-width: 100%;
}

.es-page a {
    color: inherit;
    text-decoration: none;
}

.es-page figure,
.es-page h1,
.es-page h2,
.es-page h3,
.es-page p {
    margin: 0;
}

.es-page .es-shell {
    width: min(100% - 40px, 1240px);
    margin-inline: auto;
}

.es-icon {
    width: 1.35em;
    height: 1.35em;
    flex: 0 0 auto;
}

.es-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}

.es-button:hover {
    transform: translateY(-2px);
}

.es-button:focus-visible,
.es-page a:focus-visible,
.es-gallery__thumb:focus-visible {
    outline: 3px solid var(--es-yellow);
    outline-offset: 3px;
}

.es-button--primary {
    color: var(--es-white);
    background: var(--es-red);
    box-shadow: 0 12px 28px rgba(229, 27, 35, .2);
}

.es-button--primary:hover {
    color: var(--es-white);
    background: var(--es-red-dark);
}

.es-button--secondary {
    color: var(--es-ink);
    border-color: var(--es-ink);
    background: var(--es-white);
}

.es-button--secondary:hover {
    color: var(--es-red);
    border-color: var(--es-red);
}

.es-button--accent {
    color: var(--es-ink);
    background: var(--es-yellow);
    box-shadow: 0 12px 28px rgba(255, 194, 19, .28);
}

.es-hero {
    position: relative;
    min-height: 700px;
    display: grid;
    align-items: center;
    padding: 72px 0 82px;
    background:
        radial-gradient(circle at 10% 22%, rgba(255, 194, 19, .14), transparent 24%),
        radial-gradient(circle at 92% 86%, rgba(229, 27, 35, .1), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.es-hero::before {
    content: "";
    position: absolute;
    inset: auto -120px -170px auto;
    width: 420px;
    height: 420px;
    border: 44px solid rgba(229, 27, 35, .045);
    border-radius: 50%;
    pointer-events: none;
}

.es-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
    gap: 56px;
    align-items: center;
    direction: ltr;
}

.es-hero__copy,
.es-hero__visual {
    direction: rtl;
}

.es-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px !important;
    color: var(--es-red);
    font-size: 15px;
    font-weight: 900;
}

.es-eyebrow::before {
    content: "";
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: var(--es-yellow);
}

.es-hero__title {
    display: flex;
    flex-direction: column;
    font-size: clamp(46px, 5.4vw, 78px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -2.8px;
}

.es-hero__title span {
    color: var(--es-ink);
}

.es-hero__title strong {
    margin-top: 13px;
    color: var(--es-red);
    font: inherit;
}

.es-hero__intro {
    margin-top: 27px !important;
    color: #3f4248;
    font-size: clamp(17px, 1.55vw, 22px);
    font-weight: 700;
    line-height: 1.8;
}

.es-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 32px;
}

.es-benefit {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 11px;
    border: 1px solid var(--es-line);
    border-radius: 16px;
    color: var(--es-ink);
    background: rgba(255, 255, 255, .88);
}

.es-benefit span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    border-radius: 50%;
    color: var(--es-red);
    background: rgba(229, 27, 35, .08);
}

.es-benefit strong {
    font-size: 12px;
    line-height: 1.35;
    direction: ltr;
    text-align: left;
}

.es-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.es-actions .es-icon,
.es-screen-card__link .es-icon,
.es-category-card__action .es-icon {
    width: 18px;
    height: 18px;
}

.es-hero__visual {
    position: relative;
    min-height: 530px;
    display: grid;
    place-items: center;
}

.es-hero__visual::before,
.es-hero__visual::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.es-hero__visual::before {
    width: min(34vw, 490px);
    height: min(34vw, 490px);
    border: 36px solid var(--es-red);
    opacity: .97;
}

.es-hero__visual::after {
    right: 7%;
    bottom: 6%;
    width: 145px;
    height: 145px;
    border: 24px solid var(--es-yellow);
}

.es-hero__image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 560px;
    object-fit: contain;
    filter: drop-shadow(0 32px 38px rgba(32, 33, 38, .18));
}

.es-featured {
    padding: 92px 0 110px;
    background: var(--es-soft);
}

.es-featured__card {
    position: relative;
    padding: 0 !important;
    border-radius: 28px;
    background: var(--es-white);
    box-shadow: 0 28px 70px rgba(20, 24, 34, .1);
}

.es-featured__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    direction: ltr;
}

.es-featured__media,
.es-featured__content {
    min-width: 0;
}

.es-featured__media {
    position: relative;
    min-height: 550px;
    display: grid;
    place-items: center;
    padding: 56px;
    overflow: hidden;
    border-radius: 28px 0 0 0;
    background:
        radial-gradient(circle at 45% 45%, rgba(255, 194, 19, .3), transparent 32%),
        linear-gradient(145deg, #eef0f3 0%, #fafafa 65%);
}

.es-featured__media::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    border: 26px solid var(--es-red);
    border-radius: 50%;
    opacity: .95;
}

.es-featured__platform {
    position: absolute;
    z-index: 1;
    left: 50%;
    bottom: 18%;
    width: 58%;
    height: 34px;
    border-radius: 50%;
    background: rgba(32, 33, 38, .13);
    filter: blur(9px);
    transform: translateX(-50%);
}

.es-featured__image {
    position: relative;
    z-index: 2;
    width: min(100%, 410px);
    max-height: 410px;
    object-fit: contain;
    filter: drop-shadow(0 26px 24px rgba(20, 24, 34, .26));
}

.es-featured__content {
    direction: rtl;
    padding: 68px 64px 62px;
}

.es-featured__heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.es-featured__number {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    border-radius: 14px;
    color: var(--es-white);
    background: var(--es-red);
    font-size: 28px;
    font-weight: 900;
}

.es-featured__heading h2 {
    color: var(--es-ink);
    font-size: clamp(28px, 3vw, 43px);
    font-weight: 900;
    line-height: 1.25;
}

.es-featured__heading em {
    color: var(--es-red);
    font-style: normal;
}

.es-featured__english {
    margin-top: 9px !important;
    color: var(--es-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .9px;
    direction: ltr;
    text-align: right;
}

.es-featured__description {
    margin-top: 24px !important;
    color: var(--es-muted);
    font-size: 15px;
    font-weight: 600;
}

.es-tech-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 31px 0 34px;
}

.es-tech-features > div {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 7px;
    border: 1px solid var(--es-line);
    border-radius: 14px;
    text-align: center;
    background: #fbfbfc;
}

.es-tech-features span {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--es-red);
    background: rgba(229, 27, 35, .08);
}

.es-tech-features b {
    color: #3b3d42;
    font-size: 11px;
    line-height: 1.35;
    direction: ltr;
}

.es-stats-panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 0 !important;
    color: var(--es-white);
    background: var(--es-red);
}

.es-stat {
    min-height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 24px 18px;
    border-inline-start: 1px solid rgba(255, 255, 255, .24);
    text-align: center;
}

.es-stat:first-child {
    border-inline-start: 0;
}

.es-stat > span {
    width: 51px;
    height: 51px;
    display: grid;
    place-items: center;
    flex: 0 0 51px;
    border-radius: 50%;
    color: var(--es-red);
    background: var(--es-white);
}

.es-stat strong {
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
}

.es-stat small {
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.es-catalog {
    padding: 100px 0 82px;
    background: var(--es-white);
}

.es-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 37px;
}

.es-section-heading h2 {
    position: relative;
    padding-bottom: 10px;
    font-size: clamp(30px, 3vw, 43px);
    font-weight: 900;
}

.es-section-heading h2::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: var(--es-red);
}

.es-clear-filter {
    color: var(--es-red) !important;
    font-size: 14px;
    font-weight: 800;
}

.es-catalog__track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.es-screen-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--es-line);
    border-radius: 19px;
    background: var(--es-white);
    box-shadow: 0 12px 35px rgba(28, 31, 41, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.es-screen-card:hover {
    transform: translateY(-5px);
    border-color: rgba(229, 27, 35, .35);
    box-shadow: 0 20px 42px rgba(28, 31, 41, .13);
}

.es-screen-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 18px;
    background:
        radial-gradient(circle at 50% 48%, rgba(255, 194, 19, .26), transparent 35%),
        #f3f4f6;
}

.es-screen-card__media::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(229, 27, 35, .08);
    border-radius: 14px;
    pointer-events: none;
}

.es-screen-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .25s ease;
}

.es-screen-card:hover .es-screen-card__image {
    transform: scale(1.035);
}

.es-screen-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 19px 17px 18px;
}

.es-screen-card__title {
    color: var(--es-ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.3;
}

.es-screen-card__specs {
    margin-top: 12px !important;
    color: var(--es-muted);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.7;
    direction: ltr;
    text-align: left;
}

.es-screen-card__price {
    margin-top: 13px !important;
    color: var(--es-red);
    font-size: 16px;
    font-weight: 900;
}

.es-screen-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 17px;
    color: var(--es-red) !important;
    font-size: 13px;
    font-weight: 900;
}

.es-catalog__all {
    width: fit-content;
    margin: 36px auto 0;
}

.es-empty {
    padding: 40px;
    border: 1px dashed #c8cbd1;
    border-radius: 16px;
    color: var(--es-muted);
    text-align: center;
    background: var(--es-soft);
}

.es-categories {
    padding: 20px 0 105px;
    background: var(--es-white);
}

.es-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.es-category-card {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-radius: 24px;
    color: var(--es-white) !important;
    isolation: isolate;
    box-shadow: 0 18px 40px rgba(28, 31, 41, .15);
}

.es-category-card::before,
.es-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}

.es-category-card::before {
    background: linear-gradient(180deg, transparent 20%, rgba(21, 23, 28, .92) 100%);
}

.es-category-card--gold::after {
    background: linear-gradient(160deg, rgba(255, 194, 19, .42), transparent 52%);
}

.es-category-card--green::after {
    background: linear-gradient(160deg, rgba(98, 199, 47, .4), transparent 52%);
}

.es-category-card--brown::after {
    background: linear-gradient(160deg, rgba(134, 76, 46, .42), transparent 52%);
}

.es-category-card__image {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.es-category-card:hover .es-category-card__image {
    transform: scale(1.045);
}

.es-category-card__content {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 30px;
}

.es-category-card__english {
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .55px;
    direction: ltr;
    text-align: left;
}

.es-category-card__content > strong {
    font-size: 23px;
    font-weight: 900;
    line-height: 1.45;
}

.es-category-card__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding-bottom: 3px;
    border-bottom: 2px solid currentColor;
    font-size: 13px;
    font-weight: 900;
}

.es-assurance {
    padding: 86px 0;
    color: var(--es-white);
    background: var(--es-ink);
}

.es-assurance__panel {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 64px;
    align-items: center;
}

.es-assurance__brand {
    padding-inline-end: 44px;
    border-inline-end: 1px solid rgba(255, 255, 255, .18);
}

.es-assurance__logo {
    width: 135px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.es-assurance__brand p {
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
    font-weight: 600;
}

.es-assurance__items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.es-assurance__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.es-assurance__item span {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--es-white);
    background: var(--es-red);
}

.es-assurance__item strong {
    font-size: 14px;
    font-weight: 800;
    line-height: 1.55;
}

/* Single screen */
.es-single-hero {
    padding: 78px 0 36px;
    background:
        radial-gradient(circle at 84% 15%, rgba(229, 27, 35, .09), transparent 25%),
        linear-gradient(180deg, #ffffff 0%, #f7f7f8 100%);
}

.es-single-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--es-red) !important;
    font-size: 14px;
    font-weight: 900;
}

.es-single-hero__back .es-icon {
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
}

.es-single-hero h1 {
    max-width: 900px;
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.16;
}

.es-single-hero__terms {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.es-single-hero__terms a {
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--es-red);
    background: rgba(229, 27, 35, .08);
    font-size: 12px;
    font-weight: 800;
}

.es-single-content {
    padding: 55px 0 96px;
    background: var(--es-white);
}

.es-single-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: 62px;
    align-items: start;
    direction: ltr;
}

.es-gallery,
.es-single-details {
    min-width: 0;
    direction: rtl;
}

.es-gallery__main {
    aspect-ratio: 1.12 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 38px;
    border: 1px solid var(--es-line);
    border-radius: 25px;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 194, 19, .24), transparent 34%),
        var(--es-soft);
}

.es-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 22px rgba(20, 24, 34, .16));
}

.es-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 14px;
    overflow-x: auto;
    padding: 3px;
    scrollbar-width: thin;
}

.es-gallery__thumb {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    flex: 0 0 88px;
    padding: 8px;
    border: 2px solid transparent;
    border-radius: 13px;
    background: var(--es-soft);
    cursor: pointer;
}

.es-gallery__thumb.is-active {
    border-color: var(--es-red);
    background: var(--es-white);
}

.es-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.es-single-details {
    padding-top: 8px;
}

.es-single-details__label {
    color: var(--es-red);
    font-size: 13px;
    font-weight: 900;
}

.es-single-details h2 {
    margin-top: 7px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.35;
}

.es-single-details__body {
    margin-top: 24px;
    color: #555960;
    font-size: 16px;
    font-weight: 600;
}

.es-single-details__body > * + * {
    margin-top: 13px;
}

.es-single-details__body ul,
.es-single-details__body ol {
    padding-inline-start: 22px;
}

.es-single-details__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 28px;
    padding: 19px 21px;
    border-inline-start: 5px solid var(--es-yellow);
    color: var(--es-ink);
    background: var(--es-soft);
}

.es-single-details__price span {
    color: var(--es-muted);
    font-size: 13px;
    font-weight: 700;
}

.es-single-details__price strong {
    color: var(--es-red);
    font-size: 25px;
    font-weight: 900;
}

.es-single-details__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

@media (max-width: 1100px) {
    .es-hero__grid {
        grid-template-columns: minmax(0, .95fr) minmax(400px, 1.05fr);
        gap: 30px;
    }

    .es-hero__title {
        font-size: clamp(42px, 5vw, 61px);
    }

    .es-featured__content {
        padding: 55px 38px 50px;
    }

    .es-tech-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .es-catalog__track {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .es-assurance__panel {
        gap: 36px;
    }
}

@media (max-width: 860px) {
    .es-hero {
        min-height: 0;
        padding: 56px 0 70px;
    }

    .es-hero__grid,
    .es-featured__grid,
    .es-single-content__grid {
        grid-template-columns: 1fr;
    }

    .es-hero__copy {
        order: 2;
        text-align: center;
    }

    .es-eyebrow,
    .es-actions {
        justify-content: center;
    }

    .es-hero__visual {
        min-height: 430px;
        order: 1;
    }

    .es-hero__visual::before {
        width: 370px;
        height: 370px;
    }

    .es-featured__media {
        min-height: 470px;
        border-radius: 28px 28px 0 0;
    }

    .es-stats-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .es-stat:nth-child(odd) {
        border-inline-start: 0;
    }

    .es-stat:nth-child(n+3) {
        border-top: 1px solid rgba(255, 255, 255, .24);
    }

    .es-categories__grid {
        grid-template-columns: 1fr;
    }

    .es-category-card {
        min-height: 390px;
    }

    .es-assurance__panel {
        grid-template-columns: 1fr;
    }

    .es-assurance__brand {
        padding: 0 0 30px;
        border: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .18);
        text-align: center;
    }

    .es-assurance__logo {
        margin-inline: auto;
    }

    .es-single-content__grid {
        gap: 42px;
    }
}

@media (max-width: 640px) {
    .es-page .es-shell {
        width: min(100% - 28px, 1240px);
    }

    .es-button {
        min-height: 48px;
        padding-inline: 19px;
        font-size: 14px;
    }

    .es-hero {
        padding: 32px 0 54px;
    }

    .es-hero__grid {
        gap: 18px;
    }

    .es-hero__visual {
        min-height: 300px;
    }

    .es-hero__visual::before {
        width: 250px;
        height: 250px;
        border-width: 23px;
    }

    .es-hero__visual::after {
        width: 88px;
        height: 88px;
        border-width: 15px;
    }

    .es-hero__title {
        font-size: clamp(38px, 13vw, 52px);
        letter-spacing: -1.8px;
    }

    .es-hero__intro {
        font-size: 16px;
    }

    .es-benefits {
        gap: 7px;
    }

    .es-benefit {
        min-height: 91px;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 8px 4px;
        text-align: center;
    }

    .es-benefit span {
        width: 35px;
        height: 35px;
        flex-basis: 35px;
    }

    .es-benefit strong {
        font-size: 9px;
        text-align: center;
    }

    .es-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .es-featured {
        padding: 58px 0 65px;
    }

    .es-featured__card {
        border-radius: 20px;
    }

    .es-featured__media {
        min-height: 340px;
        padding: 30px;
        border-radius: 20px 20px 0 0;
    }

    .es-featured__media::before {
        width: 235px;
        height: 235px;
        border-width: 20px;
    }

    .es-featured__image {
        max-height: 275px;
    }

    .es-featured__content {
        padding: 36px 22px 38px;
    }

    .es-featured__heading {
        align-items: flex-start;
    }

    .es-featured__number {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        font-size: 23px;
    }

    .es-featured__heading h2 {
        font-size: 27px;
    }

    .es-tech-features {
        gap: 8px;
    }

    .es-stats-panel {
        grid-template-columns: 1fr 1fr;
    }

    .es-stat {
        min-height: 126px;
        flex-direction: column;
        gap: 8px;
        padding: 18px 10px;
    }

    .es-stat > span {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .es-stat strong {
        font-size: 20px;
    }

    .es-catalog {
        padding: 67px 0 58px;
    }

    .es-catalog__track {
        display: flex;
        gap: 14px;
        width: calc(100% + 14px);
        overflow-x: auto;
        padding: 3px 2px 22px 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }

    .es-screen-card {
        flex: 0 0 82vw;
        max-width: 330px;
        scroll-snap-align: start;
    }

    .es-categories {
        padding-bottom: 68px;
    }

    .es-category-card {
        min-height: 350px;
        border-radius: 19px;
    }

    .es-category-card__content {
        padding: 27px 23px;
    }

    .es-assurance {
        padding: 60px 0;
    }

    .es-assurance__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 14px;
    }

    .es-single-hero {
        padding: 48px 0 28px;
    }

    .es-single-content {
        padding: 35px 0 68px;
    }

    .es-gallery__main {
        padding: 20px;
        border-radius: 19px;
    }

    .es-gallery__thumb {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
    }

    .es-single-details__actions {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .es-page *,
    .es-page *::before,
    .es-page *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
/* Reference-alignment refinements: preserves the site's existing header and footer. */
.es-hero__title {
    font-size: clamp(42px, 4.1vw, 62px);
    letter-spacing: -2px;
}

.es-hero__title span {
    color: var(--es-red);
}

.es-hero__title strong {
    color: var(--es-ink);
}

.es-benefits,
.es-actions,
.es-catalog__track,
.es-categories__grid {
    direction: ltr;
}

.es-benefits {
    gap: 0;
}

.es-benefit {
    min-height: 88px;
    justify-content: center;
    padding: 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.es-benefit + .es-benefit {
    border-left: 1px solid rgba(255, 194, 19, .9);
}

.es-benefit span {
    color: #f0b500;
    border: 1px solid rgba(255, 194, 19, .34);
    background: var(--es-white);
}

.es-featured__number {
    color: var(--es-ink);
    background: var(--es-yellow);
}

.es-tech-features span {
    color: #e4a900;
    border: 1px solid rgba(255, 194, 19, .28);
    background: #fffdf5;
}

.es-stats-panel {
    border: 1px solid var(--es-line);
    border-radius: 0 !important;
    color: var(--es-ink);
    background: var(--es-white);
    box-shadow: 0 14px 34px rgba(20, 24, 34, .08);
}

.es-stat {
    border-inline-start-color: rgba(255, 194, 19, .72);
}

.es-stat > span {
    color: #e4a900;
    border: 1px solid rgba(255, 194, 19, .34);
    background: #fffdf5;
}

.es-stat strong {
    color: var(--es-ink);
}

.es-stat small {
    color: var(--es-muted);
}

.es-section-heading {
    position: relative;
    justify-content: center;
    text-align: center;
}

.es-section-heading h2::after {
    right: 50%;
    transform: translateX(50%);
}

.es-clear-filter {
    position: absolute;
    left: 0;
}

.es-screen-card__body {
    align-items: center;
    text-align: center;
}

.es-screen-card__title {
    width: 100%;
    font-size: 20px;
}

.es-screen-card__specs {
    width: 100%;
    text-align: center;
}

.es-screen-card__link {
    width: 100%;
    min-height: 35px;
    justify-content: center;
    margin-top: 16px;
    padding: 6px 12px;
    border: 1px solid var(--es-line);
    border-radius: 999px;
    color: var(--es-ink) !important;
    background: var(--es-white);
}

.es-screen-card:hover .es-screen-card__link {
    color: var(--es-red) !important;
    border-color: rgba(229, 27, 35, .4);
}

.es-category-card {
    min-height: 235px;
    align-items: stretch;
    border: 2px solid var(--es-line);
    border-radius: 18px;
    color: var(--es-ink) !important;
    background: var(--es-white);
    box-shadow: 0 12px 30px rgba(28, 31, 41, .08);
}

.es-category-card::before,
.es-category-card::after {
    display: none;
}

.es-category-card--gold {
    border-color: rgba(255, 194, 19, .78);
}

.es-category-card--green {
    border-color: rgba(98, 199, 47, .78);
}

.es-category-card--brown {
    border-color: rgba(134, 76, 46, .72);
}

.es-category-card__image {
    inset: 0 0 0 auto;
    z-index: 0;
    width: 62%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.es-category-card__content {
    z-index: 1;
    width: 58%;
    min-height: 100%;
    align-items: flex-start;
    justify-content: center;
    padding: 24px;
    color: var(--es-ink);
    background: linear-gradient(90deg, #fff 0%, #fff 73%, rgba(255, 255, 255, .15) 100%);
    direction: ltr;
    text-align: left;
}

.es-category-card__english {
    color: #35373c;
    font-size: 12px;
    line-height: 1.45;
}

.es-category-card__content > strong {
    font-size: 17px;
    line-height: 1.55;
}

.es-category-card__action {
    min-height: 35px;
    padding: 7px 14px;
    border: 0;
    border-radius: 9px;
    color: var(--es-ink);
    background: var(--es-yellow);
}

.es-category-card--green .es-category-card__action {
    color: var(--es-white);
    background: var(--es-green);
}

.es-category-card--brown .es-category-card__action {
    color: var(--es-white);
    background: var(--es-brown);
}

.es-assurance {
    padding: 28px 0 82px;
    color: var(--es-ink);
    background: var(--es-white);
}

.es-assurance__panel {
    gap: 38px;
    padding: 28px 34px;
    border: 1px solid var(--es-line);
    border-radius: 20px;
    background: var(--es-white);
    box-shadow: 0 14px 36px rgba(28, 31, 41, .07);
}

.es-assurance__brand {
    border-inline-end-color: var(--es-line);
}

.es-assurance__logo {
    width: 126px;
    filter: none;
}

.es-assurance__brand p {
    color: #555960;
}

.es-assurance__item span {
    color: var(--es-ink);
    border: 2px solid var(--es-yellow);
    background: #fffdf5;
}

.es-assurance__item strong {
    color: var(--es-ink);
}

@media (min-width: 861px) {
    .es-hero__title span,
    .es-hero__title strong {
        white-space: nowrap;
    }
}

@media (max-width: 860px) {
    .es-stat:nth-child(n+3) {
        border-top-color: var(--es-line);
    }

    .es-category-card {
        min-height: 270px;
    }

    .es-assurance__brand {
        border-bottom-color: var(--es-line);
    }
}

@media (max-width: 640px) {
    .es-hero__title {
        letter-spacing: -1.5px;
    }

    .es-benefit {
        padding-inline: 5px;
    }

    .es-clear-filter {
        position: static;
    }

    .es-section-heading {
        flex-direction: column;
    }

    .es-category-card__content {
        width: 62%;
        padding: 20px;
    }

    .es-category-card__content > strong {
        font-size: 15px;
    }

    .es-category-card__english {
        font-size: 10px;
    }

    .es-assurance {
        padding-bottom: 60px;
    }

    .es-assurance__panel {
        padding: 27px 22px;
    }
}
.es-single-details__body > p {
    unicode-bidi: plaintext;
}
