/* SHOP */
.shop-wrapper {
    /*border: solid 1px pink;*/
 }
.shop-menu { 
    /*border: solid 1px pink;*/
    width: 27%;
    margin-right: .5%;
    float: left;
}

.shop-menu ul {
    margin: 0; 
    padding: 0;
    list-style: none;
}
.shop-menu ul li {}
.shop-menu ul li a {
    display: block;
    width: 90%;
    margin: 2px;
    padding: 10px;
    text-decoration: none;
    color: #9A9086;
    background-color: #f7f7f7;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.shop-menu ul li a:hover { 
    background-color: #d8d4d2; 
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.product-details {
    /*border: solid 1px #DCD8D4;*/
    width: 36%;
    min-height: 150px;
    margin-right: 2.5%;
    padding: 0 5px 5px 5px;
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.product-details img {
    border: 1px solid #DCD8D4;
    padding: 2px;
    width: 100%;
    height: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.product-details span {
    display: inline-block;
    padding: 8px;
    /*border: 1px solid #DCD8D4;*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.product-details form select {
    width: 100%;
    margin: 5px 0;
    padding: 8px;
    border: 1px solid #DCD8D4;
    color: #9A9086;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.product-details form input[type=text] {
    width: 46px;
    padding: 8px 16px;
    border: 1px solid #DCD8D4;
    color: #9A9086;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.product-details form input[type=submit] {
    width: 100%;
    margin: 5px 0;
    padding: 8px;
    color: #FFF;
    background-color: #FF0092;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.product-ingredients {
    border: solid 1px #DCD8D4;
    width: 33%;
    min-height: 150px;
    float: left;
}
.product-ingredients span {
    display: block;
    padding: 10px;
    text-align: center;
    background-color: #DCD8D4;
}
.product-ingredients div {
    padding: 5px;
}

/*MOBILE SHOP MENU*/
div#shop-menu-mobile { display: none; }

.shop-categories { 
    /*border: solid 1px pink;*/
    width: 72%;
    float: left;
}
.shop-categories ul {
    margin: 0; 
    padding: 0;
    list-style: none;
}
.shop-categories ul li {
    display: inline-block;
    width: 162px;
    height: 162px;
    text-align: center;
    background-color: #f2f2f2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.shop-categories ul li:hover a { visibility: visible; }
.shop-categories ul li img {
    width: 100%; 
    height: 100%;
    z-index: 1;
}
.shop-categories ul li a {
    position: absolute;
    display: block;
    width: 162px;
    height: 162px;
    line-height: 162px;
    text-align: center;
    visibility: hidden;
    /*background-color: rgba(140, 133, 127, 0.5);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;*/
}
.shop-categories ul li a:hover {
    background-color: rgba(140, 133, 127, 0.5);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;

}
.shop-categories ul li a span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    color: #FFF; 
}
.cart {}
.cart ul {
    margin: 0; 
    padding: 0;
    list-style: none;
}
.cart ul li {
    background-color: #F2EEEB;
    margin-bottom: 2px;
    padding: 3px;
}
.cart ul li span#totals {
    display: block;
    font-size: 22px;
    font-weight: 300;
    text-align: center;
    padding: 10px 0;
}
.cart ul li span#totals img {
    margin-right: 10px;
    margin-bottom: -3px;
    width: 34px !important;
    height: 21px !important;
}
.cart ul li div {
    /*border: 1px solid pink;*/
    display: inline-block;
    height: 100px;
    line-height: 100px;
    vertical-align: middle;
}
.cart ul li div#img { width: 15%;}
.cart ul li div#details { 
    width: 63%; 
    font-size: 18px;
    font-weight: 300;
}
.cart ul li div#total { 
    width: 20%;
    line-height: normal;
    text-align: center;
}
.cart ul li div img {
    width: 100px;
    height: 100px;
}
.cart ul li div span#price {
    display: inline-block;
    vertical-align: middle;
    margin-top: 10%;
    font-size: 22px;
    font-weight: 300;
}
.cart ul li div span#delete {
    display: block;
    border: 1px solid #DCD8D4;
    width: 80px;
    margin: auto;
    padding: 5px 0;
}
.cart ul li div span#delete input[type=checkbox] {
    vertical-align: middle;

}
.cart ul li div span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal; 
}
.cart ul li div span input#qty {
    width: 26px;
    padding: 2px 2px;
    margin-right: 5px;
    border: 1px solid #DCD8D4;
    color: #9A9086;
    font-size: 18px;
    font-weight: 300;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.cart ul li div a {
    display: block;
    width: 60%;
    margin: auto;
    padding: 5px;
    color: #FFF;
    background-color: #FF0092;
    height: 20px;
    font-size: 14px;
    text-decoration: none;
}
.cart a#update, a#checkout {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 0 0 5px;
    font-size: 14px;
    text-decoration: none;
    float: right;
    color: #FFF;
    background-color: #FF0092;
}
.cart input[type=submit]#update, input[type=submit]#checkout, input[type=submit]#continue {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 0 0 5px;
    font-size: 14px;
    text-decoration: none;
    float: right;
    color: #FFF;
    background-color: #DB7F7F;
    border: none;
    cursor: pointer;
}
.checkout { 
    /*border: 1px solid #DCD8D4; */
    clear: both;
    width: 560px;
    margin: 10px auto 0 auto;
}
.checkout label {
    width: 20%;
    display: inline-block;
    padding: 8px;
    /*border: 1px solid #DCD8D4;*/
    float: left;
    clear: both;
    margin-bottom: 3px;
}
.checkout input[type=text], input[type=password] {
    width: 72%;
    display: inline-block;
    padding: 8px;
    border: 1px solid #DCD8D4;
    float: left;
    margin-bottom: 3px;
    color: #9A9086;
    font-family: "Roboto",sans-serif;
    font-size: 13px;
    font-style: italic;
}
.checkout textarea {
    width: 72%;
    height: 80px;
    display: inline-block;
    padding: 8px;
    border: 1px solid #DCD8D4;
    float: left;
    margin-bottom: 3px;
    color: #9A9086;
    font-family: "Roboto",sans-serif;
    font-size: 13px;
    font-style: italic;
}
.checkout a#continue {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 12px 0 5px;
    font-size: 14px;
    text-decoration: none;
    float: right;
    color: #FFF;
    background-color: #FF0092;
}
.checkout input[type=submit] {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 12px 0 5px;
    font-size: 14px;
    text-decoration: none;
    float: right;
    color: #FFF;
    background-color: #BD3C3C;
    border: none;
    cursor: pointer;
}
.checkout span {
    display: block;
    font-size: 22px;
    font-weight: 300;
    padding: 10px 0px;
    margin: 20px 0px;
    border-bottom: 3px solid #F2EEEB;
}
.checkout-login {
    /*border: 1px solid #DCD8D4; */
    clear: both;
    width: 560px;
    margin: 10px auto 0 auto;
}
.checkout-login a#option {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 12px 0 5px;
    font-size: 14px;
    text-decoration: none;
    float: right;
    color: #FFF;
    background-color: #FF0092;
}
.checkout-login a#register-here {
    display: block;
    clear: both;
    float: right;
    margin: 10px;
}
.checkout-login img { display: block; margin: auto;}
.checkout-login label {
    width: 20%;
    display: inline-block;
    padding: 8px;
    /*border: 1px solid #DCD8D4;*/
    float: left;
    clear: both;
    margin-bottom: 3px;
}
.checkout-login input[type=text] {
    width: 72%;
    display: inline-block;
    padding: 8px;
    border: 1px solid #DCD8D4;
    float: left;
    margin-bottom: 3px;
    color: #9A9086;
    font-family: "Roboto",sans-serif;
    font-size: 13px;
    font-style: italic;
}
.checkout-login input[type=submit] {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 12px 0 5px;
    font-size: 14px;
    text-decoration: none;
    float: right;
    color: #FFF;
    background-color: #FF0092;
    border: none;
    cursor: pointer;
}
.checkout-login span {
    display: block;
    font-size: 22px;
    font-weight: 300;
    padding: 10px 0px;
    margin: 20px 0px;
    border-bottom: 3px solid #F2EEEB;
}
.payment-summary { 
    clear: both;
    width: 560px;
    margin: 10px auto 0 auto;
    text-align: center;
}
.payment-summary span {
    display: block;
    font-size: 22px;
    font-weight: 300;
    padding: 10px 0px;
    margin: 20px 0px;
    border-bottom: 3px solid #F2EEEB;
    text-align: left;
}
.payment-summary img#paypal {
    width: 218px !important;
    height: 114px !important;
}
.coupon {
    clear: both;
    width: 560px;
    margin: 10px auto 0 auto;
}
.coupon span {
    display: block;
    font-size: 22px;
    font-weight: 300;
    padding: 10px 0px;
    margin: 20px 0px;
    border-bottom: 3px solid #F2EEEB;
}
.coupon label {
    width: 20%;
    display: inline-block;
    padding: 8px;
    /*border: 1px solid #DCD8D4;*/
    float: left;
    clear: both;
    margin-bottom: 3px;
}
.coupon input[type=text] {
    width: 72%;
    display: inline-block;
    padding: 8px;
    border: 1px solid #DCD8D4;
    float: left;
    margin-bottom: 3px;
    color: #9A9086;
    font-family: "Roboto",sans-serif;
    font-size: 13px;
    font-style: italic;
}
.coupon input[type=submit] {
    display: inline-block;
    padding: 6px 12px;
    margin: 5px 12px 0 5px;
    font-size: 14px;
    text-decoration: none;
    float: right;
    color: #FFF;
    background-color: #FF0092;
    border: none;
    cursor: pointer;
}
.paypal {
    clear: both;
    width: 560px;
    margin: 10px auto 0 auto;
    text-align: center;
}
.paypal input[type=submit] {
    display: inline-block;
    padding: 12px 24px;
    margin: 5px 12px 0 5px;
    font-size: 14px;
    text-decoration: none;
    /*float: right;*/
    color: #FFF;
    background-color: #003d89;
    border: none;
    cursor: pointer;
}

@media (max-width: 991px) {

    /*SHOP*/
    .shop-menu {display: none;}
    .shop-categories { width: 100%; }
}

@media (max-width: 767px) {

    /*SHOP*/
    .shop-categories ul li {width: 200px; height: 200px;}
    .shop-categories ul li a {width: 200px; height: 200px; line-height: 200px;}
    .product-details {width:49%; margin-right: 1.5%;}
    .product-ingredients {width:49%;}
    .cart ul li div img { width: 100%; height: auto;}
    .cart ul li div#img { 
        width: 100%; 
        height: auto;
        line-height: normal;
        vertical-align: top;
    }
    .cart ul li div#details { width: 100%; text-align: center}
    .cart ul li div#total { width: 100%; height: auto; margin-bottom: 8px;}
    .cart ul li div span#price {margin-top: 0;}

    .checkout { width: 100%; }
    .checkout label {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;

    }
    .checkout input[type=text] {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .checkout textarea {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .checkout a#continue { margin: 5px 0 0 5px; }
    .checkout input[type=submit] { margin: 5px 0 0 5px; }

    .checkout-login { width: 100%; }
    .checkout-login label {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;

    }
    .checkout-login input[type=text] {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .checkout-login a#register-here { margin: 5px 0 0 5px; }
    .checkout-login input[type=submit] { margin: 10px 0 10px 10px; }

    .coupon { width: 100%; }
    .coupon label {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;

    }
    .coupon input[type=text] {
        width: 100%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .coupon input[type=submit] { margin: 5px 0 0 5px; }
    .payment-summary { width: 100%; }
    .paypal { width: 100%; }

}

@media (max-width: 479px) {

    /*SHOP*/
    .shop-categories {text-align: center;}
    div#shop-menu-mobile {
        display: block;
        margin: 4px 0;
        padding: 10px;
        text-decoration: none;
        color: #9A9086;
        background-color: #f7f7f7;
        cursor: pointer;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .shop-menu {width: 100%;}
    .shop-menu ul li a {width: auto;}
    .product-details {width:100%;}
    .product-ingredients {width:100%;}

}