.zw-product-header {
    background-color: var(--color-green-deep)
}

.content-wrap {
    max-width: 1250px
}

h1 {
    width: 90%;
    font-family: var(--zf-primary-bold);
    font-size: 58px;
    line-height: 64px;
    margin-bottom: 24px
}

h2 {
    font-family: var(--zf-primary-bold);
    font-size: 54px;
    line-height: 64px;
    letter-spacing: -1px;
    margin-bottom: 50px
}

h3 {
    width: 85%;
    font-family: var(--zf-primary-medium);
    font-weight: 600;
    font-size: 26px;
    color: #000;
    margin-top: 0;
    margin-bottom: 12px
}

.accordion-tab__title {
    width: 100%
}

.highlight {
    color: var(--color-green-medium)
}

.space-between {
    display: flex;
    justify-content: space-between
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
    align-items: center
}

.ecommerce-infrastructure-section {
    background-color: var(--color-green-deep);
    color: #fff;
    padding: 0 24px 160px;
    display: flex;
    justify-content: center;
    align-items: center
}

.content-column {
    flex: 1;
    max-width: 55%;
    width: 100%;
    text-align: left
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
    display: flex;
    font-size: .875em
}

.breadcrumbs li {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer
}

.breadcrumbs .breadcrumb-link {
    color: #c9ffea;
    text-decoration: none;
    transition: all .3s ease;
    position: relative;
    text-align: center
}

.breadcrumbs .separator {
    margin: 0 4px
}

.breadcrumbs .breadcrumb-current {
    font-weight: bold;
    opacity: 1;
    color: var(--color-green-bright)
}

.description-text {
    margin-bottom: 25px;
    max-width: 80%
}

.illustration-column {
    flex: 1;
    max-width: 50%;
    padding-top: 25px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative
}

.dashboard-illustration {
    max-width: 87%;
    margin-block: auto;
    height: auto;
    display: block
}

.accordion-section {
    padding-bottom: 50px;
    background-color: #fff;
    text-align: center
}

.accordion-section__content-wrapper {
    display: flex;
    gap: 24px;
    align-items: stretch
}

.accordion-section__tabs {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 40%;
    text-align: left
}

.accordion-section {
    padding: 100px 0
}

.accordion-tab {
    background-color: #fff;
    border: .5px solid #e0e0e0;
    border-radius: 20px;
    padding: 30px 40px;
    cursor: pointer;
    transition: all .3s ease
}

.accordion-tab.active {
    background-color: var(--color-green-primary);
    position: relative;
    overflow: hidden
}

.accordion-tab.active::before {
    content: "";
    position: absolute;
    top: 15%;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--color-green-bright);
    border-radius: 10px;
    animation: none
}

@keyframes fillAccordionTab {
    from {
        height: 0
    }

    to {
        height: 70%
    }
}

.accordion-tab.active.fill-progress::before {
    animation: fillAccordionTab 5s linear forwards;
    animation-play-state: running
}

.accordion-tab.active .accordion-tab__title,.accordion-tab.active .accordion-tab__description {
    color: #fff
}

.accordion-tab:hover:not(.active) {
    border: .5px solid #003f3c
}

.accordion-tab__description {
    width: 90%;
    margin: 0
}

.accordion-section__images {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 60%;
    width: 100%;
    background-color: var(--color-green-primary);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative
}

.accordion-section__img-wrapper {
    width: 80%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center
}

.accordion-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    display: none;
    object-fit: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events: none;
    border-radius: 8px
}

.accordion-image.active {
    display: block;
    pointer-events: auto
}

.accordion-icon {
    width: 22px;
    height: 26px;
    border: 1px solid #498c88;
    border-radius: 20px;
    position: relative;
    transition: all .3s ease
}

.accordion-icon::before,.accordion-icon::after {
    content: "";
    position: absolute;
    background: #498c88;
    transition: all .3s ease
}

.accordion-icon::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 1px;
    transform: translateY(-50%)
}

.accordion-icon::after {
    top: 7px;
    bottom: 7px;
    left: 50%;
    width: 1px;
    transform: translateX(-50%)
}

.accordion-icon.active {
    background-color: #00e365;
    border: 1px solid #003f3c
}

.accordion-icon.active::before {
    border: .5px solid #003f3c;
    transform: rotate(180deg)
}

.accordion-icon.active::after {
    transform: scaleY(0)
}

.features-section,.bottom-cta-wrapper,.why-choose-section {
    padding-bottom: 100px;
    text-align: center
}

.features-section__heading {
    margin: 0 auto 50px
}

.features-section__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 25px;
    justify-content: center
}

.feature-card {
    height: 100%;
    background-color: var(--color-cream-light);
    border-radius: 20px;
    border: .5px solid var(--color-cream-dark);
    padding: 30px 35px 40px;
    text-align: left;
    display: flex;
    gap: 27px;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .3s ease
}

.feature-card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.feature-card__description {
    margin-top: auto
}

.feature-card__image-container {
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 66%;
    width: 100%;
    margin: auto
}

#fast-shopping-experience-image {
    background-image: url('/sites/zweb/images/commerce/features-build/product-category-hierarchy-editor.webp')
}

#boost-discoverability-image {
    background-image: url('/sites/zweb/images/commerce/features-build/product-image-gallery-editor.webp');
}

#seasonal-adaption-image {
    background-image: url('/sites/zweb/images/commerce/features-build/product-image-search-electronics.webp')
}

.feature-card__image {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain
}

.why-choose-section__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    gap: 24px;
    justify-content: center
}

.why-choose-section h3 {
    font-weight: 400
}

.choice-card {
    background-color: #fff;
    border-radius: 20px;
    border: .5px solid var(--color-green-deep);
    padding: 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .3s ease,box-shadow .3s ease
}

.choice-card:hover {
    transform: translateY(-5px)
}

.choice-card__icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center
}

.caveat-font {
    font-family: "Caveat",sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--color-green-primary)
}

.choice-card__description,.feature-card__description,.accordion-tab__description {
    font-family: var(--zf-primary-regular);
    font-size: .92em;
    color: #000;
    margin-bottom: 0;
    line-height: 1.5;
    margin-bottom: auto;
}

.bottom-cta-wrapper h2 {
    width: 70%;
    margin: auto;
    margin-bottom: 20px
}

.bottom-cta-wrapper .content-wrap p {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    width: 60%;
    margin: auto
}

.scroll-reveal-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity .4s ease-out,transform .4s ease-out;
    transition-delay: var(--animation-delay,0s)
}

.scroll-reveal-animation.fade-in-up {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width: 1024px) {
    .hero-container,.content-column {
        max-width:100%
    }

    h1 {
        width: 100%;
        font-size: 54px;
        line-height: 64px
    }

    h2 {
        font-size: 48px;
        line-height: 55px;
        margin: auto;
        margin-bottom: 50px
    }

    h3 {
        width: 100%;
    }

    .ecommerce-infrastructure-section {
        padding: 40px 24px 80px
    }

    .illustration-column {
        padding-top: 0;
        max-width: 40%;
    }

    .dashboard-illustration {
        max-width: 90%
    }

    .accordion-tab__description {
        width: 100%
    }

    .accordion-section__img-wrapper {
        width: 90%;
        margin: auto
    }

    .bottom-cta-wrapper h2 {
        margin-bottom: 20px
    }

    .accordion-section {
        padding: 100px 0
    }

    .features-section,.bottom-cta-wrapper,.why-choose-section {
        padding-bottom: 100px
    }
}

@media(max-width: 992px) {
    .breadcrumbs {
        justify-content:center
    }

    .content-column {
        text-align: center
    }

    .description-text {
        max-width: 70%;
        margin: auto
    }

    .hero-container {
        flex-direction: column;
        gap: 60px;
        text-align: center;
        margin-top: 20px;
    }

    .ecommerce-infrastructure-section .breadcrumbs li {
        font-size: 14px
    }

    .interactive-cta-btn-wrapper {
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-top: 30px
    }

    .interactive-cta-btn-wrapper .secondary-cta,.interactive-cta-btn-wrapper .interactive-cta-btn {
        margin: 0 !important;
        min-width: 255px
    }

    .illustration-column {
        max-width: 100%;
        width: 70%;
        margin: auto;
        justify-content: center;
    }

    .features-section__cards {
        max-width: 80%;
        margin: 0 auto
    }

    .accordion-section__tabs,.why-choose-section__cards {
        max-width: 80%;
        margin: auto;
        width: 100%;
        height: auto
    }

    .accordion-tab.active::before {
        top: 6%;
        height: 0
    }

    .accordion-tab.active.fill-progress::before {
        height: 100px
    }

    .accordion-section__images {
        display: none
    }

    .accordion-tab,.feature-card,.choice-card {
        padding: 40px
    }

    .accordion-tab {
        transition: none
    }

    .mobile-accordion-image {
        max-height: 0;
        overflow: hidden;
        width: 70%;
        margin: auto;
        height: auto;
        display: block;
        transition: max-height .5s ease-in-out,margin-top .3s ease-out
    }

    .mobile-accordion-image.active {
        margin-top: 40px
    }

    .feature-card__image {
        max-width: 90%
    }

    .feature-card {
        gap: 40px
    }

    .features-section__cards {
        max-width: 80%;
        margin: 0 auto
    }

    .accordion-section {
        padding: 70px 0
    }

    .features-section,.why-choose-section {
        padding-bottom: 70px
    }
}

@media(max-width: 768px) {
    .hero-container,h1,.ecommerce-infrastructure-section .description-text,.image-marquee-section p {
        max-width:100%;
        width: 100%
    }

    .ecommerce-infrastructure-section {
        padding: 0 16px 40px
    }

    h1 {
        width: 90%;
        margin: auto;
        font-size: 52px;
        line-height: 58px;
        margin-bottom: 24px
    }

    h2 {
        width: 80%;
        font-size: 46px;
        line-height: 56px;
        margin-bottom: 30px
    }

    .ecommerce-infrastructure-section .description-text,.image-marquee-section p {
        font-size: 16px;
        margin: auto
    }

    .interactive-cta-btn-wrapper {
        justify-content: center;
        align-items: center;
        gap: 20px;
        padding-top: 30px
    }

    .secondary-cta {
        margin: 0
    }

    .marquee-content {
        animation-duration: 20s
    }

    .accordion-section__tabs,.why-choose-section__cards {
        max-width: 80%
    }

    .bottom-cta-wrapper h2 {
        width: 90%
    }

    .features-section__cards {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .feature-card__image-container {
        max-height: 100%;
        padding-bottom: 55%;
    }
}

@media(max-width: 666px) {
    .illustration-column {
        width:100%
    }

    .interactive-cta-btn-wrapper {
        flex-direction: column
    }

    h1,h2,.bottom-cta-wrapper h2,.accordion-tab__description,.description-text,.accordion-section__tabs,.why-choose-section__cards {
        width: 100%;
        max-width: 100%
    }

    h1 {
        font-size: 48px;
        line-height: 52px;
        margin-bottom: 24px
    }

    h2 {
        font-size: 44px;
        line-height: 48px
    }

    .mobile-accordion-image {
        width: 100%
    }
}

@media(max-width: 480px) {
    .ecommerce-infrastructure-section {
        padding:24px 0 50px
    }

    h1 {
        font-size: 42px;
        line-height: 46px
    }

    h2 {
        font-size: 36px;
        line-height: 40px
    }

    h3 {
        font-size: 22px;
        width: 80%
    }

    .breadcrumbs li {
        font-size: 14px
    }

        .dashboard-illustration {
            max-width: 70%
        }

    .accordion-tab,.feature-card,.choice-card {
        padding: 35px
    }

    .accordion-section__tabs {
        max-width: 100%
    }

    .accordion-tab__description {
        font-size: .8em;
        line-height: 1.5
    }

    .marquee-image-wrapper {
        width: 100%;
        max-width: 200px
    }

    .accordion-tab,.feature-card,.choice-card {
        padding: 35px
    }

    .accordion-section__tabs,.why-choose-section__cards,.features-section__cards {
        max-width: 100%
    }

    .feature-card {
        gap: 10px
    }

    .choice-card__icon-container {
        width: 50px;
        height: 50px
    }

    .feature-card__image-container {
        margin-bottom: 20px
    }

    .choice-card__description,.feature-card__description,.accordion-tab__description {
        font-size: 14px;
        line-height: 20px
    }

    .why-choose-section__cards {
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr))
    }
}

@media(max-width: 375px) {
    h1 {
        font-size:36px;
        line-height: 40px;
        margin-bottom: 24px
    }

    h2 {
        font-size: 30px;
        line-height: 34px;
        padding: 0
    }

    .accordion-tab {
        padding: 25px
    }

    .accordion-tab,.feature-card,.choice-card {
        padding: 25px
    }

    .accordion-icon {
        width: 20px;
        height: 24px
    }
}

@media(min-width: 992px) {
    .mobile-accordion-image,.accordion-icon {
        display:none
    }

    .accordion-tab.active:hover.fill-progress::before {
        animation-play-state: paused
    }
}

@media(max-width: 480px) {
    .choice-card__description,.accordion-tab__description {
        font-size:.8em;
        line-height: 1.5
    }
}

@media(max-width: 375px) {
    .choice-card__icon-container {
        width:40px;
        height: 40px;
        margin-bottom: 10px
    }
}
