.product-cards {
    position: relative;
    -webkit-padding-start: 66rem;
            padding-inline-start: 66rem;
}

.product-cards__container {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
}

.product-cards__progress-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 66rem;
    height: 100%;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    z-index: 1;
}

.product-cards__progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100%;
    max-height: 100vh;
    max-height: calc(var(--vh, 1vh) * 100);
    position: sticky;
    top: 0;
}

.product-cards__progress-dot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 28rem;
    height: 28rem;
    position: relative;
}

.product-cards__progress-text {
    position: absolute;
    top: 50%;
    inset-inline-end: -5rem;
    -webkit-transform: translate(-100%, -50%);
        -ms-transform: translate(-100%, -50%);
            transform: translate(-100%, -50%);
    visibility: hidden;
    opacity: 0;
    background-color: var(--color-white);
    -webkit-box-shadow: var(--global-box-shadow);
            box-shadow: var(--global-box-shadow);
    border-radius: 22rem;
    white-space: nowrap;
    padding-block: 12rem;
    padding-inline: 12rem;
    -webkit-transition:
        visibility var(--global-transition-duration) ease-in-out,
        opacity var(--global-transition-duration) ease-in-out;
    transition:
        visibility var(--global-transition-duration) ease-in-out,
        opacity var(--global-transition-duration) ease-in-out;
}

.product-cards__progress-dot:hover .product-cards__progress-text {
    visibility: visible;
    opacity: 1;
}

.product-cards__progress-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
}

.product-cards__progress-link span {
    display: block;
    width: 8rem;
    height: 8rem;
    border: 1rem solid var(--color-black);
    border-radius: 50%;
    -webkit-transition:
        background-color var(--global-transition-duration) ease-in-out,
        border-color var(--global-transition-duration) ease-in-out,
        -webkit-transform var(--global-transition-duration) ease-in-out;
    transition:
        background-color var(--global-transition-duration) ease-in-out,
        border-color var(--global-transition-duration) ease-in-out,
        -webkit-transform var(--global-transition-duration) ease-in-out;
    transition:
        transform var(--global-transition-duration) ease-in-out,
        background-color var(--global-transition-duration) ease-in-out,
        border-color var(--global-transition-duration) ease-in-out;
    transition:
        transform var(--global-transition-duration) ease-in-out,
        background-color var(--global-transition-duration) ease-in-out,
        border-color var(--global-transition-duration) ease-in-out,
        -webkit-transform var(--global-transition-duration) ease-in-out;
}

.product-cards__progress-link.active span {
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.product-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 120rem 72rem;
    line-height: 1;
    -webkit-padding-before: 120rem;
            padding-block-start: 120rem;
}

.product-card:last-child {
    -webkit-padding-after: 120rem;
            padding-block-end: 120rem;
}

.product-card--yellow .product-card__list-item::before {
    background-color: var(--color-product-yellow);
}

.product-card--yellow .product-card__card-item::before {
    background-color: var(--color-product-yellow);
}

.product-card--green .product-card__list-item::before {
    background-color: var(--color-product-green);
}

.product-card--green .product-card__card-item::before {
    background-color: var(--color-product-green);
}

.product-card--red .product-card__list-item::before {
    background-color: var(--color-product-red);
}

.product-card--red .product-card__card-item::before {
    background-color: var(--color-product-red);
}

.product-card--blue .product-card__list-item::before {
    background-color: var(--color-product-blue);
}

.product-card--blue .product-card__card-item::before {
    background-color: var(--color-product-blue);
}

.product-card__media {
    width: 100%;
}

.product-card__img {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 24rem;
    -webkit-padding-before: 150.5263157895%;
            padding-block-start: 150.5263157895%;
}

.product-card__img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
}

.product-card__content {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 72rem;
}

.product-card__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24rem;
}

.product-card__description-subtitle {
    color: var(--color-black);
}

.product-card__description-title {
    color: var(--color-black);
    font-size: 48rem;
    font-weight: 500;
    line-height: 1.1;
}

.product-card__description-text {
    color: var(--color-gray-700);
    font-size: 20rem;
}

.product-card__description-text p:has(+ p) {
    margin-bottom: 24rem;
}

.product-card__list ul{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 10rem;
    gap: 24rem;
}

.product-card__list-wrapper ul{
    padding: 24rem;
    border: 1rem solid #f0f1f5;
    border-radius: 24rem;
}

.product-card__list-title {
    color: var(--color-black);
    font-size: 24rem;
    font-weight: 500;
    line-height: 2;
}

.product-card__list-item li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    color: var(--color-gray-700);
    font-size: 16rem;
}

.product-card__list-item li::before {
    display: inline-block;
    -webkit-margin-end: 24rem;
            margin-inline-end: 24rem;
    min-width: 48rem;
    aspect-ratio: 1/1;
    background-image: url('../../img/products/icons/list-check.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 34% auto;
    border-radius: 4rem;
    content: '';
}

.product-card__card ul{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    padding-block: 10rem 0;
    gap: 24rem;
}

.product-card__card-wrapper {
    padding: 24rem;
    border: 1rem solid #f0f1f5;
    border-radius: 24rem;
}

.product-card__card-title {
    color: var(--color-black);
    font-size: 24rem;
    font-weight: 500;
    line-height: 2;
}

.product-card__card-item li{
    position: relative;
    min-height: 136rem;
    padding-inline: 36rem 24rem;
    padding-block: 12rem;
    color: var(--color-gray-700);
    font-size: 16rem;
    border: 1rem solid #f0f1f5;
    border-radius: 8rem;
}

.product-card__card-item li::before {
    position: absolute;
    top: 12rem;
    right: 12rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50rem;
    content: '';
}

@media screen and (min-width: 576px) {
    .product-cards__container {
        -webkit-padding-start: var(--container-padding-x);
                padding-inline-start: var(--container-padding-x);
    }
}

@media screen and (min-width: 768px) {
    .product-card:not(:last-child) {
        -webkit-padding-after: 120rem;
                padding-block-end: 120rem;
        border-bottom: 1rem solid #e4e4e4;
    }

    .product-card:not(:first-child) {
        -webkit-padding-before: 120rem;
                padding-block-start: 120rem;
    }

    .product-card__card ul{
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 1024px) and (orientation: landscape) {
   /* .product-cards ul{
        padding-block: 72rem;
    }*/

    .product-cards__wrapper {
        max-width: 1070rem;
        margin-inline: auto;
    }

    .product-card {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: start;
    }

    .product-card:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }

    .product-card__media {
        position: sticky;
        top: 88rem;
        max-width: calc(50% - 36rem);
    }

    .product-card__img {
        -webkit-padding-before: 142.0841683367%;
                padding-block-start: 142.0841683367%;
    }

    .product-card__content {
        max-width: calc(50% - 36rem);
    }
}

@media (hover: hover) {
    .product-cards__progress-link:hover span {
        -webkit-transform: scale(1.5);
            -ms-transform: scale(1.5);
                transform: scale(1.5);
    }
}
