.breadcrumb-container {
  font-size: 14px;
  padding: 10px 0;
}

.breadcrumb-container > a {
  font-weight: 500;
}

.breadcrumb-container > svg {
  margin: 0 10px;
}

.breadcrumb-container > span {
  color: #545454;
}

.section-wrapper.detail-wrapper {
  padding-top: 42px;
}

.section-wrapper.detail-wrapper .section-content {
  flex-wrap: wrap;
  margin-top: 0;
}

.section-wrapper.detail-wrapper .section-content .section-item {
  flex: 0 0 50%;
  width: 50%;
}

.item-content.media-content {
  position: sticky;
  top: 20px;
}

.product-media {
  display: flex;
  gap: 10px;
}

.product-media .thumbnail_media {
  flex: 1 0 auto;
  width: auto;
  max-height: 350px;
  overflow: hidden;
}

.product-media .thumbnail_media .thumbnail_media__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnail_media__container img {
  border-radius: 2px;
}

.thumbnail_media__container .thumbnail_media__item {
  flex: 1;
}

.thumbnail_media__container .swiper-slide.active img {
  border: 2px solid #000;
}

.product-media .main_media {
  position: relative;
  width: 86%;
  flex: 0 0 86%;
  overflow: hidden;
}

.main_media .swiper-pagination-fraction {
  position: absolute;
  bottom: 0;
  display: none;
}

.product-media .main_media .main_media__item {
  width: 100%;
  flex: 0 0 100%;
}

.img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
}

.product-info .product-title {
  margin-bottom: 20px;
}

.price-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-bottom: 8px;
}

.price-container .price-origin,
.price-container .price-older,
.price-container .price-sale,
.product-info .product-title {
  font-size: 28px;
  color: #000;
  font-weight: 400;
}

.price-container .price-older {
  text-decoration: line-through;
  color: #0000008c;
}

.price-container .price-sale {
  color: #db1215;
  font-weight: 600;
}

.status {
  font-size: 14px;
  margin-bottom: 25px;
}

.status > span {
  font-weight: 600;
  color: #db1215;
}

.product-variant {
  margin-bottom: 15px;
}

.product-variant .variant-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.variant-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.variant-container .variant-value {
  text-align: center;
    padding: 8px 20px;
    flex: 0 0 auto;
    width: auto;
    max-width: 200px;
    font-size: 14px;
    color: #000;
    border-radius: 3px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s linear;
    user-select: none;
    cursor: pointer;
}

.variant-container .variant-value > span {
    display: block;
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.variant-container .variant-value[aria-disabled="true"] {
  opacity: 0.25;
  border-color: rgba(0, 0, 0, 0.1);
  cursor: not-allowed;
}

.variant-container .variant-value:not([aria-disabled="true"]):hover {
  border-color: #000;
}

.variant-container .variant-value.active {
  background-color: #000;
  color: #fff;
  border-color: #000;
}

.quantity-option > label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 600;
}

.button-form {
  display: flex;
  gap: 8px;
}

.button-form > button[type="submit"] {
  flex: 1 0 0;
}

.button-form > button[type="button"] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.22s linear;
}

.button-form > button[type="button"]:hover {
  border-color: #000;
}

.delivery-product {
  margin: 30px 0;
}

.color-images {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 10px;
  margin-bottom: 12px;
}

.color-images .img-container {
  width: calc(100% / 10 - 10px);
  flex: 0 0 calc(100% / 10 - 10px);
  border: 1px solid #d9d1d185;
  border-radius: 8px;
}

.color-images .img-container.active,
.color-images .img-container:hover {
    border-color: #db1215;
}

.color-images .img-container .img-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}

.img-wrapper > img {
  border-radius: 8px;
  position: absolute;
  vertical-align: middle;
  object-fit: cover;
  width: 100%;
  height: 100%;
  inset: 0;
}

.delivery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  margin: 0 -12px;
}

.delivery-container .delivery-item {
  padding: 0 12px;
  flex: 0 0 50%;
  width: 50%;
}

.delivery-container .delivery-item .delivery-content {
  padding: 30px 22px;
  text-align: center;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 2px;
  min-height: 300px;
}

.delivery-content .des {
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.tab-wrapper {
  padding-bottom: 80px;
}

.tab-container {
  border: 1px solid rgb(242, 242, 242);
  border-radius: 4px;
}

.header-tab {
  display: flex;
  align-items: center;
  padding: 0 38px;
  border-bottom: 1px solid rgb(242, 242, 242);
  gap: 0 50px;
}

.tab-btn {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  padding: 15px 0;
  position: relative;
}

.tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left 0%;
  transition: all 0.18s linear;
}

.tab-btn.active::after,
.tab-btn:hover::after {
  transform: scaleX(1);
}

.tab-content {
  padding: 35px;
}

.tab-content .tab-item {
  font-size: 14px;
  line-height: 1.5rem;
  color: #868686;
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
  transition: all 0.25s linear;
}

.additional-table {
  width: 100%;
  box-shadow: 0 0 0 0.1rem rgb(var(--color-line-border));
  border-collapse: collapse;
}

.additional-table th,
.additional-table td {
  text-align: left;
  padding: 10px;
  border: 1px solid rgb(235, 235, 235);
}

.tab-content .tab-item[aria-selected="false"][aria-hidden="true"] {
  line-height: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(19px);
}
