.map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.map-wrapper h1 {
  font-size: 32px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .map-wrapper h1 {
    font-size: 24px;
    line-height: 32px;
  }
}

.map-filter {
  padding: 44px 30px 35px;
  background: linear-gradient(87.67deg, #e7e7e7 -26.95%, #fff 124.65%);
  border-radius: 16px 16px 0 0;
  display: flex;
  gap: 45px;
}

@media screen and (max-width: 768px) {
  .map-filter {
    flex-direction: column;
    gap: 16px;
  }
}

.map-select {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.map-select::after {
  content: "";
  background: url(../icons/arrow-down-black.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 6px;
  height: 24px;
  width: 24px;
}

.map-select select {
  padding-left: 15px;
  padding-right: 35px;
  background: 0 0;
  border: 1px solid;
  border-color: transparent;
  height: 36px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  border-radius: 30px;
  outline: 0;
  cursor: pointer;
  width: 100%;
}

@media (hover: hover) {
  .map-select select:hover {
    border-color: #000;
  }
}

.map-input {
  position: relative;
  height: 36px;
  max-width: 343px;
  overflow: hidden;
  flex-grow: 1;
}

@media screen and (max-width: 768px) {
  .map-input {
    max-width: initial;
  }
}

.map-input input {
  border-radius: 30px;
  background-color: #fff;
  padding: 12px 35px 12px 15px;
  height: 100%;
  width: 100%;
  border: 1px solid;
  border-color: transparent;
  outline: 0;
  font-size: 10px;
}

@media (hover: hover) {
  .map-input input:hover {
    border-color: #000;
  }
}

.map-input .icon {
  height: 10px;
  width: 10px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  filter: brightness(0.5);
}

.map-main {
  margin-bottom: 60px;
  height: 730px;
  position: relative;
}
.map-content {
  background-color: white;
  padding: 20px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .map-main {
    margin-bottom: 20px;
    height: initial;
  }
}

.map-main .container {
  height: 100%;
}

.map-main-wrapper {
  display: flex;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .map-main-wrapper {
    flex-direction: column;
    gap: 24px;
  }
}

.map-main h2 {
  font-size: 24px;
  line-height: 25px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.map-main .map-list-wrapper {
  max-width: 316px;
  background: #d3d3d3;
  padding: 30px 22px 0;
  outline: 24px;
  flex-shrink: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 30px;
  border-radius: 0 0 16px 16px;
}

@media screen and (max-width: 768px) {
  .map-main .map-list-wrapper {
    height: 500px;
    width: 100%;
    max-width: initial;
  }
}

.map-main .map-list {
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-main .map-list-item {
  padding: 14px 11px 15px 17px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
}

.map-main .map-list-item-address {
  font-weight: 500;
}

.map-main .map-list-item h3 {
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
  color: #333;
  gap: 5px;
}

.map-main .map-list-item p {
  color: #333;
  line-height: 22px;
  font-weight: 600;
}

.map-main .map-list-item ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.map-main .map-list-item ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.map-main .map-list-item .distance {
  font-weight: 700;
  color: #999;
  text-align: end;
  margin-top: -16px;
}

.map-main .map-list-item .icon {
  flex-shrink: 0;
  height: 16px;
  width: 16px;
  display: flex;
  background-size: cover;
}

.map-main .map-list-item .icon.map-pin {
  background: url(../icons/map-pin.svg) no-repeat top center;
}

.map-main .map-list-item .icon.phone {
  background: url(../icons/phone.svg) no-repeat top center;
}

.map-main .map-list-item .icon.clock {
  background: url(../icons/clock.svg) no-repeat top center;
}

@media (hover: hover) {
  .map-main .map-list-item:hover {
    background: #f5f5f5;
  }
}

.map-main .map-list-item.active h3 span:nth-child(2) {
  color: red;
}

.map-main .map-list-item.active .distance {
  color: red;
}

.map-main .map-view {
  height: 100%;
  flex-grow: 1;
}

.map-main .map-view iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .map-main .map-view {
    width: 100%;
    height: 400px;
  }
}

.feedback {
  padding-top: 100px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .feedback {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}

.feedback-wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 44px;
}

@media screen and (max-width: 768px) {
  .feedback-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.feedback-description .logo {
  height: 70px;
  margin-bottom: 48px;
  aspect-ratio: 204/70;
}

.feedback-description .logo img {
  height: 100%;
}

@media screen and (max-width: 768px) {
  .feedback-description .logo {
    height: 56px;
  }
}

.feedback-description h2 {
  font-size: 24px;
  line-height: 45px;
  color: #1f1f1f;
  margin-bottom: 22px;
  display: block;
}

@media screen and (max-width: 768px) {
  .feedback-description h2 {
    font-size: 20px;
    line-height: 32px;
  }
}

.feedback-description .icon {
  display: flex;
  height: 26px;
  width: 69px;
}

@media screen and (max-width: 768px) {
  .feedback-description .icon {
    display: none;
  }
}

.feedback-description .icon img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.feedback h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .feedback h1 {
    font-size: 20px;
  }
}

.feedback-form {
  background-color: #fff;
  border-radius: 8px;
  padding: 32px 40px;
}

@media screen and (max-width: 550px) {
  .feedback-form {
    padding: 24px;
  }
}

.feedback-form .textarea-main {
  height: 128px;
}

.feedback-form .form-item:first-of-type {
  margin-bottom: 16px;
}

.feedback-form .note {
  margin-top: 8px;
}

.feedback-form .btn-main {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}

.feedback-form .btn-main .icon {
  display: flex;
  height: 24px;
  width: 24px;
}

.feedback-success {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .feedback-success {
    padding: 60px 0;
  }
}

.feedback-success .wrapper {
  padding-top: 32px;
  padding-bottom: 40px;
  border-radius: 8px;
  background-color: #fff;
  max-width: 781px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.feedback-success .wrapper .logo {
  height: 45px;
  aspect-ratio: 132/45px;
}

.feedback-success .wrapper .logo img {
  height: 100%;
}

.feedback-success .wrapper h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  max-width: 459px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .feedback-success .wrapper h1 {
    font-size: 20px;
  }
}

.feedback-success .wrapper-content {
  max-width: 545px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .feedback-success .wrapper {
    padding: 24px;
  }
}

.cart-empty {
  height: calc(100vh - 70px);
}

.cart-empty .container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-empty-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cart-empty-wrapper .icon {
  display: flex;
  aspect-ratio: 1;
  width: 113px;
}

.cart-empty-wrapper .icon img {
  height: 100%;
}

.cart-empty-wrapper h1 {
  font-weight: 600;
  color: #636363;
  text-transform: uppercase;
}

.order-success {
  padding: 100px 0;
}

@media screen and (max-width: 768px) {
  .order-success {
    padding: 60px 0;
  }
}

.order-success .wrapper {
  padding-top: 32px;
  padding-bottom: 40px;
  border-radius: 8px;
  background-color: #fff;
  max-width: 781px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.order-success .wrapper .icon {
  height: 56px;
  aspect-ratio: 1;
}

.order-success .wrapper .icon img {
  height: 100%;
}

.order-success .wrapper h1 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #333;
}

@media screen and (max-width: 768px) {
  .order-success .wrapper h1 {
    font-size: 20px;
  }
}

.order-success .wrapper-content {
  max-width: 545px;
}

.order-success .wrapper h2 {
  font-size: 18px;
  color: #1f1f1f;
  line-height: 32px;
  text-align: center;
}

.order-success .wrapper h2 strong {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .order-success .wrapper h2 {
    font-size: 16px;
    line-height: 28px;
  }
}

@media screen and (max-width: 768px) {
  .order-success .wrapper {
    padding: 24px;
  }
}

.cart-page {
  padding-top: 46px;
  padding-bottom: 105px;
}

@media screen and (max-width: 768px) {
  .cart-page {
    padding: 40px 0;
  }
}

.cart-page h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #333;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  .cart-page h2 {
    font-size: 20px;
    line-height: 28px;
  }
}

.cart-page-block {
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  height: -moz-max-content;
  height: max-content;
}

@media screen and (max-width: 768px) {
  .cart-page-block:first-of-type {
    grid-row-start: 2;
    grid-row-end: 3;
  }
}

@media screen and (max-width: 550px) {
  .cart-page-block {
    margin: 0 auto;
    padding: 16px;
    border-radius: 0;
  }
}

.cart-page .cart-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media screen and (max-width: 768px) {
  .cart-page .cart-wrapper {
    grid-template-columns: 1fr;
  }
}

.cart-page .form-info {
  display: grid;
  gap: 32px;
}

.cart-page .form-info h2 {
  margin-bottom: 4px;
}

.cart-page .form-info .description {
  font-size: 14px;
  line-height: 19px;
}

.cart-page .form-info-input-box {
  display: grid;
  gap: 20px;
}

@media screen and (max-width: 550px) {
  .cart-page .form-info-input-box {
    gap: 12px;
  }
}

.cart-page .payment {
  display: grid;
  gap: 24px;
}

.cart-page .payment h2 {
  margin-bottom: 0;
}

.cart-page .payment-desc {
  font-size: 14px;
  line-height: 19px;
}

.cart-page .payment-list {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 992px) {
  .cart-page .payment-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .cart-page .payment-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .payment-list {
    grid-template-columns: 1fr 1fr;
  }
}

.cart-page .payment-item {
  position: relative;
  overflow: hidden;
}

.cart-page .payment-item > * {
  cursor: pointer;
}

.cart-page .payment-item input {
  height: 19px;
  width: 19px;
  border-radius: 50%;
  border: 1px solid #333;
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
}

.cart-page .payment-item input:checked {
  background: radial-gradient(ellipse at center, #000 6px, transparent 0);
}

.cart-page .payment-item label {
  height: 100%;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ababab;
  padding: 11px 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-page .payment-item p {
  font-weight: 600;
  line-height: 22px;
}

.cart-page .payment-item span {
  font-size: 12px;
  line-height: 16px;
}

.cart-page .payment-item .icon {
  height: 32px;
  width: 32px;
  display: flex;
}

.cart-page .payment-item .icon img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cart-page .form-product {
  display: grid;
  gap: 24px;
}

.cart-page .form-product h2 {
  margin-bottom: 16px;
}

.cart-page .cart-voucher-box {
  overflow: hidden;
}

.cart-page .cart-voucher-box h2 {
  margin-bottom: 16px;
}

.cart-page .cart-voucher-box .voucher-apply {
  display: flex;
  gap: 8px;
}

@media screen and (max-width: 550px) {
  .cart-page .cart-voucher-box .voucher-apply {
    flex-direction: column;
  }
}

.cart-page .cart-voucher-box .voucher-apply .btn-main {
  flex-shrink: 0;
  padding: 13px 31px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
}

.cart-page .cart-voucher-box .swiper-container {
  margin-top: 24px;
}

.cart-page .cart-voucher-box .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  margin: 0 2px;
  background-color: #ebebeb;
}

.cart-page .cart-voucher-box .swiper-pagination-bullet::before {
  inset: 0;
}

.cart-page .cart-voucher-box .swiper-pagination-bullet-active {
  background-color: #000117;
}

.cart-page .cart-price {
  margin-top: 52px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 22px;
}

.cart-page .cart-price ul {
  display: grid;
  gap: 24px;
}

.cart-page .cart-price ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-page .cart-price ul li p {
  text-align: end;
}

.cart-page .cart-price hr {
  border: none;
  height: 1px;
  background-color: #adadad;
  margin-top: 25px;
  margin-bottom: 15px;
}

.cart-page .cart-price-total p {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.cart-page .cart-product-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cart-page .cart-product-list {
    gap: 12px;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .cart-product-list {
    gap: 12px;
  }
}

.cart-page .cart-product-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cart-page .cart-product-item {
    gap: 8px;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .cart-product-item {
    gap: 8px;
  }
}

.cart-page .cart-product-item-img {
  min-width: 80px;
  width: 35%;
  max-width: 184px;
  aspect-ratio: 1;
}

.cart-page .cart-product-item-img img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cart-page .cart-product-item-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cart-page .cart-product-item-content {
    gap: 8px;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .cart-product-item-content {
    gap: 8px;
  }
}

.cart-page .cart-product-item .title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cart-page .cart-product-item .title {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .cart-product-item .title {
    font-size: 16px;
    line-height: 22px;
  }
}

.cart-page .cart-product-item .price {
  display: flex;
  -moz-column-gap: 24px;
  column-gap: 24px;
  align-items: center;
  row-gap: 8px;
  flex-wrap: wrap;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cart-page .cart-product-item .price {
    gap: 8px;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .cart-product-item .price {
    gap: 8px;
  }
}

.cart-page .cart-product-item .price-new {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cart-page .cart-product-item .price-new {
    font-size: 16px;
    line-height: 22px;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .cart-product-item .price-new {
    font-size: 16px;
    line-height: 22px;
  }
}

.cart-page .cart-product-item .price-old {
  text-decoration-line: line-through;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cart-page .cart-product-item .price-old {
    font-size: 12px;
    line-height: 18px;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .cart-product-item .price-old {
    font-size: 12px;
    line-height: 18px;
  }
}

.cart-page .cart-product-item .color-quantity {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-page .cart-product-item .color-quantity .select-color {
  height: 100%;
}

.cart-page .cart-product-item .color-quantity .select-hmk {
  border-color: #ababab;
  width: 138px;
  border-radius: 56px;
  height: 100%;
}

.cart-page .cart-product-item .color-quantity .quantity-input input {
  line-height: 1;
  max-width: 76px;
}

@media (min-width: 769px) and (max-width: 1100px) {
  .cart-page .cart-product-item .color-quantity .select-hmk {
    padding: 6px 32px 6px 9px;
    line-height: 1;
    width: auto;
  }

  .cart-page .cart-product-item .color-quantity .select-color select {
    padding: 6px 28px 6px 9px;
    line-height: 1;
    width: auto;
  }

  .cart-page .cart-product-item .color-quantity .select-color::before {
    right: 4px;
  }

  .cart-page .cart-product-item .color-quantity .quantity-input {
    padding: 5px 9px;
  }

  .cart-page .cart-product-item .color-quantity .quantity-input input {
    padding: 0;
  }
}

@media screen and (max-width: 550px) {
  .cart-page .cart-product-item .color-quantity .select-hmk {
    padding: 6px 32px 6px 9px;
    line-height: 1;
    width: auto;
  }

  .cart-page .cart-product-item .color-quantity .select-color select {
    padding: 6px 28px 6px 9px;
    line-height: 1;
    width: auto;
  }

  .cart-page .cart-product-item .color-quantity .select-color::before {
    right: 4px;
  }

  .cart-page .cart-product-item .color-quantity .quantity-input {
    padding: 5px 9px;
  }

  .cart-page .cart-product-item .color-quantity .quantity-input input {
    padding: 0;
  }
}

.cart-page .cart-product-item .btn-close {
  flex-shrink: 0;
  outline: 0;
  border: none;
  background: #eff1f5;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: auto;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.cart-page .cart-product-item .btn-close img {
  height: 80%;
  width: 80%;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-box-50 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 8px;
}

@media screen and (max-width: 550px) {
  .form-box-50 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.form-box-address {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 8px;
}

@media screen and (max-width: 992px) {
  .form-box-address {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 550px) {
  .form-box-address {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.form-box-address .box-select {
  width: 100%;
}

.form-box-address .box-select select {
  width: 100%;
}

.form-box-address .box-select .select-secondary {
  width: 100%;
}

.product-detail {
  padding-top: 46px;
}

.product-detail .breadcrumb {
  margin-bottom: 30px;
  justify-content: flex-start;
}

.product-detail h1 {
  font-size: 26px;
  font-weight: 600;
  line-height: 35px;
}

.product-detail .galley-item {
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}

.product-detail .galley-item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-detail .galley-item .galley-item-view {
  height: 32px;
  width: 32px;
  display: flex;
  cursor: pointer;
  position: absolute;
  right: 22.5px;
  bottom: 20.5px;
}

.product-detail .thumb-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  width: 133px;
}

.product-detail .thumb-item img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-detail #product-detail-thumb {
  margin-top: 20px;
  padding: 1px;
}

.product-detail .information {
  max-width: 100%;
  width: 100%;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  position: relative;
}

@media screen and (max-width: 768px) {
  .product-detail .information {
    grid-template-columns: 1fr;
  }
}

.product-detail .information-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

.product-detail .information-gallery {
  overflow: hidden;
}

.product-detail .information-sale {
  background-color: red;
  border-radius: 0 53px 53px 0;
  color: #fff;
  padding: 9px 25px 9px 16px;
  position: absolute;
  left: 0px;
  top: 15px;
  font-weight: 600;
  font-size: 18px;
  z-index: 2;
}

.product-detail .information-box {
  display: grid;
  gap: 24px;
}

.product-detail .information-box .price {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .product-detail .information-box .price {
    gap: 16px;
  }
  .product-detail .information-sale {
    background-color: red;
    border-radius: 0 53px 53px 0;
    color: #fff;
    padding: 9px 25px 9px 16px;
    position: absolute;
    left: calc(50% - 160px);
    top: 15px;
    font-weight: 600;
    font-size: 18px;
    z-index: 2;
  }
}

.product-detail .information-box .price-new {
  font-size: 32px;
  line-height: 44px;
  font-weight: 700;
}

.product-detail .information-box .price-old {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  text-decoration-line: line-through;
}

.product-detail .information-code-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.product-detail .information-color .color-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 40px);
  gap: 8px;
}

.product-detail .information-color .color-item {
  outline: 1px solid #d9d9d9;
  border: none;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--color);
  cursor: pointer;
  margin: 0;
}

.product-detail .information-color .color-item:checked {
  outline: 2px solid #000;
}

.product-detail .information-quantity {
  display: flex;
}

.product-detail .information-quantity .quantity-input {
  width: 152px;
  height: 56px;
}

.product-detail .information-quantity .quantity-input input {
  font-size: 20px;
}

.product-detail .information-quantity .quantity-input .icon {
  height: 24px;
  width: 24px;
}

.product-detail .information .btn-add-to-cart {
  margin-left: 16px;
  width: auto;
  padding-top: 0;
  padding-bottom: 0;
}

.profile-info-detail {
  margin-top: 32px;
  display: grid;
  gap: 20px;
}

.suggest {
  margin-top: 64px;
}

@media screen and (max-width: 768px) {
  .suggest {
    margin-top: 32px;
  }
}

.suggest h2 {
  color: #636363;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .suggest h2 {
    font-size: 16px;
    line-height: 22px;
  }
}

.suggest-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .suggest-wrapper {
    gap: 16px;
  }
}

.suggest-wrapper .card .title {
  font-size: 14px;
}

.suggest-wrapper .card-img {
  background: #f8f8f8;
}

.suggest-wrapper .card .price {
  flex-direction: column;
  align-items: flex-start;
}

.suggest-wrapper .card .price-sale {
  font-size: 14px;
}

.discount-list {
  border-top: 1px solid;
  border-bottom: 1px solid;
  border-color: #999;
  margin-top: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .discount-list {
    gap: 8px;
  }
}

.discount-list .discount-item {
  display: flex;
  flex-direction: column;
}

.discount-list .discount-item .icon {
  height: 64px;
  width: 64px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .discount-list .discount-item .icon {
    height: 40px;
    width: 40px;
  }
}

.discount-list .discount-item .icon img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.discount-list .discount-item .content {
  margin-top: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.discount-list .discount-item .content p {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  line-height: 19px;
}

@media screen and (max-width: 550px) {
  .discount-list .discount-item .content p {
    font-size: 12px;
  }
}

.discount-list .discount-item .content span {
  font-size: 12px;
  display: block;
  line-height: 16px;
  margin-top: auto;
}

@media screen and (max-width: 550px) {
  .discount-list .discount-item .content span {
    font-size: 10px;
  }
}

.woocommerce-pagination.wpf-hide {
  display: block !important;
}
table.variations th.label {
  text-align: left;
}
body.woo-variation-swatches
  .wvs-style-rounded.variable-items-wrapper
  .variable-item:not(.radio-variable-item)
  .variable-item-span {
  font-size: 10px;
  line-height: 1.2;
  font-weight: 600;
}
.meta-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.meta-info .share {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.meta-info .share a {
  display: flex;
}
.meta-left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.meta-left .article-date {
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: normal;
}
@media screen and (max-width: 550px) {
  .meta-info {
    display: grid;
  }
  .meta-info .share {
    justify-content: end;
  }
}
body .kk-star-ratings .kksr-legend {
  margin-top: 5px;
  line-height: 1;
}
.box-single-tag {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.box-single-tag a {
  display: flex;
  height: 38px;
  padding: 0 20px;
  background-color: #b7b7b7;
  color: #fff;
  text-decoration: none;
  align-items: center;
  border-radius: 30px;
  white-space: nowrap;
}
.box-single-author {
  background: #fff;
  padding: 32px;
  border-radius: 8px;
  display: flex;
  gap: 24px;
}
.box-single-author .avt {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
.box-single-author .avt img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}
.box-single-author .content h5 a {
  text-decoration: none;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.comment-body {
  margin-bottom: 20px;
}
.comment-body .comment-meta {
  padding-top: 0;
  padding-bottom: 0;
  background: none;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comment-body .comment-author {
  display: flex;
  align-items: center;
}
.comment-body .fn {
  margin-left: 10px;
  margin-right: 3px;
}
.comment-body .fn a {
  pointer-events: none;
  text-decoration: none;
}
.comment-body .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.comment-body .comment-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}
.comment-body .reply {
  text-align: right;
  margin-top: 6px;
  font-style: italic;
  font-weight: bold;
}
.comment-body .children {
  margin-left: 30px;
}
.comment-reply-title {
  font-size: 1.5rem;
}
.comment-form p {
  margin-bottom: 20px;
  display: flex;
  align-items: start;
  gap: 5px;
}
.comment-form p label {
  width: 100px;
}
.comment-form p input {
  width: 100%;
}
.comment-form p textarea {
  width: 100%;
}
.comment-form input,
.comment-form textarea {
  background-color: #fff;
  border-radius: 8px;
  padding: 13px 15px;
  border: 1px solid #ababab;
  color: #000;
  transition: border 0.4s cubic-bezier(0.5, 0, 0, 1.25);
  font: inherit;
  line-height: 22px;
  min-width: 0;
  outline: none;
}
.comment-form textarea {
  height: 128px;
}
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #000;
}
.comment-form p.comment-form-cookies-consent {
  align-items: center;
}
.comment-form p.comment-form-cookies-consent input {
  padding: 0;
  width: 24px;
  height: 24px;
}
.comment-form p.comment-form-cookies-consent label {
  width: 100%;
}
.comment-form p.comment-form-cookies-consent input:checked {
  background: #000;
}
.comment-form p input.submit {
  background-color: #23282d;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
}
.description-content figure {
  max-width: 100%;
  margin: auto;
}
.description-content figcaption {
  text-align: center;
}
.article-style figure {
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .article-main-content {
    padding: 10px;
    max-width: calc(100vw - 32px);
  }
  .article-sticky .table-of-content {
    padding: 10px;
  }
}
.information-panel {
  width: 590px;
}
@media screen and (max-width: 600px) {
  .information-panel {
    width: 100%;
  }
  .woo-variation-product-gallery {
    margin-left: auto;
    margin-right: auto;
  }
}
.breadcrumb-h1 {
  text-align: center;
  margin-bottom: 10px;
}
.news-nav {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.news-page-category-item {
  border-radius: 30px;
  padding: 5px 20px;
  border: 1px solid;
  display: inline-block;
}
.news-category-title {
  font-size: 25px;
  margin: 20px 0px;
}

.woocommerce-order {
  min-height: 600px;
  padding: 150px 0px;
}
