.wc-proceed-to-checkout,
a.checkout-button {
  display: none !important;
}

/* Contenedor principal */
.wcq-quote-form {
    width: 100%;
    margin: 2em auto;
    padding: 1.5em;
    background: #fff;
    border-radius: 8px;
    /* box-shadow: 0 4px 12px rgba(0,0,0,0.3); */
    border: 1px solid #e8eaf0;
    font-family: inherit;
    color: #333;
  }
  
  /* Título */
  .wcq-title {
    margin-bottom: 1em;
    font-size: 30px!important;
    text-align: left;
    font-family: 'Roboto', sans-serif!important;
    text-transform: uppercase!important;
    font-weight: 500!important;
    color: #10372d!important;
  }
  
  /* Campos */
  .wcq-fields {
    display: flex;
    flex-direction: column;
    gap: 0.75em;
    margin-bottom: 1em;
  }
  .wcq-input {
    padding: 0.75em 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 17px!important;
    width: 100%;
    transition: border-color 0.2s;
    color: #10372d;
  }
  .wcq-input:focus {
    border-color: #0595d5;
    outline: none;
  }

  .wcq-checkbox-label {
    font-size: 17px!important;
    font-weight: 400;
    color: #10372d;
    margin-bottom: 0.5em;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  /* Botón */
  .wcq-button {
    /* width: 100%; */
    padding: 1rem 3rem;
    background: #0595d5;
    color: #fff;
    border: none;
    /* border-radius: 5px; */
    text-transform: uppercase;
    font-size: 17px!important;
    font-weight: 500!important;
    font-family: 'Roboto', sans-serif!important;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .wcq-button-icon {
    margin-left: 0.5em;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: -1px;
  }
  .wcq-button svg {
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
    display: inline-block;
    vertical-align: middle;
  }
  .wcq-button:hover {
    background: #1a5e78;
  }
  .wcq-button:disabled {
    background: #ccc;
    cursor: not-allowed;
  }
  
  /* Mensajes */
  .wcq-message {
    margin-top: 1em;
    font-size: 0.95rem;
    text-align: center;
    display: none;
  }
  .wcq-message.success {
    color: #2e7d32;
  }
  .wcq-message.error {
    color: #c62828;
  }



.form-control:focus {
    box-shadow:none!important;
}
