@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --bg-grey: #f6f6f8;
    --bg-grey2: #878787;
    --bg-grey-hover: #eae9e9;
    --color-hover: #56cfe1;
    --color-red: #EC0101;
    --color-sale: #ffa800;
    --color-new: #01BAD4;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/*=============================== COMMON =============================== */
.mobile {
    display: none;
}
body {
    font-family: 'Roboto Slab', serif;
}
.mr__15 {
    margin-right: 15px;
}
.ml__5 {
    margin-left: 5px;
}
.text-red {
    color: var(--color-red);
}
.mask-overlay {
    content: '';
    position: fixed;
    background: rgba(0,0,0,.8);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.mask-overlay.active {
    opacity: 1;
    visibility: visible;
}
.mini-cart {
    position: fixed;
    background-color: #fff;
    right: -320px;
    width: 320px;
    height: 100%;
    z-index: 999;
    visibility: hidden;
    transition: all .3s ease-in;
}
.mini-cart .cart-header {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
}
.mini-cart .cart-header span:last-child {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: bold;
    width: 180px;
}
.mini-cart.open {
    right: 0;
    visibility: visible;
}
.cart-body .item-list {
    padding: 20px;
    overflow: auto;
    max-height: 400px;
}
.cart-body .item-list .item {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}
.cart-body .item-list .item .item-image {
    width: 80px;
    margin-right: 20px;
    position: relative;
}
.cart-body .item-list .item .item-image .remove-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.cart-body .item-list .item .item-image:hover .remove-item {
    opacity: 1;
    visibility: visible;
}
.cart-body .item-list .item .item-detail h4, .cart-body .item-list .item .item-detail p {
    font-size: 15px;
    margin-bottom: 0;
}
.cart-body .item-list .item .item-detail .item-name a {
    color: #222;
    text-decoration: none;
    transition: all .3s;
}
.cart-body .item-list .item .item-detail .item-name a:hover {
    color: var(--color-hover);
}
.cart-body .item-list .item .item-detail .item-qty {
    font-size: 14px;
    color: #787878;
}
.cart-body .sub-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3em 20px;
    font-size: 18px;
}
.cart-body .sub-total span:first-child {
    font-weight: bold;
    text-transform: uppercase;
}
.btn-mini-cart {
    padding: 0 20px;
}
.btn-mini-cart button {
    width: 100%;
    display: block;
    text-align: center;
    background: #222;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 11px;
    border: none;
    font-weight: 400;
    line-height: 40px;
    border-radius: 50px;
    transition: all .3s;
}
.btn-mini-cart button:hover {
    background-color: var(--color-hover);
}
.btn-mini-cart button:last-child {
    margin-top: 10px;
}
.bg-loadding {
    display: none;
}
.bg-loadding.active {
    display: block;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 999;
}
/*=============================== end COMMON =============================== */

/*=============================== HEADER =============================== */
header .header-top {
    background-color: var(--bg-grey);
    padding: 10px 15px;
    font-size: 13px;
}
.header-text span a {
    text-decoration: none;
    color: var(--bg-grey2);
    transition: all .3s;
}
.header-text span a:hover {
    color: var(--color-hover);
}
.header-text {
    color: var(--bg-grey2);
}
.header-text a {
    text-decoration: none;
    color: #222;
    transition: all .3s;
}
.header-text a:hover {
    color: var(--color-hover);
}
.currency {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.currency .current {
    color: var(--bg-grey2);
    cursor: pointer;
    position: relative;
}
.current-list {
    position: absolute;
    padding: 0;
    margin: 0;
    list-style: none;
    top: 28px;
    right: -15px;
    width: 100px;
    background-color: var(--bg-grey);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 10;
}
.current:hover > .current-list {
    opacity: 1;
    visibility: visible;
}
.current-list li a {
    display: block;
    padding: 8px 35px;
    text-decoration: none;
    color: var(--bg-grey2);
    transition: all .3s;
}
.current-list li a:hover {
    background-color: var(--bg-grey-hover);
    color: var(--color-hover);
}
.header-mid {
    padding: 0 15px;
}
.logo-text {
    font-family: 'Bebas Neue', cursive;
    text-decoration: none;
    color: #2C3E50;
    font-size: 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.logo-text:hover {
    color: #2C3E50;
}
.navigation {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar {
    list-style: none;
    padding: 0;
    margin: 0;
    float: left;
}
.navbar li {
    float: left;
    margin-right: 35px;
    padding: 18px 0;
    position: relative;
}
.navbar li a {
    text-decoration: none;
    color: #222;
    transition: all .5s;
    font-size: 14px;
}
.navbar li ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 70px;
    left: -15px;
    min-width: 230px;
    background-color: #fff;
    z-index: 999;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.navbar li ul li {
    width: 100%;
    line-height: 30px;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}
.navbar li ul li a {
    color: #878787;
}
.navbar li ul li a:hover {
    color: #222;
}
.navbar li ul li:last-child {
    border: none;
}
.action {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.action li {
    margin-right: 8px;
    padding: 15px 0;
    position: relative;
}
.action li .search-form {
    position: absolute;
    top: 58px;
    right: -30px;
    min-width: 260px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.action li:hover .search-form {
    opacity: 1;
    visibility: visible;
    right: -15px;
}
.action li .search-form input {
    border: none;
    font-size: 14px;
    border-bottom: 2px solid #ccc;
    width: 100%;
}
.action li .search-form input.error {
    border-color: #E74C3C;
}
.action li .search-form input.valid {
    border-color: #27AE60;
}
.action li .search-form input:focus {
    outline: none;
}
.action li .search-form button {
    background-color: #fff;
    border: none;
    font-size: 20px;
}
.action li a {
    color: #000;
    transition: all .3s;
}
.action li a:hover {
    color: var(--color-hover);
}
.action li a i {
    font-size: 24px;
}
.cart-number {
    position: absolute;
    top: 5px;
    right: -10px;
    width: 20px;
    height: 20px;
    background-color: #222;
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar li:hover ul {
    top: 60px;
    opacity: 1;
    visibility: visible;
}
.badge {
    position: absolute;
    color: #fff;
    font-size: 9px;
    padding: 1px 7px 0;
    border-radius: 50px;
    right: -15px;
    top: 6px;
    line-height: 16px;
}
.badge-sale {
    background-color: var(--color-sale);
}
.badge-new {
    background-color: var(--color-new);
}
.navbar li a.sale {
    color: var(--color-red);
}
.navbar li a:hover {
    color: var(--color-hover);
}
.navbar li a.active {
    color: var(--color-hover);
}
.owl-slider .item {
    max-height: 600px;
    background-color: #f8f8fa !important;
}
.owl-slider .item img {
    height: 100%;
    display: block;
}
.owl-slider {
    position: relative;
}
.owl-slider .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    bottom: 20px;
}
.owl-slider .owl-dots button.owl-dot {
    width: 11px;
    height: 11px;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    box-shadow: rgb(0 0 0 / 30%) 0px 0px 3px inset;
    border-radius: 20px;
    margin: 0px 6px;
    transition: all .5;
}
.owl-slider .owl-dots button.owl-dot:hover {
    background: rgba(0, 0, 0, 0.7);
}
.owl-slider .owl-dots button.owl-dot.active {
    background: rgba(0, 0, 0, 0.9);
}
.btn-view-cart {
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    border-radius: 50px;
    background-color: #222;
    color: #fff;
    display: block;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    transition: all .3s;
}
.btn-view-cart:hover {
    color: #fff;
    background-color: var(--color-red);
}
/*=============================== end HEADER =============================== */

/*=============================== CONTENT =============================== */
.featured-product {
    margin-bottom: 66px;
}
.featured-product .featured-product-head {
    padding: 66px 0;
    margin-bottom: 60px;
    overflow: hidden;
    background: #f9f9f9;
}
.featured-product .featured-product-head .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.featured-product .featured-product-head .col-left h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 0;
    padding-left: 10px;
    border-left: 2px solid var(--color-red);
}
.featured-product .featured-product-head .container .col-right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap-reverse;
}
.featured-product .nav-pills {
    padding-top: 18px;
}
.featured-product .nav-pills .nav-link {
    background-color: #f9f9f9;
    padding: 8px 10px;
    color: #888;
    margin-right: 8px;
    font-size: 15px;
    border-radius: 0;
    transition: all .3s;
}
.featured-product .nav-pills .nav-link:hover {
    background-color: var(--color-red);
    color: #fff;
}
.featured-product .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--color-red);
    color: #fff;
}
.view-all {
    display: block;
    margin-left: 60px;
    font-size: 15px;
    color: #fff;
    font-weight: 600;
    padding: 15px 25px;
    background-color:var(--color-sale);
    text-decoration: none;
    transition: all .3s;
}
.view-all:hover {
    color: #FFF;
    background-color: #222;
}
.card-product {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #fff;
    transition: all .5s;
    margin-bottom: 10px;
}
.card-product:hover {
    border: 1px solid #eee;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.card-product .card-image {
    max-height: 300px;
    overflow: hidden;
    position: relative;
}
.card-product .card-image img {
    width: 100%;
}
.card-product .card-image .card-status {
    position: absolute;
    top: 15px;
    left: 0;
    width: 95%;
    display: flex;
    justify-content: flex-end;
}
.card-product .card-image .card-status span {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
}
.card-product .card-image .card-status span.new {
    background-color: var(--color-new);
}
.card-product .card-image .card-status span.sale {
    background-color: var(--color-sale);
}
.card-product .card-image .card-status span:first-child {
    margin-right: 10px;
}
.card-product .card-image .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.card-product:hover .card-overlay {
    opacity: 1;
    visibility: visible;
}
.card-product:hover .card-overlay .btn-card {
    width: 50px;
    height: 50px;
}
.card-product .card-overlay .btn-card {
    width: 0;
    height: 0;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    text-decoration: none;
    transition: all .3s;
}
.card-product .card-overlay .btn-card.view {
    background-color: var(--color-red);
}
.card-product .card-overlay .btn-card.cart {
    background-color: var(--color-hover);
}
.card-product:hover .card-overlay .btn-card:hover {
    background-color: #2C3E50;
}
.card-product .card-caption {
    padding: 8px 10px 15px;
}
.card-product .card-caption h2 a {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    text-decoration: none;
    transition: all .3s;
}
.card-product .card-caption h2 a:hover {
    color: var(--color-new);
}
.card-product .card-caption .card-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.card-product .card-caption .card-price .price {
    font-size: 16px;
    font-weight: bold;
    color: var(--color-sale);
}
.card-product .card-caption .card-price .discount {
    font-size: 15px;
    text-decoration: line-through;
    color: var(--bg-grey2);
}
.policy {
    padding-top: 50px;
    padding-bottom: 25px;
}
.policy-box {
    display: flex;
    justify-content: flex-start;
}
.policy-box .icon {
    margin-right: 20px;
    font-size: 32px;
}
.policy-box .content h3 {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.policy-box .content p {
    font-size: 14px;
    color: #878787;
}
.blog {
    padding: 25px 0;
    background-color: #f6f6f8;
}
.blog-heading {
    font-size: 32px;
    line-height: 24px;
    text-align: center;
    font-family: 'Lobster', cursive;
    padding-top: 25px;
    padding-bottom: 50px;
    margin: 0;
}
.blog-box {
    width: 100%;
    box-sizing: border-box;
}
.blog-box .image-box {
    width: 100%;
}
.blog-box .image-box img {
    width: 100%;
}
.blog-box .content {
    margin-top: 5px;
}
.blog-box .content .title {
    margin: 0;
}
.blog-box .content .title a {
    font-size: 17px;
    text-decoration: none;
    font-weight: bold;
    color: #222;
    transition: all .3s;
    margin-bottom: 8px;
}
.blog-box .content .title a:hover {
    color: var(--color-red);
}
.blog-box .content .author {
    font-size: 15px;
    color: #878787;
    margin-top: 3px;
    margin-bottom: 10px;
}
.blog-box .content .author strong {
    color: #222;
}
.blog-box .content .summary {
    color: #878787;
    font-size: 15px;
}
.breabcrum {
    width: 100%;
    max-height: 100vh;
    background-image: url('https://hinh365.com/wp-content/uploads/2020/06/485d4fc62e76b1c2941505f12ac3ef42.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    padding: 70px 0;
    margin-bottom: 40px;
    text-align: center;
    color: #fff;
}
.sorting {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.sorting select {
    min-width: 240px;
    padding: 8px;
    font-size: 14px;
    margin: 10px 0;
    border-radius: 50px;
    color:#878787;
}
.post-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 40px;
}
.post-list h3 {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
}
.post-list h3:after {
    content: "";
    width: 60px;
    height: 2px;
    background: #222;
    left: 0;
    bottom: -5px;
    position: absolute;
}
.post-list li {
    position: relative;
}
.post-list li:before {
    content: "+";
    top: -2px;
    left: 0;
    position: absolute;
    color: #222;
}
.post-list li a {
    display: block;
    width: 100%;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: all .3s;
    padding-left: 15px;
}
.post-list li a:hover {
    color: var(--color-hover);
}
.post-list li a i {
    font-size: 8px;
    margin-right: 5px;
}
.post-list li a span {
    color: #878787;
    font-size: 14px;
    display: inline-block;
}
.post-list li a span i {
    font-size: 14px;
}
.related-post h3 {
    font-size: 18px;
    font-weight: bold;
    padding: 30px 0;
    margin: 0;
    text-transform: uppercase;
}
.related-item {
    margin-bottom: 30px;
}
.related-item .image img {
    width: 100%;
}
.relate-post-caption p {
    margin-bottom: 5px;
}
.relate-post-caption p a {
    font-size: 16px;
    text-decoration: none;
    color: #222;
    transition: all .3s;
    font-weight: bold;
    margin-top: 10px;
    display: block;
}
.relate-post-caption p a:hover {
    color: var(--color-hover);
}
.relate-post-caption span {
    font-size: 14px;
    color: #787878;
}
.image-product {
    border-radius: 10px;
    overflow: hidden;
}
.image-product img {
    width: 100%;
}
.category-name {
    font-size: 16px;
    font-weight: bold;
    color: #8E44AD;
    margin-top: 18px;
    font-family: 'Signika', sans-serif;
}
.price-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.price-box span.discount {
    font-size: 15px;
    color: #878787;
    margin-right: 20px;
    text-decoration: line-through;
}
.price-box span.price {
    font-size: 32px;
    color: var(--color-red);
    font-weight: bold;
    display: block;
}
.price-box .sale-badge {
    background-color: var(--color-sale);
    font-size: 13px;
    padding: 3px 15px;
    border-radius: 15px;
    margin-left: 15px;
    display: block;
    color: #fff;
}
.contact-box {
    margin-top: 35px;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #34495E;
    overflow: hidden;
}
.contact-box .contact-heading {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 10px 0;
    color: #eae9e9;
    background-color: #34495E;
    text-transform: uppercase;
}
.contact-box .contact-policy {
    margin-bottom: 0;
    margin-top: 15px;
}
.contact-box .contact-policy li {
    padding-bottom: 8px;
    color: #878787;
    font-size: 15px;
}
.rating {
    margin-top: 10px;
    font-size: 15px;
    color: #28B463;
}
.rating span {
    display: inline-block;
}
.rating span:first-child {
    padding-right: 5px;
    margin-right: 5px;
    border-right: 2px solid #28B463;
}
.rating span:first-child i {
    color: #F4D03F;
}
.add-cart {
    display: flex;
    justify-items: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}
.add-cart .quantity {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}
.add-cart .quantity span {
    width: 30px;
    height: 30px;
    color: #ccc;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
}
.add-cart .quantity input {
    width: 80px;
    padding: 2.5px 0;
    text-align: center;
    font-size: 14px;
    color: #878787;
    border: 1px solid #ccc;
}
.add-cart .quantity input:focus {
    outline: none;
}
.add-cart button {
    background-color: var(--color-red);
    text-align: center;
    padding: 15px 35px;
    border-radius: 4px;
    color: #fff;
    border: none;
    transition: all .3s;
}
.add-cart button i {
    font-size: 28px;
    font-weight: bold;
    margin-right: 5px;
}
.add-cart button:focus {
    outline: none;
}
.add-cart button:hover {
    background: #D50404;
}
.product-content {
    padding: 35px 0;
}
.product-title {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    background-color: var(--color-red);
    color: #fff;
    display: inline-block;
    margin-bottom: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.product-detail {
    padding: 15px;
    border: 1px solid #eee;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.news-box .news-item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.news-box .news-item .news-image {
    width: 30%;
}
.news-box .news-item .news-content {
    width: 70%;
    padding: 0 15px;
}
.news-box .news-item .news-image img {
    width: 100%;
}
.news-box .news-item .news-content .title a {
    font-size: 20px;
    color: #222;
    text-decoration: none;
    transition: all .3s;
}
.news-box .news-item .news-content .title a:hover {
    color: var(--color-red);
}
.news-box .news-item .news-content .widget {
    font-size: 14px;
    margin-top: 8px;
    color: #878787;
}
.news-box .news-item .news-content .widget span:first-child {
    margin-right: 10px;
}
.news-box .news-item .news-content .summary {
    margin-top: 15px;
    font-size: 15px;
    color: #878787;
}
.news-category-name {
    margin-bottom: 30px;
}
.form-cart {
    margin-top: 30px;
}
.form-cart .form-control {
    margin-bottom: 15px;
}
.cart-heading {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--color-red);
    font-weight: bold;
}
.shoping-cart {
    width: 100%;
    padding: 0;
    margin: 0;
}
.shoping-cart .item .image {
    width: 20%;
}
.shoping-cart .item .detail {
    width: 80%;
}
.shoping-cart .item .detail {
    padding: 0 10px;
}
.shoping-cart .item .image {
    border-radius: 15px;
    overflow: hidden;
}
.shoping-cart .item .image img {
    width: 100%;
}
.shoping-cart .item {
    display: flex;
    justify-content: flex-start;
    padding: 10px 15px;
    border: 1px solid #eee;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 15px;
    border-radius: 10px;
}
.shoping-cart .item .detail {
    position: relative;
}
.shoping-cart .item .detail h4 a {
    font-size: 18px;
    color: #222;
    text-decoration: none;
    transition: all .3s;
}
.shoping-cart .item .detail h4 a:hover {
    color: var(--color-hover);
}
.shoping-cart .item .detail span {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    display: block;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
    transition: all .3s;
    color: var(--color-red);
}
.shoping-cart .item .detail span:hover {
   color: #b80303;
}
.shoping-cart .item .detail p {
    margin-bottom: 0;
    color: #878787;
    font-size: 14px;
}
.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.total-price span:last-child {
    font-weight: bold;
    font-size: 24px;
}
/*=============================== end CONTENT =============================== */

/*=============================== FOOTER =============================== */
footer .copy-right .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.main-footer {
    background-color: #f6f6f8;
    padding: 30px 0;
}
.footer-logo {
    width: 100%;
    margin-bottom: 1.3em;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-logo img {
    max-width: 120px;
    height: auto;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #878787;
}
.footer-contact li a {
    color: #787878;
    text-decoration: none;
    transition: all .3s;
}
.footer-contact li a:hover {
    color: var(--color-hover);
}
.footer-contact li i {
    font-size: 24px;
    margin-right: 5px;
}
.social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.social li a {
    color: #878787;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all .3s;
}
.social li a:hover {
    color: var(--color-hover);
}
.list-category {
    list-style: none;
    margin: 0;
    padding: 0;
}
.list-category li h2 {
    font-size: 16px;
    font-weight: bold;
    color:#222;
    text-transform: uppercase;
    padding: 0 0 30px;
    margin-bottom: 0;
}
.list-category li a {
    display: block;
    width: 100%;
    padding:  0 0 5px;
    color: #878787;
    text-decoration: none;
    transition: all .3s;
}
.list-category li a:hover {
    color: var(--color-hover);
}
.form-register {
    margin-bottom: 10px;
}
.register h2 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 0 0 30px;
}
.register p {
    color: #878787;
    font-size: 15px;
}
.register .form-register {
    width: 100%;
    border: 1px solid #878787;
    padding: 2px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    margin-bottom: 15px;
}
.register .form-register input {
    border: none;
    background-color: transparent;
    padding-left: 10px;
}
.register .form-register input:focus {
    outline: none;
}
.register .form-register button {
    padding: 8px 15px;
    border-radius: 50px;
    width: 250px;
    background-color: #222;
    color: #FFF;
    transition: all .3s;
}
.register .form-register button:hover {
    background-color: var(--color-hover);
    border-color: var(--color-hover);
}
.register img {
    max-width: 100%;
}
.copy-right {
    padding: 20px 0;
}
.copy-right-text {
    color: #878787;
}
.copy-right-text a {
    text-decoration: none;
    color: var(--color-hover);
}
.copy-right-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.copy-right-list li a {
    color: #878787;
    margin-right: 10px;
    text-decoration: none;
    font-size: 15px;
    transition: all .3s;
    font-size: 15px;
}
.copy-right-list li a:hover {
    color: var(--color-hover);
}
.visitor {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.visitor h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: #85929E;
}
.visitor h4 span {
    display: inline-block;
    padding-bottom: 10px;
}
.visitor h4 p {
    font-size: 20px;
    font-weight: bold;
    color: #283747;
}
/*=============================== end FOOTER =============================== */