/* =============================================
   Horizon Theme - 青蓝科技风 IDC 主题
   主色: #0ea5e9 → #06b6d4
   ============================================= */

:root {
  --hz-primary:       #0ea5e9;
  --hz-primary-dark:  #06b6d4;
  --hz-primary-light: #e0f2fe;
  --hz-primary-grad:  linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  --hz-sidebar-w:     240px;
  --hz-sidebar-bg:    #ffffff;
  --hz-sidebar-border:#e2ecf5;
  --hz-body-bg:       #f0f7ff;
  --hz-card-bg:       #ffffff;
  --hz-text-main:     #1e3a5f;
  --hz-text-muted:    #64748b;
  --hz-text-light:    #94a3b8;
  --hz-border:        #dbeafe;
  --hz-shadow-sm:     0 1px 4px rgba(14,165,233,.08);
  --hz-shadow-md:     0 4px 16px rgba(14,165,233,.12);
  --hz-radius:        8px;
  --hz-radius-lg:     12px;
}

/* ---- 全局 ---- */
body { background: var(--hz-body-bg) !important; color: var(--hz-text-main); font-family: -apple-system,"PingFang SC","Microsoft YaHei",sans-serif; }

/* =============================================
   顶部导航栏
   ============================================= */
#page-topbar {
  background: #fff !important;
  border-bottom: 1px solid var(--hz-border) !important;
  box-shadow: var(--hz-shadow-sm) !important;
}
.navbar-brand-box {
  background: #fff !important;
  border-right: 1px solid var(--hz-border);
  width: var(--hz-sidebar-w) !important;
}
/* logo 区蓝色下划线装饰 */
.navbar-brand-box::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--hz-primary-grad);
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.logo-lg img { max-height: 36px; width: auto; }

/* 顶栏按钮 */
.header-item { color: var(--hz-text-main) !important; }
.header-item:hover, .header-item:focus { background: var(--hz-primary-light) !important; color: var(--hz-primary) !important; }

/* 用户头像圆圈 */
.user-center_header {
  background: var(--hz-primary-grad) !important;
  color: #fff !important;
  border-radius: 50%;
  font-weight: 600;
  font-size: 14px !important;
}

/* 徽章 */
.badge-danger { background: #ef4444 !important; }

/* =============================================
   左侧导航
   ============================================= */
.vertical-menu {
  background: var(--hz-sidebar-bg) !important;
  border-right: 1px solid var(--hz-sidebar-border) !important;
  width: var(--hz-sidebar-w) !important;
  box-shadow: 2px 0 8px rgba(14,165,233,.06) !important;
}

/* 侧栏顶部品牌色条 */
.vertical-menu::before {
  content: '';
  display: block;
  height: 4px;
  background: var(--hz-primary-grad);
  width: 100%;
}

#side-menu li a {
  color: var(--hz-text-muted) !important;
  font-size: 13.5px;
  border-radius: var(--hz-radius) !important;
  margin: 2px 10px;
  padding: 10px 14px !important;
  transition: all .18s ease;
}
#side-menu li a i {
  color: var(--hz-text-light) !important;
  font-size: 16px;
  width: 20px;
  text-align: center;
  margin-right: 10px;
}
#side-menu li a:hover {
  background: var(--hz-primary-light) !important;
  color: var(--hz-primary) !important;
}
#side-menu li a:hover i { color: var(--hz-primary) !important; }

/* 激活项 */
#side-menu li.mm-active > a,
#side-menu li a.active {
  background: var(--hz-primary-grad) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(14,165,233,.3) !important;
}
#side-menu li.mm-active > a i,
#side-menu li a.active i { color: #fff !important; }

/* 二级菜单 */
#side-menu .sub-menu { background: transparent !important; padding-left: 10px; }
#side-menu .sub-menu li a { font-size: 13px; padding: 8px 14px 8px 30px !important; }
#side-menu .sub-menu li a::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--hz-text-light);
  margin-right: 8px;
  vertical-align: middle;
  transition: background .18s;
}
#side-menu .sub-menu li a:hover::before,
#side-menu .sub-menu li.mm-active a::before { background: var(--hz-primary); }

/* =============================================
   主内容区
   ============================================= */
.main-content { margin-left: var(--hz-sidebar-w) !important; background: var(--hz-body-bg); }
.page-content { padding: 24px 24px 60px !important; }

/* =============================================
   卡片
   ============================================= */
.card {
  border: 1px solid var(--hz-border) !important;
  border-radius: var(--hz-radius-lg) !important;
  box-shadow: var(--hz-shadow-sm) !important;
  background: var(--hz-card-bg) !important;
  transition: box-shadow .2s ease;
}
.card:hover { box-shadow: var(--hz-shadow-md) !important; }
.card-header {
  background: #fff !important;
  border-bottom: 1px solid var(--hz-border) !important;
  border-radius: var(--hz-radius-lg) var(--hz-radius-lg) 0 0 !important;
  padding: 14px 20px !important;
  font-weight: 600;
  color: var(--hz-text-main);
}

/* 渐变头部卡片 */
.card-header.hz-grad {
  background: var(--hz-primary-grad) !important;
  color: #fff !important;
  border: none !important;
}

/* 统计数据卡 */
.hz-stat-card {
  border-left: 4px solid var(--hz-primary) !important;
  border-radius: var(--hz-radius-lg) !important;
}
.hz-stat-card .stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--hz-primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--hz-primary);
}

/* =============================================
   按钮
   ============================================= */
.btn-primary {
  background: var(--hz-primary-grad) !important;
  border: none !important;
  border-radius: var(--hz-radius) !important;
  box-shadow: 0 3px 10px rgba(14,165,233,.3) !important;
  font-weight: 500;
  transition: opacity .18s, transform .18s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline-primary {
  color: var(--hz-primary) !important;
  border-color: var(--hz-primary) !important;
  border-radius: var(--hz-radius) !important;
}
.btn-outline-primary:hover {
  background: var(--hz-primary) !important;
  color: #fff !important;
}

.btn-light {
  background: var(--hz-primary-light) !important;
  color: var(--hz-primary) !important;
  border: none !important;
  border-radius: var(--hz-radius) !important;
}

/* =============================================
   表单
   ============================================= */
.form-control {
  border: 1px solid var(--hz-border) !important;
  border-radius: var(--hz-radius) !important;
  color: var(--hz-text-main) !important;
  transition: border-color .18s, box-shadow .18s;
}
.form-control:focus {
  border-color: var(--hz-primary) !important;
  box-shadow: 0 0 0 3px rgba(14,165,233,.15) !important;
}
.input-group-prepend .input-group-text,
.input-group-append .input-group-text {
  background: var(--hz-primary-light) !important;
  border-color: var(--hz-border) !important;
  color: var(--hz-primary) !important;
}

/* =============================================
   页面标题栏
   ============================================= */
.page-title-box {
  background: #fff;
  border-radius: var(--hz-radius-lg);
  padding: 14px 20px !important;
  margin-bottom: 20px;
  border: 1px solid var(--hz-border);
  box-shadow: var(--hz-shadow-sm);
}
.page-title-box h4 {
  color: var(--hz-text-main) !important;
  font-weight: 700;
  font-size: 16px !important;
}

/* 面包屑 */
.breadcrumb { background: transparent !important; padding: 0 !important; margin: 0; }
.breadcrumb-item a { color: var(--hz-primary) !important; }
.breadcrumb-item.active { color: var(--hz-text-muted) !important; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--hz-text-light) !important; }

/* =============================================
   表格
   ============================================= */
.table thead th {
  background: var(--hz-primary-light) !important;
  color: var(--hz-primary) !important;
  font-weight: 600;
  border-bottom: 2px solid var(--hz-border) !important;
  font-size: 13px;
}
.table td { vertical-align: middle !important; color: var(--hz-text-main); border-color: var(--hz-border) !important; }
.table-hover tbody tr:hover { background: var(--hz-primary-light) !important; }

/* =============================================
   徽章 / 标签
   ============================================= */
.badge-soft-primary { background: var(--hz-primary-light) !important; color: var(--hz-primary) !important; }
.badge-soft-success { background: #dcfce7 !important; color: #16a34a !important; }
.badge-soft-warning { background: #fef9c3 !important; color: #ca8a04 !important; }
.badge-soft-danger  { background: #fee2e2 !important; color: #dc2626 !important; }

/* =============================================
   下拉菜单
   ============================================= */
.dropdown-menu {
  border: 1px solid var(--hz-border) !important;
  border-radius: var(--hz-radius-lg) !important;
  box-shadow: var(--hz-shadow-md) !important;
}
.dropdown-item:hover, .dropdown-item:focus {
  background: var(--hz-primary-light) !important;
  color: var(--hz-primary) !important;
}
.dropdown-item.text-danger:hover { background: #fee2e2 !important; color: #dc2626 !important; }

/* =============================================
   底部页脚
   ============================================= */
.footer {
  background: #fff !important;
  border-top: 1px solid var(--hz-border) !important;
  color: var(--hz-text-muted) !important;
  font-size: 13px;
  padding: 14px 20px;
}

/* =============================================
   登录 / 注册页
   ============================================= */
.hz-auth-wrap {
  min-height: 100vh;
  display: flex;
  background: var(--hz-body-bg);
}
.hz-auth-left {
  flex: 1;
  background: var(--hz-primary-grad);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.hz-auth-left::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -120px; right: -120px;
}
.hz-auth-left::after {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -60px; left: -60px;
}
.hz-auth-left .brand-title { color: #fff; font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.hz-auth-left .brand-subtitle { color: rgba(255,255,255,.8); font-size: 15px; line-height: 1.7; max-width: 380px; }
.hz-auth-left .feature-list { margin-top: 40px; list-style: none; padding: 0; }
.hz-auth-left .feature-list li {
  color: rgba(255,255,255,.9);
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hz-auth-left .feature-list li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
.hz-auth-right {
  width: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #fff;
}
.hz-auth-box { width: 100%; max-width: 380px; }
.hz-auth-logo { text-align: center; margin-bottom: 32px; }
.hz-auth-logo img { height: 44px; }
.hz-auth-title { font-size: 22px; font-weight: 700; color: var(--hz-text-main); margin-bottom: 6px; }
.hz-auth-sub { color: var(--hz-text-muted); font-size: 14px; margin-bottom: 28px; }
.hz-tab-nav { display: flex; border-bottom: 2px solid var(--hz-border); margin-bottom: 24px; }
.hz-tab-nav a {
  flex: 1; text-align: center; padding: 10px;
  color: var(--hz-text-muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all .18s;
}
.hz-tab-nav a.active { color: var(--hz-primary); border-bottom-color: var(--hz-primary); }

/* =============================================
   购物车 / 产品页 (cart)
   ============================================= */
.hz-cart-wrap {
  min-height: 100vh;
  background: var(--hz-body-bg);
  font-family: -apple-system,"PingFang SC","Microsoft YaHei",sans-serif;
}
.hz-cart-header {
  background: #fff;
  border-bottom: 1px solid var(--hz-border);
  box-shadow: var(--hz-shadow-sm);
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hz-cart-header .logo img { height: 36px; }
.hz-cart-steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.hz-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hz-text-light);
  font-size: 13px;
}
.hz-step.active { color: var(--hz-primary); font-weight: 600; }
.hz-step.done { color: #16a34a; }
.hz-step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--hz-border);
  color: var(--hz-text-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.hz-step.active .hz-step-num { background: var(--hz-primary); color: #fff; box-shadow: 0 2px 8px rgba(14,165,233,.4); }
.hz-step.done .hz-step-num { background: #16a34a; color: #fff; }
.hz-step-sep { width: 40px; height: 2px; background: var(--hz-border); margin: 0 6px; }
.hz-step.done + .hz-step-sep { background: #16a34a; }

/* 产品卡片 */
.hz-product-card {
  background: #fff;
  border: 2px solid var(--hz-border);
  border-radius: var(--hz-radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.hz-product-card:hover {
  border-color: var(--hz-primary);
  box-shadow: var(--hz-shadow-md);
  transform: translateY(-2px);
}
.hz-product-card .prod-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--hz-primary-grad);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 500;
}
.hz-product-card .prod-name {
  font-size: 15px; font-weight: 700;
  color: var(--hz-text-main); margin-bottom: 8px;
}
.hz-product-card .prod-desc {
  font-size: 13px; color: var(--hz-text-muted);
  margin-bottom: 14px; line-height: 1.6;
  white-space: pre-wrap; word-break: break-word;
}
.hz-product-card .prod-price {
  font-size: 22px; font-weight: 700;
  background: var(--hz-primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hz-product-card .prod-price-unit { font-size: 13px; color: var(--hz-text-muted); margin-left: 4px; -webkit-text-fill-color: var(--hz-text-muted); }
.hz-product-card .prod-origin { font-size: 12px; color: var(--hz-text-light); text-decoration: line-through; }
.hz-product-card .btn-order {
  background: var(--hz-primary-grad) !important;
  border: none;
  border-radius: var(--hz-radius);
  color: #fff;
  padding: 7px 22px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(14,165,233,.3);
  transition: opacity .18s;
}
.hz-product-card .btn-order:hover { opacity: .88; }

/* 分类侧栏 */
.hz-cat-sidebar {
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-radius-lg);
  overflow: hidden;
}
.hz-cat-sidebar .cat-title {
  background: var(--hz-primary-grad);
  color: #fff;
  padding: 12px 16px;
  font-size: 13px; font-weight: 600;
}
.hz-cat-sidebar .cat-item {
  display: block;
  padding: 10px 16px;
  color: var(--hz-text-muted);
  font-size: 13px;
  border-bottom: 1px solid var(--hz-border);
  text-decoration: none;
  transition: all .15s;
}
.hz-cat-sidebar .cat-item:last-child { border-bottom: none; }
.hz-cat-sidebar .cat-item:hover,
.hz-cat-sidebar .cat-item.active {
  background: var(--hz-primary-light);
  color: var(--hz-primary);
  padding-left: 22px;
}

/* 订单汇总 */
.hz-order-summary {
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-radius-lg);
  overflow: hidden;
}
.hz-order-summary .summary-head {
  background: var(--hz-primary-grad);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
}
.hz-order-summary .summary-body { padding: 16px 18px; }
.hz-order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--hz-border);
}
.hz-order-summary .summary-row:last-child { border-bottom: none; }
.hz-order-summary .summary-label { color: var(--hz-text-muted); }
.hz-order-summary .summary-total {
  font-size: 18px; font-weight: 700;
  background: var(--hz-primary-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =============================================
   官网门户 (web)
   ============================================= */
.hz-web-nav {
  background: #fff;
  border-bottom: 1px solid var(--hz-border);
  box-shadow: var(--hz-shadow-sm);
  position: sticky; top: 0; z-index: 1000;
}
.hz-web-nav .container { max-width: 1200px; margin: 0 auto; }
.hz-web-nav .nav-inner {
  display: flex; align-items: center;
  height: 64px; gap: 32px;
}
.hz-web-nav .nav-logo img { height: 36px; }
.hz-web-nav .nav-links { display: flex; gap: 8px; flex: 1; }
.hz-web-nav .nav-links a {
  padding: 6px 14px;
  color: var(--hz-text-muted);
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  transition: all .15s;
}
.hz-web-nav .nav-links a:hover, .hz-web-nav .nav-links a.active {
  background: var(--hz-primary-light);
  color: var(--hz-primary);
}
.hz-web-nav .nav-actions { display: flex; gap: 10px; align-items: center; }
.hz-web-nav .btn-login { color: var(--hz-primary); border: 1px solid var(--hz-primary); border-radius: 6px; padding: 7px 18px; font-size: 14px; text-decoration: none; transition: all .15s; }
.hz-web-nav .btn-login:hover { background: var(--hz-primary); color: #fff; }
.hz-web-nav .btn-reg { background: var(--hz-primary-grad); color: #fff; border-radius: 6px; padding: 7px 18px; font-size: 14px; text-decoration: none; box-shadow: 0 3px 8px rgba(14,165,233,.3); transition: opacity .15s; }
.hz-web-nav .btn-reg:hover { opacity: .88; color: #fff; }

/* Hero */
.hz-hero {
  background: var(--hz-primary-grad);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hz-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -200px; right: -150px;
}
.hz-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  bottom: -100px; left: 100px;
}
.hz-hero .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.hz-hero h1 { color: #fff; font-size: 42px; font-weight: 800; line-height: 1.25; margin-bottom: 20px; }
.hz-hero p { color: rgba(255,255,255,.85); font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hz-hero .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hz-hero .btn-white { background: #fff; color: var(--hz-primary); border-radius: 8px; padding: 12px 30px; font-size: 15px; font-weight: 600; text-decoration: none; box-shadow: 0 4px 16px rgba(0,0,0,.12); transition: transform .15s; }
.hz-hero .btn-white:hover { transform: translateY(-2px); color: var(--hz-primary); }
.hz-hero .btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); border-radius: 8px; padding: 12px 30px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all .15s; }
.hz-hero .btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; }

/* 服务模块 */
.hz-services { padding: 70px 0; background: var(--hz-body-bg); }
.hz-services .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.hz-section-title { text-align: center; margin-bottom: 50px; }
.hz-section-title h2 { font-size: 30px; font-weight: 700; color: var(--hz-text-main); margin-bottom: 12px; }
.hz-section-title p { color: var(--hz-text-muted); font-size: 15px; }
.hz-section-title .title-line {
  width: 48px; height: 4px;
  background: var(--hz-primary-grad);
  border-radius: 2px;
  margin: 14px auto 0;
}

.hz-service-card {
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: all .2s ease;
  cursor: default;
}
.hz-service-card:hover {
  border-color: var(--hz-primary);
  box-shadow: var(--hz-shadow-md);
  transform: translateY(-4px);
}
.hz-service-card .svc-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--hz-primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--hz-primary);
  margin: 0 auto 18px;
}
.hz-service-card:hover .svc-icon { background: var(--hz-primary-grad); color: #fff; }
.hz-service-card h4 { font-size: 16px; font-weight: 600; color: var(--hz-text-main); margin-bottom: 8px; }
.hz-service-card p { font-size: 13px; color: var(--hz-text-muted); line-height: 1.7; margin: 0; }

/* 数据亮点 */
.hz-stats { background: var(--hz-primary-grad); padding: 50px 0; }
.hz-stats .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.hz-stats .stat-item { text-align: center; }
.hz-stats .stat-num { font-size: 36px; font-weight: 800; color: #fff; }
.hz-stats .stat-unit { font-size: 16px; color: rgba(255,255,255,.7); margin-left: 2px; }
.hz-stats .stat-label { font-size: 13px; color: rgba(255,255,255,.75); margin-top: 4px; }

/* 公告栏 */
.hz-notice-bar {
  background: #fff;
  border: 1px solid var(--hz-border);
  border-radius: var(--hz-radius-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hz-notice-bar .notice-tag {
  background: var(--hz-primary-grad);
  color: #fff;
  font-size: 11px;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
  font-weight: 600;
}
.hz-notice-bar .notice-text { font-size: 13px; color: var(--hz-text-muted); flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

/* Web footer */
.hz-web-footer {
  background: #1e3a5f;
  color: rgba(255,255,255,.65);
  padding: 50px 0 24px;
}
.hz-web-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.hz-web-footer h5 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.hz-web-footer a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13px; display: block; margin-bottom: 8px; transition: color .15s; }
.hz-web-footer a:hover { color: var(--hz-primary); }
.hz-web-footer .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 32px; padding-top: 20px; font-size: 12px; text-align: center; }

/* =============================================
   响应式
   ============================================= */
@media (max-width: 992px) {
  .hz-auth-left { display: none; }
  .hz-auth-right { width: 100%; min-height: 100vh; }
  .hz-stats .stat-item { margin-bottom: 24px; }
  .hz-hero h1 { font-size: 28px; }
}
@media (max-width: 768px) {
  .page-content { padding: 16px 12px 60px !important; }
  .hz-cart-header { padding: 0 16px; }
  .hz-web-nav .nav-links { display: none; }
}
