/* The CE Shop showcase — utilities and page styles (section styles added later) */

:root {
    --ceshop-primary: #00A4BD;
    --ceshop-secondary: #495057;
    --ceshop-ring: #949494;
    --ceshop-nav-border: #d0d0d0;
}

.ip-banner {
    display: none;
}

.max-container {
    padding: 0;
    max-width: 100%;
}

/* Reviews AJAX loading */
.tech-reviews-loading {
    text-align: center;
    padding: 20px;
}

.tech-reviews-loading-text {
    color: var(--font-color-default, #363d49);
}

/* Image container */
.img-container {
    position: relative;
    display: block;
}

.img-container canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--secondary, #06bda6);
}

.img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    object-fit: cover;
}

.img-container.no-bg canvas {
    background-color: transparent;
}

.img-container.no-bg img {
    object-fit: contain;
}

/* Background image */
.bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-img.fixed {
    background-attachment: scroll;
}

.mobile .bg-img.fixed,
.safari-true .bg-img.fixed {
    background-attachment: scroll !important;
}

/* Section title */
.section-title {
    color: var(--font-color-title, #050505);
    font-size: var(--font-size-title, clamp(35px, 3.25vw, 52px));
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    font-family: var(--font-family-title, 'Outfit', sans-serif);
}

.section-title.wht {
    color: var(--font-color-light, #fff);
}

.title-accent {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.title-accent.wht {
    filter: brightness(0) invert(1);
}

/* GLOBAL BUTTON — values mirror theme; colors from CE Shop palette */
.global-btn {
    display: block;
    background-color: var(--ceshop-secondary);
    border-radius: 18px;
    border-bottom-right-radius: 0;
    box-shadow: none;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 23px;
    color: var(--font-color-light, #fff);
    text-transform: uppercase;
    text-align: center;
    width: 165px;
}

.global-btn:hover,
.global-btn:focus {
    background-color: var(--ceshop-primary);
    color: var(--font-color-light, #fff);
}

.global-btn.secondary {
    background-color: rgba(0, 164, 189, 0.1);
}

.global-btn.secondary:hover,
.global-btn.secondary:focus {
    background-color: var(--ceshop-secondary);
    color: var(--font-color-light, #fff);
}

.global-btn.outline {
    background-color: transparent;
    outline: 1px solid var(--ceshop-secondary);
    color: var(--font-color-title, #050505);
    box-shadow: none;
}

.global-btn.outline:hover,
.global-btn.outline:focus {
    background-color: var(--ceshop-secondary);
    color: var(--font-color-light, #fff);
    outline: none;
    box-shadow: none;
}

/* Popup */
.aiosp-content .aiosp-close {
    text-align: center;
    padding-right: 0;
}

/* Header */
.header .header__inner {
    background-color: var(--primary, #0f3732);
}

.header--fixed .header__inner {
    background-color: transparent;
}

.header__navigation #nav>li:nth-last-child(-n + 2)>a {
    background-color: var(--font-color-light, #fff);
    color: var(--font-color-title, #050505);
    box-shadow: none;
}

.header__navigation #nav>li:nth-last-child(-n + 2)>a:hover {
    background-color: var(--ceshop-secondary);
    color: var(--font-color-light, #fff);
}

@media screen and (min-width: 1280px) {
    .bg-img.fixed {
        background-attachment: scroll;
    }
}

/* BANNER — Agent Image layout; CE Shop palette (--ceshop-primary / --ceshop-secondary) */
.ceshopBanner {
    position: relative;
    padding: 160px 15px 60px;
    background-color: var(--font-color-light, #fff);
}

.ceshopBanner__inner {
    width: 100%;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: visible;
}

.ceshopBanner__left {
    width: 100%;
}

.ceshopBanner__logo {
    width: 100%;
    margin-bottom: 30px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
}

.ceshopBanner__logo .img-container {
    width: 100%;
}

.ceshopBanner__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
}

.ceshopBanner__badge {
    flex-shrink: 0;
}

.ceshopBanner__badge .img-container {
    display: inline-block;
}

.ceshopBanner__rating {
    display: flex;
    align-items: center;
    gap: 3px;
}

.ceshopBanner__rating i {
    color: #d4d4d4;
    font-size: 21px;
}

.ceshopBanner__rating i.filled {
    color: #f28f3d;
}

.ceshopBanner__rating .rating-text,
.ceshopBanner__meta .banner-category,
.ceshopBanner__meta .banner-subcategory {
    color: var(--font-color-title, #050505);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 500;
    white-space: nowrap;
}

.ceshopBanner__rating .rating-text {
    margin-left: 15px;
}

.ceshopBanner__meta .dot {
    display: none;
    width: 3px;
    height: 3px;
    min-width: 3px;
    background-color: var(--ceshop-secondary);
    border-radius: 50%;
}

.ceshopBanner__text {
    font-size: 15px;
    line-height: 1.253;
    letter-spacing: 0.04em;
    font-weight: 300;
    text-align: center;
    color: var(--font-color-title, #050505);
}

.ceshopBanner__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    width: 100%;
}

.ceshopBanner__cta .global-btn {
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 15px;
    width: 195px;
    background-color: var(--ceshop-primary);
    box-shadow: none;
    outline: none;
    color: var(--font-color-light, #fff);
}

.ceshopBanner__cta .global-btn:hover,
.ceshopBanner__cta .global-btn:focus {
    background-color: var(--ceshop-secondary);
    color: var(--font-color-light, #fff);
    outline: none;
    box-shadow: none;
}

.ceshopBanner__visual {
    --ceshop-banner-ring-border: 2px;
    --ceshop-banner-ring-gap: 16px;
    --ceshop-thumb-max: 608px;
    --ceshop-orbit-max: 555px;
    --ceshop-thumb-width: min(var(--ceshop-thumb-max), 100%);
    --ceshop-orbit-diameter: min(var(--ceshop-orbit-max), calc(var(--ceshop-thumb-width) * var(--ceshop-orbit-max) / var(--ceshop-thumb-max)));
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    justify-items: center;
    align-items: center;
    width: var(--ceshop-thumb-width);
    margin-inline: auto;
}

.ceshopBanner__rings {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    z-index: 1;
    width: var(--ceshop-orbit-diameter);
    aspect-ratio: 1;
    height: auto;
    pointer-events: none;
}

.ceshopBanner__media {
    position: relative;
    grid-column: 1;
    grid-row: 1;
    z-index: 3;
    width: var(--ceshop-thumb-width);
    pointer-events: auto;
}

.ceshopBanner__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: var(--ceshop-banner-ring-border) solid var(--ceshop-ring, #949494);
    border-radius: 50%;
    box-sizing: border-box;
}

.ceshopBanner__ring--outer {
    width: 100%;
    height: 100%;
}

.ceshopBanner__ring--inner {
    width: calc(100% - (var(--ceshop-banner-ring-gap) * 2) - (var(--ceshop-banner-ring-border) * 4));
    height: calc(100% - (var(--ceshop-banner-ring-gap) * 2) - (var(--ceshop-banner-ring-border) * 4));
}

.ceshopBanner__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ceshopBanner__orbit--outer {
    z-index: 1;
    width: 100%;
    height: 100%;
    animation: ceshopBanner-orbit-outer 60s linear infinite;
}

.ceshopBanner__orbit--inner {
    z-index: 2;
    width: calc(100% - (var(--ceshop-banner-ring-gap) * 2) - (var(--ceshop-banner-ring-border) * 4));
    height: calc(100% - (var(--ceshop-banner-ring-gap) * 2) - (var(--ceshop-banner-ring-border) * 4));
    animation: ceshopBanner-orbit-inner 70s linear infinite;
}

@keyframes ceshopBanner-orbit-outer {
    from {
        transform: translate(-50%, -50%) rotate(286deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(646deg);
    }
}

@keyframes ceshopBanner-orbit-inner {
    from {
        transform: translate(-50%, -50%) rotate(274deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(634deg);
    }
}

.ceshopBanner__dot {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.ceshopBanner__dot--gray,
.ceshopBanner__dot--blue {
    width: 14px;
    height: 14px;
}

.ceshopBanner__dot--gray {
    background-color: var(--ceshop-secondary);
}

.ceshopBanner__dot--blue {
    background-color: var(--ceshop-primary);
}

.ceshopBanner__media .poster,
.ceshopBanner__media .poster>a {
    position: relative;
    display: block;
    width: 100%;
}

.ceshopBanner__media .img-container {
    border-radius: 33px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.ceshopBanner__media .poster .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--ceshop-primary);
    width: 50px;
    height: 50px;
    border: 3px solid var(--ceshop-primary);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
    cursor: pointer;
    background-color: transparent;
}

.ceshopBanner__media .poster .play-btn i {
    position: relative;
    left: 3px;
    font-size: 18px;
}

.ceshopBanner__media .poster:hover .play-btn {
    background-color: var(--ceshop-primary);
    border-color: var(--ceshop-primary);
    color: var(--font-color-light, #fff);
}

/* NAVIGATION — RealScout / Agent Image layout; CE Shop palette */
.ceshopNavigation {
    position: relative;
    padding: 40px 15px;
}

.ceshopNavigation__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.ceshopNavigation__buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    border: 1px solid var(--ceshop-nav-border);
}

.ceshopNavigation__button {
    display: block;
    padding: 18px 20px;
    width: 100%;
    background-color: var(--font-color-light, #fff);
    color: var(--font-color-title, #050505);
    font-size: 17px;
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    border: none;
    border-bottom: 1px solid var(--ceshop-nav-border);
    cursor: pointer;
    transition: var(--default-transition, 0.3s ease);
}

.ceshopNavigation__button:last-child {
    border-bottom: none;
}

.ceshopNavigation__button:hover,
.ceshopNavigation__button.active {
    background-color: var(--ceshop-primary);
    color: var(--font-color-light, #fff);
}

/* Quick Take — structure matches Local Logic .llQuickTake */
.ceshopQuickTake {
    position: relative;
    padding: 60px 15px;
}

.ceshopQuickTake .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
    color: var(--font-color-title, #050505);
}

.ceshopQuickTake__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.ceshopQuickTake__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.ceshopQuickTake__left {
    width: 100%;
    max-width: 350px;
}

.ceshopQuickTake__left .img-container {
    width: 100%;
    border-radius: 33px;
    overflow: hidden;
}

.ceshopQuickTake__right {
    width: 100%;
}

.ceshopQuickTake__points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ceshopQuickTake__point {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    padding: 20px 15px;
    background-color: var(--font-color-light, #fff);
    border-radius: 33px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ceshopQuickTake__point--icon {
    flex-shrink: 0;
    width: 88px;
}

.ceshopQuickTake__point--content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.ceshopQuickTake__point--title {
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: clamp(20px, 1.5625vw, 25px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--font-color-title, #050505);
    text-align: center;
    width: 100%;
}

.ceshopQuickTake__point--title br {
    display: none;
}

.ceshopQuickTake__point--text {
    font-size: 14px;
    line-height: 1.857;
    letter-spacing: 0.02em;
    color: var(--font-color-title, #050505);
    text-align: center;
    font-weight: 300;
    width: 100%;
}

/* About (product description) — Local Logic layout; image only */
.ceshopAbout {
    position: relative;
    padding: 60px 15px;
    background-color: var(--ceshop-secondary);
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 33px;
}

.ceshopAbout .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
}

.ceshopAbout__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.ceshopAbout__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 70px;
}

.ceshopAbout__text {
    width: 100%;
    font-size: 14px;
    line-height: 1.857;
    letter-spacing: 0.04em;
    color: var(--font-color-light, #fff);
    text-align: center;
    font-weight: 300;
}

.ceshopAbout__text p {
    margin-bottom: 25px;
}

.ceshopAbout__text p:last-child {
    margin-bottom: 0;
}

.ceshopAbout__media {
    position: relative;
    width: 100%;
}

.ceshopAbout__media .img-container {
    border-radius: 33px;
    overflow: hidden;
}

/* Offerings — Local Logic Key Features layout */
.ceshopOfferings {
    position: relative;
    padding: 60px 15px;
}

.ceshopOfferings__inner {
    max-width: 400px;
    width: 100%;
    margin: auto;
}

.ceshopOfferings .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
    color: var(--font-color-title, #050505);
}

.ceshopOfferings__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 32px;
}

.ceshopOfferings__item {
    width: 100%;
}

.ceshopOfferings__photo {
    width: 100%;
    margin-bottom: 20px;
}

.ceshopOfferings__item-title {
    margin: 0 0 10px;
    color: var(--font-color-title, #050505);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 600;
    font-size: clamp(18px, 1.25vw, 20px);
    line-height: 1.2;
    text-align: center;
}

.ceshopOfferings__item-text {
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.857;
    color: var(--font-color-title, #050505);
    text-align: center;
}

/* Market */
.ceshopMarket {
    position: relative;
    padding: 60px 15px;
}

.ceshopMarket__inner {
    max-width: 600px;
    width: 100%;
    margin: auto;
}

.ceshopMarket .section-title {
    font-size: clamp(35px, 3.0625vw, 49px);
    color: var(--font-color-title, #050505);
}

.ceshopMarket__text {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.857;
    letter-spacing: 0.04em;
    color: var(--font-color-title, #050505);
    text-align: center;
    font-weight: 300;
}

.ceshopMarket__text p {
    margin-bottom: 25px;
}

.ceshopMarket__text p:last-child {
    margin-bottom: 0;
}

.ceshopMarket__map-wrap {
    --ceshop-market-map-width: 1150;
    --ceshop-market-design-width: 1600;
    width: 100%;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 0;
    box-sizing: border-box;
    aspect-ratio: 1029 / 601;
}

.ceshopMarket__map {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: block;
}

.ceshopMarket__map a path,
.ceshopMarket__map a rect,
.ceshopMarket__map a polygon {
    fill: var(--ceshop-primary, #00a4bd);
    stroke: var(--font-color-light, #fff);
    stroke-width: 1.25;
    transition: fill 0.2s ease;
    cursor: pointer;
}

.ceshopMarket__map:has(a:hover) a:not(:hover) path,
.ceshopMarket__map:has(a:hover) a:not(:hover) rect,
.ceshopMarket__map:has(a:hover) a:not(:hover) polygon {
    fill: #9fcfd9;
}

.ceshopMarket__map a:hover path,
.ceshopMarket__map a:hover rect,
.ceshopMarket__map a:hover polygon {
    fill: var(--ceshop-primary, #00a4bd);
}

.ceshopMarket__map text,
.ceshopMarket__map tspan {
    fill: var(--font-color-light, #fff);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    pointer-events: none;
}

.ceshopMarket__map>path[fill="none"] {
    fill: none;
    stroke: #b9b9b9;
}

/* Expertise — Shilo shilo-capabilities layout */
.ceshopExpertise {
    position: relative;
    width: 100%;
    padding: 60px 15px;
    background-color: var(--ceshop-secondary, #495057);
    border-bottom-left-radius: 33px;
    border-bottom-right-radius: 33px;
    overflow: hidden;
}

.ceshopExpertise__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.ceshopExpertise__columns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ceshopExpertise__column {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
}

.ceshopExpertise__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
}

.ceshopExpertise__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.ceshopExpertise__title {
    min-width: 0;
    margin: 0;
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 600;
    font-size: clamp(18px, 1.5625vw, 25px);
    line-height: 1.2;
    color: var(--font-color-light, #fff);
    text-align: center;
}

.ceshopExpertise__description {
    margin: 1.5rem 0 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.87;
    letter-spacing: 0.5px;
    color: var(--font-color-light, #fff);
    text-align: center;
}

/* Reviews */
.ceshopReviews {
    position: relative;
    padding: 60px 15px;
    background-color: var(--font-color-light, #fff);
}

.ceshopReviews__inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.ceshopReviews__layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
}

/* Legacy reviews — Trustpilot branding image column */
.ceshopReviews__trustpilot {
    width: 100%;
    max-width: 356px;
}

.ceshopReviews__trustpilot-media {
    border-radius: 31px;
    overflow: hidden;
    box-shadow: 1px 3px 27.7px 7px rgba(0, 0, 0, 0.14);
}

.ceshopReviews__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    min-width: 0;
}

/* Legacy ACF reviews carousel (inactive until markup is uncommented in single.php) */
.ceshopReviews__slides {
    width: 100%;
    min-width: 0;
}

.ceshopReviews__slides .tech-reviews-loading {
    text-align: center;
}

.ceshopReviews__slides .tech-reviews-loading-text {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.87;
    color: var(--font-color-title, #050505);
}

.ceshopReviews__slides .placeholder-review,
.ceshopReviews__placeholder {
    margin: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.87;
    letter-spacing: 0.04em;
    color: var(--font-color-title, #050505);
    text-align: center;
}

.ceshopReviews__slides.slick-initialized .slick-list {
    overflow: hidden;
}

.ceshopReviews__slides.slick-initialized .slick-track {
    display: flex;
    align-items: flex-start;
}

.ceshopReviews__slides.slick-initialized .slick-slide {
    height: auto;
    align-self: flex-start;
}

.ceshopReviews__slides.slick-initialized .slick-slide>div {
    width: 100%;
}

.ceshopReviews__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.ceshopReviews__rating {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: var(--font-color-title, #050505);
    margin-bottom: 30px;
}

.ceshopReviews__text {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.87;
    letter-spacing: 0.04em;
    color: var(--font-color-title, #050505);
    margin-bottom: 25px;
}

.ceshopReviews__name {
    margin: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: var(--font-color-title, #050505);
}

.ceshopReviews__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    border: none;
    list-style: none;
}

.ceshopReviews__dots[hidden] {
    display: none;
}

.ceshopReviews__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background-color: #d9d9d9;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ceshopReviews__dot.is-active {
    background-color: #5d5d5d;
}

.ceshopReviews__dot:focus-visible {
    outline: 2px solid var(--ceshop-primary, #00a4bd);
    outline-offset: 2px;
}

/* Summary (mirrors Local Logic .llSummary; CE Shop palette) */
.ceshopSummary {
    position: relative;
    padding: 60px 15px;
}

.ceshopSummary__inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.ceshopSummary__title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: fit-content;
    max-width: 290px;
    margin: auto;
}

.ceshopSummary__logo {
    flex-shrink: 0;
}

.ceshopSummary__logo img {
    width: 42px;
    height: 44px;
    display: block;
}

.ceshopSummary__title {
    font-size: clamp(35px, 3.0625vw, 49px);
    line-height: 1.2;
}

.ceshopSummary .section-title {
    text-align: center;
    margin: 0;
    width: 62%;
    font-size: clamp(35px, 3.0625vw, 49px);
}

.ceshopSummary__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 55px;
}

.ceshopSummary__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ceshopSummary__left-logo {
    margin-bottom: 25px;
    max-width: 290px;
    margin-left: auto;
    margin-right: auto;
}

.ceshopSummary__rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 25px;
}

.ceshopSummary__rating i {
    color: #d4d4d4;
    font-size: 21px;
}

.ceshopSummary__rating i.filled {
    color: #f28f3d;
}

.ceshopSummary__rating .rating-text {
    margin-left: 15px;
    color: var(--font-color-title, #050505);
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-size: 22px;
    font-weight: 500;
    white-space: nowrap;
}

.ceshopSummary__buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.ceshopSummary__buttons .global-btn {
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 12px 15px;
    width: 100%;
    max-width: 210px;
    background-color: var(--ceshop-primary, #00a4bd);
    color: var(--font-color-light, #fff);
    box-shadow: none;
}

.ceshopSummary__buttons .global-btn.ceshopSummary__btn-1:hover,
.ceshopSummary__buttons .global-btn.ceshopSummary__btn-1:focus,
.ceshopSummary__buttons .global-btn.ceshopSummary__btn-2:hover,
.ceshopSummary__buttons .global-btn.ceshopSummary__btn-2:focus {
    background-color: var(--ceshop-secondary, #495057);
    color: var(--font-color-light, #fff);
}

.ceshopSummary__right {
    width: 100%;
}

.ceshopSummary__right-title {
    font-family: var(--font-family-title, 'Outfit', sans-serif);
    font-weight: 500;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.2;
    color: var(--font-color-title, #050505);
    margin: 0 0 8px;
    text-align: center;
}

.ceshopSummary__right-text {
    font-size: 14px;
    line-height: 1.87;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-align: center;
    color: var(--font-color-title, #050505);
    font-weight: 300;
}

.ceshopSummary__right-text p {
    margin-bottom: 15px;
}

.ceshopSummary__right-text p:last-child {
    margin-bottom: 0;
}

/* Empty section targets for in-page nav (content added later) */
.ceshop-nav-placeholder {
    min-height: 1px;
}

@media screen and (min-width: 1024px) {
    .ceshopBanner {
        padding: 145px 15px 60px;
    }

    .ceshopBanner__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        max-width: 1920px;
        width: 95%;
        gap: 30px;
    }

    .ceshopBanner__logo {
        margin-left: 0;
        max-width: 397px;
    }

    .ceshopBanner__meta {
        flex-direction: row;
        align-items: center;
    }

    .ceshopBanner__meta .dot {
        display: block;
    }

    .ceshopBanner__left {
        width: 41%;
        min-width: 480px;
    }

    .ceshopBanner__text {
        text-align: left;
        padding-right: 5px;
    }

    .ceshopBanner__cta {
        flex-direction: row;
        width: auto;
    }

    .ceshopBanner__cta .global-btn.banner-cta-2 {
        width: 175px;
    }

    .ceshopBanner__visual {
        --ceshop-thumb-max: 420px;
        --ceshop-orbit-max: 383px;
        --ceshop-banner-ring-gap: 18px;
        flex: 0 1 46%;
        width: 100%;
        max-width: 46%;
        min-width: 0;
        margin-top: 0;
        margin-inline: auto;
    }

    .ceshopNavigation__inner {
        max-width: 1920px;
        width: 95%;
    }

    .ceshopNavigation__buttons {
        flex-direction: row;
    }

    .ceshopNavigation__button {
        flex: 1;
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
        border-bottom: none;
        border-right: 1px solid var(--ceshop-nav-border);
    }

    .ceshopNavigation__button:last-child {
        border-right: none;
    }

    .ceshopQuickTake {
        padding: 10px 15px 85px;
    }

    .ceshopQuickTake .section-title {
        padding-left: 2%;
    }

    .ceshopQuickTake__inner {
        max-width: 1920px;
        width: 95%;
    }

    .ceshopQuickTake__content {
        flex-direction: row;
        align-items: center;
        margin-top: 0;
        gap: 0;
    }

    .ceshopQuickTake__left {
        min-width: 350px;
        width: 28%;
        max-width: 100%;
        padding-top: 15px;
    }

    .ceshopQuickTake__right {
        width: 82%;
        margin-left: -65px;
        z-index: 1;
    }

    .ceshopQuickTake__point {
        flex-direction: row;
        justify-content: flex-start;
        gap: 25px;
        padding: 30px;
    }

    .ceshopQuickTake__point--content {
        flex-direction: row;
        flex: 1;
        gap: 20px;
    }

    .ceshopQuickTake__point--title {
        text-align: left;
        width: 16%;
    }

    .ceshopQuickTake__point--text {
        text-align: left;
        width: 75%;
    }

    .ceshopAbout {
        padding: 80px 15px 135px;
    }

    .ceshopAbout__inner {
        max-width: 1920px;
        width: 95%;
    }

    .ceshopAbout__content {
        flex-direction: row;
        justify-content: space-between;
        gap: 55px;
    }

    .ceshopAbout__text {
        width: 50%;
        text-align: left;
    }

    .ceshopAbout__content .ceshopAbout__text:only-child {
        width: 100%;
        text-align: center;
    }

    .ceshopAbout__media {
        width: 42%;
    }

    .ceshopOfferings {
        padding: 120px 15px 85px;
    }

    .ceshopOfferings__inner {
        max-width: 1920px;
        width: 95%;
    }

    .ceshopOfferings__list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        margin-top: 60px;
    }

    .ceshopOfferings__item {
        min-width: 0;
    }

    .ceshopOfferings__item-title,
    .ceshopOfferings__item-text {
        text-align: left;
    }

    .ceshopMarket {
        padding: 60px 15px 55px;
    }

    .ceshopMarket__inner {
        max-width: 1920px;
        width: 95%;
    }

    .ceshopMarket__text {
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }

    .ceshopMarket__map-wrap {
        width: calc(var(--ceshop-market-map-width) / var(--ceshop-market-design-width) * 100vw);
        max-width: 100%;
        margin-top: 35px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 7%;
    }

    .ceshopExpertise {
        padding: 70px 15px 100px;
    }

    .ceshopExpertise__inner {
        max-width: 1920px;
        width: 95%;
        gap: 2.5rem;
    }

    .ceshopExpertise__description {
        margin-top: 20px;
    }

    .ceshopExpertise__columns {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: start;
        gap: 30px 50px;
        width: 100%;
    }

    .ceshopExpertise__column {
        max-width: none;
        align-items: flex-start;
    }

    .ceshopExpertise__header {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
    }

    .ceshopExpertise__title {
        flex: 1 1 auto;
    }

    .ceshopExpertise__title,
    .ceshopExpertise__description {
        text-align: left;
    }

    .ceshopReviews {
        padding: 120px 15px 25px;
    }

    .ceshopReviews__inner {
        max-width: 1920px;
        width: 95%;
    }

    .ceshopReviews__layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
    }

    .ceshopReviews__trustpilot {
        width: 29%;
        max-width: none;
    }

    .ceshopReviews__panel {
        width: 73.73%;
        align-items: flex-start;
        padding-top: 4%;
    }

    .ceshopReviews__content {
        align-items: flex-start;
        text-align: left;
    }

    .ceshopReviews__dots {
        justify-content: flex-start;
    }

    /* Summary */
    .ceshopSummary .section-title {
        width: auto;
    }

    .ceshopSummary__title-wrapper {
        width: auto;
        max-width: 100%;
        margin: 0;
    }

    .ceshopSummary {
        padding: 60px 15px 75px;
    }

    .ceshopSummary__inner {
        width: 95%;
        max-width: 1920px;
    }

    .ceshopSummary__content {
        flex-direction: row;
        justify-content: space-between;
        gap: 30px;
        align-items: flex-start;
    }

    .ceshopSummary__left {
        width: 35%;
        min-width: 410px;
        align-items: flex-start;
        text-align: left;
    }

    .ceshopSummary__left-logo {
        margin-left: 0;
        margin-right: 0;
        max-width: 415px;
    }

    .ceshopSummary__rating {
        justify-content: flex-start;
    }

    .ceshopSummary__buttons {
        align-items: flex-start;
        flex-direction: row;
        width: auto;
    }

    .ceshopSummary__buttons .global-btn.ceshopSummary__btn-1 {
        width: 200px;
        max-width: none;
    }

    .ceshopSummary__buttons .global-btn.ceshopSummary__btn-2 {
        width: 175px;
        max-width: none;
    }

    .ceshopSummary__right {
        width: 60%;
    }

    .ceshopSummary__right-title {
        text-align: left;
    }

    .ceshopSummary__right-text {
        text-align: left;
    }

}


@media screen and (min-width: 1280px) {
    .ceshopBanner__inner {
        gap: 50px;
        width: 89.5vw;
    }

    .ceshopBanner__left {
        padding-top: 5.5%;
    }

    .ceshopBanner__visual {
        --ceshop-thumb-max: 608px;
        --ceshop-orbit-max: 555px;
        --ceshop-banner-ring-gap: 24px;
        flex: 0 0 55.5%;
        max-width: 100%;
        width: min(var(--ceshop-thumb-max), 100%);
        padding-top: 30px;
        padding-right: 25px;
    }

    .ceshopNavigation__inner {
        width: 88.5vw;
    }

    .ceshopQuickTake__inner {
        width: 89vw;
    }

    .ceshopQuickTake__content {
        margin-top: -45px;
    }

    .ceshopQuickTake__point--title br {
        display: block;
    }

    .ceshopQuickTake__point--content {
        gap: 75px;
    }

    .ceshopAbout__inner {
        width: 87.5vw;
    }

    .ceshopAbout__text {
        padding-left: 2%;
        padding-top: 0;
    }

    .ceshopOfferings__inner {
        width: 88vw;
    }

    .ceshopOfferings__list {
        gap: 12px;
    }

    .ceshopOfferings__item-title,
    .ceshopOfferings__item-text {
        padding-left: 10px;
    }

    .ceshopMarket__inner {
        width: 88vw;
    }

    .ceshopExpertise__inner {
        width: 91vw;
        gap: 70px;
    }

    .ceshopExpertise__columns {
        gap: 50px;
    }

    .ceshopReviews__inner {
        width: 85vw;
    }

    .ceshopReviews__layout {
        gap: 115px;
    }

    .ceshopReviews__rating,
    .ceshopReviews__name {
        padding-left: 5px;
    }

    .ceshopReviews__dots {
        padding-left: 8px;
    }

    /* Summary */
    .ceshopSummary__inner {
        width: 82vw;
    }

    .ceshopSummary__content {
        gap: 60px;
    }

    .ceshopSummary__left {
        padding-left: 3.5%;
    }

    .ceshopSummary__right {
        padding-top: 20px;
    }
}