.woocommerce-breadcrumb {
    font-size: .92em;
    margin: 0 0 1em;
}
.woocommerce-breadcrumb a {
    color: #767676;
}

.woocommerce div.product div.summary {
    display: none;
}

.product_title {
    font-size: 34px;
}

.ce-handset-hero-band {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 14px;
    background: #3a7d44;
}
.ce-handset-hero-band__inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 880px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 30px;
    padding-left: 30px;
}
body .ce-handset-hero-band .ce-handset-hero-band__inner {
    max-width: 880px;
}
.ce-handset-hero {
    padding: 20px 0 22px;
    color: #fff;
}
.ce-handset-hero__heading {
    width: 100%;
    text-align: center;
}
.ce-handset-hero .product_title {
    margin: 0;
    color: #fff;
    line-height: 1.15;
}
.ce-handset-hero__body {
    display: grid;
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    margin-top: 16px;
}
.ce-handset-hero__visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
}
.ce-handset-hero__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 210px;
}
.ce-handset-hero__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}
.ce-handset-hero__badges > :only-child {
    margin-left: auto;
}
.ce-handset-hero__fiveg-badge {
    display: grid;
    box-sizing: border-box;
    width: 43.2px;
    height: 43.2px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #69b578;
    box-shadow: 0 3px 10px rgba(34, 34, 34, .2);
    color: #fff;
    place-items: center;
}
.ce-handset-hero__fiveg-badge span {
    display: flex;
    align-items: center;
    font-size: 12.6px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.02em;
}
.ce-handset-carousel {
    width: 100%;
    text-align: center;
}
.ce-handset-carousel .ce-handset-hero__image {
    height: 240px;
    min-height: 240px;
}
.ce-handset-carousel__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.ce-handset-carousel .ce-handset-hero__phone {
    width: 100%;
    height: 100%;
    max-height: 100%;
}
.ce-handset-carousel__slide[hidden] {
    display: none;
}
.ce-handset-carousel__slide.is-active {
    animation: ce-handset-slide-in .3s ease both;
}
@keyframes ce-handset-slide-in {
    from {
        opacity: 0;
        transform: translateX(8px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.ce-handset-carousel__button {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
    color: #333;
    transform: translateY(-50%);
    cursor: pointer;
}
.ce-handset-carousel__button::before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
}
.ce-handset-carousel__button--previous::before {
    transform: translateX(2px) rotate(-135deg);
}
.ce-handset-carousel__button--next::before {
    transform: translateX(-2px) rotate(45deg);
}
.ce-handset-carousel__button:hover,
.ce-handset-carousel__button:focus {
    background: #fff;
    color: #000;
}
.ce-handset-carousel__button--previous {
    left: 0;
}
.ce-handset-carousel__button--next {
    right: 0;
}
.ce-handset-carousel__thumbnails {
    display: flex;
    gap: 12px;
    justify-content: safe center;
    margin-top: 14px;
    padding: 6px 34px 9px;
    overflow-x: hidden;
    scroll-padding-inline: 34px;
    scrollbar-width: none;
}
.ce-handset-carousel__thumbnails.is-overflowing {
    justify-content: flex-start;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.ce-handset-carousel .ce-handset-carousel__thumbnail {
    display: grid;
    box-sizing: border-box;
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    padding: 8px;
    overflow: hidden;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    background: #fff;
    box-shadow: none;
    cursor: pointer;
    line-height: 0;
    place-items: center;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.ce-handset-carousel .ce-handset-carousel__thumbnail img {
    display: block;
    box-sizing: border-box;
    width: 46px !important;
    height: 46px !important;
    min-width: 0;
    min-height: 0;
    max-width: 46px !important;
    max-height: 46px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain;
    object-position: center;
}
.ce-handset-carousel__thumbnail:hover {
    border-color: #69b578;
}
.ce-handset-carousel__thumbnail.is-active {
    padding: 8px;
    border: 1px solid #2f6b39;
    background: #eef7f0;
    box-shadow: 0 0 0 5px #245b2e, 0 4px 10px rgba(34, 84, 43, .28);
}
.ce-handset-carousel__thumbnail:focus-visible {
    outline: 3px solid rgba(58, 125, 68, .35);
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    .ce-handset-carousel__slide.is-active {
        animation: none;
    }
}
.ce-handset-hero__phone {
    width: auto;
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
}
.ce-sim-hero .ce-handset-hero__body {
    grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
}
.ce-sim-hero .ce-handset-hero__details {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
}
.ce-sim-hero__image {
    max-height: 220px;
}
.ce-handset-hero__energy {
    width: 55.35px;
    height: auto;
    border-radius: 3px;
}
.ce-handset-hero__energy-wrap {
    position: relative;
    display: inline-flex;
    border-radius: 3px;
    outline-offset: 3px;
}
.ce-handset-hero__energy-tooltip {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 5;
    width: max-content;
    max-width: min(260px, 75vw);
    padding: 8px 10px;
    border-radius: 5px;
    background: #1f2a22;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-3px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
    pointer-events: none;
}
.ce-handset-hero__energy-wrap:hover .ce-handset-hero__energy-tooltip,
.ce-handset-hero__energy-wrap:focus .ce-handset-hero__energy-tooltip,
.ce-handset-hero__energy-wrap:focus-within .ce-handset-hero__energy-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}
.ce-handset-hero__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
    align-self: stretch;
}
.ce-handset-hero__options {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}
.ce-handset-option-group__label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 700;
}
.ce-handset-option-group__links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.ce-handset-option {
    display: inline-flex;
    align-items: center;
    min-height: 29px;
    padding: 3px 8px;
    border: 1px solid #fff;
    border-radius: 5px;
    background: #fff;
    color: #3a4a3d;
    font-size: 13px;
    line-height: 1.2;
    text-decoration: none;
}
a.ce-handset-option:hover,
a.ce-handset-option:focus {
    background: #f3f8f4;
    color: #3a7d44;
}
.ce-handset-option.is-active {
    border-color: #fff;
    background: #edf6ef;
    color: #3a7d44;
    font-weight: 700;
}
.ce-handset-option--network {
    gap: 6px;
}
.ce-handset-option--network img {
    width: auto;
    max-width: 58px;
    height: 20px;
    object-fit: contain;
}
.ce-handset-hero__copy {
    min-width: 0;
    align-self: center;
}
.ce-handset-hero--out-of-stock .ce-handset-hero__body {
    grid-template-columns: repeat(2, minmax(210px, 260px));
    justify-content: center;
}
.ce-handset-hero--out-of-stock .ce-handset-hero__details {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
}
.ce-handset-hero--out-of-stock .ce-handset-hero__summary a {
    font-weight: 700;
}
.ce-handset-hero__summary {
    align-self: center;
    max-width: 960px;
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
}
.ce-handset-hero__summary p {
    margin: 0 0 12px;
}
.ce-handset-hero__summary p:last-child {
    margin-bottom: 0;
}
.ce-handset-hero__summary a {
    color: #fff;
    text-decoration: none;
    text-underline-offset: 2px;
}
.ce-handset-hero__summary a:hover,
.ce-handset-hero__summary a:focus {
    color: #fff;
    text-decoration: underline;
}

ul.ce-handset-hero__benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 14px 0 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .45);
    list-style: none;
    list-style-type: none;
}
ul.ce-handset-hero__benefits > li::marker {
    content: none !important;
}
ul.ce-handset-hero__benefits > li::before {
    display: none !important;
    content: none !important;
}
ul.ce-handset-hero__benefits > li {
    display: flex !important;
    align-items: center !important;
    min-width: 0;
    margin: 0;
    padding: 0 !important;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    list-style: none !important;
}
ul.ce-handset-hero__benefits > li > img {
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin: 0 3px 0 0 !important;
    object-fit: contain;
}
ul.ce-handset-hero__benefits > li > span {
    display: flex;
    align-items: center;
    min-height: 24px;
}

.ce-deals-container {
    clear: both;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) 3fr;
    column-gap: 10px;
    margin-bottom: 20px;
}

.ce-deals-container .ce-deals-filters {
    grid-column: 1;
    grid-row: 1 / span 2;
    padding: 10px;
    margin-bottom: 10px;
    min-width: 300px;
}

.ce-deals-container .ce-filters-main-row {
    display: flex;
    align-items: center;
}

.ce-filters-main-row .ce-filter-sortby {
    flex: 1;
}

.ce-deals-container .ce-deals-column {
    grid-column: 2;
    grid-row: 1;
}

.ce-deals-header {
    clear: both;
    padding: 10px;
}

.ce-deals-header h1 {
    margin: 0;
}

.ce-deals-topbar {
    background-color: #DFDFDF;
    padding: 10px 25px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}

.ce-deals-bottom {
    display: none;
    text-align: center;
}

.ce-load-more-button {
    display: inline-block;
    border: 2px solid #3A7D44;
    border-radius: 8px;
    padding: 10px 20px;
    color: #3A7D44;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: transparent;
}

.ce-load-more-button:hover {
    background-color: #3A7D44;
    color: white;
}

.ce-load-more-button.processing {
    display: none;
}

.ce-deals-top {
    padding: 15px 10px;
    margin-bottom: 10px;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}

.ce-deals-top .ce-deals-colors label {
    margin-left: 5px;
}

.ce-deals-top .ce-deals-storage_options label {
    margin-left: 5px;
}

.ce-deals-top form {
    display: flex;
    justify-content: space-between;
}

.ce-no-deals-message {
    font-size: 15pt;
    text-align: center;
    padding: 50px 100px;
}

.woocommerce div.product div.summary {
    margin: 0;
}

.ce-deals-container .ce-deals-cards {
    min-height: 200px;
}

.ce-deals-container .ce-deals-filters {
    max-width: 400px;
    margin-bottom: 10px;
    display: block;
}

.ce-filters-button-container {
    display: none;
    text-align: center;
}

.ce-filters-button-container .ce-filters-button {
    border-radius: 0px;
    background-color: #3A7D44;
    text-transform: uppercase;
    font-size: 9pt;
    max-width: 200px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 3px 10px;
    border-radius: 5px;
}

.ce-filters-button-container .ce-filters-button .bi {
    font-size: 15pt;
    margin-right: 5px;
    margin-top: 7px;
    margin-bottom: 8px;
}

a.sticky-filters-btn {
    opacity: 0;
    transform: translateY(1000px);
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background-color: #3A7D44;
    text-transform: uppercase;
    font-size: 9pt;
    color: white;
    text-decoration: none;
    height: 45px;
    text-align: center;
    display: none;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: opacity 300ms ease-in-out;
    max-width: 400px;
    margin: auto;
    z-index: 99;
}

a.sticky-filters-btn.show {
    opacity: 1;
    transform: translateY(0);
}

a.sticky-filters-btn:hover {
    color: white;
}

a.sticky-filters-btn .bi {
    font-size: 15pt;
    margin-right: 5px;
}

@media screen and (min-width: 1201px) and (max-width: 1320px) {
    .ce-deals-container {
        grid-template-columns: minmax(300px, 1fr) calc(66.6667% - 10px);
    }
}

@media screen and (max-width: 1200px) {
    .ce-deals-container {
        display: block;
    }

    .ce-filters-main-row .ce-filter-sortby {
        margin-bottom: 0px;
    }

    .ce-filters-main-row .ce-filter-sortby h2 {
        display: none;
    }

    .ce-deals-top form {
        flex-direction: column;
    }

    .ce-filters-button-container {
        display: block;
        max-width: 400px;
        margin-left: 0;
        margin-right: 10px;
        text-align: left;
    }

    .ce-deals-container .ce-deals-filters {
        margin-left: 0;
        margin-right: auto;
        text-align: left;
    }

    .ce-deals-container .ce-filters-main-row {
        justify-content: flex-start;
        text-align: left;
    }

    .ce-filters-main-row .ce-filter-sortby {
        text-align: left;
    }

    .ce-deals-container .ce-deals-dynamic-filters {
        display: none;
        margin-top: 20px;
    }

    .ce-deals-container .ce-deals-filters {
        padding: 0;
    }

    a.sticky-filters-btn {
        display: flex;
    }
}

@media screen and (max-width: 600px) {
    .ce-no-deals-message {
        padding: 20px 30px;
    }
}

.single-product.one-container .site-content {
    padding-top: 0;
}
.ce-sim-only-page.one-container .site-content {
    padding-top: 0;
}

@media screen and (max-width: 768px) {
    .ce-handset-hero-band__inner {
        padding-right: 20px;
        padding-left: 20px;
    }
    .ce-handset-hero {
        padding: 16px 0 18px;
    }
    .ce-handset-hero__body {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 14px;
    }
    .ce-handset-hero--out-of-stock .ce-handset-hero__body {
        grid-template-columns: 1fr;
    }
    .ce-handset-hero__image {
        min-height: 210px;
    }
    .ce-handset-carousel .ce-handset-hero__image {
        height: 210px;
        min-height: 210px;
    }
    .ce-handset-hero__fiveg-badge {
        width: 37.8px;
        height: 37.8px;
    }
    .ce-handset-hero__fiveg-badge span {
        font-size: 11.7px;
    }
    .ce-handset-hero__phone {
        max-height: 210px;
    }
    .ce-handset-hero__details {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .ce-handset-hero__summary {
        align-self: start;
    }
    .ce-handset-hero__options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    ul.ce-handset-hero__benefits {
        margin-top: 14px;
    }
}

@media screen and (max-width: 520px) {
    .ce-handset-hero-band__inner {
        padding-right: 16px;
        padding-left: 16px;
    }
    .ce-handset-hero .product_title {
        font-size: 28px;
    }
}
