.product-page {
    padding: 0 20px;
    padding-top: 20px;
    padding-bottom: 50px;
}

.product-page .container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-page .view {
    max-width: 850px;
}

.product-page .container .top {
    display: flex;
    margin-bottom: 40px;
}

.product-page .image-area {
    padding: 15px;
}

.product-page .image-show li {
    padding: 3px;
    border: 1px solid #ddd;
    border-radius: 7px;
}

.product-page img {
    width: 329px;
}

.product-page .details {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.product-page .product-name {
    color: #555;
    font-size: 28px;
    margin: 15px 0;
    font-weight: 600;
    line-height: 1;
}

.product-page .short-description {
    line-height: 1.4;
    font-size: 14px;
    font-weight: 300;
    color: #777;
    padding: 5px 0 20px 0;
    border-bottom: 1px solid #ebebeb;
}

.product-page .product-info {
    padding-bottom: 20px;
    margin-top: 20px;
    border-bottom: 1px solid #ebebeb;
}

.product-page .price-box {
    margin: 0 0 20px 0;
    display: flex;
    column-gap: 5px;
    align-items: flex-end;
}

.product-page .old-price {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
    vertical-align: middle;
}

.product-page .regular-price {
    font-size: 36px;
    color: #08c;
    font-weight: 600;
    line-height: 1;
    vertical-align: middle;
}

.product-page .price {
    white-space: nowrap !important;
}

.product-page .availability {
    color: #777;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-transform: uppercase;
}

.product-page .availability2 {
    color: #090;
    font-weight: bold;
    line-height: 21px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.product-page .availability3 {
    color: #d83820;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-page .purchase {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 12px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
}

.product-page .qty {
    display: flex;
    align-items: center;
    column-gap: 3px;
}

.product-page .qty input {
    background: #fff;
    border: 1px solid #e1e1e1;
    padding: 8px;
    margin-right: 2px;
    height: 38px;
    width: 35px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    color: #08c;
    border-radius: 3px;
}

.product-page .qty input:hover {
    filter: none;
}

.product-page .qty .spinners {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.product-page .qty .spinner {
    text-align: center;
    vertical-align: middle;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    font-size: 8px;
    height: 16px;
    width: 16px;
    line-height: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-page .qty .spinner:hover {
    filter: none;
}

.product-page .addToCart {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    background: green;
    color: #fff;

    width: 160px;
    vertical-align: middle;

    height: 38px;
    line-height: 38px;
    font-weight: normal;
    font-size: 14px;
    border-radius: 5px;
    min-width: 110px;
    padding-right: 5px;
}

.product-page .addToCart:hover {
    text-decoration: none;
}

.product-page .bottom {
    margin-top: 50px;
    padding-bottom: 30px;
}

.product-page .bottom .tabs {
    display: flex;
    flex-direction: column;
}

.product-page .tab-headers {
    display: flex;
}
.product-page .tab-headers .fill {
    width: 100%;
    border-bottom: 1px solid #eee;
}

.product-page .bottom .tabs ul {
    display: flex;
    flex-direction: row;
}

.product-page .tab-header {
    font-size: 14px;
    padding: 10px 15px;
    background: #f4f4f4;
    border: 1px solid #eee;
    line-height: 1;
    font-weight: normal;
    border-width: 3px 1px 0 1px;
    border-radius: 5px 5px 0 0;
    /* margin-right: 1px; */
    cursor: pointer;
    transition: 0.3s;
}

.product-page .tab-header.active {
    border-top-color: #08c;
    background: #fff;
    color: #08c;
    cursor: default;
}

.product-page .tab-header:hover:not(.active) {
    color: rgb(105, 179, 216)
}

.product-page .tab-body {
    display: none;
    padding: 37px 15px;
    border: 1px solid #eee;
    min-height: 200px;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 1px 2px #eee;
    background-color: #fff;
    line-height: 1.4;
    font-size: 13px;
    color: #777;
    border-top: 0;
}

.product-page .tab-body.active {
    display: flex;
    flex-direction: column;
}

.product-page .videos {
    display: flex;
    flex-direction: column;
}

.product-page .video {
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    overflow: hidden; 
    max-width: 100%;
    width: 640;
    height: 390;
}

.product-page .video iframe, 
.product-page .video object, 
.product-page .video embed {
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%;
}

@media (max-width: 700px) {
    .product-page {
        padding: 0 3%;
    }

    .product-page .top {
        flex-direction: column;
    }

    .product-page .image-area {
        padding: 0;
        width: 100%;
    }

    .product-page .details {
        padding: 0;
    }

    /*.product-page .tab-body .description {
        max-width: 300px;
    }*/
    
    .product-page .video {
        height: 0; 
        width: auto;
    }

}

@media (max-width: 400px) {
    .product-page img {
        width: 100%;
    }
}