.c-img {
  position: relative;
  display: block;
}

.c-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.c-img video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.scale-img {
  transition: all 0.5s;
  overflow: hidden;
}

.scale-img img {
  scale: 1.1;
  transition: all 0.5s;
}

.img__ {
  position: relative;
  overflow: hidden;
}

.img__::after {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 2;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  /* Bỏ skewX để trượt thẳng */
}

.img__:hover::after {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

.img__zoom {
  overflow: hidden;
}

.img__zoom img {
  transition: transform 0.5s ease;
  will-change: transform;
  display: block;
}

.img__zoom:hover img {
  transform: scale(1.1);
}

#customer_details .woocommerce-billing-fields .form-row input,
#customer_details .woocommerce-billing-fields .form-row select {
  width: 100%;
  box-shadow: none !important;
  border-radius: 999px !important;
  min-height: auto !important;
  margin-bottom: 0 !important;
}

#order_comments {
  width: 100%;
  box-shadow: none !important;
  border-radius: 999px !important;
  margin-bottom: 0 !important;
  padding: 15px 35px;
}

#customer_details .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

#customer_details .woocommerce-billing-fields #billing_last_name_field,
#customer_details .woocommerce-billing-fields #billing_phone_field,
#customer_details .woocommerce-billing-fields #billing_state_field,
#customer_details .woocommerce-billing-fields #billing_city_field {
  width: 49%;
}

#customer_details .woocommerce-billing-fields #billing_phone_field,
#customer_details .woocommerce-billing-fields #billing_state_field {
  margin-right: 0 !important;
}

#customer_details .woocommerce-billing-fields #billing_address_1_field {
  width: 100%;
}

.checkout.woocommerce-checkout .large-5.col .col-inner.has-border {
  border: none !important;

}

.checkout.woocommerce-checkout .shop_table td,
.checkout.woocommerce-checkout .shop_table .order-total th,
.checkout.woocommerce-checkout .shop_table thead th {
  border: none !important;
}

.checkout.woocommerce-checkout #place_order {
  width: 100% !important;
  border-radius: 999px !important;
  box-shadow: none !important;
  background-color: black !important;
  color: white !important;
  border: 1px solid black !important;
}

.checkout.woocommerce-checkout #place_order:hover {
  background-color: white !important;
  color: black !important;
  transition: all 0.5s;
}

@media (max-width: 768px) {

  #customer_details .woocommerce-billing-fields #billing_last_name_field,
  #customer_details .woocommerce-billing-fields #billing_phone_field,
  #customer_details .woocommerce-billing-fields #billing_state_field,
  #customer_details .woocommerce-billing-fields #billing_city_field {
    width: 100%;
  }

  .checkout.woocommerce-checkout .large-5.col .col-inner.has-border {
    padding: 0 !important;
  }
}