/* =========================================================
   app.css — Yauras Stock (base)
   ========================================================= */

/* Base */
body { background: #fff; }
.table td, .table th { vertical-align: middle; }

/* Widget flotante */
.floating-cart{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  background: #fff;
  border: 2px solid #000;
  border-radius: 10px;
  padding: 14px 14px 12px 14px;
  width: 240px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.floating-cart__total{
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
}

.floating-cart__qty{
  font-size: 13px;
  margin-bottom: 10px;
}

.floating-cart__btn{
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  font-weight: 700;
  cursor: pointer;
}

.floating-cart__btn:hover{
  opacity: .9;
}

/* Active link underline */
.navbar .nav-link.active {
  font-weight: 700;
  text-decoration: underline;
}
/* Navbar active link */
.navbar-dark .navbar-nav .nav-link.active {
  font-weight: 700;
  text-decoration: underline;
}
/* =========================
   Wholesale Register Layout (FINAL)
   ========================= */

/* No fuerces el fondo blanco global para páginas especiales */
body.register-split { background: #e9ecef !important; }

.register-split {
  min-height: 100vh;
}

/* El row debe estirar a alto completo */
.register-split .row.g-0 {
  min-height: 100vh;
}

/* Panel izquierdo dorado */
.register-left {
  background: #b88c1a;
  color: #fff;
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-left h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 6px 0;
}

.register-left h2 {
  font-size: 34px;
  font-weight: 300;
  margin: 0 0 18px 0;
  opacity: .95;
}

.register-left p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
  opacity: .95;
}

/* Lado derecho centrado */
.register-right {
  background: #e9ecef;
  padding: 70px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Contenedor del formulario */
.register-card {
  width: 100%;
  max-width: 640px;
}

.register-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 18px 0;
}

/* Form look */
.register-form .register-label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #1f2328;
  font-weight: 600;
}

.register-form .form-control {
  height: 44px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #dfe3e7;
}

.register-form .form-control:focus {
  border-color: #111;
  box-shadow: none;
}

.register-footer {
  font-size: 12px;
  margin-top: 10px;
  color: #6c757d;
}

.register-form button.btn-dark {
  border-radius: 6px;
  padding: 10px 18px;
}

/* Responsive */
@media (max-width: 992px) {
  .register-left { padding: 40px 22px; }
  .register-right { padding: 28px 16px; }
  .register-left h1 { font-size: 40px; }
  .register-left h2 { font-size: 26px; }
  .register-title { font-size: 26px; }
}
