.checkout_progress {
  padding: 57px 0 56px;
  background: var(--theme_color);
}
.checkout_progress ul {
  gap: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  counter-reset: progress;
  max-width: 924px;
  margin: 0 auto;
  padding: 0 5%;
}
.checkout_progress li {
  flex: 1;
  color: #171717;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  text-align: center;
  counter-increment: progress;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
.checkout_progress li::before {
  content: counter(progress);
  width: 49px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 50%;
  border: 1px solid #8e7d91;
  transition: all 0.3s;
}
.checkout_progress li::after {
  content: '';
  display: block;
  width: 108px;
  height: 1px;
  background-color: #8e7d91;
  position: absolute;
  left: calc(50% + 43px);
  top: 30px;
}
.checkout_progress li.active::before {
  color: #fff;
  border-color: var(--title_color);
  background-color: var(--title_color);
}
.checkout_progress li:last-child::after {
  display: none;
}
.complete_main {
  padding: 124px 0 0;
  margin-bottom: 44px;
  min-height: 580px;
}
.complete_main i {
  display: block;
  aspect-ratio: 128/118;
  width: 128px;
  background: url(../img/thankimg.svg) no-repeat center / contain;
  margin: 0 auto;
}
.complete_main h1 {
  font-size: 36px;
  font-weight: 600;
  color: #161616;
  line-height: 40px;
  text-align: center;
  margin-top: 28px;
}
.complete_main .desc {
  font-size: 17px;
  color: #707070;
  line-height: 37px;
  margin: 0 auto;
  text-align: center;
  margin-top: 31px;
}
.complete_main .desc p:first-child {
  margin-bottom: 2rem;
}
.complete_main .desc a {
  color: #000000;
  text-decoration: underline;
}
.complete_main .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 47px;
}
.complete_main .btns a {
  min-width: 257px;
}
.complete_main .orderbtn {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background-color: #262626;
  border-color: var(--title_color);
  gap: 26px;
}
.complete_main .orderbtn:after{
  filter: brightness(100);
}
.complete_main .orderbtn:hover {
  background-color: #262626;
  color: #fff;
  border-color: #262626;
}
.complete_main .shopbtn {
  font-size: 18px;
  font-weight: 600;
  gap: 26px;
  color: #262626;
}
.complete_main .shopbtn:hover {
  background-color: #262626;
  color: #fff;
}
.complete_recommend {
  padding-bottom: 140px;
  padding-top: 50px;
}
.complete_recommend .content {
  max-width: 1346px;
}
.complete_recommend .head span {
  font-size: 20px;
  color: #666;
}
.complete_recommend .head h2 {
  margin-top: 5px;
}
.complete_recommend .swiper_box {
  margin-top: 30px;
}
.complete_recommend .swiper_content {
  max-width: 1376px;
}
.complete_recommend .swiper_btns {
  max-width: 1540px;
}
.complete_recommend p.center:has(.btn) {
  margin-top: 40px;
  min-height: 52px;
}

.woocommerce-order-details .woocommerce-table--order-details {
  border-collapse: collapse;
  margin: 1rem auto 0;
}
.woocommerce-order-details .woocommerce-table--order-details th:first-child {
  text-align: left;
}
.woocommerce-order-details .woocommerce-table--order-details td:first-child {
  text-align: left;
}
.woocommerce-order-details .woocommerce-table--order-details th {
  padding: 0 8px;
  min-width: 120px;
}
.woocommerce-order-details .woocommerce-table--order-details td {
  padding: 0 8px;
  min-width: 120px;
}
.woocommerce-order-details .woocommerce-table--order-details thead tr {
  border-bottom: 1px solid var(--theme_color);
}
.woocommerce-order-details .woocommerce-table--order-details tfoot tr:first-child {
  border-top: 1px solid var(--theme_color);
}
.woocommerce-order-details .woocommerce-table--order-details .wc-item-meta {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.woocommerce-order-details .woocommerce-table--order-details .wc-item-meta li {
  gap: 8px;
  display: flex;
  align-items: center;
}