.banner-container {
  width: 100%;
}

.banner-container > img {
  width: 100%;
  object-fit: cover;
}

.selection-container {
  width: 80%;
  min-height: 6.25rem;
  margin-left: 10%;
  margin-right: 10%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.selection-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  user-select: none;
  min-height: 6.25rem;
}

.selection-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  min-height: 6.25rem;
}

.selection-item:not(:last-child) {
  margin-right: 5rem;
}

.selection-item:hover {
  border-bottom: 3px solid rgb(253, 115, 32);
}

.selection-location {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
}

.selection-img {
  margin-right: 1.25rem;
  width: .9375rem;
  height: 1.3125rem;
}

.selection-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selection-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
}

.selection-text > div:not(.divide) {
  cursor: pointer;
}

.selection-text > div:not(.divide):hover {
  color: rgb(253, 115, 32);
}


.selection-text > div:not(:last-child) {
  margin-right: .5rem;
}

@media screen and (max-width: 1200px) {
  .selection-items {
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }

  .selection-item {
    font-size: 2rem;
    margin-bottom: 1.25rem;
  }

  .selection-text {
    font-size: 2rem;
  }

  .selection-img {
    margin-right: 1.25rem;
    width: 1.875rem;
    height: 2.625rem;
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .selection-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 666px) {
  .selection-item {
    font-size: 2.5rem;
  }

  .selection-text {
    font-size: 2.5rem;
  }
}

.product-container {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 2rem;
}

.product-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.product-list-item {
  width: 30%;
  border-width: 1px;
  border-color: rgb(229, 229, 229);
  border-style: solid;
  background-color: rgb(255, 255, 255);
  margin-bottom: 4rem;
  border-bottom: 6px solid rgb(238, 238, 238);
  cursor: pointer;
}

.product-list-item:hover {
  transition: all .3s;
  border-bottom: 6px solid rgb(253, 115, 32);
}

.product-list-item-img {
  overflow: hidden;
  height: 21.875rem;
}

.product-list-item-img:hover > img {
  transition: all .3s;
  transform: scale(1.2);
}


.product-list-item-img {
  background-color: rgb(249, 249, 249);
}

.product-list-item-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-list-item-text {
  border-top: 1px solid rgb(229, 229, 229);
  height: 4rem;
  padding-left: 1.625rem;
  padding-right: 1.625rem;
  padding-top: 1.875rem;
}

.product-list-item-name {
  font-size: 1.125rem;
  font-family: "SourceHanSansSC";
  color: rgb(51, 51, 51);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-list-item-desc > span {
  display: inline-block;
  background-color: rgb(253, 115, 32);
  width: .625rem;
  height: .625rem;
  margin-right: .75rem;
}

.product-list-item-desc {
  font-size: .875rem;
  font-family: "SourceHanSansSC";
  color: rgb(85, 85, 85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-inner-category-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 2rem;
}

.product-inner-category-list-item {
  width: 18%;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #eee;
  margin: 1%;
  cursor: pointer;
  transition: all .3s;
  font-size: .875rem;
}

.product-inner-category-list-item:hover {
  background-color: rgb(44, 158, 244);
  color: white;
}

.product-inner-category-list-item-active {
  background-color: rgb(44, 158, 244);
  color: white;
}

@media screen and (max-width: 1200px) {
  .product-list-item {
    width: 45%;
  }

  .product-list-item-text {
    height: 5rem;
  }

  .product-list-item-name {
    font-size: 1.5rem;
  }
  
  .product-list-item-desc > span {
    width: .75rem;
    height: .75rem;
  }
  
  .product-list-item-desc {
    font-size: 1.125rem;
  }

  .product-inner-category-list-item {
    width: 31%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 1.25rem;
  }  

  .product-list-item-img {
    height: 27.5rem;
  }
}

@media screen and (max-width: 767px) {
  .product-list-item {
    width: 100%;
  }

  .product-list-item-text {
    height: 6.25rem;
  }

  .product-list-item-name {
    font-size: 2rem;
  }
  
  .product-list-item-desc > span {
    width: 1rem;
    height: 1rem;
  }
  
  .product-list-item-desc {
    font-size: 1.5rem;
  }

  .product-inner-category-list-item {
    width: 48%;
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.5rem;
  }  

  .product-list-item-img {
    height: 50rem;
  }
}

.product-detail-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5rem;
  padding-bottom: 3rem;
  border-bottom: .125rem solid rgb(233, 233, 233);
}

.product-detail-img {
  width: 48%;
  height: 30rem;
  border: .0625rem solid rgb(233, 233, 233);
}

.product-detail-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-detail-text {
  width: 48%;
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "SourceHanSansSC";
  color: #444;
}

.product-detail-line {
  background-color: rgb(253, 115, 32);
  width: 1.625rem;
  height: .25rem;
  margin-bottom: 1.25rem;
  margin-top: 1.75rem;
}

.product-detail-desc {
  font-size: 1rem;
  font-family: "SourceHanSansSC";
  color: rgb(120, 120, 120);
}

.product-detail-content {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  margin-top: 5rem;
  padding-bottom: 3rem;
}


@media screen and (max-width: 1300px) {
  .product-detail-title {
    font-size: 3.5rem;
  }
  
  .product-detail-desc {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 996px) {
  .product-detail-container {
    flex-wrap: wrap;
  }
  
  .product-detail-img {
    width: 100%;
    height: 50rem;
  }

  .product-detail-text {
    width: 100%;
  }
}

.product-title {
  font-size: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: .0625rem solid rgba(0,0,0,0.2);
  margin-bottom: 2rem;
}

@media screen and (max-width: 1920px) { 
  .product-title {
    font-size: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    margin-bottom: 32px;
  }
}