f-product-change{
    display: block;
}

f-product-change .f-product-change-container{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
    padding-inline: 40px;
}

f-product-change .f-product-blocks,
f-product-change .block-item,
f-product-change .product-item,
f-product-change .product-media{
    min-width: 0;
    max-width: 100%;
}

f-product-change .f-product-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap:10px;
}
f-product-change .f-product-grid-item{
    overflow: hidden;
    cursor: pointer;
}
f-product-change .f-product-grid-item picture{
    display: block;
    width: 100%;
    height: 100%;
}
f-product-change .f-product-grid-item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
f-product-change .button-background-image{
    position: relative;
    padding: 12px 40px;
    border: 0;
    appearance: none;
    color: #000;
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
    font-family: var(--font-akzidenz-grotesk);
}

f-product-change .button-background-image.loading .product-buy-button__text,
f-product-change .button-background-image[aria-busy="true"] .product-buy-button__text,
f-product-change theme-product-form.loading .product-buy-button__text{
    visibility: hidden !important;
    opacity: 0 !important;
}

f-product-change .button-background-image.loading > .loading--rotator,
f-product-change .button-background-image[aria-busy="true"] > .loading--rotator,
f-product-change theme-product-form.loading .button-background-image > .loading--rotator{
    display: flex;
    position: absolute;
    inset: 50% auto auto 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}

f-product-change .block-item{
    display: none;
    height: 100%;
}
f-product-change .block-item.active{
    display: block;
}

f-product-change .product-item{
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}
f-product-change .product-item-header{
    display: flex;
    justify-content: space-between;
}

f-product-change .product-textarea{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
f-product-change .prodcut-image{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    overflow: hidden;
}
f-product-change .f-product-change__item-image{
    height: auto;
}
f-product-change .prodcut-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

f-product-change .product-image-placeholder svg{
    display: block;
    width: 100%;
    height: 100%;
}

f-product-change .product-media{
    position: relative;
}

f-product-change .product-media .product-image-overlay{
    position: absolute;
    inset: 0;
    pointer-events: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 1;
}

f-product-change .product-item-buy{
    white-space: nowrap;
}
f-product-change .product-item-buy.mobile{
    display: none;
}
f-product-change .product-item-buy.mobile.active{
    display: flex;
    justify-content: center;
}

f-product-change .product-item-title{
    font-size: 90px;
    line-height: 1;
    font-family: var(--font-akzidenz-grotesk);
    font-weight: 700;
    color: #FCFCFC;
    text-transform: uppercase;
}

f-product-change .product-item-content{
    font-size: 12px;
    line-height: 1;
    font-family: var(--font-hongmeng-sans-sc);
    font-weight: 500;
    letter-spacing: -0.062px;
    color: #fff;
}

f-product-change .product-image-title{
    font-size: 50px;
    line-height: 1;
    font-family: var(--font-akzidenz-grotesk);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

f-product-change .product-image-content{
    font-size: 20px;
    line-height: 1;
    font-family: var(--font-hongmeng-sans-sc);
    font-weight: 500;
    letter-spacing: -0.062px;
    color: #fff;
}
@media(max-width:959px){
    f-product-change .f-product-change-container{
        grid-template-columns: repeat(1,1fr);
        padding-inline: 0;
    }
    f-product-change .product-textarea,
    f-product-change .f-product-grid{
        padding-inline: 20px;
    }
    f-product-change .product-media{
        aspect-ratio: 1/1;
    }

    f-product-change .product-item-title{
        font-size: 12vw;
    }

    f-product-change .product-item-content{
        font-size: 2.4vw;
    }

    f-product-change .product-image-title{
        font-size: 10.1333vw;
    }

    f-product-change .product-image-content{
        font-size: 4.1333vw;
    }
    f-product-change .button-background-image {
        font-size: 5.8667vw;
    }
}
