.collection-title {
    margin-top: 30px;
}

.collection-title a:hover {
    color: rgb(0, 159, 233);
}

.product {
    margin-top: 30px;
}

.product .img {
    background: #f8f8f8;
    border: 1px solid #eeeeee;
}

.product .title {
    color: #232323;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: 1px;
    margin-top: 0;
    margin-bottom: 10px;
    display: block;
}

.product .div {
    margin: 20px 0;
    background: #ddd;
    height: 1px;
}

.product .price {
    color: #b99d00;
    font-weight: bold;
    font-size: 24px;
}

.product .sku, .product .vendor, .product .category {
    padding: 4px 0;
}

.product .div-add-to-cart .top {
    font-weight: bold;
    margin: 4px 0;
}

.product .quantity input {
    font-weight: 500;
    text-align: center;
    padding: 0 0.5rem;
    width: 48px;
    height: 45px;
    display: block;
    float: left;
    border: 1px solid #e9e9e9;
    border-radius: 0;
    font-size: 20px;
    line-height: 45px;
}

.product .quantity button {
    font-size: 38px;
    background-color: transparent;
    cursor: pointer;
    color: #787878;
    float: left;
    width: 45px;
    height: 45px;
    border-color: #e9e9e9;
    border-style: solid;
    line-height: 25px;
}

.product .quantity .l {
    border-radius: 4px 0 0 4px;
    border-width: 1px 0 1px 1px;
    line-height: 25px;
}

.product .quantity .r {
    border-radius: 0 4px 4px 0;
    border-width: 1px 1px 1px 0;
    line-height: 45px;
    margin-right: 10px;
    margin-bottom: 4px;
}

.product .add-to-cart {
    float: left;
    margin: 2px 0;
}

.product .tabs {
    border: 1px solid #e9e9e9;
    margin: 20px 0;
}

.product .tabs .tab {
    background: #f5f5f5;
    float: left;
    padding: 9px 12px;
    color: #232323;
    font-size: 14px;
    text-transform: uppercase;
    margin-left: 18px;
    font-weight: 500;
    -webkit-transition: all .9s;
    -moz-transition: all .9s;
    -o-transition: all .9s;
    transition: all .9s;
    cursor: pointer;
}

.product .tabs .tab:hover, .tabs .tab.active {
    background: #232323;
    color: #fff;
}

.product .tabs .body {
    padding: 25px 15px 15px 15px;
}

.product .tabs .content {
    display: none;
}

.product .tabs .content.active {
    display: block;
}

@media (max-width: 575px) {
    .product .tabs .head {
        background: #f5f5f5;
    }

    .product .tabs .tab {
        width: 50%;
        margin: 0;
    }

    .product .title {
        margin-top: 10px;
    }
}