:root{
  --brand-red:#C81D25;
  --brand-yellow:#F5C542;

  --ink-900:#0E0E11;
  --ink-700:#374151;
  --ink-500:#6B7280;

  --ui-bg:#F5F6F8;
  --ui-card:#FFFFFF;
  --ui-border: rgba(0,0,0,.08);
}

/* Base */
.al-body{
  background: var(--ui-bg);
  color: #111827;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

/* App shell */
.al-shell{
  min-height: 100vh;
  display: flex;
}

.al-main-shell{
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top right, rgba(245,197,66,.14), transparent 26%),
    linear-gradient(180deg, #f7f8fb 0%, #eef1f5 100%);
}

/* Sidebar */
.al-sidebar{
  width: 280px;
  min-height: 100vh;
  background: linear-gradient(180deg, #0b0d11 0%, #141923 100%);
  border-right: 1px solid rgba(255,255,255,.06);
  position: sticky;
  top: 0;
}

.al-sidebar-inner{
  width: 100%;
  padding: 1.25rem 1rem;
}

.al-sidebar-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
}

.al-logo{ height: 28px; width: auto; }
.al-wordmark{ font-weight: 600; letter-spacing: .5px; }

.al-sidebar-brand{
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .7rem .75rem 1rem;
  color: #fff;
  text-decoration: none;
}

.al-sidebar-brand-copy{
  min-width: 0;
}

.al-sidebar-subtitle{
  color: rgba(255,255,255,.6);
  font-size: .82rem;
}

.al-sidebar-collapse-btn{
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.al-sidebar-collapse-btn:hover,
.al-sidebar-collapse-btn:focus{
  color: #fff;
  background: rgba(255,255,255,.1);
}

.al-sidebar-nav{
  display: grid;
  gap: .4rem;
  margin-top: 1rem;
}

.al-sidebar-group{
  display: grid;
  gap: .35rem;
}

.al-sidebar-link{
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem .9rem;
  border-radius: 14px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.al-sidebar-link:hover{
  color: #fff;
  background: rgba(255,255,255,.06);
  transform: translateX(2px);
}

.al-sidebar-link.is-active{
  color: #fff;
  background: linear-gradient(135deg, rgba(200,29,37,.88), rgba(245,197,66,.22));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.al-sidebar-link i{
  font-size: 1rem;
  flex: 0 0 auto;
}

.al-sidebar-link-text{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
}

.al-sidebar-label{
  white-space: nowrap;
}

.al-sidebar-group-toggle{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .8rem .9rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(255,255,255,.75);
  transition: background .15s ease, color .15s ease;
}

.al-sidebar-group-toggle:hover,
.al-sidebar-group-toggle:focus{
  color: #fff;
  background: rgba(255,255,255,.06);
}

.al-sidebar-chevron{
  font-size: .85rem;
  transition: transform .18s ease;
}

.al-sidebar-group-toggle[aria-expanded="true"] .al-sidebar-chevron{
  transform: rotate(180deg);
}

.al-sidebar-subnav{
  display: grid;
  gap: .25rem;
  padding: .1rem 0 .2rem 1.2rem;
}

.al-sidebar-sublink{
  display: block;
  padding: .65rem .85rem;
  border-radius: 12px;
  color: rgba(255,255,255,.66);
  text-decoration: none;
  font-size: .95rem;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}

.al-sidebar-sublink:hover{
  color: #fff;
  background: rgba(255,255,255,.05);
  transform: translateX(2px);
}

.al-body.al-sidebar-collapsed .al-sidebar{
  width: 92px;
}

.al-body.al-sidebar-collapsed .al-sidebar-inner{
  padding-left: .8rem;
  padding-right: .8rem;
}

.al-body.al-sidebar-collapsed .al-sidebar-brand{
  justify-content: center;
  padding-left: .4rem;
  padding-right: .4rem;
}

.al-body.al-sidebar-collapsed .al-sidebar-brand-copy,
.al-body.al-sidebar-collapsed .al-sidebar-label,
.al-body.al-sidebar-collapsed .al-sidebar-chevron,
.al-body.al-sidebar-collapsed .al-sidebar-subnav{
  display: none;
}

.al-body.al-sidebar-collapsed .al-sidebar-header{
  flex-direction: column;
  align-items: center;
}

.al-body.al-sidebar-collapsed .al-sidebar-link,
.al-body.al-sidebar-collapsed .al-sidebar-group-toggle{
  justify-content: center;
  padding-left: .7rem;
  padding-right: .7rem;
}

.al-body.al-sidebar-collapsed .al-sidebar-link-text{
  justify-content: center;
}

.al-body.al-sidebar-collapsed .al-sidebar-group{
  gap: 0;
}

.al-body.al-sidebar-collapsed .al-sidebar-group .collapse{
  display: none !important;
}

/* Mobile topbar */
.al-app-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.75rem;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(247,248,251,.72);
  border-bottom: 1px solid rgba(15, 23, 42, .06);
}

.al-app-header-copy{
  min-width: 0;
  flex: 1;
}

.al-app-title{
  font-size: 1.05rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #0f172a;
}

.al-app-header-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
}

.al-dealer-switcher{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 64px;
  padding: .35rem;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15, 23, 42, .08);
}

.al-dealer-switcher:hover,
.al-dealer-switcher:focus,
.al-dealer-switcher.show{
  background: #fff;
  border-color: rgba(15, 23, 42, .12);
}

.al-dealer-switcher-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  background: #e5e7eb;
}

.al-dealer-switcher-mobile{
  width: 66px;
  height: 44px;
  padding: .16rem;
  margin-left: auto;
  margin-right: .5rem;
  border-radius: 14px;
}

.al-dealer-menu{
  min-width: 260px;
  padding: .45rem;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, .12);
}

.al-dealer-menu form{
  margin: 0;
}

.al-dealer-menu-item{
  display: flex;
  align-items: center;
  gap: .8rem;
  width: 100%;
  padding: .55rem .6rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
}

.al-dealer-menu-item:hover,
.al-dealer-menu-item:focus{
  background: #f8fafc;
}

.al-dealer-menu-item.is-active{
  background: #eef2ff;
}

.al-dealer-menu-image{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  background: #e5e7eb;
}

.al-dealer-menu-item span{
  font-size: .92rem;
  font-weight: 600;
  color: #0f172a;
  white-space: normal;
}

.al-app-profile-card{
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .35rem .4rem .35rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(15, 23, 42, .08);
  color: #111827;
}

.al-app-profile-copy{
  display: flex;
  align-items: center;
  text-align: right;
}

.al-app-profile-copy strong{
  font-size: .9rem;
  line-height: 1;
  font-weight: 600;
  color: #0f172a;
}

.al-app-profile-image,
.al-topbar-profile-image{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: none;
  background: #d1d5db;
}

.al-topbar{
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  background: #0B0D11;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.al-topbar-brand{
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  text-decoration: none;
}

.al-topbar-profile-image{
  width: 40px;
  height: 40px;
  margin-left: 0 !important;
}

@media (max-width: 991.98px){
  .al-topbar{
    gap: .65rem;
  }

  .al-topbar-brand{
    min-width: 0;
  }

  .al-topbar-brand .al-wordmark{
    display: none;
  }
}

.al-sidebar-toggle{
  color: #fff;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  width: 44px;
  height: 44px;
}

.al-sidebar-toggle:hover,
.al-sidebar-toggle:focus{
  color: #fff;
  background: rgba(255,255,255,.1);
}

.al-mobile-sidebar{
  background: linear-gradient(180deg, #0b0d11 0%, #141923 100%);
  color: #fff;
}

.al-search .input-group-text{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.10);
  color: rgba(255,255,255,.85);
}
.al-search input.form-control{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.10);
  color: #fff;
}
.al-search input.form-control::placeholder{ color: rgba(255,255,255,.55); }

/* Primary button (existing) */
.btn-al-primary{
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
}
.btn-al-primary:hover{
  background: #AB151B;
  border-color: #AB151B;
  color: #fff;
}

/* Hero */
.al-hero{
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFBFC 100%);
  border: 1px solid var(--ui-border);
  border-radius: 18px;
}
.al-h1{
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0B0D11;
  font-weight: 700;
}
.al-lead{
  color: var(--ink-700);
  font-size: 1.05rem;
  max-width: 60ch;
}
.al-hero-card{
  background: #fff;
  border: 1px solid var(--ui-border);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Trust */
.al-trust{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  color: var(--ink-700);
  font-weight: 500;
}
.al-trust-item{
  display:flex;
  align-items:center;
  gap:.5rem;
  font-size: .95rem;
}
.al-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 3px rgba(245,197,66,.25);
}

.al-sort{ min-width: 220px; }

/* Cards */
.al-card{
  border: 1px solid var(--ui-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--ui-card);
  transition: transform .12s ease, box-shadow .12s ease;
}
.al-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.al-card-imgwrap{
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #EEF0F3;
}
.al-card-imgwrap img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.al-favorite-btn{
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--brand-red);
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  z-index: 2;
}
.al-favorite-btn:hover,
.al-favorite-btn:focus{
  background: #fff;
  color: var(--brand-red);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}
.al-favorite-btn i{
  font-size: 1.1rem;
  line-height: 1;
}
.al-favorite-btn.is-loading{
  opacity: .75;
}

.al-auth-modal{
  border: 1px solid var(--ui-border);
  border-radius: 18px;
  overflow: hidden;
}

.al-login-divider{
  position: relative;
  text-align: center;
}

.al-login-divider::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px solid var(--ui-border);
}

.al-login-divider span{
  position: relative;
  padding: 0 .85rem;
  background: #fff;
  color: var(--ink-500);
  font-size: .95rem;
}

.al-login-provider{
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  border: 1px solid var(--ui-border);
  border-radius: 12px;
  background: #fff;
  color: #111827;
  font-weight: 600;
}

.al-login-provider:hover,
.al-login-provider:focus{
  background: #f9fafb;
  border-color: rgba(0,0,0,.12);
  color: #111827;
}

.al-login-provider-icon{
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: .85rem;
  font-weight: 700;
}

.al-badge{
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(200,29,37,.95);
  color: #fff;
  border-radius: 999px;
  padding: .35rem .6rem;
  font-weight: 700;
  font-size: .72rem;
}

.al-price{
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .2px;
  color: #0B0D11;
}

.al-price-current{
  display: block;
}

.al-price-old{
  display: block;
  margin-top: .15rem;
  color: var(--ink-500);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: line-through;
}

/* Footer */
.al-footer{
  background: #0B0D11;
  color: #fff;
  margin-top: auto;
}
.al-footer .text-secondary{ color: rgba(255,255,255,.65) !important; }
.al-footer-link{
  display:block;
  color: rgba(255,255,255,.70);
  text-decoration: none;
  font-size: .9rem;
  margin: .25rem 0;
}
.al-footer-link:hover{ color: #fff; }

/* Pagination */
.al-pagination{ gap: .25rem; }
.al-pagination .page-item{ margin: 0; }

.al-pagination .page-link{
  border-radius: 10px;
  border: 1px solid var(--ui-border);
  color: var(--ink-700);
  background: #fff;
  padding: .45rem .7rem;
  font-weight: 500;
  transition: all .15s ease;
}
.al-pagination .page-link:hover{
  background: #F3F4F6;
  color: var(--ink-900);
  border-color: rgba(0,0,0,.12);
}
.al-pagination .page-item.active .page-link{
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(200,29,37,.25);
}
.al-pagination .page-item.disabled .page-link{
  background: #F3F4F6;
  color: var(--ink-500);
  border-color: rgba(0,0,0,.05);
  cursor: not-allowed;
}
.al-pagination .page-link:focus{
  box-shadow: 0 0 0 3px rgba(200,29,37,.15);
}

/* Sticky filters/sidebar */
.al-sticky{
  position: sticky;
  top: 92px; /* below navbar */
}

/* Filter panel inputs */
.al-panel .form-control,
.al-panel .form-select{
  border-radius: 12px;
  border: 1px solid var(--ui-border);
}
.al-panel .form-control:focus,
.al-panel .form-select:focus{
  border-color: rgba(200,29,37,.25);
  box-shadow: 0 0 0 3px rgba(200,29,37,.12);
}

/* VDP */
.al-price-lg{
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: .3px;
  color: #0B0D11;
}

.al-price-old-lg{
  display: block;
  margin-top: .25rem;
  color: var(--ink-500);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: line-through;
}
.al-pill{
  font-size: .75rem;
  font-weight: 600;
  padding: .35rem .55rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: var(--ink-700);
}

/* Gallery */
.al-vdp-image{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #EEF0F3;
}
.al-vdp-image img{
  width: 100%;
  height: auto;
  display: block;
}

.al-thumbs{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .5rem;
}
.al-thumb{
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.al-thumb:hover{
  transform: translateY(-1px);
  border-color: rgba(0,0,0,.12);
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
}
.al-thumb.is-active{
  border-color: rgba(200, 29, 37, .55);
  box-shadow: 0 0 0 2px rgba(200, 29, 37, .14);
}
.al-thumb img{
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

/* Specs */
.al-spec-grid{ display: grid; gap: .35rem; }
.al-spec-row{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .6rem;
  border-radius: 12px;
  background: #FAFAFB;
  border: 1px solid rgba(0,0,0,.05);
}
.al-spec-row span{
  color: var(--ink-500);
  font-size: .9rem;
}
.al-spec-row strong{
  color: #0B0D11;
  font-weight: 600;
  text-align: right;
}

/* VDP Form */
.al-form .form-control{
  border-radius: 12px;
  border: 1px solid var(--ui-border);
}
.al-form .form-control:focus{
  border-color: rgba(200,29,37,.25);
  box-shadow: 0 0 0 3px rgba(200,29,37,.12);
}

/* Features */
.al-features{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .6rem 1.2rem;
}
@media (max-width: 768px){
  .al-features{ grid-template-columns: 1fr; }
}
.al-feature-item{
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  color: var(--ink-700);
  font-size: .95rem;
}
.al-feature-item i{
  color: rgba(200,29,37,.9);
  margin-top: .05rem;
}

/* Auth pages (Signup/Login) */
.al-auth-card{
  background: var(--ui-card);
  border: 1px solid var(--ui-border);
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
}

.al-login-banner-panel{
  position: relative;
  overflow: hidden;
  background: #0b0d11;
}

.al-login-banner-panel::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,7,12,.63) 0%, rgba(3,7,12,.43) 42%, rgba(3,7,12,.14) 100%),
    linear-gradient(180deg, rgba(3,7,12,.13) 0%, rgba(3,7,12,.29) 100%);
  pointer-events: none;
}

.al-login-banner{
  width: 100%;
  height: 100vh;
  min-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.al-login-banner-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 4.25rem);
  color: #fff;
}

.al-login-banner-copy{
  max-width: 650px;
}

.al-login-banner-logo{
  height: 42px;
  width: auto;
  margin-bottom: 2rem;
}

.al-login-banner-copy h1{
  max-width: 780px;
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 3.8vw, 4.25rem);
  line-height: .98;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0,0,0,.45);
}

.al-login-banner-copy p{
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1.05rem, 1.25vw, 1.35rem);
  line-height: 1.55;
}

.al-login-banner-rule{
  width: 58px;
  height: 3px;
  margin: 2.2rem 0;
  border-radius: 999px;
  background: var(--brand-yellow);
}

.al-login-feature,
.al-login-benefit,
.al-login-stat{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.al-login-feature{
  align-items: flex-start;
  max-width: 520px;
}

.al-login-feature i,
.al-login-benefit i,
.al-login-stat i{
  flex: 0 0 auto;
  color: var(--brand-yellow);
  line-height: 1;
}

.al-login-feature i{
  font-size: 2.15rem;
}

.al-login-feature strong,
.al-login-benefit strong,
.al-login-stat strong{
  display: block;
  color: #fff;
}

.al-login-feature strong{
  max-width: 420px;
  font-size: clamp(1.35rem, 1.8vw, 2rem);
  line-height: 1.12;
}

.al-login-feature span{
  display: block;
  max-width: 500px;
  margin-top: .9rem;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.55;
}

.al-login-banner-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 900px;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(5,8,13,.68);
  box-shadow: 0 22px 55px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
}

.al-login-stat{
  min-width: 0;
  padding: 0 1.15rem;
  border-right: 1px solid rgba(255,255,255,.18);
}

.al-login-stat:first-child{
  padding-left: 0;
}

.al-login-stat:last-child{
  padding-right: 0;
  border-right: 0;
}

.al-login-stat i{
  font-size: 1.7rem;
}

.al-login-stat strong{
  font-size: clamp(1.35rem, 1.7vw, 2rem);
  line-height: 1;
  font-weight: 800;
}

.al-login-stat span,
.al-login-benefit span{
  display: block;
  margin-top: .3rem;
  color: rgba(255,255,255,.78);
  font-size: .95rem;
  line-height: 1.35;
}

.al-login-banner-benefits{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 1.5rem 3rem;
  max-width: 860px;
}

.al-login-benefit{
  align-items: flex-start;
}

.al-login-benefit i{
  font-size: 1.85rem;
}

.al-login-benefit strong{
  font-size: 1rem;
  font-weight: 800;
}

@media (max-height: 760px) and (min-width: 992px){
  .al-login-banner-overlay{
    gap: 1.15rem;
    padding: 2rem 2.5rem;
  }

  .al-login-banner-logo{
    height: 34px;
    margin-bottom: 1.15rem;
  }

  .al-login-banner-copy h1{
    font-size: clamp(2rem, 3.2vw, 3.25rem);
  }

  .al-login-banner-rule{
    margin: 1.15rem 0;
  }

  .al-login-feature span,
  .al-login-banner-benefits{
    display: none;
  }

  .al-login-banner-stats{
    padding: 1rem;
  }
}

/* Brand CTA button used on auth */
.btn.btn-brand{
  background: linear-gradient(135deg, var(--brand-red), var(--brand-yellow));
  color: var(--ink-900);
  border: 0;
  font-weight: 800;
  padding: .9rem 1.1rem;
  border-radius: .75rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.btn.btn-brand:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
  color: var(--ink-900);
}
.btn.btn-brand:active{ transform: translateY(0); }
.btn.btn-brand:focus{
  box-shadow:
    0 0 0 .25rem rgba(200,29,37,.18),
    0 10px 24px rgba(0,0,0,.12);
}

/* Auth helper links */
.al-auth-link{
  color: var(--brand-red);
  font-weight: 600;
  text-decoration: none;
}

.al-auth-link:hover{
  color: #AB151B; /* darker red */
  text-decoration: underline;
}

@media (max-width: 991.98px){
  .al-shell{
    display: block;
  }
}
