/**
 * Bellevue_StyleOverride — override.css
 *
 * Este fichero se carga AL FINAL de todos los CSS del sitio (after="-" en el layout),
 * por lo que tiene la máxima prioridad de cascade sin necesidad de !important.
 *
 * INSTRUCCIONES:
 *   - Añade tus sobreescrituras debajo de cada sección.
 *   - En la mayoría de casos NO necesitas !important; la posición final del fichero ya da prioridad.
 *   - Usa !important solo para sobreescribir estilos que ya usan !important (ej. Porto configed_css).
 *
 * ============================================================
 * ÍNDICE DE SECCIONES
 * ============================================================
 * 1. Variables globales / colores de marca
 * 2. Tipografía
 * 3. Header / Navbar
 * 4. Botones
 * 5. Productos & Catálogo
 * 6. Footer
 * 7. Responsive (mobile)
 * 8. Módulo MobileMenu (Bellevue_MobileMenu)
 * 9. Módulo MobileBottomBar (Bellevue_MobileBottomBar)
 * 10. Utilidades & Miscelánea
 * 11. Página Crear Cuenta (customer/account/create/)
 * ============================================================
 */

/* :root overrides available via section 11 tokens */


/* ============================================================
   2. Tipografía
   ============================================================ */


/* ============================================================
   3. Header / Navbar
   ============================================================ */


/* ============================================================
   4. Botones
   ============================================================ */


/* ============================================================
   5. Productos & Catálogo
   ============================================================ */


/* ============================================================
   6. Footer
   ============================================================ */


/* ============================================================
   7. Responsive (mobile)
   ============================================================ */

@media (max-width: 767px) {

   .footer-middle,
   .footer-bottom {
      background: linear-gradient(to left, #1fa3ab, #20676b);
   }

   .page-header.type6.header-newskin .logo {
      min-width: calc(-18%);
      margin-left: 10% !important;
   }

   .page-header.type6 .logo {
      height: 45px;
      float: left;
      margin: 6px 0px;
   }

   .page-header.type6.header-newskin .logo img {
      width: 10.5em !important;
   }

   /* cart mobile */
   .page-header.header-newskin .minicart-wrapper .action.showcart:before,
   .page-header.header-newskin .minicart-wrapper .action.showcart.active:before {
      width: 21px !important;
   }

   /* lupa */
   .page-header.type6.header-newskin .block-search .label:before {
      width: 23px !important;
      font-size: medium;
   }
}

@media screen and (min-width: 768px) {

   /* menu */
   .page-header.type6.header-newskin .header.content {
      padding: 28px 0 0;
   }

   /* menu - a*/
   .page-header.header-newskin .navigation .level0>.level-top {
      padding: 10px 12px;
   }

   /* lupa */
   [class^=porto-icon-]:before,
   [class*=" porto-icon-"]:before {
      padding: 2px 0;
      margin-top: 25px;
   }

   .page-header.type6.header-newskin .search-area {
      top: 8px !important;
   }


   /* cart */
   .page-header.type6.header-newskin .minicart-wrapper .action.showcart:before,
   .page-header.type6.header-newskin .minicart-wrapper .action.showcart.active:before {
      font-size: 33px;
      line-height: 70px !important;
   }

   /* title */
   h2.hero-banner {
      margin-top: 10px;
   }
}

/* .products-grid.products-grid.grid {
   display: grid;
   align-self: center;
   align-items: center;
   justify-items: center;
   justify-content: center;
} */

/* ============================================================
   8. Módulo MobileMenu (Bellevue_MobileMenu)
   ============================================================ */


/* ============================================================
   9. Módulo MobileBottomBar (Bellevue_MobileBottomBar)
   ============================================================ */


/* ============================================================
   10. Utilidades & Miscelánea
   ============================================================ */

main#maincontent {
   padding: 20px;
}


/* ============================================================
   11. Página Crear Cuenta (customer/account/create/)
   ============================================================ */

/* ── Design tokens ── */
:root {
   --blv-brand: #1a8a8a;
   --blv-brand-dark: #136969;
   --blv-brand-light: #e8f7f7;
   --blv-text: #1e2d2f;
   --blv-muted: #6b7f81;
   --blv-border: #d6e4e6;
   --blv-surface: #ffffff;
   --blv-radius-sm: 8px;
   --blv-radius-md: 14px;
   --blv-shadow-sm: 0 2px 8px rgba(26, 138, 138, .08);
   --blv-shadow-md: 0 8px 32px rgba(26, 138, 138, .13);
   --blv-transition: 0.22s cubic-bezier(.4, 0, .2, 1);
}

/* ── Strip the default Porto border/card wrapper on this page ── */
.customer-account-create .form.create.account {
   border: none !important;
   box-shadow: none !important;
   background: transparent !important;
   padding: 0 !important;
   border-top: none !important;
}

/* ── Card: fieldset wrapper ── */
.blv-fieldset-card {
   background: var(--blv-surface);
   border-radius: var(--blv-radius-md);
   box-shadow: var(--blv-shadow-sm);
   border: 1px solid var(--blv-border);
   margin-bottom: 20px;
   overflow: hidden;
   transition: box-shadow var(--blv-transition);
}

.blv-fieldset-card:hover {
   box-shadow: var(--blv-shadow-md);
}

.blv-fieldset-card__header {
   display: flex;
   align-items: center;
   gap: 12px;
   padding: 14px 24px;
   background: var(--blv-brand-light);
   border-bottom: 1px solid var(--blv-border);
}

.blv-fieldset-card__icon {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   height: 32px;
   background: var(--blv-brand);
   color: #fff;
   border-radius: 7px;
   flex-shrink: 0;
}

.blv-fieldset-card__icon svg {
   width: 16px;
   height: 16px;
}

.blv-fieldset-card__title {
   font-size: .97rem;
   font-weight: 700;
   color: var(--blv-brand-dark);
   margin: 0;
   letter-spacing: .1px;
}

.blv-fieldset-card__body {
   padding: 24px;
}

/* ── Field wrap ── */
.blv-field-wrap {
   margin-bottom: 20px;
}

.blv-field-wrap:last-child {
   margin-bottom: 0;
}

/* ── All labels inside cards ── */
.blv-field-label,
.blv-fieldset-card__body .field>.label,
.blv-fieldset-card__body .field>label.label {
   display: block;
   font-size: .78rem;
   font-weight: 700;
   color: var(--blv-muted);
   text-transform: uppercase;
   letter-spacing: .7px;
   margin-bottom: 6px;
   padding: 0;
   border: none;
   background: none;
}

/* ── All inputs inside cards ── */
.blv-input,
.blv-fieldset-card__body .field .input-text,
.customer-account-create .form-create-account .input-text {
   width: 100%;
   padding: 11px 14px;
   border: 1.5px solid var(--blv-border);
   border-radius: var(--blv-radius-sm);
   font-size: .97rem;
   color: var(--blv-text);
   background: #fff;
   transition: border-color var(--blv-transition), box-shadow var(--blv-transition);
   outline: none;
   box-sizing: border-box;
   -webkit-appearance: none;
   appearance: none;
}

.blv-input:focus,
.blv-fieldset-card__body .field .input-text:focus,
.customer-account-create .form-create-account .input-text:focus {
   border-color: var(--blv-brand);
   box-shadow: 0 0 0 3px rgba(26, 138, 138, .14);
}

.blv-input::placeholder {
   color: #b3c4c5;
}

/* ── All selects inside cards ── */
.blv-select,
.blv-fieldset-card__body .field select,
.customer-account-create .form-create-account select {
   width: 100%;
   padding: 11px 40px 11px 14px;
   border: 1.5px solid var(--blv-border);
   border-radius: var(--blv-radius-sm);
   font-size: .97rem;
   color: var(--blv-text);
   background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7f81'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 12px center / 18px;
   transition: border-color var(--blv-transition), box-shadow var(--blv-transition);
   outline: none;
   box-sizing: border-box;
   -webkit-appearance: none;
   appearance: none;
}

.blv-select:focus,
.blv-fieldset-card__body .field select:focus,
.customer-account-create .form-create-account select:focus {
   border-color: var(--blv-brand);
   box-shadow: 0 0 0 3px rgba(26, 138, 138, .14);
}

/* ── Validation errors ── */
.customer-account-create .mage-error {
   font-size: .8rem;
   color: #c0392b;
   margin-top: 5px;
   padding: 5px 10px;
   background: #fef8f8;
   border-radius: 5px;
   border-left: 3px solid #c0392b;
}

/* ── Password field: eye toggle ── */
.blv-password-control {
   display: flex;
   flex-direction: column;
   gap: 0;
}

/* The input+button wrapper — toggle is positioned inside this */
.blv-pw-input-wrap {
   position: relative;
   display: block;
}

.blv-toggle-password {
   position: absolute;
   right: 10px;
   top: 50%;
   transform: translateY(-50%);
   background: none;
   border: none;
   cursor: pointer;
   color: var(--blv-muted);
   padding: 3px;
   display: flex;
   align-items: center;
   line-height: 1;
   transition: color var(--blv-transition);
   z-index: 2;
}

.blv-toggle-password:hover {
   color: var(--blv-brand);
}

.blv-eye-icon {
   width: 18px;
   height: 18px;
   display: block;
}

.blv-pw-input-wrap .blv-input,
.blv-pw-input-wrap .input-text {
   padding-right: 42px;
   display: block;
   width: 100%;
   box-sizing: border-box;
}

/* ── Strength meter ── */
.blv-strength-meter,
.customer-account-create .password-strength-meter {
   font-size: .78rem;
   color: var(--blv-muted);
   margin-top: 7px;
   padding: 5px 10px;
   background: #f4f8f8;
   border-radius: 5px;
}

/* ── Password side-by-side grid ── */
.blv-password-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

/* ── Address city/zip grid ── */
.blv-address-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
}

/* ── Custom checkbox (newsletter) ── */
.blv-checkbox-row {
   clear: both;
   /* clear Name widget floats */
   display: block;
   margin-top: 12px;
   margin-bottom: 4px;
}

.blv-checkbox-label {
   display: flex;
   align-items: center;
   /* vertical center with text */
   gap: 10px;
   cursor: pointer;
   user-select: none;
   width: 100%;
   /* give the flex container a defined width */
}

/* Hide native checkbox, keep it accessible */
.blv-checkbox-input {
   position: absolute;
   width: 1px;
   height: 1px;
   padding: 0;
   margin: -1px;
   overflow: hidden;
   clip: rect(0, 0, 0, 0);
   white-space: nowrap;
   border: 0;
   opacity: 0;
}

/* Custom square */
.blv-checkbox-custom {
   flex: 0 0 18px;
   width: 18px;
   height: 18px;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 2px solid var(--blv-border);
   border-radius: 4px;
   background: #fff;
   box-sizing: border-box;
   transition: border-color var(--blv-transition), background var(--blv-transition);
}

.blv-checkbox-input:checked+.blv-checkbox-custom {
   background: var(--blv-brand);
   border-color: var(--blv-brand);
}

.blv-checkbox-input:checked+.blv-checkbox-custom::after {
   content: '';
   display: block;
   width: 4px;
   height: 8px;
   border: 2px solid #fff;
   border-top: none;
   border-left: none;
   transform: rotate(45deg) translate(-1px, -1px);
}

/* Label text — normal inline, no wrapping tricks needed */
.blv-checkbox-text {
   font-size: .88rem;
   color: var(--blv-muted);
   line-height: 1.4;
}

/* ── Hide default Porto legend (card header replaces it) ── */
.blv-fieldset-card .legend,
.blv-fieldset-card>.fieldset>.legend {
   display: none !important;
}

/* ── Submit button ── */
.blv-register-actions {
   display: flex;
   align-items: center;
   gap: 18px;
   flex-wrap: wrap;
   margin-top: 4px;
}

.blv-btn-submit {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   background: linear-gradient(135deg, var(--blv-brand), var(--blv-brand-dark));
   color: #fff;
   border: none;
   border-radius: 50px;
   padding: 13px 30px;
   font-size: .98rem;
   font-weight: 700;
   cursor: pointer;
   transition: transform var(--blv-transition), box-shadow var(--blv-transition);
   box-shadow: 0 4px 16px rgba(26, 138, 138, .32);
}

.blv-btn-submit:hover {
   transform: translateY(-2px);
   box-shadow: 0 8px 24px rgba(26, 138, 138, .42);
   color: #fff;
}

.blv-btn-submit:active {
   transform: translateY(0);
}

.blv-btn-arrow {
   width: 17px;
   height: 17px;
   flex-shrink: 0;
}

.blv-btn-back {
   font-size: .9rem;
   color: var(--blv-muted);
   text-decoration: none;
   transition: color var(--blv-transition);
}

.blv-btn-back:hover {
   color: var(--blv-brand);
}

/* ── Responsive ── */
@media (max-width: 640px) {

   .blv-password-grid,
   .blv-address-grid {
      grid-template-columns: 1fr;
   }

   .blv-register-actions {
      flex-direction: column;
      align-items: stretch;
   }

   .blv-btn-submit {
      justify-content: center;
      width: 100%;
   }
}