.product-header h2 {
    color: var(--logo-color);
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    letter-spacing: -0.23px;
    text-transform: uppercase;
    background: #F6F7FB;
    padding-block-start: 40px;
    padding-block-end: 16px;
    padding-inline: auto;
}

.product-header p {
    color: #1A1A1A;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.014px;
    padding-block-start: 16px;
    padding-block-end: 24px;
    padding-inline: 4.5vw;
}

.product-header button {
    margin-inline: auto;
    align-items: center;
    width: 92%;
    background: var(--logo-color);
    color: #fff;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    border: transparent;
    padding: 16px 32px;
    justify-content: center;
    display: flex;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.02px;
    margin-block-end: 32px;
}

.product-images {
    background: #F6F7FB;
    padding-block-start: 32px;
    padding-block-end: 64px;
    padding-inline: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-image {
    flex: 0 0 calc(50% - 10px);
    position: relative;
    /* overflow: hidden;
    background: #f0f0f0; */
}


.product-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #e0e0e0 25%, #f8f8f8 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: shimmer-animation 1.5s infinite linear;
    border-radius: 5px;
}

@keyframes shimmer-animation {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

img {
    will-change: transform;
    backface-visibility: hidden;
}

.product-image.loaded::before {
    opacity: 0;
    transition: opacity 0.3s ease-out;
}


.product-image img {
    width: 100%;
    height: 160px;
    max-width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    cursor: pointer;
    /* opacity: 0; */
    transition: opacity 0.5s ease-in-out;
    will-change: opacity;
    /* visibility: hidden; */
}

/* .product-image.loaded img {
    opacity: 1;
    visibility: visible;
} */

/* .lazyload {
    filter: blur(10px);
    transition: filter 0.5s ease-in-out;
}

.lazyload.loaded {
    filter: blur(0);
} */

a {
    text-decoration: none;
}

.product-image p {
    color: #1A1A1A;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.014px;
}

.back-link-box {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #808080;
    background: #FFF;
    align-items: flex-start;
    padding: 20px;
    gap: 40px;
}

.back-link-box p {
    color: #1A1A1A;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.16px;
    width: 50%;
}

.back-link-box a {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.02px;
    border-radius: 8px;
    background: var(--logo-color);
    width: 100%;
    text-decoration: none;
    display: flex;
    padding: 8px 32px;
    justify-content: center;
    gap: 10px;
}

@media (min-width:768px) {}

@media (min-width:1024px) {
    .product-header h2 {
        font-size: 80px;
        line-height: 120px;
        letter-spacing: -0.512px;
        padding-block-start: 80px;
        padding-block-end: 40px;
    }

    .product-header p {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.02px;
        width: 80%;
        padding-block-start: 40px;
        padding-block-end: 40px;
        margin-inline: auto;
    }

    .product-header button {
        width: 40%;
        margin-block-end: 40px;
    }

    .product-image {
        flex: 0 0 calc(25% - 10px);
    }

    .product-image img {
        height: 250px;
    }

    .product-image p {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.02px;
    }

    .back-link-box {
        flex: 0 0 calc(25% - 10px);
    }

    .back-link-box p {
        font-size: 28px;
        line-height: 42px;
        letter-spacing: -0.28px;
        width: auto;
    }
}