.woocommerce-checkout .woocommerce-account-fields,
.woocommerce-checkout .woocommerce-form-login-toggle {
  display: none;
}

.woocommerce-checkout .cmx-checkout-wrapper p.form-row.form-row-wide {
  display: block !important;
}

.cmx-delivery-addresses {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 20px;
  background: #f9f9f9;
  position: relative;
}
.cmx-address-option {
  display: block;
  padding: 10px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 5px;
  cursor: pointer;
}
.cmx-address-option input[type="radio"] {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}
.cmx-address-block {
  font-size: 14px;
}
.cmx-name {
}
.cmx-type {
  background: #eee;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 12px;
  margin-left: 6px;
}
.cmx-phone {
  color: #333;
}
.cmx-fulladdress {
  font-size: 13px;
  color: #555;
}
.cmx-new-address {
  background: #eef7ff;
}
.cmx-address-wrapper {
  position: relative;
  margin-bottom: 15px;
}
.cmx-edit-address {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 12px;
  color: #0073aa;
  text-decoration: underline;
}
.cmx-edit-address:hover {
  color: #005177;
}

.cmx-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent black */
}

/* Modal box */
.cmx-modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 20px;
  border-radius: 6px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: cmxFadeIn 0.3s ease-in-out;
}

/* Close button */
.cmx-close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 22px;

  color: #333;
  cursor: pointer;
}

/* Skeleton effect */
.cmx-skeleton {
  background: linear-gradient(90deg, #eee, #f5f5f5, #eee);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.cmx-skeleton-line {
  height: 14px;
  margin: 6px 0;
}
.cmx-skeleton-title {
  height: 18px;
  width: 40%;
  margin-bottom: 10px;
}

/* Animation */
@keyframes cmxFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* .cmx-delivery-addresses button.cmx-change-address {
  border-radius: 5px;
  display: block;
  background: white;
  border-color: #223064;
  color: #223064;
  padding: 7px 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all 0.4s;
} */
/* .cmx-delivery-addresses button.cmx-change-address:hover {
  background: #223064;
  color: white;
} */
.cmx-delivery-addresses button.cmx-deliver-here {
  border-radius: 5px;
  display: block;
  background: #223064;
  color: white;
  padding: 7px 20px;
  margin: 20px 0;
}
.cmx-delivery-addresses button.cmx-edit-address {
  border-radius: 5px;
  display: block;
  background: #223064;
  color: white;
  padding: 7px 20px;
  margin: 20px 0;
  text-decoration: none;
}
.cmx-delivery-addresses button.cmx_save_and_deliver_here {
  border-radius: 5px;
  display: inline-block;
  background: #223064;
  color: white;
  padding: 7px 20px;
  margin: 20px 0;
  text-decoration: none;
}
.cmx-delivery-addresses button.cmx_save_and_deliver_cancel {
  border-radius: 5px;
  display: inline-block;
  background: #223064;
  color: white;
  padding: 7px 20px;
  margin: 20px 0;
  text-decoration: none;
}
/* .cmx-delivery-addresses .cmx-selected-address {
  margin-bottom: 20px;
  font-size: 16px;
  color: #000;
} */
.cmx-delivery-addresses .title_cart_view h3 {
  padding: 0 !important;
  padding-right: 15px !important;
}

/* login  checkout page view css */
.login-box .head .step {
  background: #fff;
  color: #2874f0;

  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.login-box .head h2 {
  font-size: 18px;

  margin: 0;
}
/* .login-box .body {
  padding: 20px;
} */
.login-box .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .login-box .grid {
    grid-template-columns: 1fr;
  }
}

/* Left section */
.login-box .kv p {
  margin: 6px 0;
}
.login-box .kv span {
}
.login-box .link {
  color: #2874f0;
  text-decoration: none;
}
.login-box .link:hover {
  text-decoration: underline;
}
.login-box .btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #223064;
  color: #fff;

  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}
.login-box .btn:hover {
  background: #223064;
  color: #fff;
}
.login-box .note {
  margin-top: 15px;
  font-size: 13px;
  color: #777;
}

/* Right section */
.login-box .adv h3 {
  font-size: 16px;
  color: #777;
  margin-bottom: 12px;
}
.login-box .adv ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.login-box .adv li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.login-box .adv li i {
  color: #2874f0;
  font-size: 18px;
  margin-top: 3px;
}

.cmx-checkout-product-review {
  border: 1px solid #223064;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}
.cmx-checkout-product-review table th {
  background: #f7f7f7;
  /* border-radius: 8px 8px 0 0; */
  padding: 15px;
}

.cmx-checkout-left-section .product-checkout-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.cmx-checkout-left-section .product-checkout-wrap img {
  width: 125px;
  height: 125px;
  max-width: 125px !important;
}
.cmx-checkout-left-section .product-checkout-wrap a {
  display: inline-block;
  width: 125px;
  height: 125px;
}
.cmx-checkout-left-section .product-checkout-wrap dl.variation {
  display: flex;
  column-gap: 10px;
  color: #777;
  flex-wrap: wrap;
  width: 100% !important;
}
.cmx-checkout-left-section .product-checkout-wrap .product-content {
  width: 70%;
}
.cmx-checkout-left-section .product-checkout-wrap dl.variation dd {
  margin-bottom: 0;
}
.cmx-checkout-left-section .product-checkout-wrap dl.variation dt {
  font-weight: 500;
}
.cmx-checkout-left-section .product-checkout-wrap .product-name {
  color: #000;
}
.cmx-checkout-left-section .product-checkout-wrap .product-price {
  color: #000;
}

/*.cmx-email-address .login-box.brfore {
  display: block !important;
}*/

.cmx-checkout-left-section form.woocommerce-checkout h3 {
  font-weight: 400 !important;
}

.cmx-checkout-left-section .login-box .adv li {
  font-size: 11px;
  line-height: 12px;
}
.cmx-checkout-left-section .login-box .adv li p {
  margin: 0;
}
.cmx-checkout-left-section .login-box .grid .kv input {
  width: 100%;
}
.cmx-checkout-left-section .login-box .grid .kv p {
  font-size: 12px;
  color: #777;
}
.title_cart_view h3 {
  font-size: 14px !important;
  color: #777;
  padding: 15px 30px;
  padding-left: 15px;
  font-weight: 400 !important;
}

.featured-box {
  border: 1px solid #223064 !important;
  border-radius: 8px;
  padding: 15px;
  box-shadow: none;
}

.checkout-your-orders-before {
  cursor: pointer;
  user-select: none;
}
.checkout-your-orders-before::after {
  /* content: "▾"; */
  content: ">";
  float: right;
  transition: transform 0.2s ease;
  transform: rotate(90deg);
  font-size: 26px;
  color: #223064;
}
.checkout-your-orders-before.is-collapsed::after {
  transform: rotate(0deg);
}

/* Start collapsed on small screens */
/* @media (max-width: 767px) {
  .cmx-checkout-product-review table {
    display: none;
  }
} */
/* cmx-delivery-addresses-before */
.cmx-delivery-addresses-before .checkout-your-orders {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  user-select: none;
}
.cmx-delivery-addresses-before .checkout-your-orders .cms-address-before {
  transition: transform 0.2s ease;
  transform-origin: center;
}

/* Start collapsed on small screens (optional) */
/* @media (max-width: 767px) {
  .cmx-delivery-addresses-before .cmx-inline-form {
    display: none;
  }
} */
/* 
.cmx-delivery-addresses-before .cmx-inline-form {
  display: none;
} */

.btn.is-disabled,
.btn[disabled] {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* ===================================== */
.woocommerce-checkout .woocommerce-form-coupon-toggle {
  display: none;
}

.woocommerce-billing-fields.clearfix .cmx-email-address {
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  background: #f4f4f4;
}
.woocommerce-billing-fields.clearfix p.form-row.form-row-wide {
  margin: 0 !important;
  margin-bottom: 15px !important;
}
.woocommerce-billing-fields.clearfix p.form-row.form-row-wide:nth-child(2) {
  font-size: 16px;
  line-height: normal;

  color: #000;
}
.woocommerce-billing-fields.clearfix .cmx-delivery-addresses {
  border: 1px solid #223064;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  position: relative;
  /* background: transparent; */
}
/* .woocommerce-billing-fields.clearfix
  .cmx-email-address
  button.cmx-change-email {
  border-radius: 5px;
  display: block;
  background: white;
  border-color: #223064;
  color: #223064;
  padding: 7px 20px;
  position: absolute;
  top: 15px;
  right: 15px;
  transition: all 0.4s;
} */
/* .woocommerce-billing-fields.clearfix
  .cmx-email-address
  button.cmx-change-email:hover {
  background: #223064;
  color: white;
} */
form.woocommerce-checkout h3 {
  margin-bottom: 0 !important;
}
.woocommerce-checkout label.cmx-address-option {
  display: flex;
  align-items: flex-start;
}
.cmx-delivery-addresses button.cmx-deliver-here {
  margin: 10px 0 0 0;
}
.cmx-delivery-addresses button.cmx-edit-address {
  margin: 0;
}
label.cmx-address-option.cmx-new-address {
  /*position: absolute;
  top: 15px;
  right: 15px;*/
  background: transparent !important;
  color: #223064 !important;
  width: 230px;
  border-radius: 8px;
  margin-top: 12px;
  border: 0;
}
.checkout-order-review .featured-boxes {
  padding: 15px 20px;
  border: 1px solid #223064;
  border-radius: 8px;
}

/* ================================ New Checkout Flow ========================================= */
.woocommerce-billing-fields.clearfix .cmx-email-address {
  padding: 0;
  border: 0;
}
.cmx-checkout-head {
  padding: 15px;
  background: #223064;
  color: #fff;
  border-radius: 8px 8px 0 0;
}
.cmx-checkout-head p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.cmx-checkout-head p span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  padding: 5px;
  background: #fff;
  color: #223064;
}
.cmx-checkout-head p img {
  filter: brightness(0) invert(1);
}
.cmx-checkout-body.cmx-checkout-guest,
div#cmxInlineForm-0 {
  padding: 15px;
  background: #f4f4f4;
}
.cmx-checkout-left-section .login-box .grid .kv input {
  background: transparent;
  border: 0;
  border-radius: unset;
  border-bottom: 2px solid #223064;
}
.woocommerce-billing-fields.clearfix .cmx-delivery-addresses {
  padding: 0;
  border: 0;
}
.cmx-checkout-left-section .login-box .grid .adv h3 {
  margin-bottom: 12px;
  color: #707070;
}
.cmx-checkout-left-section .login-box .grid .adv ul li div {
  color: #223064;
}
.cmx-checkout-left-section .login-box .grid .adv ul li div p {
  color: #707070;
}

.woocommerce-page .woocommerce header {
  margin-top: 0 !important;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 20px 26px;
  background: #f4f4f4;
  margin-bottom: 20px;
}

.cmx-checkout-wrapper {
  margin-top: 104px;
  min-height: 81vh;
}
.container.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
}
.checkout-header-right {display: none;}

.footer-checkout-wrapper {
  position: absolute;
  bottom: -30px;
  background: #f4f4f4;
  width: 100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-checkout-wrapper .container.checkout-footer p {
  margin: 0;
  padding: 20px 0;
}
div#cmxInlineForm-0 .form-row {
  margin-bottom: 15px;
}
div#cmxInlineForm-0 .form-row .cmx-input-addr-country {
  min-height: 48px;
}
.cmx-check-form-fild {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  column-gap: 20px;
}
.cmx-checkout-product-review .cmx-checkout-continue {
  padding: 10px;
  width: 100%;
  text-align: end;
}
.cmx-checkout-product-review a#continue-to-second-step {
  background: #223064;
  color: #fff;
  padding: 10px 15px;
  display: inline-block;
  text-align: center;
  border-radius: 8px;
}
/* li.wc_payment_method.payment_method_ppcp-googlepay {
  display: none;
}
li.wc_payment_method.payment_method_ppcp-applepay {
  display: none;
} */
.cmx-payment-icon-wrapper {
  display: inline-block;
  border: 0 !important;
}
.iti--separate-dial-code .iti__selected-flag {
  background: #fff !important;
  height: 46px !important;
}
.cmx-checkout-body {
  display: none;
}
.checkout-steps.active .cmx-checkout-body {
  display: block;
  padding: 15px;
}
.checkout-steps.active .cmx-checkout-body .cmx-address-list {
  display: block;
}
.checkout-steps.active .cmx-checkout-summary {
  display: none;
}

.cmx-checkout-summary-inner {
  padding: 15px;
  display: flex;
  align-items: anchor-center;
  justify-content: space-between;
}
.cmx-checkout-head img {
  display: none;
}
.cmx-checkout-head.verified img {
  display: inline-block;
}

.cmx-email-summary {
  padding: 0 0 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cmx-email-summary button.cmx-guest-change-email {
  background: none;
  border: none;
  color: #0073aa;
  cursor: pointer;
  font-size: 13px;
  text-decoration: underline;
}
.cmx-edit-section {
  border: 0;
}

.get-current-location {
  display: block;
  width: 100%;
  max-width: 230px;
  margin-bottom: 12px;
  padding: 14px;
  background: #223064;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
}
div#cmx-checkout-first-step {
  width: 100%;
}
.iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100%;
}
a.btn.cmx-guest-open-step3 {
  width: 100%;
  max-width: 230px;
  margin-bottom: 12px;
  padding: 14px;
  background: #223064;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
select.cmx-input-addr-country {
  min-height: 48px;
}
.cmx-checkout-product-review table tfoot {
  display: none;
}
div#order_review table thead,
div#order_review table tbody {
  display: none;
}
.quantity.buttons_added.extra-type {
  margin: 15px 0;
}
tr.cmx-order-total.order-total {
  border-top: 1px solid;
}
.address-type-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.address-type-wrapper label {
  background: #223064;
  padding: 5px 10px;
  border-radius: 8px;
  color: white !important;
  cursor: pointer;
}
.cmx-checkout-continue {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.woocommerce-billing-fields.clearfix
  .cmx-email-address
  button.cmx-change-email {
  position: unset !important;
}
.container.checkout-footer {
    display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1265px; padding: 0 15px;
}
.container.checkout-footer ul.elementor-icon-list-items {display: flex; align-items: center; padding: 0; list-style: none; gap: 12px; margin: 0; white-space: nowrap; flex-wrap: wrap; }