/*

1. SHOP GRID
2. SHOP CONTROLS
3. SHOP DETAILS
    3.1 QUANTITY COUNTER
    3.2 REVIEWS
    3.3 ADD REVIEW




/* --------------------------------------------------------------------- */
/* 1. SHOP GRID
/* --------------------------------------------------------------------- */

#shop {
    padding-bottom: 0;
}

.shop-row {
    padding-left: 20px;
    padding-right: 20px;
}

#shop-grid {
    margin-bottom: 60px;
    text-align: center;
}

#shop-grid:after {
    display: block;
    content: '';
    clear: both;
}

#shop-grid li {
    display: none;
    position: relative;
    float: left;
    width: 33.333333%;
    margin-bottom: 5%;
    padding: 0 20px;
}

#shop-grid .img-container {
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

#shop-grid img {
    float: left;
    width: 100%;
    height: auto;
}

#shop-grid .img-container:after {
    display: block;
    content: '';
    clear: both;
}

#shop-grid .layer {
    position: absolute;
    top: -0.25%;
    left: -0.25%;
    width: 100.5%;
    height: 100.5%;
    background: rgba(182,222,209,0.95);
    filter: alpha(opacity=0);
    opacity: 0;
    z-index: 5;
    text-align: center;
    color: #3d4148;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: all 0.4s;
    -moz-transition:    all 0.4s;
    -o-transition:      all 0.4s;
    transition:         all 0.4s;
}

#shop-grid li:hover .layer {
    filter: alpha(opacity=100);
    opacity: 1;
}

#shop-grid .text {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    margin-top: -20px;
    line-height: 1.5;
}

#shop-grid h4 {
    font-size: 1.1em;
}

#shop-grid .price {
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 110px;
    height: 45px;
    line-height: 45px;
    margin-left: -55px;
    background: #3d4148;
    color: #fff;
    text-align: center;
    font-size: 0.9em;
    z-index: 8;
}

#shop-grid .triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 6;
    filter: alpha(opacity=0);
    opacity: 0;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
}

#shop-grid li:hover .triangle {
    filter: alpha(opacity=100);
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
}




/* --------------------------------------------------------------------- */
/* 2. SHOP CONTROLS
/* --------------------------------------------------------------------- */

.shop-controls {
    margin-bottom: 50px;
}

#cart-button {
    position: absolute;
    top: 0;
    right: 40px;
}




/* --------------------------------------------------------------------- */
/* 3. SHOP DETAILS
/* --------------------------------------------------------------------- */

.product-rating {
    margin-bottom: 80px;
}

.product-rating .fa-star {
    color: #b6ded1;
}

.shop-product {
    margin-bottom: 60px;
}

.shop-product h3 {
    margin-bottom: 5px;
}

.shop-product .price {
    display: block;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2em;
}



/* ==== 3.1 QUANTITY COUNTER  ==== */

.shop-product .quantity-counter {
    margin-bottom: 50px;
}

.shop-product .quantity-counter:after {
    display: block;
    content: '';
    clear: both;
}

.shop-product .quantity-counter input {
    float: left;
    margin: 0 5px 0 0;
    padding: 0;
    line-height: 40px;
    height: 40px;
    width: 55px;
}

.shop-product .quantity-counter a {
    float: left;
    display: block;
    margin-right: 1px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 2px solid #fff;
    color: #3d4148;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.shop-product .quantity-counter a:hover {
    background: #b6ded1;
    border-color: #b6ded1;
}



/* ==== 3.2 REVIEWS  ==== */

#shop-reviews .review {
    margin-bottom: 30px;
}

#shop-reviews .review:after {
    display: block;
    content: '';
    width: 100%;
    height: 2px;
    margin-top: 30px;
    background: #f0f1f1 url(../images/layout/parallax-background.png) repeat;
}

#shop-reviews .review:last-child {
    margin: 0;
}

#shop-reviews .review:last-child:after {
    display: none;
}

#shop-reviews .name {
    line-height: 1;
    margin-top: -5px;
}

#shop-reviews .rating {
    margin: 10px 0;
}

#shop-reviews .fa-star {
    color: #b6ded1;
}



/* ==== 3.3 ADD REVIEW  ==== */

#add-review .rating input {
    margin-right: 6px;
    cursor: pointer;
}

#add-review .rating:hover .fa-star {
    color: #b6ded1;
}

#add-review .stars {
    margin-bottom: 30px;
}

#add-review .stars h4 {
    margin-bottom: 10px;
}

#add-review input.text, #add-review textarea {
    max-width: none;
    text-align: left;
}