.product-box {
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    position: relative;
    background: var(--white);
    transition: all .4s ease-in-out;
    margin: 40px auto 0 1px;
}

.product-box:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.25);
}

.product-media {
    background: var(--footer);
    height: 330px;
    position: relative;
    width: 285px;
}

.product-img {
    position: absolute;
    bottom: 0;
    z-index: 1;
    left: 0;
    right: 0;
    width: auto;
    height: auto;
    margin: auto;
}

.shape {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.product-caption {
    text-align: center;
    padding: 10px 0 30px;
}

.product-title {
    font-size: var(--size-16);
    color: var(--blac-100);
    font-weight: var(--weight-400);
}

.product-title>span {
    color: var(--green);
    font-weight: var(--weight-700);
    font-size: var(--size-20);
}

.product-title>p {
    font-weight: var(--weight-400);
    font-size: var(--size-14);
}

.product-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    margin: auto;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 20px;
    height: 20px;
    visibility: hidden;
    z-index: 1;
    transform: translateY(-65px);
    transition: all 0.4s ease-in-out;
    padding: 10px;
    background: var(--white);
    color: var(--green);
    cursor: pointer;
}

.product-icon:hover {
    color: var(--white);
    background: var(--green);
}

.product-box:hover .product-icon {
    opacity: 1;
    visibility: visible;
    transform: translateY(35px);
}

.products-preview {
    position: fixed;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    transition: all 0.4s ease-in-out;
}

.products-preview.active {
    width: 100%;
}

.products-preview .preview {
    width: 0;
    height: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.products-preview .preview.active {
    width: auto;
    height: auto;
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 2rem 1rem;
    text-align: center;
    justify-content: start;
    border-radius: 10px;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--white);
    position: relative;
    margin: 2rem;
    max-height: calc(100vh - 8rem);
}

.products-preview .preview>i {
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    color: var(--black);
    font-size: 17px;
    transition: all 0.4s ease-in-out;
}

.products-preview .preview>i:hover {
    color: var(--green);
}

.products-preview .preview h4 {
    position: relative;
    color: var(--black);
    font-weight: var(--weight-400);
    font-size: 26px;
    margin-bottom: 20px;
}

.products-preview .preview h4>span {
    color: var(--green);
    font-weight: var(--weight-700);
}

.product-details-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    font-weight: var(--weight-600);
    text-align: left;
}

.product-details-list>li>span {
    color: var(--green);
    margin-left: 10px;
    font-size: var(--size-14);
}

.product-details-list>li:not(:last-child){
    border-bottom: 1px dashed #e9e9e9;
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.flex-column--product{
    gap: 10px;
}

.flex-column--product>p{
    border-bottom: 1px dashed #e9e9e9;
    padding-bottom: 10px;
}

.content-lists--product {
    gap: 7px;
    margin-left: 15px;
    color: var(--green);
    font-weight: var(--weight-500);
    font-size: 15px;
}

.products-details-wrapper{
    text-align: left;
    align-items: flex-start;
    margin: 50px 50px 0 50px;
}

.products-details-wrapper>ul{
    text-align: left;
}