/* ═══════════════════════════════════════════════════════════════
   VastLink B2B — 前端样式 v1.2.0
   深色导航 + 浅色内容区，CSS变量驱动，支持行业配色切换
   ═══════════════════════════════════════════════════════════════ */

:root {
    --vlb2b-primary:   #1A2E44;
    --vlb2b-accent:    #2563EB;
    --vlb2b-text:      #1A1A2E;
    --vlb2b-bg:        #F5F7FA;
    --vlb2b-card-bg:   #FFFFFF;
    --vlb2b-nav-bg:    #1A2E44;
    --vlb2b-border:    #E2E8F0;
    --vlb2b-muted:     #64748B;
    --vlb2b-radius:    8px;
    --vlb2b-radius-lg: 14px;
    --vlb2b-shadow:    0 2px 12px rgba(0,0,0,0.07);
    --vlb2b-shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --vlb2b-trans:     all 0.22s ease;
    --vlb2b-max-w:     1200px;
    --vlb2b-font:      'Inter','Segoe UI',Arial,sans-serif;
}

/* ── 通用按钮 ─────────────────────────────────────────────────── */
.vlb2b-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 6px; padding: 11px 26px; border-radius: var(--vlb2b-radius);
    font-size: 14px; font-weight: 600; font-family: var(--vlb2b-font);
    text-decoration: none; cursor: pointer; border: 2px solid transparent;
    transition: var(--vlb2b-trans); white-space: nowrap; letter-spacing: 0.02em;
}
.vlb2b-btn-primary { background: var(--vlb2b-primary); color: #fff; border-color: var(--vlb2b-primary); }
.vlb2b-btn-primary:hover { background: var(--vlb2b-accent); border-color: var(--vlb2b-accent); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.vlb2b-btn-accent { background: var(--vlb2b-accent); color: #fff; border-color: var(--vlb2b-accent); }
.vlb2b-btn-accent:hover { filter: brightness(1.1); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.vlb2b-btn-secondary { background: #fff; color: var(--vlb2b-primary); border-color: var(--vlb2b-border); }
.vlb2b-btn-secondary:hover { border-color: var(--vlb2b-primary); background: var(--vlb2b-bg); }
.vlb2b-btn-outline { background: transparent; color: var(--vlb2b-primary); border-color: var(--vlb2b-primary); }
.vlb2b-btn-outline:hover { background: var(--vlb2b-primary); color: #fff; }
.vlb2b-btn-danger { background: #FEF2F2; color: #DC2626; border-color: #FECACA; }
.vlb2b-btn-danger:hover { background: #DC2626; color: #fff; border-color: #DC2626; }
.vlb2b-btn-lg { padding: 14px 36px; font-size: 16px; border-radius: 10px; }

/* ── 输入框 ───────────────────────────────────────────────────── */
.vlb2b-input {
    width: 100%; padding: 11px 16px; border: 1.5px solid var(--vlb2b-border);
    border-radius: var(--vlb2b-radius); font-size: 14px; font-family: var(--vlb2b-font);
    color: var(--vlb2b-text); background: #fff; box-sizing: border-box;
    transition: var(--vlb2b-trans); outline: none;
}
.vlb2b-input:focus { border-color: var(--vlb2b-accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.vlb2b-input::placeholder { color: #94A3B8; }
select.vlb2b-input { cursor: pointer; }
textarea.vlb2b-input { resize: vertical; min-height: 100px; line-height: 1.6; }

/* ── 分类标签 ─────────────────────────────────────────────────── */
.vlb2b-cat-tag {
    display: inline-block; background: rgba(37,99,235,0.08); color: var(--vlb2b-accent);
    font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
    margin-right: 4px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ════════════ 产品列表页 ═══════════════════════════════════════ */
.vlb2b-archive-wrap { max-width: var(--vlb2b-max-w); margin: 0 auto; padding: 48px 20px 64px; background: var(--vlb2b-bg); }
.vlb2b-archive-hero { margin-bottom: 40px; }
.vlb2b-archive-hero h1 { font-size: 32px; font-weight: 700; color: var(--vlb2b-primary); margin: 0 0 8px; line-height: 1.2; }
.vlb2b-archive-hero p { color: var(--vlb2b-muted); font-size: 16px; margin: 0; }

.vlb2b-cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--vlb2b-border); }
.vlb2b-cat-btn { padding: 8px 20px; border: 1.5px solid var(--vlb2b-border); border-radius: 24px; text-decoration: none; color: var(--vlb2b-muted); font-size: 13px; font-weight: 500; transition: var(--vlb2b-trans); background: #fff; font-family: var(--vlb2b-font); }
.vlb2b-cat-btn:hover { border-color: var(--vlb2b-primary); color: var(--vlb2b-primary); }
.vlb2b-cat-btn.active { background: var(--vlb2b-primary); color: #fff; border-color: var(--vlb2b-primary); }

.vlb2b-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

.vlb2b-product-card { background: var(--vlb2b-card-bg); border: 1px solid var(--vlb2b-border); border-radius: var(--vlb2b-radius-lg); overflow: hidden; transition: var(--vlb2b-trans); display: flex; flex-direction: column; }
.vlb2b-product-card:hover { box-shadow: var(--vlb2b-shadow-lg); transform: translateY(-4px); border-color: transparent; }
.vlb2b-card-img-link { display: block; overflow: hidden; }
.vlb2b-card-img { width: 100%; height: 240px; object-fit: cover; display: block; background: #F1F5F9; transition: transform 0.4s ease; }
.vlb2b-product-card:hover .vlb2b-card-img { transform: scale(1.04); }
.vlb2b-no-img { display: flex; align-items: center; justify-content: center; color: #CBD5E1; font-size: 13px; background: linear-gradient(135deg,#F8FAFC,#EEF2FF); }
.vlb2b-card-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.vlb2b-card-cats { margin-bottom: 10px; }
.vlb2b-card-title { font-size: 17px; font-weight: 700; margin: 0 0 10px; line-height: 1.4; color: var(--vlb2b-text); }
.vlb2b-card-title a { color: inherit; text-decoration: none; transition: color 0.2s; }
.vlb2b-card-title a:hover { color: var(--vlb2b-accent); }
.vlb2b-card-excerpt { color: var(--vlb2b-muted); font-size: 13.5px; line-height: 1.65; margin: 0 0 18px; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.vlb2b-card-actions { display: flex; gap: 8px; margin-top: auto; }
.vlb2b-card-actions .vlb2b-btn { flex: 1; font-size: 13px; padding: 9px 12px; }

.vlb2b-cart-floating { position: fixed; bottom: 28px; right: 28px; z-index: 9999; border-radius: 50px; box-shadow: 0 6px 24px rgba(0,0,0,0.18); animation: vlb2b-float-in 0.3s ease; }
@keyframes vlb2b-float-in { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.vlb2b-cart-floating .vlb2b-btn { border-radius: 50px; padding: 13px 24px; font-size: 15px; }

/* ════════════ 产品详情页 ═══════════════════════════════════════ */
.vlb2b-single-wrap { max-width: var(--vlb2b-max-w); margin: 0 auto; padding: 32px 20px 72px; background: var(--vlb2b-bg); }

.vlb2b-breadcrumb { font-size: 13px; color: var(--vlb2b-muted); margin-bottom: 28px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.vlb2b-breadcrumb a { color: var(--vlb2b-accent); text-decoration: none; }
.vlb2b-breadcrumb a:hover { opacity: 0.75; }
.vlb2b-breadcrumb-sep { color: #CBD5E1; }

.vlb2b-single-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-bottom: 64px; align-items: start; }
.vlb2b-single-gallery { position: sticky; top: 24px; }
.vlb2b-main-img-wrap { border-radius: var(--vlb2b-radius-lg); overflow: hidden; margin-bottom: 14px; background: #F8FAFC; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border: 1px solid var(--vlb2b-border); }
.vlb2b-main-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; cursor: zoom-in; }
.vlb2b-main-img:hover { transform: scale(1.03); }
.vlb2b-thumb-strip { display: flex; gap: 10px; flex-wrap: wrap; }
.vlb2b-thumb-item { width: 76px; height: 76px; object-fit: cover; border-radius: 8px; border: 2px solid var(--vlb2b-border); cursor: pointer; transition: var(--vlb2b-trans); background: #F1F5F9; }
.vlb2b-thumb-item:hover { border-color: var(--vlb2b-primary); }
.vlb2b-thumb-item.active { border-color: var(--vlb2b-accent); box-shadow: 0 0 0 3px rgba(37,99,235,0.15); }

.vlb2b-single-info { padding-top: 4px; }
.vlb2b-product-title { font-size: 30px; font-weight: 800; color: var(--vlb2b-primary); margin: 0 0 14px; line-height: 1.25; letter-spacing: -0.02em; }
.vlb2b-product-excerpt { font-size: 15.5px; line-height: 1.75; color: var(--vlb2b-muted); margin-bottom: 28px; border-left: 3px solid var(--vlb2b-accent); padding-left: 16px; }

.vlb2b-specs-table-wrap { margin-bottom: 28px; border: 1px solid var(--vlb2b-border); border-radius: var(--vlb2b-radius-lg); overflow: hidden; }
.vlb2b-specs-table-wrap h3 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #fff; background: var(--vlb2b-primary); margin: 0; padding: 12px 18px; }
.vlb2b-specs-table { width: 100%; border-collapse: collapse; }
.vlb2b-specs-table th { background: #F8FAFC; text-align: left; padding: 11px 18px; font-size: 13px; color: var(--vlb2b-muted); font-weight: 600; border-bottom: 1px solid var(--vlb2b-border); width: 38%; }
.vlb2b-specs-table td { padding: 11px 18px; font-size: 13.5px; border-bottom: 1px solid var(--vlb2b-border); color: var(--vlb2b-text); }
.vlb2b-specs-table tr:last-child th, .vlb2b-specs-table tr:last-child td { border-bottom: none; }
.vlb2b-specs-table tr:hover th, .vlb2b-specs-table tr:hover td { background: #F8FAFC; }

.vlb2b-quick-inquiry { background: linear-gradient(135deg,#F8FAFC,#EEF2FF); border: 1px solid var(--vlb2b-border); border-radius: var(--vlb2b-radius-lg); padding: 24px; margin-bottom: 28px; }
.vlb2b-quick-inquiry-label { font-size: 12px; font-weight: 700; color: var(--vlb2b-muted); margin-bottom: 6px; display: block; text-transform: uppercase; letter-spacing: 0.06em; }
.vlb2b-qty-row { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; margin-bottom: 14px; }
.vlb2b-qty-group { display: flex; flex-direction: column; gap: 4px; }
.vlb2b-quick-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.vlb2b-quick-actions .vlb2b-btn { flex: 1; min-width: 140px; }

.vlb2b-trust-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--vlb2b-border); }
.vlb2b-badge { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--vlb2b-muted); font-weight: 500; }
.vlb2b-badge-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(37,99,235,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; }

.vlb2b-single-content { padding: 48px 0 0; border-top: 1px solid var(--vlb2b-border); }
.vlb2b-single-content h2 { font-size: 22px; font-weight: 700; color: var(--vlb2b-primary); margin: 0 0 20px; padding-bottom: 12px; border-bottom: 2px solid var(--vlb2b-accent); display: inline-block; }
.vlb2b-single-content p { font-size: 15px; line-height: 1.8; color: var(--vlb2b-muted); margin-bottom: 16px; }

/* ════════════ 询盘表单 ═════════════════════════════════════════ */
.vlb2b-inquiry-form-wrap { background: #fff; border: 1px solid var(--vlb2b-border); border-radius: var(--vlb2b-radius-lg); padding: 32px; margin-top: 32px; }
.vlb2b-inquiry-form-wrap h3 { font-size: 20px; font-weight: 700; color: var(--vlb2b-primary); margin: 0 0 4px; }
.vlb2b-form-subtitle { color: var(--vlb2b-muted); font-size: 14px; margin-bottom: 24px; display: block; }
.vlb2b-add-to-cart-row { background: linear-gradient(135deg,#F8FAFC,#EFF6FF); border: 1px solid var(--vlb2b-border); border-radius: var(--vlb2b-radius); padding: 16px 20px; margin-bottom: 24px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.vlb2b-divider { text-align: center; position: relative; margin: 24px 0; }
.vlb2b-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--vlb2b-border); }
.vlb2b-divider span { position: relative; background: #fff; padding: 0 14px; color: var(--vlb2b-muted); font-size: 12.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.vlb2b-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vlb2b-form-full { grid-column: 1 / -1; }
.vlb2b-form-row { display: flex; flex-direction: column; gap: 5px; }
.vlb2b-form-row label { font-size: 13px; font-weight: 600; color: var(--vlb2b-text); }
.vlb2b-form-msg { border-radius: var(--vlb2b-radius); padding: 13px 16px; font-size: 14px; line-height: 1.5; }

/* ════════════ 询盘车页面 ═══════════════════════════════════════ */
.vlb2b-cart-wrap { max-width: 1060px; margin: 0 auto; padding: 48px 20px 72px; background: var(--vlb2b-bg); }
.vlb2b-cart-header { margin-bottom: 36px; padding-bottom: 20px; border-bottom: 1px solid var(--vlb2b-border); }
.vlb2b-cart-header h2 { font-size: 28px; font-weight: 800; color: var(--vlb2b-primary); margin: 0 0 6px; letter-spacing: -0.02em; }
.vlb2b-cart-header p { color: var(--vlb2b-muted); font-size: 15px; margin: 0; }
.vlb2b-empty-cart { text-align: center; padding: 80px 20px; background: #fff; border-radius: var(--vlb2b-radius-lg); border: 1px dashed var(--vlb2b-border); }
.vlb2b-empty-cart p { color: var(--vlb2b-muted); font-size: 16px; margin-bottom: 24px; }
.vlb2b-cart-layout { display: grid; grid-template-columns: 1fr 400px; gap: 32px; align-items: start; }

.vlb2b-cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--vlb2b-radius-lg); overflow: hidden; border: 1px solid var(--vlb2b-border); }
.vlb2b-cart-table thead tr { background: var(--vlb2b-primary); }
.vlb2b-cart-table th { padding: 14px 18px; text-align: left; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.07em; }
.vlb2b-cart-table td { padding: 16px 18px; border-bottom: 1px solid var(--vlb2b-border); font-size: 14px; vertical-align: middle; }
.vlb2b-cart-table tr:last-child td { border-bottom: none; }
.vlb2b-cart-table tbody tr:hover td { background: #FAFBFF; }
.vlb2b-cart-product { display: flex; align-items: center; gap: 14px; }
.vlb2b-cart-product img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; border: 1px solid var(--vlb2b-border); flex-shrink: 0; }
.vlb2b-cart-product-name { font-weight: 600; color: var(--vlb2b-text); font-size: 14px; }
.vlb2b-cart-qty input[type=number] { width: 72px; padding: 8px 10px; border: 1.5px solid var(--vlb2b-border); border-radius: 6px; font-size: 14px; text-align: center; font-family: var(--vlb2b-font); font-weight: 600; transition: var(--vlb2b-trans); -moz-appearance: textfield; }
.vlb2b-cart-qty input[type=number]:focus { border-color: var(--vlb2b-accent); outline: none; }
.vlb2b-cart-qty input[type=number]::-webkit-inner-spin-button,
.vlb2b-cart-qty input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; }

.vlb2b-cart-form-panel { background: #fff; border: 1px solid var(--vlb2b-border); border-radius: var(--vlb2b-radius-lg); overflow: hidden; position: sticky; top: 24px; }
.vlb2b-cart-form-header { background: var(--vlb2b-primary); padding: 20px 24px; }
.vlb2b-cart-form-header h3 { font-size: 17px; font-weight: 700; margin: 0 0 4px; color: #fff; }
.vlb2b-cart-form-header p { font-size: 13px; color: rgba(255,255,255,0.7); margin: 0; }
.vlb2b-cart-form-body { padding: 24px; }
.vlb2b-cart-form-body .vlb2b-form-row { margin-bottom: 14px; }
.vlb2b-cart-form-body label { display: block; font-size: 12.5px; font-weight: 600; color: var(--vlb2b-muted); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.05em; }
.vlb2b-cart-submit-btn { width: 100%; justify-content: center; padding: 14px; font-size: 15px; border-radius: 10px; margin-top: 4px; }

/* ════════════ 询盘成功页 ═══════════════════════════════════════ */
.vlb2b-success-wrap { max-width: 600px; margin: 0 auto; padding: 80px 20px; text-align: center; }
.vlb2b-success-icon { width: 80px; height: 80px; background: linear-gradient(135deg,#D1FAE5,#A7F3D0); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; margin: 0 auto 24px; }
.vlb2b-success-wrap h2 { font-size: 28px; font-weight: 800; color: var(--vlb2b-primary); margin: 0 0 12px; letter-spacing: -0.02em; }
.vlb2b-success-ref { display: inline-block; background: #F0F9FF; border: 1px solid #BAE6FD; border-radius: 8px; padding: 10px 20px; font-size: 15px; color: #0369A1; font-weight: 600; margin-bottom: 20px; font-family: monospace; letter-spacing: 0.05em; }
.vlb2b-success-wrap p { color: var(--vlb2b-muted); font-size: 15px; line-height: 1.7; max-width: 440px; margin: 0 auto 32px; }
.vlb2b-success-steps { display: flex; justify-content: center; gap: 0; margin-bottom: 36px; background: #fff; border: 1px solid var(--vlb2b-border); border-radius: var(--vlb2b-radius-lg); overflow: hidden; }
.vlb2b-step { flex: 1; padding: 20px 14px; text-align: center; border-right: 1px solid var(--vlb2b-border); font-size: 13px; }
.vlb2b-step:last-child { border-right: none; }
.vlb2b-step-num { width: 28px; height: 28px; background: var(--vlb2b-accent); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin: 0 auto 8px; }
.vlb2b-step-text { color: var(--vlb2b-muted); line-height: 1.4; font-size: 12.5px; }

/* ════════════ 响应式 ═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .vlb2b-single-layout { grid-template-columns: 1fr; gap: 32px; }
    .vlb2b-single-gallery { position: static; }
    .vlb2b-cart-layout { grid-template-columns: 1fr; }
    .vlb2b-cart-form-panel { position: static; }
}
@media (max-width: 640px) {
    .vlb2b-archive-wrap,.vlb2b-single-wrap,.vlb2b-cart-wrap { padding: 24px 14px 48px; }
    .vlb2b-product-grid { grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; }
    .vlb2b-form-grid { grid-template-columns: 1fr; }
    .vlb2b-product-title { font-size: 24px; }
    .vlb2b-archive-hero h1 { font-size: 24px; }
    .vlb2b-success-steps { flex-direction: column; }
    .vlb2b-step { border-right: none; border-bottom: 1px solid var(--vlb2b-border); }
    .vlb2b-step:last-child { border-bottom: none; }
}

/* v2.6 layout and text overflow fixes */
.vlb2b-single-wrap,
.vlb2b-single-layout,
.vlb2b-single-info,
.vlb2b-single-content,
.vlb2b-product-excerpt,
.vlb2b-cart-wrap,
.vlb2b-cart-table,
.vlb2b-cart-product-name {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
    box-sizing: border-box;
}
.vlb2b-product-excerpt,
.vlb2b-single-content p,
.vlb2b-single-content div {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
}
.vlb2b-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: 48px;
    align-items: start;
}
.vlb2b-single-gallery,
.vlb2b-main-image {
    min-width: 0;
    max-width: 100%;
}
.vlb2b-main-image img,
.vlb2b-single-gallery img {
    max-width: 100%;
    height: auto;
}
.vlb2b-cart-total {
    margin-top: 16px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--vlb2b-border);
    border-radius: var(--vlb2b-radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}
.vlb2b-cart-total strong { color: var(--vlb2b-primary); font-size: 20px; }
.vlb2b-cart-warning {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: var(--vlb2b-radius);
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
    font-size: 14px;
}
.vlb2b-cart-actions {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.vlb2b-cart-note { font-size: 12px; color: var(--vlb2b-muted); margin-top: 3px; }
@media (max-width: 900px) {
    .vlb2b-single-layout { grid-template-columns: 1fr; }
}

/* v2.7 layout/business logic fixes */
.vlb2b-product-card,
.vlb2b-card-body,
.vlb2b-card-title,
.vlb2b-card-title a,
.vlb2b-card-excerpt,
.vlb2b-product-excerpt,
.vlb2b-single-content,
.vlb2b-single-content * {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-width: 100%;
}
.vlb2b-card-excerpt,
.vlb2b-product-excerpt,
.vlb2b-single-content { white-space: normal; }
.vlb2b-single-layout,
.vlb2b-single-main,
.vlb2b-single-info { min-width: 0; }
.vlb2b-single-main img,
.vlb2b-main-image,
#vlb2b-main-img { max-width: 100%; height: auto; object-fit: cover; }
.vlb2b-card-price {
  margin: 8px 0 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--vlb2b-primary, #1A2E44);
}
.vlb2b-card-rfq-label {
  display: inline-block;
  margin: 8px 0 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--vlb2b-primary, #1A2E44);
  font-size: 13px;
  font-weight: 700;
}
.vlb2b-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--vlb2b-border, #e5e7eb);
  font-size: 17px;
}
.vlb2b-cart-total strong { font-size: 20px; }
.vlb2b-cart-table th,
.vlb2b-cart-table td { vertical-align: middle; }
@media (max-width: 768px) {
  .vlb2b-card-actions { flex-direction: column; }
  .vlb2b-card-actions .vlb2b-btn { width: 100%; }
}


/* v2.8.1: product card quantity + stable add-to-cart state */
.vlb2b-card-buy-row { display:flex; align-items:center; gap:10px; margin:14px 0 12px; }
.vlb2b-card-qty-label { font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--vlb2b-muted); }
.vlb2b-card-qty-input { width:96px; max-width:45%; height:42px; border:1px solid var(--vlb2b-border); border-radius:10px; padding:8px 10px; font-size:15px; color:var(--vlb2b-primary); background:#fff; }
.vlb2b-quick-add:disabled, .vlb2b-quick-add.is-loading { opacity:.78; color:var(--vlb2b-primary) !important; background:#f8fafc !important; cursor:wait; }

/* v2.8.1: circular local magnifier on product detail image */
.vlb2b-main-img-wrap { position:relative; overflow:hidden; aspect-ratio:1 / 1; }
.vlb2b-main-img { width:100%; height:100%; object-fit:cover; transform:none !important; cursor:none; }
.vlb2b-main-img:hover { transform:none !important; }
.vlb2b-image-lens { position:absolute; display:none; pointer-events:none; border-radius:50%; border:3px solid #fff; box-shadow:0 10px 30px rgba(15,23,42,.28); background-repeat:no-repeat; z-index:5; }
@media (max-width:768px) { .vlb2b-image-lens { display:none !important; } .vlb2b-main-img { cursor:default; } }

/* v2.9 fixes */
.vlb2b-card-buy-row{align-items:center;gap:10px;margin:12px 0 0;}
.vlb2b-card-qty-hint{font-size:12px;color:var(--vlb2b-muted);}
.vlb2b-card-excerpt,.vlb2b-product-summary,.vlb2b-product-details{overflow-wrap:anywhere;word-break:break-word;white-space:normal;max-width:100%;}
.vlb2b-main-img-wrap{cursor:zoom-in;overflow:hidden;}
.vlb2b-main-img{object-fit:cover;aspect-ratio:1/1;}
.vlb2b-image-lens{position:absolute;display:none;border:2px solid #fff;border-radius:50%;box-shadow:0 8px 28px rgba(0,0,0,.22);pointer-events:none;z-index:10;background-repeat:no-repeat;background-color:#fff;}
.vlb2b-magnifier-ready .vlb2b-main-img{cursor:zoom-in;}
.vlb2b-magnifier-active .vlb2b-main-img{cursor:none;}

/* v2.9.4.14 UI polish: buyer quotation confirmation page spacing only */
.vlb2b-quote-portal .vlb2b-confirm-form {
    margin-top: 28px;
}
.vlb2b-quote-portal .vlb2b-confirm-form h3 {
    margin: 34px 0 18px;
    line-height: 1.25;
}
.vlb2b-quote-portal .vlb2b-confirm-form p {
    margin: 0 0 22px;
}
.vlb2b-quote-portal .vlb2b-payment-fields {
    margin-bottom: 26px;
}
.vlb2b-quote-portal .vlb2b-confirm-actions {
    margin-top: 42px !important;
    padding-top: 10px;
}
.vlb2b-quote-portal .vlb2b-confirm-actions .vlb2b-btn-lg {
    min-width: 260px;
    padding: 16px 42px;
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(26,46,68,0.16);
}
@media (max-width: 640px) {
    .vlb2b-quote-portal .vlb2b-confirm-actions .vlb2b-btn-lg {
        width: 100%;
        min-width: 0;
    }
}

/* v2.9.4.14 confirm success page */
.vlb2b-quote-portal .vlb2b-confirm-success-card{margin:28px 0 30px;padding:34px 30px;border-radius:18px;background:#f0fdf4;border:1px solid #bbf7d0;box-shadow:0 12px 30px rgba(22,101,52,.08);text-align:center;}
.vlb2b-quote-portal .vlb2b-confirm-success-icon{width:58px;height:58px;margin:0 auto 16px;border-radius:999px;background:#16a34a;color:#fff;display:flex;align-items:center;justify-content:center;font-size:32px;font-weight:800;}
.vlb2b-quote-portal .vlb2b-confirm-success-card h3{margin:0 0 10px;color:#14532d;font-size:28px;line-height:1.25;}
.vlb2b-quote-portal .vlb2b-confirm-success-card p{max-width:720px;margin:0 auto 8px;color:#166534;font-size:16px;line-height:1.7;}
.vlb2b-quote-portal .vlb2b-confirm-success-note{color:#4b5563!important;font-size:14px!important;}
/* v2.9.5.1: public-price cart button readability and one-click add UX */
.vlb2b-card-actions .vlb2b-btn,
.vlb2b-add-to-cart-detail,
#vlb2b-add-to-cart-btn,
.vlb2b-btn-outline,
.vlb2b-btn-secondary {
  transition: all .22s ease;
}
.vlb2b-card-actions .vlb2b-btn:hover,
.vlb2b-add-to-cart-detail:hover,
#vlb2b-add-to-cart-btn:hover,
.vlb2b-btn-outline:hover,
.vlb2b-btn-secondary:hover {
  background: #1A2E44 !important;
  border-color: #1A2E44 !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(26,46,68,.16);
}
.vlb2b-card-actions .vlb2b-btn:disabled,
.vlb2b-add-to-cart-detail:disabled,
#vlb2b-add-to-cart-btn:disabled,
.vlb2b-quick-add:disabled,
.vlb2b-quick-add.is-loading {
  background: #e5e7eb !important;
  border-color: #cbd5e1 !important;
  color: #64748b !important;
  opacity: 1 !important;
  cursor: wait;
  box-shadow:none !important;
}
.vlb2b-card-qty-hint{font-size:12px;color:#64748b;line-height:1.4;}
.vlb2b-product-card.vlb2b-added .vlb2b-card-qty-hint{color:#166534;font-weight:700;}

/* v2.9.6.1: separate direct cart and RFQ cart UI fixes */
.vlb2b-cart-floating-wrap { position: fixed; right: 28px; bottom: 28px; z-index: 9999; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.vlb2b-cart-floating-wrap .vlb2b-cart-floating { position: static; animation: vlb2b-float-in 0.3s ease; }
.vlb2b-card-rfq-hint { margin: 12px 0 14px; color: var(--vlb2b-muted); font-size: 13px; line-height: 1.45; background: #f8fafc; border: 1px dashed var(--vlb2b-border); border-radius: 12px; padding: 11px 12px; }
.vlb2b-card-buy-row { gap: 10px; align-items: center; }
.vlb2b-card-qty-input { margin-right: 8px; }
.vlb2b-rfq-checkout-stack { display: flex; flex-direction: column; gap: 22px; }
.vlb2b-rfq-section { background: #fff; border: 1px solid var(--vlb2b-border); border-radius: 18px; padding: 24px; box-shadow: 0 10px 30px rgba(15,23,42,0.05); }
.vlb2b-rfq-section h3 { margin: 0 0 18px; color: var(--vlb2b-dark); font-size: 22px; }
.vlb2b-rfq-items { display: flex; flex-direction: column; gap: 16px; }
.vlb2b-rfq-item-card { border: 1px solid var(--vlb2b-border); border-radius: 16px; padding: 18px; background: #f8fafc; }
.vlb2b-rfq-item-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.vlb2b-rfq-item-head img { width: 68px; height: 68px; border-radius: 12px; object-fit: cover; border: 1px solid var(--vlb2b-border); }
.vlb2b-rfq-item-head strong { display: block; color: var(--vlb2b-dark); font-size: 17px; }
.vlb2b-rfq-item-head span { display: block; color: var(--vlb2b-muted); font-size: 13px; margin-top: 4px; }
.vlb2b-rfq-item-head .vlb2b-remove-item { margin-left: auto; }
.vlb2b-rfq-fields, .vlb2b-rfq-two-cols { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.vlb2b-rfq-two-cols { grid-template-columns: repeat(2, minmax(0,1fr)); }
.vlb2b-rfq-fields label { color: var(--vlb2b-muted); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.vlb2b-rfq-fields .vlb2b-input { margin-top: 8px; }
@media (max-width: 768px) { .vlb2b-rfq-fields, .vlb2b-rfq-two-cols { grid-template-columns: 1fr; } .vlb2b-cart-floating-wrap { right: 16px; bottom: 16px; } }


/* v2.9.6.3: RFQ cart select arrows + compact product card qty UI */
.vlb2b-rfq-cart-wrap select.vlb2b-input,
.vlb2b-order-cart-wrap select.vlb2b-input,
.vlb2b-cart-wrap select.vlb2b-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 46px !important;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%2364758B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 18px 18px;
}
.vlb2b-rfq-cart-wrap select.vlb2b-input::-ms-expand,
.vlb2b-order-cart-wrap select.vlb2b-input::-ms-expand,
.vlb2b-cart-wrap select.vlb2b-input::-ms-expand { display: none; }

.vlb2b-product-card .vlb2b-card-img-link {
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vlb2b-product-card .vlb2b-card-img {
  height: 280px;
  object-fit: contain !important;
  background: #f8fafc;
}
.vlb2b-product-card:hover .vlb2b-card-img { transform: none; }

.vlb2b-card-public .vlb2b-card-buy-row {
  display: grid !important;
  grid-template-columns: auto 76px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  margin: 14px 0 14px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.vlb2b-card-public .vlb2b-card-qty-label {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
}
.vlb2b-card-public .vlb2b-card-qty-input {
  width: 76px !important;
  max-width: 76px !important;
  height: 40px !important;
  margin: 0 !important;
  padding: 6px 10px !important;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
}
.vlb2b-card-public .vlb2b-card-qty-hint {
  display: block;
  min-width: 0;
  font-size: 12px !important;
  line-height: 1.35 !important;
  color: #64748b;
}
.vlb2b-card-public .vlb2b-card-actions { margin-top: 8px; }
@media (max-width: 520px) {
  .vlb2b-product-card .vlb2b-card-img { height: 240px; }
  .vlb2b-card-public .vlb2b-card-buy-row { grid-template-columns: auto 72px; }
  .vlb2b-card-public .vlb2b-card-qty-hint { grid-column: 1 / -1; }
}

/* v2.9.6.4: RFQ cart layout polish + compact floating button */
.vlb2b-rfq-cart-wrap .vlb2b-rfq-fields {
  display: grid !important;
  grid-template-columns: minmax(220px, 1.15fr) minmax(110px, 0.45fr) minmax(150px, 0.55fr) !important;
  gap: 14px 16px !important;
  align-items: end !important;
}
.vlb2b-rfq-cart-wrap .vlb2b-rfq-fields label { min-width: 0 !important; }
.vlb2b-rfq-cart-wrap .vlb2b-rfq-fields .vlb2b-input,
.vlb2b-rfq-cart-wrap .vlb2b-rfq-two-cols .vlb2b-input {
  height: 42px !important;
  min-height: 42px !important;
  padding: 8px 14px !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  line-height: 1.2 !important;
}
.vlb2b-rfq-cart-wrap .vlb2b-rfq-fields select.vlb2b-input,
.vlb2b-rfq-cart-wrap .vlb2b-rfq-two-cols select.vlb2b-input {
  padding-right: 38px !important;
  background-position: right 13px center !important;
  background-size: 15px 15px !important;
}
.vlb2b-rfq-cart-wrap .vlb2b-rfq-item-card { padding: 16px 18px !important; }
.vlb2b-rfq-cart-wrap .vlb2b-rfq-item-head { margin-bottom: 12px !important; }
.vlb2b-rfq-cart-wrap .vlb2b-rfq-item-head img {
  width: 58px !important;
  height: 58px !important;
  object-fit: contain !important;
  background: #fff !important;
}
.vlb2b-cart-floating-wrap .vlb2b-cart-floating .vlb2b-btn {
  min-height: 48px !important;
  padding: 12px 20px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  box-shadow: 0 12px 28px rgba(26,46,68,.18) !important;
}
.vlb2b-rfq-cart-count,
.vlb2b-order-cart-count {
  min-width: 26px !important;
  height: 26px !important;
  line-height: 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
@media (max-width: 900px) {
  .vlb2b-rfq-cart-wrap .vlb2b-rfq-fields { grid-template-columns: 1fr 120px 150px !important; }
}
@media (max-width: 680px) {
  .vlb2b-rfq-cart-wrap .vlb2b-rfq-fields,
  .vlb2b-rfq-cart-wrap .vlb2b-rfq-two-cols { grid-template-columns: 1fr !important; }
}


/* v2.9.6.5 targeted fixes: international phone input + compact checkout fields */
.vlb2b-phone-row{display:grid;grid-template-columns:150px 1fr;gap:10px;align-items:center;}
.vlb2b-phone-code{min-width:135px;}
.vlb2b-phone-number{min-width:0;}
@media (max-width:640px){.vlb2b-phone-row{grid-template-columns:1fr;}.vlb2b-phone-code{min-width:0;}}


/* v2.9.6.9 structured product display */
.vlb2b-product-quick-attrs{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 18px;}
.vlb2b-product-quick-attr{border:1px solid var(--vlb2b-border);background:#fff;border-radius:999px;padding:8px 12px;display:flex;align-items:center;gap:7px;line-height:1.25;}
.vlb2b-product-quick-attr span{font-size:11px;text-transform:uppercase;letter-spacing:.06em;color:var(--vlb2b-muted);font-weight:700;}
.vlb2b-product-quick-attr strong{font-size:13px;color:var(--vlb2b-navy);font-weight:700;}
@media (max-width:640px){.vlb2b-product-quick-attrs{display:grid;grid-template-columns:1fr;}.vlb2b-product-quick-attr{border-radius:12px;justify-content:space-between;}}

/* v2.9.6.10 product archive structured metadata */
.vlb2b-card-structured-meta{
  margin: 0 0 10px;
  display: grid;
  gap: 4px;
  color: var(--vlb2b-muted);
  font-size: 13px;
  line-height: 1.45;
}
.vlb2b-card-meta-line{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vlb2b-card-meta-line span{
  color: var(--vlb2b-primary);
  font-weight: 700;
}
.vlb2b-card-structured-meta + .vlb2b-card-excerpt{
  margin-top: 4px;
}

/* v2.9.6.11: product archive grid/image fit polish
   Keep product logic unchanged; only adjust archive card layout. */
.vlb2b-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch !important;
}
.vlb2b-product-card {
  height: 100% !important;
}
.vlb2b-product-card .vlb2b-card-img-link {
  width: 100% !important;
  height: 260px !important;
  min-height: 260px !important;
  background: #f8fafc !important;
  display: block !important;
  overflow: hidden !important;
}
.vlb2b-product-card .vlb2b-card-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  background: #f8fafc !important;
}
.vlb2b-product-card:hover .vlb2b-card-img {
  transform: scale(1.03) !important;
}
.vlb2b-card-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}
.vlb2b-card-excerpt {
  flex: 0 0 auto !important;
}
.vlb2b-card-buy-row,
.vlb2b-card-rfq-hint {
  margin-top: auto !important;
}
@media (max-width: 1180px) {
  .vlb2b-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}
@media (max-width: 900px) {
  .vlb2b-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px) {
  .vlb2b-product-grid { grid-template-columns: 1fr !important; }
  .vlb2b-product-card .vlb2b-card-img-link { height: 240px !important; min-height: 240px !important; }
}

/* v2.9.6.12: product archive compact footer alignment
   Targeted UI-only fix: smaller buttons, no overflow, consistent card footer alignment. */
.vlb2b-product-grid {
  align-items: stretch !important;
}
.vlb2b-product-card {
  min-width: 0 !important;
}
.vlb2b-card-body {
  min-width: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.vlb2b-card-title {
  min-height: 56px;
}
.vlb2b-card-price,
.vlb2b-card-rfq-label {
  flex: 0 0 auto;
}
.vlb2b-card-structured-meta {
  flex: 0 0 auto;
}
.vlb2b-card-excerpt {
  flex: 0 0 auto !important;
  min-height: 46px;
  margin-bottom: 12px !important;
}
.vlb2b-card-buy-row {
  margin-top: auto !important;
  margin-bottom: 10px !important;
}
.vlb2b-card-rfq-hint {
  margin-top: auto !important;
  margin-bottom: 10px !important;
  padding: 9px 10px !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}
.vlb2b-card-public .vlb2b-card-buy-row {
  grid-template-columns: auto 58px minmax(0, 1fr) !important;
  gap: 8px !important;
}
.vlb2b-card-public .vlb2b-card-qty-input {
  width: 58px !important;
  max-width: 58px !important;
  height: 34px !important;
  font-size: 13px !important;
  border-radius: 9px !important;
}
.vlb2b-card-public .vlb2b-card-qty-hint {
  font-size: 11px !important;
  line-height: 1.25 !important;
}
.vlb2b-card-actions {
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: 0 !important;
}
.vlb2b-card-actions .vlb2b-btn {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  padding: 8px 8px !important;
  min-height: 42px !important;
  font-size: 12.5px !important;
  line-height: 1.15 !important;
  white-space: normal !important;
  text-align: center !important;
  border-radius: 9px !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
.vlb2b-card-actions .vlb2b-btn-primary,
.vlb2b-card-actions .vlb2b-btn-secondary,
.vlb2b-card-actions .vlb2b-btn-outline {
  overflow: hidden !important;
}
@media (max-width: 1180px) {
  .vlb2b-card-title { min-height: 0; }
}
@media (max-width: 560px) {
  .vlb2b-card-actions { grid-template-columns: 1fr !important; }
  .vlb2b-card-public .vlb2b-card-buy-row { grid-template-columns: auto 58px !important; }
  .vlb2b-card-public .vlb2b-card-qty-hint { grid-column: 1 / -1; }
}


/* v2.9.6.13: product archive button real fix
   UI-only: compact buttons, no horizontal overflow, aligned card actions. */
.vlb2b-archive-wrap .vlb2b-product-grid{
  align-items:stretch!important;
}
.vlb2b-archive-wrap .vlb2b-product-card{
  min-width:0!important;
  height:100%!important;
  overflow:hidden!important;
}
.vlb2b-archive-wrap .vlb2b-card-body{
  min-width:0!important;
  padding:16px 16px 18px!important;
  display:flex!important;
  flex-direction:column!important;
  height:100%!important;
}
.vlb2b-archive-wrap .vlb2b-card-title{
  min-height:50px!important;
  margin-bottom:8px!important;
}
.vlb2b-archive-wrap .vlb2b-card-structured-meta{
  margin-bottom:8px!important;
}
.vlb2b-archive-wrap .vlb2b-card-excerpt{
  min-height:44px!important;
  margin-bottom:12px!important;
}
.vlb2b-archive-wrap .vlb2b-card-buy-row,
.vlb2b-archive-wrap .vlb2b-card-rfq-hint{
  margin-top:auto!important;
  margin-bottom:10px!important;
}
.vlb2b-archive-wrap .vlb2b-card-public .vlb2b-card-buy-row{
  grid-template-columns:auto 52px minmax(0,1fr)!important;
  gap:7px!important;
  align-items:center!important;
}
.vlb2b-archive-wrap .vlb2b-card-public .vlb2b-card-qty-input{
  width:52px!important;
  max-width:52px!important;
  min-width:52px!important;
  height:32px!important;
  padding:4px 6px!important;
  font-size:12px!important;
  line-height:1!important;
  border-radius:8px!important;
}
.vlb2b-archive-wrap .vlb2b-card-public .vlb2b-card-qty-label{
  font-size:11px!important;
  letter-spacing:.04em!important;
}
.vlb2b-archive-wrap .vlb2b-card-public .vlb2b-card-qty-hint{
  min-width:0!important;
  font-size:10.5px!important;
  line-height:1.2!important;
}
.vlb2b-archive-wrap .vlb2b-card-rfq-hint{
  padding:8px 9px!important;
  font-size:11px!important;
  line-height:1.3!important;
}
.vlb2b-archive-wrap .vlb2b-card-actions{
  width:100%!important;
  min-width:0!important;
  display:grid!important;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr)!important;
  column-gap:7px!important;
  row-gap:7px!important;
  margin-top:0!important;
  overflow:hidden!important;
}
.vlb2b-archive-wrap .vlb2b-card-actions .vlb2b-btn{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  box-sizing:border-box!important;
  min-height:38px!important;
  height:38px!important;
  padding:5px 6px!important;
  border-radius:8px!important;
  font-size:11.5px!important;
  line-height:1.1!important;
  letter-spacing:0!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  word-break:normal!important;
  overflow-wrap:normal!important;
}
.vlb2b-archive-wrap .vlb2b-card-actions .vlb2b-btn-outline{
  border-width:2px!important;
}
@media (max-width:1180px){
  .vlb2b-archive-wrap .vlb2b-card-title{min-height:0!important;}
}
@media (max-width:560px){
  .vlb2b-archive-wrap .vlb2b-card-actions{grid-template-columns:1fr!important;}
  .vlb2b-archive-wrap .vlb2b-card-actions .vlb2b-btn{height:40px!important;}
  .vlb2b-archive-wrap .vlb2b-card-public .vlb2b-card-buy-row{grid-template-columns:auto 52px!important;}
  .vlb2b-archive-wrap .vlb2b-card-public .vlb2b-card-qty-hint{grid-column:1/-1!important;}
}

/* v2.9.6.20: Products UI visual upgrade only
   IMPORTANT: This section changes presentation only. It does not change RFQ, Cart,
   product data, PI, compliance, order or email logic. */
.vlb2b-archive-wrap{
  max-width:1400px!important;
  padding:0 28px 76px!important;
  background:linear-gradient(180deg,#f4f7fb 0%,#f8fafc 46%,#ffffff 100%)!important;
}
.vlb2b-archive-hero{
  position:relative!important;
  margin:0 0 34px!important;
  padding:72px 56px 58px!important;
  border-radius:0 0 28px 28px!important;
  overflow:hidden!important;
  background:
    radial-gradient(circle at 88% 14%,rgba(37,99,235,.14),transparent 34%),
    linear-gradient(135deg,#10243a 0%,#1a2e44 48%,#284969 100%)!important;
  border:1px solid rgba(226,232,240,.75)!important;
  box-shadow:0 24px 70px rgba(15,23,42,.13)!important;
}
.vlb2b-archive-hero:before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(110deg,rgba(255,255,255,.08),rgba(255,255,255,0) 44%),
             repeating-linear-gradient(135deg,rgba(255,255,255,.045) 0,rgba(255,255,255,.045) 1px,transparent 1px,transparent 18px);
  pointer-events:none;
}
.vlb2b-archive-hero h1,
.vlb2b-archive-hero p{position:relative!important;z-index:1!important;}
.vlb2b-archive-hero h1{
  max-width:760px!important;
  margin:0 0 12px!important;
  color:#ffffff!important;
  font-size:clamp(36px,4vw,58px)!important;
  font-weight:850!important;
  line-height:1.04!important;
  letter-spacing:-.045em!important;
}
.vlb2b-archive-hero p{
  max-width:720px!important;
  color:rgba(255,255,255,.78)!important;
  font-size:17px!important;
  line-height:1.7!important;
}
.vlb2b-cat-filter{
  display:flex!important;
  gap:14px!important;
  margin:0 0 42px!important;
  padding:0 0 8px!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scroll-snap-type:x proximity!important;
  -webkit-overflow-scrolling:touch!important;
  border-bottom:1px solid rgba(148,163,184,.2)!important;
}
.vlb2b-cat-filter::-webkit-scrollbar{height:6px!important;}
.vlb2b-cat-filter::-webkit-scrollbar-thumb{background:#cbd5e1!important;border-radius:999px!important;}
.vlb2b-cat-btn{
  flex:0 0 auto!important;
  scroll-snap-align:start!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:6px!important;
  min-height:50px!important;
  padding:0 26px!important;
  border-radius:999px!important;
  border:1.5px solid #dbe4ef!important;
  background:#ffffff!important;
  color:#42526b!important;
  font-size:15px!important;
  font-weight:800!important;
  text-decoration:none!important;
  box-shadow:0 8px 22px rgba(15,23,42,.04)!important;
  transition:all .22s ease!important;
}
.vlb2b-cat-btn:hover{
  transform:translateY(-1px)!important;
  color:var(--vlb2b-primary)!important;
  border-color:#bfd0e5!important;
  box-shadow:0 12px 26px rgba(15,23,42,.08)!important;
}
.vlb2b-cat-btn.active{
  background:var(--vlb2b-primary)!important;
  border-color:var(--vlb2b-primary)!important;
  color:#ffffff!important;
  box-shadow:0 12px 28px rgba(26,46,68,.22)!important;
}
.vlb2b-product-grid{
  grid-template-columns:repeat(4,minmax(0,1fr))!important;
  gap:28px!important;
  align-items:stretch!important;
}
.vlb2b-product-card{
  height:100%!important;
  min-width:0!important;
  border:1px solid #dfe7f1!important;
  border-radius:22px!important;
  overflow:hidden!important;
  background:#ffffff!important;
  box-shadow:0 10px 36px rgba(15,23,42,.06)!important;
  transform:none!important;
  transition:transform .24s ease,box-shadow .24s ease,border-color .24s ease!important;
}
.vlb2b-product-card:hover{
  transform:translateY(-5px)!important;
  border-color:#c7d5e6!important;
  box-shadow:0 24px 54px rgba(15,23,42,.12)!important;
}
.vlb2b-product-card .vlb2b-card-img-link{
  height:255px!important;
  min-height:255px!important;
  border-radius:0!important;
  background:linear-gradient(180deg,#f8fafc,#eef3f8)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  overflow:hidden!important;
}
.vlb2b-product-card .vlb2b-card-img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center!important;
  transform:scale(1)!important;
  transition:transform .36s ease,filter .36s ease!important;
}
.vlb2b-product-card:hover .vlb2b-card-img{
  transform:scale(1.035)!important;
  filter:saturate(1.03) contrast(1.02)!important;
}
.vlb2b-card-body{
  padding:22px 22px 20px!important;
  display:flex!important;
  flex-direction:column!important;
  flex:1 1 auto!important;
  min-width:0!important;
}
.vlb2b-card-cats{display:none!important;}
.vlb2b-card-title{
  min-height:52px!important;
  margin:0 0 10px!important;
  color:#111827!important;
  font-size:18px!important;
  font-weight:850!important;
  line-height:1.35!important;
  letter-spacing:-.025em!important;
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
}
.vlb2b-card-title a{text-decoration:none!important;color:inherit!important;}
.vlb2b-card-title a:hover{color:var(--vlb2b-accent)!important;}
.vlb2b-card-price{
  margin:0 0 14px!important;
  color:var(--vlb2b-primary)!important;
  font-size:17px!important;
  font-weight:900!important;
  letter-spacing:-.015em!important;
}
.vlb2b-card-rfq-label{
  width:100%!important;
  box-sizing:border-box!important;
  margin:0 0 14px!important;
  padding:9px 14px!important;
  border:0!important;
  border-radius:999px!important;
  background:#eef4ff!important;
  color:#1b3552!important;
  font-size:14px!important;
  font-weight:850!important;
  line-height:1.15!important;
  text-align:left!important;
}
.vlb2b-card-structured-meta{
  margin:0 0 14px!important;
  display:grid!important;
  gap:6px!important;
  color:#66758c!important;
  font-size:13px!important;
  line-height:1.4!important;
}
.vlb2b-card-meta-line{
  display:block!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  white-space:nowrap!important;
}
.vlb2b-card-meta-line span{
  color:#16243a!important;
  font-weight:850!important;
}
.vlb2b-card-excerpt{
  min-height:50px!important;
  margin:0 0 16px!important;
  color:#68778f!important;
  font-size:13.5px!important;
  line-height:1.65!important;
  display:-webkit-box!important;
  -webkit-line-clamp:2!important;
  -webkit-box-orient:vertical!important;
  overflow:hidden!important;
  flex:0 0 auto!important;
}
.vlb2b-card-buy-row,
.vlb2b-card-rfq-hint{
  margin-top:auto!important;
  margin-bottom:14px!important;
}
.vlb2b-card-public .vlb2b-card-buy-row{
  display:grid!important;
  grid-template-columns:auto 62px minmax(0,1fr)!important;
  gap:9px!important;
  align-items:center!important;
  min-height:52px!important;
}
.vlb2b-card-public .vlb2b-card-qty-label{
  color:#5f6f87!important;
  font-size:11px!important;
  font-weight:850!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
}
.vlb2b-card-public .vlb2b-card-qty-input{
  width:62px!important;
  min-width:62px!important;
  max-width:62px!important;
  height:38px!important;
  padding:6px!important;
  border:1px solid #cfd9e6!important;
  border-radius:11px!important;
  background:#f8fafc!important;
  color:#1a2e44!important;
  font-size:14px!important;
  font-weight:750!important;
  text-align:center!important;
}
.vlb2b-card-public .vlb2b-card-qty-hint{
  color:#64748b!important;
  font-size:11px!important;
  line-height:1.25!important;
}
.vlb2b-card-rfq-hint{
  min-height:52px!important;
  box-sizing:border-box!important;
  padding:11px 12px!important;
  border:1px dashed #d5dfec!important;
  border-radius:14px!important;
  background:#fbfdff!important;
  color:#64748b!important;
  font-size:12px!important;
  line-height:1.35!important;
  display:flex!important;
  align-items:center!important;
}
.vlb2b-card-actions{
  width:100%!important;
  min-width:0!important;
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:10px!important;
  margin-top:0!important;
  overflow:hidden!important;
}
.vlb2b-card-actions .vlb2b-btn{
  width:100%!important;
  max-width:100%!important;
  min-width:0!important;
  height:42px!important;
  min-height:42px!important;
  padding:0 10px!important;
  border-radius:11px!important;
  font-size:12.5px!important;
  font-weight:850!important;
  line-height:1!important;
  letter-spacing:0!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
  box-sizing:border-box!important;
  transform:none!important;
}
.vlb2b-card-actions .vlb2b-btn-outline{
  color:var(--vlb2b-primary)!important;
  border-color:var(--vlb2b-primary)!important;
  background:#ffffff!important;
}
.vlb2b-card-actions .vlb2b-btn-outline:hover{
  color:#ffffff!important;
  background:var(--vlb2b-primary)!important;
}
.vlb2b-card-actions .vlb2b-btn-primary{
  background:var(--vlb2b-primary)!important;
  border-color:var(--vlb2b-primary)!important;
  color:#ffffff!important;
}
.vlb2b-card-actions .vlb2b-btn-secondary{
  background:#ffffff!important;
  border-color:#dfe7f1!important;
  color:var(--vlb2b-primary)!important;
}
.vlb2b-card-actions .vlb2b-btn:hover{
  transform:translateY(-1px)!important;
}
@media (max-width:1280px){
  .vlb2b-product-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media (max-width:900px){
  .vlb2b-archive-wrap{padding:0 18px 60px!important;}
  .vlb2b-archive-hero{padding:54px 30px 44px!important;border-radius:0 0 22px 22px!important;}
  .vlb2b-product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:22px!important;}
}
@media (max-width:560px){
  .vlb2b-archive-wrap{padding:0 14px 48px!important;}
  .vlb2b-archive-hero{padding:44px 22px 38px!important;}
  .vlb2b-cat-filter{gap:10px!important;}
  .vlb2b-cat-btn{min-height:44px!important;padding:0 18px!important;font-size:13px!important;}
  .vlb2b-product-grid{grid-template-columns:1fr!important;gap:20px!important;}
  .vlb2b-product-card .vlb2b-card-img-link{height:240px!important;min-height:240px!important;}
  .vlb2b-card-title{min-height:auto!important;}
  .vlb2b-card-actions{grid-template-columns:1fr!important;}
  .vlb2b-card-public .vlb2b-card-buy-row{grid-template-columns:auto 62px!important;}
  .vlb2b-card-public .vlb2b-card-qty-hint{grid-column:1 / -1!important;}
}


/* v2.9.6.21: Products UI configurable banner + refined category tabs.
   UI-only: no RFQ, Cart, Order, PI, Compliance or product data logic changes. */
.vlb2b-archive-wrap .vlb2b-archive-hero{
  min-height:var(--vlb2b-products-hero-height,240px)!important;
  margin:0 0 30px!important;
  padding:42px 48px!important;
  border-radius:var(--vlb2b-products-hero-radius,24px)!important;
  background-image:var(--vlb2b-products-hero-bg,none),linear-gradient(135deg,#10243a 0%,#1a2e44 52%,#284969 100%)!important;
  background-size:cover,cover!important;
  background-position:center,center!important;
  box-shadow:0 18px 48px rgba(15,23,42,.10)!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero:before{
  background:linear-gradient(110deg,rgba(255,255,255,.055),rgba(255,255,255,0) 44%),repeating-linear-gradient(135deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 1px,transparent 22px)!important;
  z-index:1!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero:after{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background:var(--vlb2b-products-hero-overlay-color,#10243a)!important;
  opacity:var(--vlb2b-products-hero-overlay-opacity,.42)!important;
  pointer-events:none!important;
  z-index:0!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero-content,
.vlb2b-archive-wrap .vlb2b-archive-hero h1,
.vlb2b-archive-wrap .vlb2b-archive-hero p{
  position:relative!important;
  z-index:2!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero h1{
  font-size:clamp(32px,3.5vw,50px)!important;
  margin-bottom:10px!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero p{
  font-size:16px!important;
  max-width:680px!important;
}
.vlb2b-products-hero-cta{
  position:relative!important;
  z-index:2!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:44px!important;
  margin-top:22px!important;
  padding:0 22px!important;
  border-radius:14px!important;
  background:var(--vlb2b-accent,#2563EB)!important;
  color:#fff!important;
  text-decoration:none!important;
  font-size:14px!important;
  font-weight:800!important;
  box-shadow:0 12px 26px rgba(15,23,42,.18)!important;
}
.vlb2b-products-hero-cta:hover{
  transform:translateY(-1px)!important;
  filter:brightness(1.04)!important;
}
.vlb2b-archive-wrap .vlb2b-cat-filter{
  gap:10px!important;
  margin-bottom:34px!important;
  padding-bottom:14px!important;
  align-items:center!important;
}
.vlb2b-archive-wrap .vlb2b-cat-btn{
  min-height:42px!important;
  max-width:230px!important;
  padding:0 18px!important;
  border-radius:16px!important;
  font-size:14px!important;
  font-weight:700!important;
  letter-spacing:-.01em!important;
  box-shadow:0 4px 12px rgba(15,23,42,.035)!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
.vlb2b-archive-wrap .vlb2b-cat-count{
  opacity:.48!important;
  font-size:12px!important;
  font-weight:700!important;
  margin-left:4px!important;
  flex:0 0 auto!important;
}
.vlb2b-archive-wrap .vlb2b-cat-btn.active .vlb2b-cat-count{
  opacity:.72!important;
}
.vlb2b-archive-wrap .vlb2b-card-title{
  min-height:50px!important;
}
@media (max-width:900px){
  .vlb2b-archive-wrap .vlb2b-archive-hero{
    padding:36px 28px!important;
    min-height:220px!important;
  }
}
@media (max-width:560px){
  .vlb2b-archive-wrap .vlb2b-archive-hero{
    padding:32px 22px!important;
    border-radius:min(var(--vlb2b-products-hero-radius,24px),20px)!important;
  }
  .vlb2b-archive-wrap .vlb2b-cat-btn{
    min-height:40px!important;
    max-width:210px!important;
    padding:0 15px!important;
    font-size:13px!important;
  }
}


/* v2.9.6.24: Products responsive width settings. UI-only; business logic unchanged. */
.vlb2b-archive-wrap{
  width:var(--vlb2b-products-desktop-width,1520px)!important;
  max-width:calc(100vw - 48px)!important;
  margin-left:auto!important;
  margin-right:auto!important;
  background:var(--vlb2b-products-page-bg,#f5f7fb)!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero{
  width:var(--vlb2b-products-hero-width,100%)!important;
  max-width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
  display:flex!important;
  align-items:var(--vlb2b-products-hero-align,center)!important;
  justify-content:var(--vlb2b-products-hero-justify,flex-start)!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero-content{
  text-align:var(--vlb2b-products-hero-text-align,left)!important;
  width:100%!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero-content h1,
.vlb2b-archive-wrap .vlb2b-archive-hero-content p{
  margin-left:0!important;
  margin-right:0!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero[style*="--vlb2b-products-hero-text-align:center"] .vlb2b-archive-hero-content h1,
.vlb2b-archive-wrap .vlb2b-archive-hero[style*="--vlb2b-products-hero-text-align:center"] .vlb2b-archive-hero-content p{
  margin-left:auto!important;
  margin-right:auto!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero[style*="--vlb2b-products-hero-text-align:right"] .vlb2b-archive-hero-content h1,
.vlb2b-archive-wrap .vlb2b-archive-hero[style*="--vlb2b-products-hero-text-align:right"] .vlb2b-archive-hero-content p{
  margin-left:auto!important;
  margin-right:0!important;
}


/* v2.9.6.24: responsive Products width. UI-only. */
@media (max-width:1024px){
  .vlb2b-archive-wrap{
    width:var(--vlb2b-products-tablet-width,96%)!important;
    max-width:var(--vlb2b-products-tablet-width,96%)!important;
    padding-left:20px!important;
    padding-right:20px!important;
  }
}
@media (max-width:640px){
  .vlb2b-archive-wrap{
    width:var(--vlb2b-products-mobile-width,100%)!important;
    max-width:var(--vlb2b-products-mobile-width,100%)!important;
    padding-left:var(--vlb2b-products-mobile-padding,16px)!important;
    padding-right:var(--vlb2b-products-mobile-padding,16px)!important;
  }
}


/* v2.9.6.25: Banner width mode + Products page background fix. UI-only; business logic unchanged. */
.vlb2b-archive-wrap{
  background:var(--vlb2b-products-page-bg,#f5f7fb)!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero--contained{
  width:var(--vlb2b-products-hero-width,100%)!important;
  max-width:100%!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero--wide{
  width:min(var(--vlb2b-products-hero-width,100%), calc(100vw - 48px))!important;
  max-width:calc(100vw - 48px)!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.vlb2b-archive-wrap .vlb2b-archive-hero--full{
  width:100vw!important;
  max-width:100vw!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
}
@media (max-width:640px){
  .vlb2b-archive-wrap .vlb2b-archive-hero--wide{
    width:calc(100vw - (var(--vlb2b-products-mobile-padding,16px) * 2))!important;
    max-width:calc(100vw - (var(--vlb2b-products-mobile-padding,16px) * 2))!important;
  }
  .vlb2b-archive-wrap .vlb2b-archive-hero--full{
    width:100vw!important;
    max-width:100vw!important;
    margin-left:calc(50% - 50vw)!important;
    margin-right:calc(50% - 50vw)!important;
  }
}


/* v2.9.6.26: Products banner width/background binding fix. UI-only; no business logic changed. */
.vlb2b-products-surface{
  width:100vw!important;
  margin-left:calc(50% - 50vw)!important;
  margin-right:calc(50% - 50vw)!important;
  background:var(--vlb2b-products-page-bg,#f5f7fb)!important;
  overflow-x:hidden!important;
}
.vlb2b-products-surface .vlb2b-archive-wrap{
  width:var(--vlb2b-products-desktop-width,1520px)!important;
  max-width:min(var(--vlb2b-products-desktop-width,1520px), calc(100vw - 48px))!important;
  margin-left:auto!important;
  margin-right:auto!important;
  background:transparent!important;
  box-sizing:border-box!important;
}
.vlb2b-products-surface .vlb2b-archive-hero--contained{
  width:var(--vlb2b-products-hero-width,100%)!important;
  max-width:100%!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.vlb2b-products-surface .vlb2b-archive-hero--wide{
  width:min(var(--vlb2b-products-hero-width,1680px), calc(100vw - 48px))!important;
  max-width:calc(100vw - 48px)!important;
  margin-left:50%!important;
  margin-right:0!important;
  transform:translateX(-50%)!important;
}
.vlb2b-products-surface .vlb2b-archive-hero--full{
  width:100vw!important;
  max-width:100vw!important;
  margin-left:50%!important;
  margin-right:0!important;
  transform:translateX(-50%)!important;
  border-radius:0!important;
}
@media (max-width:1024px){
  .vlb2b-products-surface .vlb2b-archive-wrap{
    width:var(--vlb2b-products-tablet-width,96%)!important;
    max-width:var(--vlb2b-products-tablet-width,96%)!important;
    padding-left:20px!important;
    padding-right:20px!important;
  }
  .vlb2b-products-surface .vlb2b-archive-hero--wide{
    width:calc(100vw - 40px)!important;
    max-width:calc(100vw - 40px)!important;
  }
}
@media (max-width:640px){
  .vlb2b-products-surface .vlb2b-archive-wrap{
    width:var(--vlb2b-products-mobile-width,100%)!important;
    max-width:var(--vlb2b-products-mobile-width,100%)!important;
    padding-left:var(--vlb2b-products-mobile-padding,16px)!important;
    padding-right:var(--vlb2b-products-mobile-padding,16px)!important;
  }
  .vlb2b-products-surface .vlb2b-archive-hero--wide{
    width:calc(100vw - (var(--vlb2b-products-mobile-padding,16px) * 2))!important;
    max-width:calc(100vw - (var(--vlb2b-products-mobile-padding,16px) * 2))!important;
  }
}

/* v2.9.6.27: Full-bleed Products banner reset. UI/CSS only; no RFQ/Cart/order/PI/compliance logic changed. */
.vlb2b-products-surface .vlb2b-archive-hero--full{
  border:none!important;
  outline:none!important;
  box-shadow:none!important;
  border-radius:0!important;
  margin-top:0!important;
  margin-left:50%!important;
  margin-right:0!important;
  transform:translateX(-50%)!important;
  width:100vw!important;
  max-width:100vw!important;
}
.vlb2b-products-surface .vlb2b-archive-hero--full:before,
.vlb2b-products-surface .vlb2b-archive-hero--full:after{
  border-radius:0!important;
}
.vlb2b-products-surface .vlb2b-archive-hero--full + .vlb2b-cat-filter{
  margin-top:34px!important;
}
@media (max-width:640px){
  .vlb2b-products-surface .vlb2b-archive-hero--full{
    border-radius:0!important;
    width:100vw!important;
    max-width:100vw!important;
  }
}

/* v2.9.6.28: VastLink B2B Design System base layer.
   UI/CSS only. No RFQ, Cart, order, PI, compliance, email, or product data logic changed. */
:root{
  --vlb2b-ds-radius-card:20px;
  --vlb2b-ds-radius-control:12px;
  --vlb2b-ds-shadow-card:0 14px 34px rgba(15,23,42,.08);
  --vlb2b-ds-shadow-hover:0 20px 48px rgba(15,23,42,.14);
  --vlb2b-ds-surface:#ffffff;
  --vlb2b-ds-soft:#f7f9fc;
  --vlb2b-ds-line:#e5eaf1;
  --vlb2b-ds-focus:rgba(37,99,235,.16);
}

/* Shared page surface for B2B front-end pages */
.vlb2b-single-wrap,
.vlb2b-cart-wrap,
.vlb2b-inquiry-form-wrap,
.vlb2b-success-wrap,
.vlb2b-quote-portal,
.vlb2b-order-success,
.vlb2b-order-tracking{
  font-family:var(--vlb2b-font)!important;
  color:var(--vlb2b-text)!important;
  box-sizing:border-box!important;
}

/* Shared card/surface visual language */
.vlb2b-specs-table-wrap,
.vlb2b-quick-inquiry,
.vlb2b-single-content,
.vlb2b-cart-wrap .vlb2b-cart-panel,
.vlb2b-cart-wrap .vlb2b-cart-summary,
.vlb2b-inquiry-form-wrap,
.vlb2b-success-wrap,
.vlb2b-quote-portal,
.vlb2b-order-success,
.vlb2b-order-tracking{
  border-radius:var(--vlb2b-ds-radius-card)!important;
  border:1px solid var(--vlb2b-ds-line)!important;
  background:var(--vlb2b-ds-surface)!important;
  box-shadow:var(--vlb2b-ds-shadow-card)!important;
}

/* Shared button hierarchy: visual only, existing button meanings stay unchanged */
.vlb2b-btn{
  min-height:42px!important;
  border-radius:var(--vlb2b-ds-radius-control)!important;
  font-weight:700!important;
  letter-spacing:.01em!important;
  box-sizing:border-box!important;
}
.vlb2b-btn-primary,
.vlb2b-card-actions .vlb2b-btn-primary{
  box-shadow:0 10px 22px rgba(26,46,68,.16)!important;
}
.vlb2b-btn:hover{
  transform:translateY(-1px)!important;
}
.vlb2b-btn-outline,
.vlb2b-btn-secondary{
  background:#fff!important;
}

/* Shared form system */
.vlb2b-input,
.vlb2b-cart-wrap input,
.vlb2b-cart-wrap select,
.vlb2b-cart-wrap textarea,
.vlb2b-inquiry-form-wrap input,
.vlb2b-inquiry-form-wrap select,
.vlb2b-inquiry-form-wrap textarea{
  border-radius:var(--vlb2b-ds-radius-control)!important;
  border:1px solid var(--vlb2b-ds-line)!important;
  box-shadow:none!important;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease!important;
}
.vlb2b-input:focus,
.vlb2b-cart-wrap input:focus,
.vlb2b-cart-wrap select:focus,
.vlb2b-cart-wrap textarea:focus,
.vlb2b-inquiry-form-wrap input:focus,
.vlb2b-inquiry-form-wrap select:focus,
.vlb2b-inquiry-form-wrap textarea:focus{
  border-color:var(--vlb2b-accent)!important;
  box-shadow:0 0 0 4px var(--vlb2b-ds-focus)!important;
  outline:none!important;
}

/* Product detail: align with Products page visual system */
.vlb2b-single-wrap{
  max-width:var(--vlb2b-products-desktop-width,1520px)!important;
  background:var(--vlb2b-products-page-bg,#f5f7fb)!important;
}
.vlb2b-main-img-wrap{
  border-radius:var(--vlb2b-ds-radius-card)!important;
  background:linear-gradient(180deg,#f8fafc,#eef2f7)!important;
  border:1px solid var(--vlb2b-ds-line)!important;
  box-shadow:var(--vlb2b-ds-shadow-card)!important;
}
.vlb2b-product-title{
  letter-spacing:-.03em!important;
}
.vlb2b-price-mode-box,
.vlb2b-product-quick-attrs,
.vlb2b-trust-badges{
  border-radius:var(--vlb2b-ds-radius-card)!important;
}
.vlb2b-product-quick-attrs{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr))!important;
  gap:10px!important;
  margin:18px 0 22px!important;
}
.vlb2b-product-quick-attr{
  background:#fff!important;
  border:1px solid var(--vlb2b-ds-line)!important;
  border-radius:14px!important;
  padding:12px 14px!important;
}
.vlb2b-product-quick-attr span{
  display:block!important;
  font-size:11px!important;
  font-weight:800!important;
  color:#64748b!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
  margin-bottom:5px!important;
}
.vlb2b-product-quick-attr strong{
  display:block!important;
  font-size:14px!important;
  color:#1A2E44!important;
}

/* RFQ/Cart/Success/Quote/Tracking base polish */
.vlb2b-cart-wrap,
.vlb2b-inquiry-form-wrap,
.vlb2b-success-wrap,
.vlb2b-quote-portal,
.vlb2b-order-success,
.vlb2b-order-tracking{
  padding:28px!important;
  margin-left:auto!important;
  margin-right:auto!important;
}
.vlb2b-success-icon{
  filter:drop-shadow(0 10px 18px rgba(22,163,74,.16))!important;
}
.vlb2b-success-ref{
  border-radius:999px!important;
  background:#f1f5f9!important;
  border:1px solid var(--vlb2b-ds-line)!important;
}

/* Responsive base layer */
@media (max-width:1024px){
  .vlb2b-single-wrap{
    width:var(--vlb2b-products-tablet-width,96%)!important;
    max-width:var(--vlb2b-products-tablet-width,96%)!important;
  }
  .vlb2b-single-layout{gap:34px!important;}
}
@media (max-width:640px){
  .vlb2b-single-wrap,
  .vlb2b-cart-wrap,
  .vlb2b-inquiry-form-wrap,
  .vlb2b-success-wrap,
  .vlb2b-quote-portal,
  .vlb2b-order-success,
  .vlb2b-order-tracking{
    width:100%!important;
    padding-left:var(--vlb2b-products-mobile-padding,16px)!important;
    padding-right:var(--vlb2b-products-mobile-padding,16px)!important;
  }
  .vlb2b-product-quick-attrs{grid-template-columns:1fr!important;}
  .vlb2b-btn{min-height:40px!important;}
}

/* v2.9.6.29: Product Detail UI alignment layer.
   UI/CSS only. No RFQ, Cart, order, PI, compliance, email, shortcode, or product-data logic changed. */
.vlb2b-single-wrap{
  width:min(var(--vlb2b-products-desktop-width,1520px), calc(100% - 40px))!important;
  max-width:min(var(--vlb2b-products-desktop-width,1520px), calc(100% - 40px))!important;
  margin:0 auto!important;
  padding:34px 0 76px!important;
  background:transparent!important;
}
.vlb2b-breadcrumb{
  background:#fff!important;
  border:1px solid var(--vlb2b-ds-line,#e5eaf1)!important;
  border-radius:999px!important;
  padding:10px 16px!important;
  width:max-content!important;
  max-width:100%!important;
  box-shadow:0 8px 22px rgba(15,23,42,.05)!important;
  margin-bottom:24px!important;
}
.vlb2b-single-layout{
  align-items:start!important;
  gap:42px!important;
}
.vlb2b-single-gallery{
  min-width:0!important;
}
.vlb2b-main-img-wrap{
  border-radius:24px!important;
  background:linear-gradient(180deg,#f8fafc 0%,#eef3f8 100%)!important;
  border:1px solid rgba(148,163,184,.28)!important;
  box-shadow:0 18px 44px rgba(15,23,42,.10)!important;
  transition:transform .22s ease, box-shadow .22s ease!important;
}
.vlb2b-main-img-wrap:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 24px 56px rgba(15,23,42,.14)!important;
}
.vlb2b-main-img{
  object-fit:contain!important;
  padding:22px!important;
  transition:transform .28s ease!important;
}
.vlb2b-main-img-wrap:hover .vlb2b-main-img{
  transform:scale(1.035)!important;
}
.vlb2b-thumb-strip{
  gap:12px!important;
  margin-top:14px!important;
}
.vlb2b-thumb-item{
  width:74px!important;
  height:74px!important;
  border-radius:14px!important;
  border:1px solid var(--vlb2b-ds-line,#e5eaf1)!important;
  background:#fff!important;
  padding:6px!important;
  object-fit:contain!important;
  box-shadow:0 8px 18px rgba(15,23,42,.06)!important;
}
.vlb2b-thumb-item.active,
.vlb2b-thumb-item:hover{
  border-color:var(--vlb2b-accent,#2563eb)!important;
  box-shadow:0 0 0 4px rgba(37,99,235,.12)!important;
}
.vlb2b-single-info{
  background:#fff!important;
  border:1px solid var(--vlb2b-ds-line,#e5eaf1)!important;
  border-radius:24px!important;
  box-shadow:0 18px 44px rgba(15,23,42,.08)!important;
  padding:28px!important;
  min-width:0!important;
}
.vlb2b-single-info .vlb2b-card-cats{
  display:flex!important;
  gap:8px!important;
  flex-wrap:wrap!important;
}
.vlb2b-single-info .vlb2b-cat-tag{
  border-radius:999px!important;
  background:#eef6ff!important;
  color:#1e3a5f!important;
  border:1px solid #d7e8ff!important;
  padding:6px 11px!important;
  font-size:12px!important;
  font-weight:700!important;
}
.vlb2b-product-title{
  font-size:clamp(28px,3vw,44px)!important;
  line-height:1.12!important;
  margin:10px 0 16px!important;
  color:#12263a!important;
}
.vlb2b-price-mode-box{
  border-radius:18px!important;
  border:1px solid rgba(148,163,184,.25)!important;
  background:linear-gradient(135deg,#ffffff 0%,#f8fbff 100%)!important;
  box-shadow:0 12px 28px rgba(15,23,42,.06)!important;
  padding:18px 20px!important;
}
.vlb2b-product-excerpt{
  color:#475569!important;
  font-size:15px!important;
  line-height:1.75!important;
  margin:8px 0 22px!important;
}
.vlb2b-specs-table-wrap{
  border-radius:18px!important;
  overflow:hidden!important;
}
.vlb2b-specs-table th{
  width:34%!important;
  color:#334155!important;
  background:#f8fafc!important;
  font-weight:800!important;
}
.vlb2b-specs-table td{
  color:#475569!important;
}
.vlb2b-quick-inquiry{
  border-radius:22px!important;
  border:1px solid var(--vlb2b-ds-line,#e5eaf1)!important;
  background:linear-gradient(135deg,#f8fbff 0%,#ffffff 100%)!important;
  box-shadow:0 14px 34px rgba(15,23,42,.07)!important;
  padding:22px!important;
}
.vlb2b-quick-inquiry-label{
  display:inline-flex!important;
  align-items:center!important;
  min-height:28px!important;
  padding:4px 12px!important;
  border-radius:999px!important;
  background:#1A2E44!important;
  color:#fff!important;
  font-size:12px!important;
  font-weight:800!important;
  letter-spacing:.04em!important;
  text-transform:uppercase!important;
}
.vlb2b-quick-actions{
  gap:12px!important;
}
.vlb2b-quick-actions .vlb2b-btn{
  flex:1 1 180px!important;
  justify-content:center!important;
}
.vlb2b-trust-badges{
  background:#fff!important;
  border:1px solid var(--vlb2b-ds-line,#e5eaf1)!important;
  border-radius:20px!important;
  padding:16px!important;
  margin-top:22px!important;
}
.vlb2b-badge{
  background:#f8fafc!important;
  border:1px solid #e8edf5!important;
  border-radius:999px!important;
  padding:8px 12px!important;
  font-size:13px!important;
  color:#334155!important;
}
.vlb2b-single-content{
  margin-top:34px!important;
  padding:34px!important;
  border-radius:24px!important;
}
.vlb2b-single-content h2{
  margin-top:0!important;
  font-size:26px!important;
  color:#12263a!important;
  letter-spacing:-.02em!important;
}
@media (max-width:1024px){
  .vlb2b-single-wrap{
    width:var(--vlb2b-products-tablet-width,96%)!important;
    max-width:var(--vlb2b-products-tablet-width,96%)!important;
  }
  .vlb2b-single-info{padding:24px!important;}
}
@media (max-width:640px){
  .vlb2b-single-wrap{
    width:var(--vlb2b-products-mobile-width,100%)!important;
    max-width:var(--vlb2b-products-mobile-width,100%)!important;
    padding-left:var(--vlb2b-products-mobile-padding,16px)!important;
    padding-right:var(--vlb2b-products-mobile-padding,16px)!important;
  }
  .vlb2b-single-info,
  .vlb2b-single-content,
  .vlb2b-quick-inquiry{padding:18px!important;border-radius:18px!important;}
  .vlb2b-main-img{padding:14px!important;}
  .vlb2b-thumb-item{width:62px!important;height:62px!important;}
  .vlb2b-quick-actions .vlb2b-btn{flex-basis:100%!important;}
  .vlb2b-breadcrumb{width:100%!important;border-radius:16px!important;}
}

/* v2.9.6.30: Product detail image surface cleanup.
   UI/CSS only. Keep gallery hover zoom and product logic unchanged. */
.vlb2b-single-gallery,
.vlb2b-main-img-wrap{
  background:transparent!important;
}
.vlb2b-main-img-wrap{
  border-color:transparent!important;
  box-shadow:0 18px 44px rgba(15,23,42,.08)!important;
  overflow:hidden!important;
}
.vlb2b-main-img-wrap:hover{
  box-shadow:0 24px 56px rgba(15,23,42,.12)!important;
}
.vlb2b-main-img{
  background:transparent!important;
}


/* v2.9.6.31 Product detail gallery showcase polish.
   UI/CSS only: reduce empty image area, add subtle showcase surface, enlarge visual focus,
   preserve hover zoom and all product/RFQ/Cart logic. */
.vlb2b-single-gallery{
  min-width:0!important;
}
.vlb2b-main-img-wrap{
  aspect-ratio:auto!important;
  height:clamp(430px,38vw,560px)!important;
  max-height:560px!important;
  min-height:420px!important;
  border:0!important;
  border-radius:24px!important;
  background:
    radial-gradient(circle at 50% 52%, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 38%, rgba(244,247,251,.96) 72%, rgba(238,243,248,.98) 100%)!important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.92),
    0 18px 42px rgba(15,23,42,.06)!important;
  overflow:hidden!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.vlb2b-main-img-wrap:hover{
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    0 22px 52px rgba(15,23,42,.09)!important;
  transform:none!important;
}
.vlb2b-main-img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  padding:clamp(12px,2.2vw,26px)!important;
  background:transparent!important;
  filter:drop-shadow(0 18px 22px rgba(15,23,42,.13))!important;
  transform:scale(1.08)!important;
  transform-origin:center center!important;
  transition:transform .28s ease, filter .28s ease!important;
}
.vlb2b-main-img-wrap:hover .vlb2b-main-img{
  transform:scale(1.12)!important;
  filter:drop-shadow(0 22px 28px rgba(15,23,42,.16))!important;
}
.vlb2b-thumb-strip{
  margin-top:16px!important;
}
.vlb2b-thumb-item{
  background:#fff!important;
}

@media (max-width:900px){
  .vlb2b-main-img-wrap{
    height:clamp(360px,72vw,520px)!important;
    min-height:340px!important;
  }
  .vlb2b-main-img{
    transform:scale(1.04)!important;
  }
  .vlb2b-main-img-wrap:hover .vlb2b-main-img{
    transform:scale(1.07)!important;
  }
}
@media (max-width:640px){
  .vlb2b-main-img-wrap{
    height:clamp(300px,82vw,420px)!important;
    min-height:300px!important;
    border-radius:18px!important;
  }
}

/* v2.9.6.32: Product detail Alibaba-style main gallery.
   UI/CSS only: clean large image display, reduce white-board feeling, keep hover zoom and all product/RFQ/Cart logic unchanged. */
.vlb2b-single-gallery{
  min-width:0!important;
}
.vlb2b-main-img-wrap{
  height:clamp(460px,42vw,620px)!important;
  min-height:420px!important;
  max-height:620px!important;
  aspect-ratio:auto!important;
  border:0!important;
  border-radius:18px!important;
  background:#fff!important;
  box-shadow:0 16px 42px rgba(15,23,42,.07)!important;
  overflow:hidden!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  padding:0!important;
}
.vlb2b-main-img-wrap:hover{
  transform:none!important;
  box-shadow:0 20px 52px rgba(15,23,42,.10)!important;
}
.vlb2b-main-img{
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  padding:0!important;
  background:#fff!important;
  filter:none!important;
  transform:scale(1.22)!important;
  transform-origin:center center!important;
  transition:transform .28s ease, filter .28s ease!important;
}
.vlb2b-main-img-wrap:hover .vlb2b-main-img{
  transform:scale(1.28)!important;
  filter:drop-shadow(0 16px 20px rgba(15,23,42,.10))!important;
}
.vlb2b-thumb-strip{
  margin-top:18px!important;
  gap:14px!important;
  align-items:center!important;
}
.vlb2b-thumb-item{
  width:86px!important;
  height:86px!important;
  border-radius:12px!important;
  border:1px solid #e5eaf1!important;
  background:#fff!important;
  padding:4px!important;
  object-fit:contain!important;
  box-shadow:0 8px 18px rgba(15,23,42,.05)!important;
}
.vlb2b-thumb-item.active,
.vlb2b-thumb-item:hover{
  border-color:#1A2E44!important;
  box-shadow:0 0 0 3px rgba(26,46,68,.10)!important;
}
@media (max-width:900px){
  .vlb2b-main-img-wrap{
    height:clamp(360px,70vw,540px)!important;
    min-height:340px!important;
  }
  .vlb2b-main-img{
    transform:scale(1.12)!important;
  }
  .vlb2b-main-img-wrap:hover .vlb2b-main-img{
    transform:scale(1.16)!important;
  }
}
@media (max-width:640px){
  .vlb2b-main-img-wrap{
    height:clamp(320px,82vw,460px)!important;
    min-height:300px!important;
    border-radius:16px!important;
  }
  .vlb2b-thumb-item{
    width:64px!important;
    height:64px!important;
  }
}


/* v2.9.6.33: Product detail gallery arrow navigation.
   UI/CSS only: Alibaba-style previous/next controls, no RFQ/Cart/order logic changes. */
.vlb2b-main-img-wrap{
  position:relative!important;
}
.vlb2b-gallery-nav{
  position:absolute!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  z-index:12!important;
  width:48px!important;
  height:48px!important;
  border:0!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.94)!important;
  color:#1A2E44!important;
  box-shadow:0 12px 28px rgba(15,23,42,.16)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  font-size:34px!important;
  line-height:1!important;
  font-weight:500!important;
  cursor:pointer!important;
  opacity:.92!important;
  transition:opacity .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease!important;
}
.vlb2b-gallery-prev{left:22px!important;}
.vlb2b-gallery-next{right:22px!important;}
.vlb2b-gallery-nav:hover,
.vlb2b-gallery-nav:focus{
  opacity:1!important;
  background:#fff!important;
  transform:translateY(-50%) scale(1.06)!important;
  box-shadow:0 16px 34px rgba(15,23,42,.20)!important;
  outline:none!important;
}
.vlb2b-gallery-nav:active{
  transform:translateY(-50%) scale(.98)!important;
}
@media (max-width:900px){
  .vlb2b-gallery-nav{width:42px!important;height:42px!important;font-size:30px!important;}
  .vlb2b-gallery-prev{left:14px!important;}
  .vlb2b-gallery-next{right:14px!important;}
}
@media (max-width:640px){
  .vlb2b-gallery-nav{width:38px!important;height:38px!important;font-size:26px!important;}
  .vlb2b-gallery-prev{left:10px!important;}
  .vlb2b-gallery-next{right:10px!important;}
}

/* v2.9.6.35: Product Detail right-side information panel refinement.
   UI/CSS only. Does not change RFQ, Cart, Order, PI, Compliance, email, gallery, or product data logic. */
.vlb2b-single-info{
  min-width:0!important;
  padding-top:2px!important;
}
.vlb2b-single-info .vlb2b-card-cats{
  margin:0 0 14px!important;
  display:flex!important;
  flex-wrap:wrap!important;
  gap:8px!important;
}
.vlb2b-single-info .vlb2b-cat-tag{
  display:inline-flex!important;
  align-items:center!important;
  min-height:30px!important;
  padding:0 13px!important;
  border-radius:999px!important;
  border:1px solid rgba(37,99,235,.16)!important;
  background:rgba(37,99,235,.07)!important;
  color:#1d4ed8!important;
  font-size:11px!important;
  font-weight:800!important;
  letter-spacing:.055em!important;
  line-height:1!important;
}
.vlb2b-single-info .vlb2b-product-title{
  margin:0 0 18px!important;
  color:#14243a!important;
  font-size:clamp(34px,3.2vw,56px)!important;
  line-height:1.12!important;
  letter-spacing:-.045em!important;
  font-weight:900!important;
  max-width:980px!important;
}
.vlb2b-single-info .vlb2b-price-mode-box{
  position:relative!important;
  margin:0 0 22px!important;
  padding:24px 28px!important;
  border:1px solid rgba(203,213,225,.88)!important;
  border-radius:22px!important;
  background:linear-gradient(180deg,#ffffff 0%,#fbfdff 100%)!important;
  box-shadow:0 16px 38px rgba(15,23,42,.055)!important;
  overflow:hidden!important;
}
.vlb2b-single-info .vlb2b-price-mode-box:before{
  content:""!important;
  position:absolute!important;
  inset:0 auto 0 0!important;
  width:4px!important;
  background:linear-gradient(180deg,#2563eb,#1a2e44)!important;
  opacity:.88!important;
}
.vlb2b-single-info .vlb2b-price-mode-box > div:first-child{
  font-size:15px!important;
  color:#64748b!important;
  font-weight:700!important;
  letter-spacing:.01em!important;
}
.vlb2b-single-info .vlb2b-price-mode-box > div:nth-child(2){
  margin-top:5px!important;
  font-size:clamp(28px,2.5vw,40px)!important;
  font-weight:900!important;
  color:#14243a!important;
  line-height:1.15!important;
  letter-spacing:-.035em!important;
}
.vlb2b-single-info .vlb2b-price-mode-box > div[style*="margin-top:6px"]{
  margin-top:10px!important;
  color:#64748b!important;
  font-size:14px!important;
  font-weight:650!important;
}
.vlb2b-single-info .vlb2b-product-quick-attrs{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:14px!important;
  margin:0 0 24px!important;
}
.vlb2b-single-info .vlb2b-product-quick-attr{
  min-width:0!important;
  min-height:58px!important;
  padding:13px 16px!important;
  border:1px solid rgba(203,213,225,.88)!important;
  border-radius:18px!important;
  background:rgba(255,255,255,.96)!important;
  box-shadow:0 8px 22px rgba(15,23,42,.035)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  gap:10px!important;
}
.vlb2b-single-info .vlb2b-product-quick-attr span{
  flex:0 0 auto!important;
  color:#64748b!important;
  font-size:12px!important;
  font-weight:900!important;
  letter-spacing:.08em!important;
}
.vlb2b-single-info .vlb2b-product-quick-attr strong{
  min-width:0!important;
  color:#14243a!important;
  font-size:15px!important;
  font-weight:850!important;
  white-space:nowrap!important;
  overflow:hidden!important;
  text-overflow:ellipsis!important;
}
.vlb2b-single-info .vlb2b-product-excerpt{
  margin:2px 0 28px!important;
  padding:16px 0 16px 22px!important;
  border-left:4px solid #2563eb!important;
  color:#475569!important;
  font-size:17px!important;
  line-height:1.82!important;
  font-weight:550!important;
  max-width:860px!important;
}
.vlb2b-single-info .vlb2b-product-excerpt p{
  margin:0!important;
}
.vlb2b-single-info .vlb2b-specs-table-wrap,
.vlb2b-single-info .vlb2b-quick-inquiry,
.vlb2b-single-info .vlb2b-trust-badges{
  border-radius:22px!important;
  border:1px solid rgba(203,213,225,.88)!important;
  background:#fff!important;
  box-shadow:0 16px 36px rgba(15,23,42,.05)!important;
}
.vlb2b-single-info .vlb2b-quick-inquiry{
  padding:26px 28px!important;
  margin:0 0 24px!important;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%)!important;
}
.vlb2b-single-info .vlb2b-quick-inquiry-label{
  display:inline-flex!important;
  align-items:center!important;
  min-height:32px!important;
  padding:0 16px!important;
  margin:0 0 14px!important;
  border-radius:999px!important;
  background:#1a2e44!important;
  color:#fff!important;
  font-size:13px!important;
  font-weight:900!important;
  letter-spacing:.05em!important;
}
.vlb2b-single-info .vlb2b-qty-row{
  display:grid!important;
  grid-template-columns:minmax(120px,180px) 1fr!important;
  gap:18px!important;
  align-items:end!important;
  margin-bottom:18px!important;
}
.vlb2b-single-info .vlb2b-qty-group label{
  color:#64748b!important;
  font-size:12px!important;
  font-weight:900!important;
  letter-spacing:.075em!important;
}
.vlb2b-single-info #vlb2b-detail-qty{
  height:52px!important;
  border-radius:14px!important;
  border:1.5px solid #cbd5e1!important;
  font-size:17px!important;
  font-weight:750!important;
  text-align:center!important;
}
.vlb2b-single-info .vlb2b-estimated-amount{
  min-height:52px!important;
  display:flex!important;
  align-items:center!important;
  padding:0!important;
  font-size:22px!important;
  font-weight:900!important;
  color:#14243a!important;
}
.vlb2b-single-info .vlb2b-quick-actions{
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:14px!important;
  margin-top:2px!important;
}
.vlb2b-single-info .vlb2b-quick-actions .vlb2b-btn{
  min-height:52px!important;
  border-radius:14px!important;
  font-size:15px!important;
  font-weight:900!important;
  letter-spacing:.01em!important;
  padding:0 18px!important;
}
.vlb2b-single-info .vlb2b-btn-primary{
  background:#1a2e44!important;
  border-color:#1a2e44!important;
}
.vlb2b-single-info .vlb2b-btn-primary:hover{
  background:#2563eb!important;
  border-color:#2563eb!important;
}
.vlb2b-single-info .vlb2b-btn-outline,
.vlb2b-single-info .vlb2b-btn-secondary{
  background:#fff!important;
  color:#1a2e44!important;
  border-color:#1a2e44!important;
}
.vlb2b-single-info .vlb2b-card-rfq-hint{
  border-radius:16px!important;
  border:1px dashed rgba(37,99,235,.20)!important;
  background:rgba(37,99,235,.035)!important;
  color:#64748b!important;
  line-height:1.55!important;
}
.vlb2b-single-info .vlb2b-trust-badges{
  padding:18px!important;
  display:grid!important;
  grid-template-columns:repeat(2,minmax(0,1fr))!important;
  gap:12px!important;
}
.vlb2b-single-info .vlb2b-badge{
  min-height:44px!important;
  padding:10px 12px!important;
  border-radius:14px!important;
  background:#f8fafc!important;
  color:#334155!important;
  font-weight:750!important;
  font-size:13px!important;
}
@media (max-width:1180px){
  .vlb2b-single-info .vlb2b-product-quick-attrs{grid-template-columns:1fr!important;}
}
@media (max-width:900px){
  .vlb2b-single-info .vlb2b-product-title{font-size:clamp(30px,7vw,42px)!important;}
  .vlb2b-single-info .vlb2b-product-quick-attrs{grid-template-columns:repeat(3,minmax(0,1fr))!important;}
}
@media (max-width:640px){
  .vlb2b-single-info .vlb2b-price-mode-box,
  .vlb2b-single-info .vlb2b-quick-inquiry{padding:20px!important;border-radius:18px!important;}
  .vlb2b-single-info .vlb2b-product-quick-attrs,
  .vlb2b-single-info .vlb2b-qty-row,
  .vlb2b-single-info .vlb2b-quick-actions,
  .vlb2b-single-info .vlb2b-trust-badges{grid-template-columns:1fr!important;}
  .vlb2b-single-info .vlb2b-product-excerpt{font-size:15px!important;line-height:1.72!important;}
}

/* v2.9.6.36 Global B2B Banner System - UI only */
.vlb2b-global-banner-wrap{
  width:min(var(--vlb2b-products-desktop-width,1520px), calc(100vw - 48px));
  max-width:100%;
  margin:0 auto 34px;
  box-sizing:border-box;
}
.vlb2b-global-banner-wrap .vlb2b-global-banner{
  margin:0 auto;
}
.vlb2b-global-banner-wrap--wide{
  width:min(1680px, calc(100vw - 32px));
}
.vlb2b-global-banner-wrap--full{
  width:100vw;
  max-width:100vw;
  margin-left:calc(50% - 50vw);
  margin-right:calc(50% - 50vw);
  padding:0!important;
}
.vlb2b-global-banner-wrap--full .vlb2b-global-banner{
  border-radius:0!important;
  box-shadow:none!important;
  border:none!important;
  outline:none!important;
}
.vlb2b-global-banner .vlb2b-archive-hero-content h1{
  max-width:860px;
}
.vlb2b-global-banner .vlb2b-archive-hero-content p{
  max-width:760px;
}
.vlb2b-global-banner--product-single + .vlb2b-single-wrap,
.vlb2b-global-banner-wrap + .vlb2b-cart-wrap,
.vlb2b-global-banner-wrap + .vlb2b-quote-portal,
.vlb2b-global-banner-wrap + .vlb2b-order-success,
.vlb2b-global-banner-wrap + .vlb2b-order-tracking,
.vlb2b-global-banner-wrap + .vlb2b-success-wrap{
  margin-top:0;
}
@media (max-width:1024px){
  .vlb2b-global-banner-wrap{
    width:min(var(--vlb2b-products-tablet-width,96%), calc(100vw - 32px));
    margin-bottom:28px;
  }
  .vlb2b-global-banner-wrap--full{
    width:100vw;
  }
}
@media (max-width:640px){
  .vlb2b-global-banner-wrap{
    width:var(--vlb2b-products-mobile-width,100%);
    padding-left:var(--vlb2b-products-mobile-padding,16px);
    padding-right:var(--vlb2b-products-mobile-padding,16px);
    margin-bottom:22px;
  }
  .vlb2b-global-banner-wrap--full{
    padding-left:0!important;
    padding-right:0!important;
  }
  .vlb2b-global-banner .vlb2b-archive-hero-content h1{
    font-size:30px;
  }
}


/* v2.9.6.37: Global Banner Data Inheritance binding fix.
   UI/CSS only: make non-Products pages use the same Products banner image, overlay, height, radius and width mode settings.
   No RFQ/Cart/order/PI/compliance/product-data logic changed. */
.vlb2b-global-banner-wrap .vlb2b-archive-hero{
  min-height:var(--vlb2b-products-hero-height,240px)!important;
  width:var(--vlb2b-products-hero-width,100%)!important;
  max-width:100%!important;
  margin:0 auto!important;
  padding:42px 48px!important;
  border-radius:var(--vlb2b-products-hero-radius,24px)!important;
  position:relative!important;
  overflow:hidden!important;
  display:flex!important;
  align-items:var(--vlb2b-products-hero-align,center)!important;
  justify-content:var(--vlb2b-products-hero-justify,flex-start)!important;
  background-image:var(--vlb2b-products-hero-bg,none),linear-gradient(135deg,#10243a 0%,#1a2e44 52%,#284969 100%)!important;
  background-size:cover,cover!important;
  background-position:center,center!important;
  background-repeat:no-repeat,no-repeat!important;
  box-shadow:0 18px 48px rgba(15,23,42,.10)!important;
  border:1px solid rgba(226,232,240,.72)!important;
}
.vlb2b-global-banner-wrap .vlb2b-archive-hero:before{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background:linear-gradient(110deg,rgba(255,255,255,.055),rgba(255,255,255,0) 44%),repeating-linear-gradient(135deg,rgba(255,255,255,.025) 0,rgba(255,255,255,.025) 1px,transparent 1px,transparent 22px)!important;
  pointer-events:none!important;
  z-index:1!important;
}
.vlb2b-global-banner-wrap .vlb2b-archive-hero:after{
  content:""!important;
  position:absolute!important;
  inset:0!important;
  background:var(--vlb2b-products-hero-overlay-color,#10243a)!important;
  opacity:var(--vlb2b-products-hero-overlay-opacity,.42)!important;
  pointer-events:none!important;
  z-index:0!important;
}
.vlb2b-global-banner-wrap .vlb2b-archive-hero-content{
  position:relative!important;
  z-index:2!important;
  width:100%!important;
  text-align:var(--vlb2b-products-hero-text-align,left)!important;
}
.vlb2b-global-banner-wrap .vlb2b-archive-hero h1,
.vlb2b-global-banner-wrap .vlb2b-archive-hero p{
  position:relative!important;
  z-index:2!important;
  margin-left:0!important;
  margin-right:0!important;
}
.vlb2b-global-banner-wrap .vlb2b-archive-hero h1{
  max-width:860px!important;
  margin:0 0 10px!important;
  color:#fff!important;
  font-size:clamp(32px,3.5vw,50px)!important;
  font-weight:850!important;
  line-height:1.04!important;
  letter-spacing:-.045em!important;
}
.vlb2b-global-banner-wrap .vlb2b-archive-hero p{
  max-width:760px!important;
  color:rgba(255,255,255,.80)!important;
  font-size:16px!important;
  line-height:1.65!important;
}
.vlb2b-global-banner-wrap .vlb2b-archive-hero[style*="--vlb2b-products-hero-text-align:center"] .vlb2b-archive-hero-content h1,
.vlb2b-global-banner-wrap .vlb2b-archive-hero[style*="--vlb2b-products-hero-text-align:center"] .vlb2b-archive-hero-content p{
  margin-left:auto!important;
  margin-right:auto!important;
}
.vlb2b-global-banner-wrap .vlb2b-archive-hero[style*="--vlb2b-products-hero-text-align:right"] .vlb2b-archive-hero-content h1,
.vlb2b-global-banner-wrap .vlb2b-archive-hero[style*="--vlb2b-products-hero-text-align:right"] .vlb2b-archive-hero-content p{
  margin-left:auto!important;
  margin-right:0!important;
}
.vlb2b-global-banner-wrap--contained .vlb2b-archive-hero{
  width:var(--vlb2b-products-hero-width,100%)!important;
  max-width:100%!important;
}
.vlb2b-global-banner-wrap--wide .vlb2b-archive-hero{
  width:min(var(--vlb2b-products-hero-width,1680px), calc(100vw - 48px))!important;
  max-width:calc(100vw - 48px)!important;
}
.vlb2b-global-banner-wrap--full .vlb2b-archive-hero{
  width:100vw!important;
  max-width:100vw!important;
  border:none!important;
  outline:none!important;
  box-shadow:none!important;
  border-radius:0!important;
}
.vlb2b-global-banner-wrap--full .vlb2b-archive-hero:before,
.vlb2b-global-banner-wrap--full .vlb2b-archive-hero:after{
  border-radius:0!important;
}
@media (max-width:900px){
  .vlb2b-global-banner-wrap .vlb2b-archive-hero{
    padding:36px 28px!important;
    min-height:min(var(--vlb2b-products-hero-height,220px), 320px)!important;
  }
}
@media (max-width:640px){
  .vlb2b-global-banner-wrap .vlb2b-archive-hero{
    padding:32px 22px!important;
  }
  .vlb2b-global-banner-wrap--full .vlb2b-archive-hero{
    width:100vw!important;
    max-width:100vw!important;
  }
}

/* v2.9.6.42: Mobile Products UX polish
   UI/CSS only. No RFQ, Cart, Order, PI, Compliance, product data or workflow logic changes.
   - Mobile category filters become a single horizontal swipe row.
   - Mobile banner height follows the configured desktop banner height through a ratio, not a hardcoded value.
   - Mobile product card image height and spacing are refined for B2B mobile browsing. */
@media (max-width: 768px) {
  .vlb2b-archive-wrap {
    padding-left: var(--vlb2b-products-mobile-padding, 16px) !important;
    padding-right: var(--vlb2b-products-mobile-padding, 16px) !important;
  }

  .vlb2b-archive-hero,
  .vlb2b-global-banner,
  .vlb2b-b2b-banner {
    min-height: clamp(240px, calc(var(--vlb2b-products-banner-height, 420px) * .68), 360px) !important;
    height: clamp(240px, calc(var(--vlb2b-products-banner-height, 420px) * .68), 360px) !important;
    padding: 38px 22px 34px !important;
  }

  .vlb2b-archive-hero h1,
  .vlb2b-global-banner h1,
  .vlb2b-b2b-banner h1 {
    font-size: clamp(34px, 9vw, 48px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.035em !important;
    margin-bottom: 12px !important;
  }

  .vlb2b-archive-hero p,
  .vlb2b-global-banner p,
  .vlb2b-b2b-banner p {
    font-size: clamp(16px, 4vw, 21px) !important;
    line-height: 1.55 !important;
    max-width: 92% !important;
  }

  .vlb2b-cat-filter {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    gap: 10px !important;
    padding: 0 0 14px !important;
    margin: 24px 0 28px !important;
    scroll-snap-type: x proximity !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .vlb2b-cat-filter::-webkit-scrollbar { display: none !important; }

  .vlb2b-cat-btn {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    min-height: 44px !important;
    height: 44px !important;
    padding: 0 18px !important;
    max-width: 220px !important;
    border-radius: 18px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    scroll-snap-align: start !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .vlb2b-product-grid {
    gap: 22px !important;
  }

  .vlb2b-archive-wrap .vlb2b-product-card .vlb2b-card-img-link {
    height: clamp(230px, 62vw, 300px) !important;
    min-height: clamp(230px, 62vw, 300px) !important;
  }

  .vlb2b-archive-wrap .vlb2b-product-card .vlb2b-card-img {
    height: 100% !important;
    object-fit: cover !important;
  }

  .vlb2b-archive-wrap .vlb2b-card-body {
    padding: 18px 18px 20px !important;
  }
}

@media (max-width: 480px) {
  .vlb2b-archive-hero,
  .vlb2b-global-banner,
  .vlb2b-b2b-banner {
    min-height: clamp(220px, calc(var(--vlb2b-products-banner-height, 420px) * .62), 320px) !important;
    height: clamp(220px, calc(var(--vlb2b-products-banner-height, 420px) * .62), 320px) !important;
    padding: 32px 18px 30px !important;
  }

  .vlb2b-archive-hero h1,
  .vlb2b-global-banner h1,
  .vlb2b-b2b-banner h1 {
    font-size: clamp(32px, 10vw, 42px) !important;
  }

  .vlb2b-archive-hero p,
  .vlb2b-global-banner p,
  .vlb2b-b2b-banner p {
    font-size: clamp(15px, 4.3vw, 19px) !important;
  }

  .vlb2b-cat-btn {
    min-height: 42px !important;
    height: 42px !important;
    padding: 0 16px !important;
    max-width: 210px !important;
    font-size: 14px !important;
  }
}
