﻿
.product-container {
    margin-top: 50px;
    display: flex;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    font-family: 'Montserrat';
    gap: 32px;
    justify-content: center;
    flex-flow: wrap;
}

.product-container ul {
    list-style: none;
    padding: 0;
    flex-flow: wrap;
}

.product-details-container ul li {
    padding: 0 16px 8px 0;
}

.product-variant-values {
    display: flex;
}

.product-buy {
    display: flex;
    align-items: center;
    margin-left: -14px;
}

.product-image-container img {
    max-width: 85%;
    max-height: 85%;
}

.product-image-container {
    display: flex;
    align-items: end;
    flex-flow: column;
}

.product-details-container {
    max-width: 450px;
}

.product-image-box {
    width: 400px;
    border: 1px solid #DDDEE3;
    border-radius: 12px;
}

.product-image-box-main {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-list {
    display: flex;
    margin-left: 16px;
    margin-bottom: 16px;
}

    .product-image-list li {
        height: 60px;
        padding: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        margin-top: 16px;
        margin-right: 16px;
        cursor: pointer;
    }

    .product-image-list img {
        max-width: 100%;
        max-height: 100%;
    }

.product-title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #221F20;
}

.product-price {
    margin-top: 22px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #03C5E8;
}

.product-delivery {
    margin-top: 10px;
    margin-bottom: 20px;
}

.option-value-text, .option-value-image {
    padding: 13px;
    background: #FFFFFF;
    border: 1px solid #DDDEE3;
    border-radius: 66px;
}

.option-value-text {
    min-width: 80px;
}

.product-variants-container a {
    text-decoration: none;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    /* identical to box height, or 21px */
    text-align: center;
    /* Neutral/Dark */
    color: #221F20;
}

.product-variants-container .selected .option-value-text,
.product-variants-container .selected .option-value-image {
    border: 2px solid #03C5E8;
}

.product-variants-container .disabled .option-value-text,
.product-variants-container .disabled .option-value-image {
    border: 2px dashed #DDDEE3;
}

.option-value-image {
    width: 80px;
    height: 80px;
    padding: 4px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .option-value-image img {
        max-width: 100%;
        max-height: 100%;
    }

.product-detail-heading {
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
    color: #221F20;
    margin-bottom: 12px;
}

.product-detail-split {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.product-detail-key {
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    color: #221F20;
}

.product-detail-value {
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    color: #93959B;
}

.product-features {
    font-weight: 400;
    font-size: 12px;
    line-height: 180%;
    color: #93959B;
}

.shine {
    background: #f6f7f8;
    background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
    background-repeat: no-repeat;
    background-size: 800px 104px;
    position: relative;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: placeholderShimmer;
    -webkit-animation-timing-function: linear;
}

.product-price-shimmer {
    margin-top: 58px;
    height: 22px;
    width: 120px;
}

.product-delivery-shimmer {
    height: 18px;
    width: 180px;
    margin-top: 16px;
    margin-bottom: 20px;
}

@-webkit-keyframes placeholderShimmer {
    0% {
        background-position: -468px 0;
    }

    100% {
        background-position: 468px 0;
    }
}
