.card-cvv-month {
  display: flex;
  align-items: center;
  width: 100%;
}

.card-number-container {
  width: 50%;
}

.cccvv-ccexpiry-container {
  display: flex;
  align-items: center;
  width: 50%;
  gap: 20px;
}

.ccnumber input {
  /* width: 100%; */
  padding: 10px;
  border: none;
  background: white !important;
}

.ccexpiry input {
  width: 100%;
  padding: 10px;
  border: none;
}

.cccvv input {
  width: 100%;
  padding: 10px;
  border: none;
}

.cccvv input:focus {
  border: none;
}

/* Container styling */
.card-form-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 15px 0px;
}

/* Input field styling */
.ccnumber {
  width: 100%;
}

.ccnumber:focus {
  border-color: #0073aa; /* Add a focus effect */
}

.google-pay-button {
  width: 100%;
  margin: 10px 0px;
}

.google-pay-button button {
  width: 100%;
}

.or-section {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.or-section .or-section-hr {
  height: 1px;
  background-color: lightgrey;
  width: 100%;
}

.ccnumber-input-container {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  background: white;
}

.ccnumber-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* This ensures the icon doesn't block input clicks */
  fill: #999; /* Color of the icon */
  /* width: 100px; */
}

.ccnumber-input-container .ccnumber .css-1t5ousf {
  margin-bottom: 0px !important;
}

.ccexpiry-input-container {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  background: white;
}

.ccexpiry-input-container .ccexpiry .css-1t5ousf {
  margin-bottom: 0px !important;
}

.cvv-input-container {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5px;
  border: 1px solid #e6e6e6;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  background: white;
}

.cvv-input-container:focus{
  outline: var(--focusOutline);
  border-color: var(--colorPrimary);
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(0, 0, 0, 0.02), var(--focusBoxShadow);
}

.cvv-input-container .cccvv .css-1t5ousf {
  margin-bottom: 0px !important;
}

.cvv-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* This ensures the icon doesn't block input clicks */
  fill: #999; /* Color of the icon */
}

.ccnumber-container {
  width: 100%;
}

.ccexpiry-container {
  width: 50%;
}

.cccvv-container {
  width: 50%;
}

.card-label {
  font-size: 0.93rem;
}

.error-message {
  color: red;
  font-size: 10px;
  margin-top: 4px;
}

.error-border {
  border: 1px solid red !important;
  outline: none;
}

.loading-message {
  color: #333; /* Dark gray text color */
  font-size: 10px;
  margin-top: 4px;
}

:where(.wp-site-blocks *:focus) {
  outline: none !important;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .card-form-container {
    flex-direction: column;
  }
  .card-number-container {
    width: 100%;
  }
  .cccvv-ccexpiry-container {
    width: 100%;
  }
}

/* Disable the button (grayed out and unclickable) */
.wc-block-components-checkout-place-order-button.disable {
  opacity: 0.5;
  pointer-events: none !important;  /* Prevents clicking the button */
}

/* Enable the button (normal clickable state) */
.wc-block-components-checkout-place-order-button.enable {
  opacity: 1;
  pointer-events: auto !important;  /* Allows clicking the button */
}

/* .wc-block-components-notices .is-error{
  display: none !important;
} */
 