@import url(https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@200;300;400;500;600;700;900&display=swap);
@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Serif SC", "Cardo", serif;
  transition: all 0.3s ease;
}

::-moz-selection {
  color: #75C32C;
}

::selection {
  color: #75C32C;
}

a {
  text-decoration: none;
}

header {
  width: 100%;
  height: 87px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 200px;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
header.active, header.isActive {
  background-color: #fff;
  box-shadow: 0 2px 4px #ccc;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
header > a.logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #2B2F38;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.8px;
}
header > a.logo > img {
  width: 60px;
}
header > a.logo > span {
  margin-left: 10px;
}
header > a.logo > span:hover {
  color: #FC5F5F;
}
header > nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
header > nav > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 12px;
  letter-spacing: 0.3px;
  font-weight: 600;
}
header > nav > a:hover {
  color: #FC5F5F;
}
header > nav > a#cart-btn:hover {
  color: #000;
}
header > nav > a.myaccount {
  position: relative;
  height: 35px;
}
header > nav > a.myaccount:hover {
  color: #222;
}
header > nav > a.myaccount:hover > ol {
  display: block;
}
header > nav > a.myaccount > ol {
  position: absolute;
  top: 30px;
  left: -25px;
  width: 150px;
  background-color: #fff;
  border: 1px #ddd solid;
  border-radius: 5px;
  display: none;
}
header > nav > a.myaccount > ol:hover {
  display: block;
}
header > nav > a.myaccount > ol p {
  padding: 12px;
  color: #444;
}
header > nav > a.myaccount > ol p:hover {
  background-color: #e9e9e9;
}
header > nav > a.myaccount > ol p i {
  margin-right: 9px;
  color: #FC5F5F;
}
header > nav > a > p {
  color: #FC5F5F;
  font-weight: 900;
}
header > nav > a > .icon {
  margin-left: 8px;
  position: relative;
}
header > nav > a > .icon > .cart-number {
  position: absolute;
  top: -60%;
  right: -60%;
  background-color: #FC5F5F;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 0;
  text-align: center;
  font-size: 13px;
}
header > nav > a > .icon > .cart-number::-moz-selection {
  color: #75C32C;
}
header > nav > a > .icon > .cart-number::selection {
  color: #75C32C;
}
header > nav > a > .icon > .cart-number span {
  padding: 0;
  margin: 0;
}
header > nav > a > .icon > i {
  color: #FC5F5F;
}

.index {
  width: 100%;
  min-height: 100vh;
  background-color: #F9F9F9;
}
.index > section > h2 {
  font-size: 28px;
}
.index > section > p {
  margin-top: 12px;
}
.index > .banner {
  width: 100%;
  height: 80vh;
  background-image: url("/images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-bottom-right-radius: 69px;
  border-bottom-left-radius: 69px;
  position: relative;
}
.index > .banner > .text {
  position: absolute;
  top: 45%;
  transform: translateX(-50%);
  left: 25%;
  letter-spacing: 1.6px;
}
.index > .banner > .text h1 {
  font-size: 20px;
  font-weight: 600;
}
.index > .banner > .text h1 > span {
  color: #FC5F5F;
  font-weight: 900;
  font-size: 28px;
}
.index > .banner > .text p {
  font-size: 36px;
  font-weight: 900;
  margin-top: 10px;
}
.index > .banner > .text span {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}
.index > .banner > .text a {
  width: 150px;
  height: 45px;
  background-color: #FC5F5F;
  color: #fff;
  text-align: center;
  line-height: 45px;
  border-radius: 45px;
  display: block;
  font-weight: 800;
  font-size: 12px;
  margin-top: 25px;
}
.index > .banner > .text a::-moz-selection {
  color: #75C32C;
}
.index > .banner > .text a::selection {
  color: #75C32C;
}
.index > .banner > .text a:hover {
  background-color: #75C32C;
}
.index > .intro {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0 10px;
}
.index > .intro > .item {
  margin: 0 80px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.index > .intro > .item > i {
  color: #75C32C;
  font-size: 24px;
}
.index > .intro > .item > .intro-text {
  margin-left: 20px;
  max-width: 200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.index > .intro > .item > .intro-text h3 {
  font-size: 20px;
  font-weight: 700;
}
.index > .intro > .item > .intro-text p {
  font-size: 15px;
  margin-top: 10px;
}
.index > .news {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 0;
}
.index > .news > .products-list {
  margin-top: 70px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 24%);
  grid-column-gap: 20px;
  grid-row-gap: 2rem;
  justify-content: center;
  margin-bottom: 40px;
}
.index > .news > .products-list > .item {
  width: 100%;
  position: relative;
}
.index > .news > .products-list > .item:hover > .add-cart {
  opacity: 1;
}
.index > .news > .products-list > .item > .sale-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 10px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #333;
  box-shadow: 0 2px 5px rgba(187, 187, 187, 0.7333333333);
  cursor: default;
}
.index > .news > .products-list > .item > .add-cart {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}
.index > .news > .products-list > .item > .add-cart.not {
  cursor: default;
}
.index > .news > .products-list > .item > .add-cart > .loading {
  width: 15px;
  height: 15px;
  background-color: #555;
  border-radius: 50%;
  animation: loading 0.5s infinite linear;
}
@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.index > .news > .products-list > .item > .add-cart > i {
  color: #333;
  font-size: 15px;
}
.index > .news > .products-list > .item > .add-cart:hover ~ .toolbox {
  opacity: 1;
}
.index > .news > .products-list > .item > .toolbox {
  right: 60px;
  top: 17px;
  width: 100px;
  height: 28px;
  background-color: #333;
  position: absolute;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding-top: 4px;
  opacity: 0;
}
.index > .news > .products-list > .item > .toolbox::after {
  position: absolute;
  content: "";
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
.index > .news > .products-list > .item > img {
  width: 100%;
  padding-bottom: 0%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  cursor: pointer;
}
.index > .news > .products-list > .item > small {
  font-size: 13px;
  color: #878787;
}
.index > .news > .products-list > .item > h3 {
  font-weight: 700;
}
.index > .news > .products-list > .item > span {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.index > .news > .products-list > .item > span i {
  font-size: 12px;
  color: #F9C349;
  margin-right: 5px;
}
.index > .news > .products-list > .item > .price-row span {
  font-weight: 700;
  font-size: 15px;
}
.index > .news > .products-list > .item > .price-row span.price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}
.index > .news > .products-list > .item > .price-row span.sale-price {
  color: #000;
}
.index > .news > .readmore {
  background-color: #FC5F5F;
  color: #fff;
  border-radius: 4px;
  padding-top: 15px;
  padding-right: 31px;
  padding-bottom: 15px;
  padding-left: 31px;
  margin-top: 35px;
}
.index > .news > .readmore::-moz-selection {
  color: #75C32C;
}
.index > .news > .readmore::selection {
  color: #75C32C;
}
.index > .news > .readmore:hover {
  background-color: #75C32C;
}
.index > .news > .readmore > svg {
  float: right;
  margin-left: 10px;
}
.index > .featured {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 100px 50px;
}
.index > .featured > .featured-list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 70px;
}
.index > .featured > .featured-list > .item {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.index > .featured > .featured-list > .item > .imgbox {
  width: 100%;
  overflow: hidden;
  padding-bottom: 0%;
}
.index > .featured > .featured-list > .item > .imgbox:hover > img {
  transform: scale(1.2);
}
.index > .featured > .featured-list > .item > .imgbox > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index > .featured > .featured-list > .item > h4 {
  font-size: 21px;
  font-weight: 700;
  margin-top: 16px;
}
.index > .combos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.index > .combos > .combo {
  height: 70vh;
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.index > .combos > .combo > .cover {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.index > .combos > .combo > .text-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 2px #fff solid;
  width: 100%;
  max-width: 1200px;
  padding: 35px 0 55px;
  z-index: 9;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.index > .combos > .combo > .text-container > div > p {
  font-size: 14px;
  font-weight: 600;
}
.index > .combos > .combo > .text-container > div > h4 {
  font-size: 34px;
  font-weight: 800;
  margin-top: 5px;
}
.index > .combos > .combo > .text-container > a {
  border: 1px #fff solid;
  display: block;
  text-align: center;
  padding: 13px 40px;
  border-radius: 8px;
  font-weight: 700;
  background-color: transparent;
}
.index > .combos > .combo > .text-container > a:hover {
  color: #000;
  background-color: #fff;
}
.index > .combos > .combo > .text-container > a > svg {
  float: right;
  transition: 0.3s;
  margin-left: 5px;
}
.index > .feedback {
  width: 100%;
  max-width: 1200px;
  padding: 100px 0;
  margin: 0 auto;
}
.index > .feedback > .feedback-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.index > .feedback > .feedback-list > .item {
  width: 30%;
  padding: 5%;
  margin: 0 25px;
  text-align: center;
  background-color: #F1F2F2;
  border-radius: 10px;
}
.index > .feedback > .feedback-list > .item > .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F9C349;
  font-size: 12px;
}
.index > .feedback > .feedback-list > .item > p {
  width: 100%;
  font-size: 15px;
  font-weight: 700;
  margin-top: 12px;
}
.index > .feedback > .feedback-list > .item > span {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}
.index > .bottom-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 250px 0;
  width: 100%;
  background-image: url("/images/b1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.index > .bottom-intro > .cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.3);
}
.index > .bottom-intro > .text-intro {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.index > .bottom-intro > .text-intro > span {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 30px;
}
.index > .bottom-intro > .text-intro > h3 {
  font-size: 52px;
  font-weight: 900;
}
.index > .bottom-intro > .text-intro > .readmore {
  background-color: #FC5F5F;
  color: #fff;
  border-radius: 4px;
  padding-top: 15px;
  padding-right: 31px;
  padding-bottom: 15px;
  padding-left: 31px;
  margin-top: 35px;
}
.index > .bottom-intro > .text-intro > .readmore::-moz-selection {
  color: #75C32C;
}
.index > .bottom-intro > .text-intro > .readmore::selection {
  color: #75C32C;
}
.index > .bottom-intro > .text-intro > .readmore:hover {
  background-color: #75C32C;
}
.index > .bottom-intro > .text-intro > .readmore > svg {
  float: right;
  margin-left: 10px;
}

.store {
  padding: 180px 50px;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}
.store > h3 {
  font-size: 60px;
  font-weight: 900;
  color: #8B8698;
  margin-top: 20px;
}
.store > .filter-list {
  margin-top: 50px;
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store > .filter-list > div select {
  border: none;
  outline: none;
  width: 200px;
  height: 40px;
  font-size: 15px;
}
.store > .filter-list > div select:focus {
  border: none;
  outline: none;
  box-shadow: none;
}
.store > .products-list {
  margin-top: 70px;
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 24%);
  grid-column-gap: 20px;
  grid-row-gap: 2rem;
  justify-content: center;
  margin-bottom: 40px;
}
.store > .products-list > .item {
  width: 100%;
  position: relative;
}
.store > .products-list > .item:hover > .add-cart {
  opacity: 1;
}
.store > .products-list > .item > .sale-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 10px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #333;
  box-shadow: 0 2px 5px rgba(187, 187, 187, 0.7333333333);
  cursor: default;
}
.store > .products-list > .item > .add-cart {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}
.store > .products-list > .item > .add-cart.not {
  cursor: default;
}
.store > .products-list > .item > .add-cart > .loading {
  width: 15px;
  height: 15px;
  background-color: #555;
  border-radius: 50%;
  animation: loading 0.5s infinite linear;
}
@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.store > .products-list > .item > .add-cart > i {
  color: #333;
  font-size: 15px;
}
.store > .products-list > .item > .add-cart:hover ~ .toolbox {
  opacity: 1;
}
.store > .products-list > .item > .toolbox {
  right: 60px;
  top: 17px;
  width: 100px;
  height: 28px;
  background-color: #333;
  position: absolute;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding-top: 4px;
  opacity: 0;
}
.store > .products-list > .item > .toolbox::after {
  position: absolute;
  content: "";
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
.store > .products-list > .item > img {
  width: 100%;
  padding-bottom: 0%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  cursor: pointer;
}
.store > .products-list > .item > small {
  font-size: 13px;
  color: #878787;
}
.store > .products-list > .item > h3 {
  font-weight: 700;
}
.store > .products-list > .item > span {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.store > .products-list > .item > span i {
  font-size: 12px;
  color: #F9C349;
  margin-right: 5px;
}
.store > .products-list > .item > .price-row span {
  font-weight: 700;
  font-size: 15px;
}
.store > .products-list > .item > .price-row span.price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}
.store > .products-list > .item > .price-row span.sale-price {
  color: #000;
}

.product-detail {
  padding: 180px 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.product-detail > .product {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.product-detail > .product > .product-image {
  width: 48%;
  margin: 0;
}
.product-detail > .product > .product-image > .imgBox {
  width: 100%;
  padding-bottom: 0%;
  position: relative;
}
.product-detail > .product > .product-image > .imgBox > .magnifying {
  position: absolute;
  top: 10px;
  right: 13px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
}
.product-detail > .product > .product-image > .imgBox > .magnifying > i {
  color: #444;
}
.product-detail > .product > .product-image > .imgBox > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail > .product > .product-intro {
  width: 47%;
  margin-left: 5%;
}
.product-detail > .product > .product-intro > a.category-name {
  color: #8B8698;
  font-size: 14px;
}
.product-detail > .product > .product-intro > a.category-name:hover {
  color: #FC5F5F;
}
.product-detail > .product > .product-intro > h1.product-title {
  font-size: 28px;
  font-weight: 900;
  margin-top: 6px;
}
.product-detail > .product > .product-intro > .price-list {
  display: flex;
  align-items: center;
  margin-top: 6px;
}
.product-detail > .product > .product-intro > .price-list > .ori-price {
  color: #8B8698;
  text-decoration: line-through;
  font-size: 15px;
  font-weight: 700;
  margin-right: 8px;
}
.product-detail > .product > .product-intro > .price-list > .sale-price {
  color: #222;
  font-size: 24px;
  font-weight: 800;
}
.product-detail > .product > .product-intro > .price-list > span {
  color: #8B8698;
  margin-left: 10px;
  font-size: 14px;
}
.product-detail > .product > .product-intro > .short-description {
  font-size: 15px;
  color: #878787;
  margin-top: 12px;
}
.product-detail > .product > .product-intro > .add-cart {
  margin-top: 12px;
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px #ddd solid;
}
.product-detail > .product > .product-intro > .add-cart > .input-number {
  display: flex;
  align-items: center;
}
.product-detail > .product > .product-intro > .add-cart > .input-number > button {
  width: 38px;
  display: flex;
  justify-content: center;
  background-color: transparent;
  color: #8B8698;
  align-items: center;
  outline: 0;
  border: 1px #ddd solid;
  font-size: 18px;
  height: 35px;
  font-weight: 800;
}
.product-detail > .product > .product-intro > .add-cart > .input-number > button.decrement {
  border-right: none;
}
.product-detail > .product > .product-intro > .add-cart > .input-number > button.increment {
  border-left: none;
}
.product-detail > .product > .product-intro > .add-cart > .input-number input[type=number] {
  width: 40px;
  height: 35px;
  outline: 0;
  border: 1px #ddd solid;
  background-color: transparent;
  font-size: 16px;
  color: #8B8698;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
  box-shadow: none;
  -moz-appearance: textfield;
}
.product-detail > .product > .product-intro > .add-cart > .input-number input[type=number]::-webkit-outer-spin-button, .product-detail > .product > .product-intro > .add-cart > .input-number input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-detail > .product > .product-intro > .add-cart > button.addtocart {
  width: 150px;
  height: 35px;
  background-color: #FC5F5F;
  color: #fff;
  border-radius: 4px;
  outline: none;
  border: none;
  font-weight: 700;
  font-size: 14px;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail > .product > .product-intro > .add-cart > button.addtocart::-moz-selection {
  color: #fff;
}
.product-detail > .product > .product-intro > .add-cart > button.addtocart::selection {
  color: #fff;
}
.product-detail > .product > .product-intro > .add-cart > button.addtocart:hover {
  background-color: #75C32C;
}
.product-detail > .product > .product-intro > .add-cart > button.addtocart > .loading {
  width: 15px;
  height: 15px;
  background-color: #555;
  border-radius: 50%;
  display: block;
  animation: loading 0.5s infinite linear;
}
@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.product-detail > .product > .product-intro > .category {
  margin-top: 12px;
  color: #8B8698;
  font-size: 14px;
}
.product-detail > .product > .product-intro > .category > a:hover {
  color: #FC5F5F;
}
.product-detail > .detailed {
  margin-top: 50px;
  width: 100%;
}
.product-detail > .detailed > .detailed-btn {
  border-top: 1px #ddd solid;
}
.product-detail > .detailed > .detailed-btn > button {
  font-weight: 500;
  margin-right: 20px;
  padding: 5px 0;
  color: #555;
  font-size: 15px;
}
.product-detail > .detailed > .detailed-btn > button.active {
  border-top: 3px #8B8698 solid;
}
.product-detail > .detailed > .description {
  width: 100%;
  margin-top: 20px;
}
.product-detail > .detailed > .description p {
  color: #555;
  font-size: 15px;
}
.product-detail > .detailed > .comment {
  margin-top: 20px;
}
.product-detail > .detailed > .comment .comment-list {
  display: flex;
  flex-direction: column;
}
.product-detail > .detailed > .comment .comment-list > .comment-item {
  width: 100%;
  border-bottom: 1px #eee solid;
  padding: 10px 0;
}
.product-detail > .detailed > .comment .comment-list > .comment-item p.name {
  font-size: 14px;
  color: #444;
}
.product-detail > .detailed > .comment .comment-list > .comment-item > .score {
  display: flex;
  align-items: center;
}
.product-detail > .detailed > .comment .comment-list > .comment-item > .score span {
  margin: 0 1px;
  color: #ccc;
  font-size: 13px;
}
.product-detail > .detailed > .comment .comment-list > .comment-item > .score span.full {
  color: #FC5F5F;
}
.product-detail > .detailed > .comment .comment-list > .comment-item > .date {
  font-size: 12px;
  color: #777;
}
.product-detail > .detailed > .comment .comment-list > .comment-item > article {
  font-size: 15px;
  color: #111;
  margin-top: 15px;
}
.product-detail > .detailed > .comment .null-comment {
  margin-top: 15px;
  font-size: 14px;
  color: #777;
}
.product-detail > .detailed > .comment > form {
  width: 100%;
  border: 1px #ddd solid;
  padding: 25px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.product-detail > .detailed > .comment > form h3 {
  color: #777;
  font-size: 22px;
}
.product-detail > .detailed > .comment > form label {
  color: #777;
  margin: 8px 0;
  font-size: 15px;
}
.product-detail > .detailed > .comment > form label .rating {
  display: flex; /* 使用 flexbox */
  flex-direction: row-reverse;
  font-size: 0;
  width: 130px;
}
.product-detail > .detailed > .comment > form label .rating input[type=radio] {
  display: none;
}
.product-detail > .detailed > .comment > form label .rating label {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-size: 24px;
  line-height: 25px;
  text-align: center;
  color: #ccc;
}
.product-detail > .detailed > .comment > form label .rating label:hover,
.product-detail > .detailed > .comment > form label .rating label:hover ~ label,
.product-detail > .detailed > .comment > form label .rating input[type=radio]:checked ~ label {
  color: #FC5F5F;
}
.product-detail > .detailed > .comment > form label textarea {
  width: 100%;
  height: 80px;
  resize: vertical;
  border: 1px #ddd solid;
  outline: none;
  margin-top: 3px;
}
.product-detail > .detailed > .comment > form label button {
  width: 120px;
  height: 40px;
  border-radius: 5px;
  background-color: #FC5F5F;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detail > .detailed > .comment > form label button::-moz-selection {
  color: #75C32C;
}
.product-detail > .detailed > .comment > form label button::selection {
  color: #75C32C;
}
.product-detail > .detailed > .comment > form label button:hover {
  background-color: #75C32C;
}
.product-detail > .belike {
  width: 100%;
  margin-top: 120px;
}
.product-detail > .belike h3 {
  font-weight: 700;
  font-size: 21px;
  color: #000;
}
.product-detail > .belike > .products-list {
  display: grid;
  margin-top: 20px;
  width: 100%;
  grid-template-columns: repeat(4, 24%);
  grid-column-gap: 20px;
  grid-row-gap: 2rem;
  justify-content: center;
  margin-bottom: 40px;
}
.product-detail > .belike > .products-list > .item {
  width: 100%;
  position: relative;
}
.product-detail > .belike > .products-list > .item:hover > .add-cart {
  opacity: 1;
}
.product-detail > .belike > .products-list > .item > .sale-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 10px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  color: #333;
  box-shadow: 0 2px 5px rgba(187, 187, 187, 0.7333333333);
  cursor: default;
}
.product-detail > .belike > .products-list > .item > .add-cart {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  cursor: pointer;
}
.product-detail > .belike > .products-list > .item > .add-cart.not {
  cursor: default;
}
.product-detail > .belike > .products-list > .item > .add-cart > .loading {
  width: 15px;
  height: 15px;
  background-color: #555;
  border-radius: 50%;
  animation: loading 0.5s infinite linear;
}
@keyframes loading {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}
.product-detail > .belike > .products-list > .item > .add-cart > i {
  color: #333;
  font-size: 15px;
}
.product-detail > .belike > .products-list > .item > .add-cart:hover ~ .toolbox {
  opacity: 1;
}
.product-detail > .belike > .products-list > .item > .toolbox {
  right: 60px;
  top: 17px;
  width: 100px;
  height: 28px;
  background-color: #333;
  position: absolute;
  border-radius: 4px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  padding-top: 4px;
  opacity: 0;
}
.product-detail > .belike > .products-list > .item > .toolbox::after {
  position: absolute;
  content: "";
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-width: 6px;
  border-style: solid;
  border-top-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-left-color: #333;
}
.product-detail > .belike > .products-list > .item > img {
  width: 100%;
  padding-bottom: 0%;
  height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 10px;
  cursor: pointer;
}
.product-detail > .belike > .products-list > .item > small {
  font-size: 13px;
  color: #878787;
}
.product-detail > .belike > .products-list > .item > h3 {
  font-weight: 700;
}
.product-detail > .belike > .products-list > .item > span {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.product-detail > .belike > .products-list > .item > span i {
  font-size: 12px;
  color: #F9C349;
  margin-right: 5px;
}
.product-detail > .belike > .products-list > .item > .price-row span {
  font-weight: 700;
  font-size: 15px;
}
.product-detail > .belike > .products-list > .item > .price-row span.price {
  text-decoration: line-through;
  color: #888;
  margin-right: 8px;
}
.product-detail > .belike > .products-list > .item > .price-row span.sale-price {
  color: #000;
}

.shop-cart-component {
  padding: 180px 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.shop-cart-component > h3 {
  color: #555;
  font-size: 20px;
  font-weight: 600;
}
.shop-cart-component > .cart {
  display: flex;
}
.shop-cart-component > .cart > .products {
  width: 70%;
  margin-top: 30px;
}
.shop-cart-component > .cart > .products table {
  width: 100%;
  border: 1px #ddd solid;
}
.shop-cart-component > .cart > .products table thead {
  background-color: #F8F8F8;
  height: 50px;
  color: #8B8698;
}
.shop-cart-component > .cart > .products table thead tr {
  border: 1px #ddd solid;
}
.shop-cart-component > .cart > .products table thead tr th {
  text-align: left;
  padding: 0 17px;
}
.shop-cart-component > .cart > .products table tbody tr {
  border-bottom: 1px #ddd solid;
}
.shop-cart-component > .cart > .products table tbody tr td {
  padding: 10px 15px;
}
.shop-cart-component > .cart > .products table tbody tr td img {
  width: 70px;
  height: 70px;
  margin-right: 12px;
}
.shop-cart-component > .cart > .products table tbody tr td p {
  color: #555;
}
.shop-cart-component > .cart > .products table tbody tr td > .input-number {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.shop-cart-component > .cart > .products table tbody tr td > .input-number > button {
  width: 35px;
  display: flex;
  justify-content: center;
  background-color: transparent;
  color: #8B8698;
  align-items: center;
  outline: 0;
  border: 1px #ddd solid;
  font-size: 18px;
  height: 33px;
  font-weight: 800;
}
.shop-cart-component > .cart > .products table tbody tr td > .input-number > button.decrement {
  border-right: none;
}
.shop-cart-component > .cart > .products table tbody tr td > .input-number > button.increment {
  border-left: none;
}
.shop-cart-component > .cart > .products table tbody tr td > .input-number input[type=number] {
  width: 38px;
  height: 33px;
  outline: 0;
  border: 1px #ddd solid;
  background-color: transparent;
  font-size: 16px;
  color: #8B8698;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
  box-shadow: none;
  -moz-appearance: textfield;
}
.shop-cart-component > .cart > .products table tbody tr td > .input-number input[type=number]::-webkit-outer-spin-button, .shop-cart-component > .cart > .products table tbody tr td > .input-number input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop-cart-component > .cart > .products table tbody tr td i {
  color: rgba(190, 0, 0, 0.5);
  cursor: pointer;
}
.shop-cart-component > .cart > .products table tbody tr td i:hover {
  color: rgba(190, 0, 0, 0.9);
}
.shop-cart-component > .cart > .details {
  width: 25%;
  margin-left: 5%;
  margin-top: 30px;
  border: 1px #ddd solid;
  position: relative;
  height: 420px;
}
.shop-cart-component > .cart > .details > .details-title {
  width: 100%;
  height: 50px;
  background-color: #F8F8F8;
  padding: 12px;
  border-bottom: 1px #ddd solid;
}
.shop-cart-component > .cart > .details > .details-title h5 {
  color: #111;
  font-weight: 800;
  font-size: 16px;
}
.shop-cart-component > .cart > .details > .subtotal {
  padding: 25px;
  color: #333;
}
.shop-cart-component > .cart > .details > .subtotal > div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px #ddd solid;
  padding: 10px 0;
}
.shop-cart-component > .cart > .details > .coupon {
  padding: 10px 25px;
  width: 100%;
}
.shop-cart-component > .cart > .details > .coupon > input {
  border: #ccc 1px solid;
  width: 100%;
  height: 36px;
  box-shadow: none;
}
.shop-cart-component > .cart > .details > .coupon > button {
  margin-top: 10px;
  background-color: transparent;
  border: 1px #FC5F5F solid;
  color: #FC5F5F;
  width: 100%;
  height: 45px;
  border-radius: 5px;
}
.shop-cart-component > .cart > .details > .coupon > button:hover {
  border: 1px #75C32C solid;
  color: #75C32C;
}
.shop-cart-component > .cart > .details > .checkout {
  width: 100%;
  padding: 12px;
  position: absolute;
  bottom: 0;
}
.shop-cart-component > .cart > .details > .checkout button {
  background-color: #FC5F5F;
  color: #fff;
  width: 100%;
  height: 45px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop-cart-component > .cart > .details > .checkout button::-moz-selection {
  color: #75C32C;
}
.shop-cart-component > .cart > .details > .checkout button::selection {
  color: #75C32C;
}
.shop-cart-component > .cart > .details > .checkout button:hover {
  background-color: #75C32C;
}
.shop-cart-component > .cart > .empiyCart {
  width: 100%;
  background-color: #F7F6F7;
  padding: 25px 0;
  text-align: center;
  margin-top: 30px;
  color: #878787;
}
.shop-cart-component > .cart > .empiyCart > a {
  display: block;
  margin: 0 auto;
  margin-top: 15px;
  background-color: #FC5F5F;
  color: #fff;
  width: 150px;
  height: 45px;
  line-height: 44px;
  border-radius: 5px;
}
.shop-cart-component > .cart > .empiyCart > a::-moz-selection {
  color: #75C32C;
}
.shop-cart-component > .cart > .empiyCart > a::selection {
  color: #75C32C;
}
.shop-cart-component > .cart > .empiyCart > a:hover {
  background-color: #75C32C;
}

.login, .reset-password {
  width: 100%;
  padding: 180px 0;
  background-color: #f1f1f1;
}
.login > form, .reset-password > form {
  width: 100%;
  max-width: 800px;
  padding: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.login > form > h2, .reset-password > form > h2 {
  font-size: 18px;
}
.login > form > label, .reset-password > form > label {
  width: 100%;
  color: #333;
  margin: 10px 0;
}
.login > form > label > input[type=email], .login > form > label input[type=password], .login > form > label input[type=text], .reset-password > form > label > input[type=email], .reset-password > form > label input[type=password], .reset-password > form > label input[type=text] {
  width: 100%;
  border: 1px #ddd solid;
  box-shadow: none;
  outline: none;
  font-size: 15px;
}
.login > form > label > input[type=email]:focus, .login > form > label input[type=password]:focus, .login > form > label input[type=text]:focus, .reset-password > form > label > input[type=email]:focus, .reset-password > form > label input[type=password]:focus, .reset-password > form > label input[type=text]:focus {
  outline: none;
  box-shadow: none;
}
.login > form > label > button, .reset-password > form > label > button {
  width: 150px;
  height: 42px;
  background-color: #FC5F5F;
  font-weight: 700;
  border-radius: 25px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login > form > label > button::-moz-selection, .reset-password > form > label > button::-moz-selection {
  color: #75C32C;
}
.login > form > label > button::selection, .reset-password > form > label > button::selection {
  color: #75C32C;
}
.login > form > div, .reset-password > form > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.login > form > div a, .reset-password > form > div a {
  color: #888;
  font-size: 15px;
}
.login > form > div a:hover, .reset-password > form > div a:hover {
  color: #FC5F5F;
}

.profile {
  width: 100%;
  padding: 180px 0;
  background-color: #f1f1f1;
}
.profile > form {
  width: 100%;
  max-width: 800px;
  padding: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.profile > form > h2 {
  font-size: 18px;
}
.profile > form > div.label-group {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0;
}
.profile > form > div.label-group > label {
  width: 48%;
  color: #333;
}
.profile > form > div.label-group > label > p {
  font-size: 14px;
  margin-bottom: 3px;
}
.profile > form > div.label-group > label > input[type=email], .profile > form > div.label-group > label input[type=password], .profile > form > div.label-group > label input[type=text], .profile > form > div.label-group > label select {
  width: 100%;
  height: 36px;
  border: 1px #ddd solid;
  box-shadow: none;
  outline: none;
  font-size: 15px;
}
.profile > form > div.label-group > label > input[type=email]:focus, .profile > form > div.label-group > label input[type=password]:focus, .profile > form > div.label-group > label input[type=text]:focus, .profile > form > div.label-group > label select:focus {
  outline: none;
  box-shadow: none;
}
.profile > form > div.label-group > label > button {
  width: 150px;
  height: 42px;
  background-color: #FC5F5F;
  font-weight: 700;
  border-radius: 25px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile > form > div.label-group > label > button::-moz-selection {
  color: #75C32C;
}
.profile > form > div.label-group > label > button::selection {
  color: #75C32C;
}
.profile > form > div.label-group > label > select {
  padding: 0 10px;
}
.profile > form > label {
  width: 100%;
  color: #333;
  margin: 6px 0;
}
.profile > form > label a {
  color: #0A7CFF;
  font-size: 14px;
}
.profile > form > label a:hover {
  color: #1484c4;
}
.profile > form > label > p {
  font-size: 14px;
  margin-bottom: 3px;
}
.profile > form > label > input[type=email], .profile > form > label input[type=password], .profile > form > label input[type=text], .profile > form > label select {
  width: 100%;
  border: 1px #ddd solid;
  box-shadow: none;
  outline: none;
  font-size: 15px;
  height: 36px;
}
.profile > form > label > input[type=email]:focus, .profile > form > label input[type=password]:focus, .profile > form > label input[type=text]:focus, .profile > form > label select:focus {
  outline: none;
  box-shadow: none;
}
.profile > form > label > button {
  width: 150px;
  height: 42px;
  background-color: #FC5F5F;
  font-weight: 700;
  border-radius: 25px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile > form > label > button::-moz-selection {
  color: #75C32C;
}
.profile > form > label > button::selection {
  color: #75C32C;
}
.profile > form > label > select {
  padding: 0 10px;
}
.profile > form > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.profile > form > div.title-group > h2 {
  font-size: 18px;
  margin-top: 18px;
}
.profile > form > div.title-group label {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}
.profile > form > div.title-group label > input {
  margin-right: 5px;
}
.profile > form > div.btn-group {
  justify-content: flex-end;
  margin-top: 30px;
}
.profile > form > div.btn-group > button {
  width: 150px;
  height: 42px;
  background-color: #FC5F5F;
  font-weight: 700;
  border-radius: 25px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  margin-left: 10px;
}
.profile > form > div.btn-group > button::-moz-selection {
  color: #75C32C;
}
.profile > form > div.btn-group > button::selection {
  color: #75C32C;
}
.profile > form > div.btn-group > button:hover {
  background-color: transparent;
  color: #FC5F5F;
  border: 1px #FC5F5F solid;
}
.profile > form > div.btn-group > button.cancel {
  color: #555;
  border: 1px #ccc solid;
  background-color: transparent;
}
.profile > form > div.btn-group > button.cancel:hover {
  border-color: #555;
}
.profile > form > div > a {
  color: #888;
  font-size: 15px;
}
.profile > form > div > a:hover {
  color: #FC5F5F;
}

.checkout-success {
  width: 100%;
  padding: 180px 0;
  background-color: #f1f1f1;
}

footer {
  background-color: #F8F8F8;
  width: 100%;
  padding: 100px 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer > .full {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
footer > .full > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  max-width: 400px;
  margin: 0 50px;
}
footer > .full > .container > h2.web-name {
  font-size: 18px;
  color: #555;
  font-weight: 900;
  margin-top: 10px;
}
footer > .full > .container > .link-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
footer > .full > .container > .link-list > a:hover {
  transform: scale(1.2);
}
footer > .full > .container > .link-list > a > svg {
  color: #000;
  margin: 0 5px;
}
footer > .full > .container > h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 12px;
}
footer > .full > .container > a {
  margin-top: 3px;
  color: #777;
  font-size: 15px;
}
footer > .full > .container > a:hover {
  color: #111;
}
footer > .full > .container > p {
  color: #555;
  font-size: 15px;
}

.filter-component {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 11;
}
.filter-component > .back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.filter-component > .filter {
  position: absolute;
  top: 0;
  width: 325px;
  background-color: #fff;
  padding: 35px;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.4);
  overflow: auto;
  height: 100%;
  transition: 0.3s;
}
@keyframes openFilter {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
.filter-component > .filter > .close-filter {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  color: #999;
  cursor: pointer;
}
.filter-component > .filter > .close-filter:hover {
  color: #555;
}
.filter-component > .filter > .search-product {
  display: flex;
  width: 100%;
}
.filter-component > .filter > .search-product input {
  width: 84%;
  height: 40px;
  background-color: #fff;
  box-shadow: none;
  border-radius: 0;
  border: 1px #ddd solid;
  font-size: 13px;
  color: #222;
}
.filter-component > .filter > .search-product button {
  background-color: #FC5F5F;
  color: #fff;
  font-size: 13px;
  width: 14%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-left: 2%;
  transition: 0.3s;
}
.filter-component > .filter > .search-product button:hover {
  background-color: #f74949;
}
.filter-component > .filter > .filter-price {
  margin-top: 30px;
  width: 100%;
}
.filter-component > .filter > .filter-price::-moz-selection {
  color: #fff;
  background: #17A2B8;
}
.filter-component > .filter > .filter-price::selection {
  color: #fff;
  background: #17A2B8;
}
.filter-component > .filter > .filter-price h3 {
  color: #555;
  font-size: 16px;
}
.filter-component > .filter > .filter-price > input[type=range] {
  width: 100%;
}
.filter-component > .filter > .filter-price button {
  background-color: #FC5F5F;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  margin-top: 25px;
  transition: 0.3s;
}
.filter-component > .filter > .filter-price button:hover {
  background-color: #f74949;
}
.filter-component > .filter > .filter-price .price-input {
  width: 100%;
  display: flex;
  margin: 0px 0 5px;
  justify-content: space-between;
  align-items: center;
}
.filter-component > .filter > .filter-price .price-input .field {
  display: flex;
  height: 45px;
  align-items: center;
  font-size: 12px;
  color: #555;
}
.filter-component > .filter > .filter-price .field input {
  width: 36px;
  height: 32px;
  outline: none;
  border-radius: 5px;
  text-align: center;
  border: none;
  -moz-appearance: textfield;
  font-size: 12px;
  color: #555;
  margin: 0;
  text-align: left;
  padding: 0;
  margin-left: 3px;
}
.filter-component > .filter > .filter-price input[type=number]::-webkit-outer-spin-button,
.filter-component > .filter > .filter-price input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.filter-component > .filter > .filter-price .price-input .separator {
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.filter-component > .filter > .filter-price .slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.filter-component > .filter > .filter-price .slider .progress {
  height: 100%;
  left: 0%;
  right: 0%;
  position: absolute;
  border-radius: 5px;
  background: #FC5F5F;
}
.filter-component > .filter > .filter-price .range-input {
  position: relative;
}
.filter-component > .filter > .filter-price .range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.filter-component > .filter > .filter-price input[type=range]::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #000;
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.filter-component > .filter > .filter-price input[type=range]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: #17A2B8;
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}
.filter-component > .filter > .products-categories {
  margin-top: 50px;
  width: 100%;
}
.filter-component > .filter > .products-categories h3 {
  color: #555;
  font-size: 16px;
}
.filter-component > .filter > .products-categories > .categories {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.filter-component > .filter > .products-categories > .categories a {
  color: #666;
  font-size: 14px;
  margin-top: 4px;
  cursor: pointer;
}
.filter-component > .filter > .products-categories > .categories a:hover {
  color: #111;
}

.shop-cart {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 12;
}
.shop-cart > .back {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
.shop-cart > .cart {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  background-color: #fff;
  animation: openCart 0.3s linear;
  transition: 0.3s;
}
@keyframes openCart {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
.shop-cart > .cart > .cart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #ddd solid;
  color: #333;
  padding: 12px 20px;
  margin-bottom: 20px;
}
.shop-cart > .cart > .cart-title > h4 {
  font-size: 15px;
}
.shop-cart > .cart > .cart-title > i {
  cursor: pointer;
}
.shop-cart > .cart > .product-list {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.shop-cart > .cart > .product-list > .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  width: 100%;
  border-bottom: 1px #ddd solid;
}
.shop-cart > .cart > .product-list > .item > .product {
  width: 50%;
  display: flex;
  align-items: center;
}
.shop-cart > .cart > .product-list > .item > .product img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-cart > .cart > .product-list > .item > .product > div {
  width: 50%;
  margin-left: 15px;
}
.shop-cart > .cart > .product-list > .item > .product > div > .input-number {
  display: flex;
  align-items: center;
}
.shop-cart > .cart > .product-list > .item > .product > div > .input-number > button {
  width: 38px;
  display: flex;
  justify-content: center;
  background-color: transparent;
  color: #8B8698;
  align-items: center;
  outline: 0;
  border: 1px #ddd solid;
  font-size: 18px;
  height: 35px;
  font-weight: 800;
}
.shop-cart > .cart > .product-list > .item > .product > div > .input-number > button.decrement {
  border-right: none;
}
.shop-cart > .cart > .product-list > .item > .product > div > .input-number > button.increment {
  border-left: none;
}
.shop-cart > .cart > .product-list > .item > .product > div > .input-number input[type=number] {
  width: 40px;
  height: 35px;
  outline: 0;
  border: 1px #ddd solid;
  background-color: transparent;
  font-size: 16px;
  color: #8B8698;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  text-align: center;
  box-shadow: none;
  -moz-appearance: textfield;
}
.shop-cart > .cart > .product-list > .item > .product > div > .input-number input[type=number]::-webkit-outer-spin-button, .shop-cart > .cart > .product-list > .item > .product > div > .input-number input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.shop-cart > .cart > .product-list > .item > .detail {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
.shop-cart > .cart > .product-list > .item > .detail > .detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #777;
}
.shop-cart > .cart > .product-list > .item > .detail > .detail-info > i {
  cursor: pointer;
  margin-bottom: 10px;
}
.shop-cart > .cart > .checkout-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-bottom: 25px;
}
.shop-cart > .cart > .checkout-btn a {
  display: block;
  width: 90%;
  border: 1px #FC5F5F solid;
  height: 50px;
  text-align: center;
  line-height: 50px;
  margin: 15px auto;
}
.shop-cart > .cart > .checkout-btn > .subtotal {
  border-top: 1px #ddd solid;
  border-bottom: 1px #ddd solid;
  display: flex;
  padding: 15px 5%;
  justify-content: space-between;
  align-items: center;
  color: #444;
}
.shop-cart > .cart > .checkout-btn > a.view-cart {
  border-radius: 25px;
  color: #FC5F5F;
  background-color: transparent;
}
.shop-cart > .cart > .checkout-btn > a.view-cart:hover {
  color: #75C32C;
  border: 1px #75C32C solid;
}
.shop-cart > .cart > .checkout-btn > a.to-checkout {
  border-radius: 25px;
  background-color: #FC5F5F;
  color: #fff;
}
.shop-cart > .cart > .checkout-btn > a.to-checkout::-moz-selection {
  color: #75C32C;
}
.shop-cart > .cart > .checkout-btn > a.to-checkout::selection {
  color: #75C32C;
}
.shop-cart > .cart > .checkout-btn > a.to-checkout:hover {
  background-color: #75C32C;
  border: 1px #75C32C solid;
}

.orders {
  width: 100%;
  padding: 180px 0;
  background-color: #f1f1f1;
}
.orders > .order-list {
  width: 100%;
  max-width: 830px;
  padding: 40px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.orders > .order-list > .order-item {
  width: 100%;
  border-bottom: 1px #ddd solid;
  display: flex;
  padding: 12px 0;
}
.orders > .order-list > .order-item.title {
  padding: 20px 0;
  border-bottom: 2px #aaa solid;
}
.orders > .order-list > .order-item.title > div {
  font-weight: 600;
  color: #333;
}
.orders > .order-list > .order-item.title > div.number {
  min-width: 100px;
}
.orders > .order-list > .order-item div {
  min-width: 150px;
  padding: 5px;
  color: #666;
  font-size: 14px;
}
.orders > .order-list > .order-item div.number {
  font-weight: 900;
  min-width: 100px;
}
.orders > .order-list > .order-item div > span {
  width: 80px;
  border-radius: 20px;
  text-align: center;
  display: block;
  font-weight: 900;
  font-size: 13px;
  padding: 3px;
}
.orders > .order-list > .order-item div > span.paid {
  background-color: #DAF4EB;
  color: #34C7B6;
}
.orders > .order-list > .order-item div > span.unpaid {
  background-color: #ccc;
  color: #888;
}
.orders > .order-list > .order-item div > span.paidfail {
  background-color: #FCE4E4;
  color: #EF6B67;
}
.orders > .order-list > .order-item div a, .orders > .order-list > .order-item div button {
  background-color: #FC5F5F;
  color: #fff;
  border-radius: 25px;
  width: 120px;
  padding: 10px;
  display: block;
  font-size: 13px;
  text-align: center;
}
.orders > .order-list > .order-item div a::-moz-selection, .orders > .order-list > .order-item div button::-moz-selection {
  color: #75C32C;
}
.orders > .order-list > .order-item div a::selection, .orders > .order-list > .order-item div button::selection {
  color: #75C32C;
}
.orders > .order-list > .order-item div a.gotopay, .orders > .order-list > .order-item div button.gotopay {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #75C32C;
}

.myOrder {
  width: 100%;
  padding: 180px 0;
  background-color: #f1f1f1;
}
.myOrder > .order {
  width: 100%;
  max-width: 830px;
  padding: 40px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.myOrder > .order p {
  font-size: 15px;
  text-align: center;
  color: #333;
  margin-bottom: 5px;
}
.myOrder > .order p > span {
  font-weight: 900;
}
.myOrder > .order p > span.paid {
  color: #34C7B6;
}
.myOrder > .order p > span.unpaid {
  color: #888;
}
.myOrder > .order h2 {
  font-weight: 700;
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.myOrder > .order > .column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px #ccc solid;
  padding: 10px 10px;
  font-size: 14px;
  color: #333;
}
.myOrder > .order > a, .myOrder > .order button {
  margin: 15px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FC5F5F;
  color: #fff;
  max-width: 160px;
  width: 100%;
  padding: 12px;
  border-radius: 25px;
  font-size: 14px;
  margin-top: 25px;
}
.myOrder > .order > a::-moz-selection, .myOrder > .order button::-moz-selection {
  color: #75C32C;
}
.myOrder > .order > a::selection, .myOrder > .order button::selection {
  color: #75C32C;
}
.myOrder > .order > a.gotopay, .myOrder > .order button.gotopay {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #75C32C;
  margin-top: 0px;
}
