/* =========================================================
   BLAZE GARMENTS — MASTER LUXURY & RESPONSIVE STYLESHEET
   Brand Colors: Flame Orange (#ff6500 / #ea580c), Dark Navy (#0d162b)
   Targeting: B2C Online Retail, B2B Wholesale & Private Label OEM
========================================================= */

:root {
    --blaze-navy: #0d162b;
    --blaze-navy-light: #162444;
    --blaze-orange: #ff6500;
    --blaze-orange-dark: #ea580c;
    --blaze-orange-glow: rgba(255, 101, 0, 0.28);
    --blaze-amber: #f59e0b;
    --blaze-slate: #0f172a;
    --blaze-muted: #64748b;
    --blaze-border: #e2e8f0;
    --blaze-card-bg: #ffffff;
    --blaze-bg-light: #f8fafc;
    --blaze-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --blaze-header-shadow: 0 4px 20px rgba(13, 22, 43, 0.08);
}

/* Global Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--blaze-font);
    color: var(--blaze-slate);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Container */
.blaze-container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* =========================================================
   1. MASTER STICKY / FIXED HEADER SYSTEM
========================================================= */
.blaze-sticky-header,
#blaze-sticky-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #ffffff !important;
    box-shadow: var(--blaze-header-shadow) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Ensure children behave statically inside sticky container */
.blaze-sticky-header .blaze-topbar-luxury,
.blaze-sticky-header .blaze-header-centered,
.blaze-sticky-header .blaze-nav-centered {
    position: static !important;
    top: auto !important;
}

/* Top Announcement Bar */
.blaze-topbar-luxury {
    background: var(--blaze-navy);
    color: #cbd5e1;
    font-size: 12px;
    border-top: 3px solid var(--blaze-orange);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 7px 0;
    max-height: 48px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.blaze-sticky-header.blaze-is-scrolled .blaze-topbar-luxury {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.blaze-topbar-inner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.blaze-topbar-left,
.blaze-topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blaze-tb-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blaze-tb-divider {
    color: #334155;
}

.blaze-tb-wa {
    color: #22c55e !important;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
.blaze-tb-wa:hover {
    color: #4ade80 !important;
}

.blaze-tb-promo {
    color: #ffffff;
    font-size: 11.5px;
    letter-spacing: 0.5px;
}
.blaze-tb-promo strong {
    color: var(--blaze-orange);
    font-weight: 800;
}

.blaze-topbar-right a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.2s;
}
.blaze-topbar-right a:hover {
    color: #ffffff;
}

/* Main Centered Header Bar */
.blaze-header-centered {
    background: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.blaze-header-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

/* Left: Search & Mobile Menu Toggle */
.blaze-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blaze-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4.5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}
.blaze-mobile-toggle:hover {
    background: #f1f5f9;
}
.blaze-mobile-toggle span {
    display: block;
    width: 22px;
    height: 2.2px;
    background: var(--blaze-navy);
    border-radius: 2px;
}

/* Search Pill */
.blaze-search-pill {
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 1.5px solid var(--blaze-border);
    border-radius: 50px;
    padding: 4px 6px 4px 14px;
    width: 100%;
    max-width: 320px;
    transition: all 0.25s ease;
}
.blaze-search-pill:focus-within {
    border-color: var(--blaze-orange);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.12);
}
.blaze-search-icon {
    font-size: 13px;
    margin-right: 8px;
    color: #94a3b8;
}
.blaze-search-pill input[type="search"] {
    border: none;
    background: transparent;
    font-size: 13px;
    color: var(--blaze-slate);
    width: 100%;
    outline: none;
    font-family: inherit;
}
.blaze-search-pill input[type="search"]::placeholder {
    color: #94a3b8;
}
.blaze-search-btn {
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
}
.blaze-search-btn:hover {
    opacity: 0.92;
    transform: scale(1.02);
}

/* Center: Official Brand Logo Image */
.blaze-header-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
.blaze-brand-centered {
    display: inline-block;
    text-decoration: none;
}
.blaze-main-logo-img {
    max-height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.25s ease;
}
.blaze-brand-centered:hover .blaze-main-logo-img {
    transform: scale(1.03);
}

/* Right: Wishlist, Cart & Quote CTA */
.blaze-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.blaze-action-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid var(--blaze-border);
    text-decoration: none;
    color: var(--blaze-navy);
    transition: all 0.2s ease;
}
.blaze-action-icon:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}
.blaze-ai-icon {
    font-size: 17px;
    line-height: 1;
}
.blaze-ai-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 50px;
    line-height: 1;
    box-shadow: 0 2px 6px var(--blaze-orange-glow);
}

.blaze-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 800;
    padding: 9px 18px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px var(--blaze-orange-glow);
    transition: all 0.25s ease;
    white-space: nowrap;
}
.blaze-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 101, 0, 0.45);
}
.blaze-cta-icon {
    font-size: 15px;
    font-weight: 900;
}

/* Centered Navigation Bar */
.blaze-nav-centered {
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    padding: 0;
}
.blaze-nav-menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 34px;
}
.blaze-nav-menu-list li {
    position: relative;
    padding: 12px 0;
}
.blaze-nav-menu-list a {
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0.2px;
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-block;
    position: relative;
}
.blaze-nav-menu-list a:hover,
.blaze-nav-menu-list .current-menu-item > a {
    color: var(--blaze-orange);
}
.blaze-nav-menu-list a::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--blaze-orange);
    transition: width 0.25s ease;
}
.blaze-nav-menu-list a:hover::after,
.blaze-nav-menu-list .current-menu-item > a::after {
    width: 100%;
}

/* Mobile Navigation Drawer */
.blaze-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
}
.blaze-md-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 22, 43, 0.6);
    backdrop-filter: blur(4px);
}
.blaze-md-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #ffffff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.blaze-md-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid #e2e8f0;
}
.blaze-md-close {
    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--blaze-navy);
    line-height: 1;
}
.blaze-md-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}
.blaze-mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.blaze-mobile-nav-list li {
    border-bottom: 1px solid #f1f5f9;
}
.blaze-mobile-nav-list a {
    display: block;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--blaze-navy);
    text-decoration: none;
    transition: color 0.2s;
}
.blaze-mobile-nav-list a:hover {
    color: var(--blaze-orange);
}

/* =========================================================
   2. HERO IMAGE SLIDER (HOMEPAGE)
========================================================= */
.blaze-hero-slider-section {
    position: relative;
    overflow: hidden;
    background: #080c14;
}

.blaze-slider-container {
    position: relative;
    width: 100%;
    min-height: 560px;
}

.blaze-hero-slide {
    display: none;
    width: 100%;
    min-height: 560px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.blaze-hero-slide.active {
    display: flex;
    opacity: 1;
}

.blaze-slide-content {
    max-width: 820px;
    padding: 80px 0;
    color: #ffffff;
}

.blaze-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}
.blaze-hb-pulse {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
}

.blaze-hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: #ffffff;
    margin: 0 0 18px;
}
.blaze-gradient-text {
    background: linear-gradient(135deg, #ff6500 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blaze-hero-desc {
    font-size: 16.5px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 32px;
    max-width: 660px;
}

.blaze-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Global Buttons */
.blaze-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    font-size: 14.5px;
    font-weight: 800;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.blaze-btn-primary {
    background: #ffffff;
    color: var(--blaze-navy) !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}
.blaze-btn-primary:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.blaze-btn-accent {
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 14px var(--blaze-orange-glow);
}
.blaze-btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.45);
}

.blaze-btn-outline {
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.blaze-btn-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.blaze-btn-outline-white {
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.blaze-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Slider Controls */
.blaze-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(13, 22, 43, 0.6);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    z-index: 10;
}
.blaze-slider-arrow:hover {
    background: var(--blaze-orange);
    border-color: var(--blaze-orange);
    transform: translateY(-50%) scale(1.08);
}
.blaze-slider-arrow.blaze-prev { left: 24px; }
.blaze-slider-arrow.blaze-next { right: 24px; }

.blaze-slider-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.blaze-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: all 0.3s ease;
}
.blaze-dot.active {
    width: 32px;
    border-radius: 12px;
    background: var(--blaze-orange);
}

/* Trust Stats Bar */
.blaze-slider-stats-bar {
    background: #080c14;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}
.blaze-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.blaze-stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.blaze-stat-item:last-child {
    border-right: none;
}
.blaze-stat-val {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
}
.blaze-stat-lbl {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}

/* =========================================================
   3. THREE BUSINESS PILLARS (HOMEPAGE)
========================================================= */
.blaze-pillars-section {
    padding: 80px 0;
    background: var(--blaze-bg-light);
}

.blaze-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px auto;
}
.blaze-subheading {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--blaze-orange);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.blaze-heading {
    font-size: 36px;
    font-weight: 900;
    color: var(--blaze-navy);
    line-height: 1.2;
    margin: 0 0 14px 0;
}
.blaze-subtext {
    font-size: 16px;
    color: var(--blaze-muted);
    line-height: 1.6;
    margin: 0;
}

.blaze-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blaze-pillar-card {
    background: #ffffff;
    border: 1.5px solid var(--blaze-border);
    border-radius: 16px;
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}
.blaze-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(13, 22, 43, 0.08);
    border-color: #cbd5e1;
}
.blaze-pillar-card.blaze-pc-popular {
    border-color: var(--blaze-orange);
    box-shadow: 0 8px 24px var(--blaze-orange-glow);
}

.blaze-pc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    background: #f1f5f9;
    color: var(--blaze-navy);
}
.blaze-badge-featured {
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%) !important;
    color: #ffffff !important;
}

.blaze-pc-icon {
    font-size: 38px;
    margin-bottom: 16px;
}
.blaze-pc-title {
    font-size: 22px;
    font-weight: 850;
    color: var(--blaze-navy);
    margin: 0 0 12px 0;
}
.blaze-pc-desc {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.55;
    margin: 0 0 20px 0;
    flex: 1;
}
.blaze-pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
}
.blaze-pc-features li {
    font-size: 13.5px;
    color: #334155;
    padding: 6px 0;
    border-bottom: 1px dashed #f1f5f9;
    font-weight: 600;
}
.blaze-pc-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    background: var(--blaze-navy);
    color: #ffffff;
    transition: all 0.25s ease;
}
.blaze-pc-link:hover {
    background: var(--blaze-orange);
    color: #ffffff;
    transform: translateY(-2px);
}
.blaze-pc-popular .blaze-pc-link {
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%);
    box-shadow: 0 4px 12px var(--blaze-orange-glow);
}

/* =========================================================
   4. FEATURED RETAIL PRODUCTS (HOMEPAGE)
========================================================= */
.blaze-collection-section {
    padding: 80px 0;
    background: #ffffff;
}

.blaze-section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.blaze-view-all-btn {
    font-size: 14px;
    font-weight: 800;
    color: var(--blaze-orange);
    text-decoration: none;
    transition: all 0.2s;
}
.blaze-view-all-btn:hover {
    color: var(--blaze-orange-dark);
    transform: translateX(3px);
}

.blaze-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.blaze-product-card {
    background: #ffffff;
    border: 1px solid var(--blaze-border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blaze-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(13, 22, 43, 0.08);
    border-color: #cbd5e1;
}

.blaze-prod-img-wrap {
    position: relative;
    width: 100%;
    height: 290px;
    background: #f8fafc;
    overflow: hidden;
}
.blaze-prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.blaze-product-card:hover .blaze-prod-img-wrap img {
    transform: scale(1.04);
}
.blaze-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #94a3b8;
}

.blaze-badge-sale {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 6px;
    box-shadow: 0 2px 8px var(--blaze-orange-glow);
}

.blaze-prod-info {
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blaze-prod-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 10px 0;
}
.blaze-prod-title a {
    color: var(--blaze-navy);
    text-decoration: none;
    transition: color 0.2s;
}
.blaze-prod-title a:hover {
    color: var(--blaze-orange);
}

.blaze-prod-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
}
.blaze-prod-price {
    font-size: 16.5px;
    font-weight: 850;
    color: var(--blaze-orange);
}
.blaze-quick-buy-btn {
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 8px var(--blaze-orange-glow);
    transition: all 0.2s ease;
}
.blaze-quick-buy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.45);
}

/* =========================================================
   5. B2B WHOLESALE SPOTLIGHT (HOMEPAGE)
========================================================= */
.blaze-wholesale-section {
    padding: 80px 0;
    background: var(--blaze-navy);
    color: #ffffff;
}

.blaze-wholesale-banner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.blaze-badge-tag-light {
    display: inline-block;
    background: rgba(255, 101, 0, 0.18);
    color: var(--blaze-orange);
    border: 1px solid rgba(255, 101, 0, 0.4);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.blaze-wb-content h2 {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 16px 0;
}
.blaze-wb-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0 0 24px 0;
}

.blaze-wb-perks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.blaze-wb-perk {
    font-size: 14.5px;
    color: #e2e8f0;
}
.blaze-wb-perk strong {
    color: var(--blaze-orange);
}

.blaze-wb-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.blaze-wb-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.blaze-wb-item-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease;
}
.blaze-wb-item-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--blaze-orange);
    transform: translateY(-3px);
}
.blaze-wb-item-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}
.blaze-wb-thumb-ph {
    width: 100%;
    height: 150px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #94a3b8;
}
.blaze-wb-item-body {
    padding: 12px;
}
.blaze-wb-item-body h4 {
    font-size: 13.5px;
    margin: 0 0 8px 0;
    color: #ffffff;
    font-weight: 700;
}
.blaze-wb-specs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11.5px;
}
.blaze-moq-tag {
    background: rgba(255, 101, 0, 0.25);
    color: #ff9d5c;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
}
.blaze-tier-price {
    font-weight: 800;
    color: #22c55e;
}

/* =========================================================
   6. PRIVATE LABEL MANUFACTURING PROCESS (HOMEPAGE)
========================================================= */
.blaze-manufacturing-section {
    padding: 80px 0;
    background: var(--blaze-bg-light);
}

.blaze-process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}
.blaze-step-card {
    background: #ffffff;
    border: 1px solid var(--blaze-border);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}
.blaze-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(13, 22, 43, 0.06);
    border-color: var(--blaze-orange);
}
.blaze-step-num {
    font-size: 12px;
    font-weight: 900;
    color: var(--blaze-orange);
    background: #fff7ed;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px auto;
}
.blaze-step-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.blaze-step-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--blaze-navy);
    margin: 0 0 8px 0;
}
.blaze-step-card p {
    font-size: 12.5px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.blaze-manufacturing-cta-row {
    text-align: center;
}

/* =========================================================
   7. INTERACTIVE RFQ FORM (HOMEPAGE & MODALS)
========================================================= */
.blaze-rfq-homepage-section {
    padding: 80px 0;
    background: #ffffff;
}

.blaze-rfq-box-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 46px;
    background: #0d162b;
    border-radius: 20px;
    padding: 48px;
    color: #ffffff;
    box-shadow: 0 20px 48px rgba(13, 22, 43, 0.18);
}

.blaze-subheading-light {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--blaze-orange);
    display: block;
    margin-bottom: 8px;
}
.blaze-heading-light {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 16px 0;
}
.blaze-rfq-info-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 26px 0;
}

.blaze-rfq-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}
.blaze-rfqh-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}
.blaze-rfqh-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #22c55e;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

.blaze-rfq-wa-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}
.blaze-wa-btn-white {
    background: #22c55e;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 6px;
    white-space: nowrap;
    transition: background 0.2s;
}
.blaze-wa-btn-white:hover {
    background: #16a34a;
}

/* RFQ Form Card */
.blaze-b2b-rfq-card,
.blaze-rfq-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 28px;
    color: var(--blaze-slate);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.blaze-rfq-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--blaze-navy);
    margin: 0 0 6px 0;
}
.blaze-rfq-subtitle {
    font-size: 13.5px;
    color: var(--blaze-muted);
    margin: 0 0 20px 0;
}

.blaze-rfq-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.blaze-rfq-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}
.blaze-rfq-field label {
    font-size: 12.5px;
    font-weight: 750;
    color: #334155;
}
.blaze-rfq-field input[type="text"],
.blaze-rfq-field input[type="email"],
.blaze-rfq-field input[type="tel"],
.blaze-rfq-field input[type="number"],
.blaze-rfq-field select,
.blaze-rfq-field textarea {
    border: 1.5px solid var(--blaze-border);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--blaze-slate);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #ffffff;
}
.blaze-rfq-field input:focus,
.blaze-rfq-field select:focus,
.blaze-rfq-field textarea:focus {
    border-color: var(--blaze-orange);
    box-shadow: 0 0 0 3px rgba(255, 101, 0, 0.12);
}
.blaze-rfq-help {
    font-size: 11px;
    color: #94a3b8;
}

.blaze-btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    padding: 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px var(--blaze-orange-glow);
    transition: all 0.25s ease;
}
.blaze-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.45);
}

/* =========================================================
   8. SHOP NOW PAGE CLEANUP & LUXURY CATALOG LAYOUT
========================================================= */
/* Permanently eliminate stray sidebar widgets */
.woocommerce-shop #secondary,
.woocommerce-shop .widget_search,
.woocommerce-shop .widget_pages,
.woocommerce-shop .widget_archive,
.woocommerce-shop .widget_categories,
.woocommerce-shop #sidebar,
.archive.woocommerce #secondary {
    display: none !important;
}

/* Shop Container */
.blaze-native-shop,
.woocommerce-shop .site-main,
.woocommerce-shop main {
    width: 100% !important;
    max-width: 1340px !important;
    margin: 0 auto !important;
    padding: 30px 24px 70px 24px !important;
}

/* Shop Heading */
.blaze-shop-heading {
    text-align: center;
    margin-bottom: 36px;
}
.blaze-shop-breadcrumb {
    font-size: 13px;
    color: var(--blaze-muted);
    margin-bottom: 10px;
}
.blaze-shop-breadcrumb a {
    color: var(--blaze-navy);
    text-decoration: none;
    font-weight: 600;
}
.blaze-shop-heading h1 {
    font-size: 34px;
    font-weight: 900;
    color: var(--blaze-navy);
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}
.blaze-shop-heading p {
    font-size: 15px;
    color: var(--blaze-muted);
    margin: 0;
}

/* WooCommerce Products Grid */
.woocommerce-shop ul.products,
.blaze-native-shop ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.woocommerce-shop ul.products::before,
.woocommerce-shop ul.products::after {
    display: none !important;
}

.woocommerce-shop ul.products li.product,
.blaze-native-shop ul.products li.product {
    display: flex !important;
    flex-direction: column !important;
    background: #ffffff !important;
    border: 1px solid var(--blaze-border) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    padding: 0 0 16px 0 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    margin: 0 !important;
    float: none !important;
    width: 100% !important;
}

.woocommerce-shop ul.products li.product:hover,
.blaze-native-shop ul.products li.product:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(13, 22, 43, 0.09) !important;
    border-color: #cbd5e1 !important;
}

.woocommerce-shop ul.products li.product .woocommerce-loop-product__link,
.blaze-native-shop ul.products li.product .woocommerce-loop-product__link {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-shop ul.products li.product img,
.blaze-native-shop ul.products li.product img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    background: #f8fafc !important;
    transition: transform 0.4s ease !important;
    margin: 0 !important;
    display: block !important;
}
.woocommerce-shop ul.products li.product:hover img,
.blaze-native-shop ul.products li.product:hover img {
    transform: scale(1.03) !important;
}

.woocommerce-shop ul.products li.product .woocommerce-loop-product__title,
.blaze-native-shop ul.products li.product .woocommerce-loop-product__title {
    font-size: 15.5px !important;
    font-weight: 750 !important;
    color: var(--blaze-navy) !important;
    padding: 16px 16px 6px 16px !important;
    margin: 0 !important;
    line-height: 1.35 !important;
    transition: color 0.2s !important;
}
.woocommerce-shop ul.products li.product:hover .woocommerce-loop-product__title,
.blaze-native-shop ul.products li.product:hover .woocommerce-loop-product__title {
    color: var(--blaze-orange) !important;
}

.woocommerce-shop ul.products li.product .price,
.blaze-native-shop ul.products li.product .price {
    font-size: 17px !important;
    font-weight: 850 !important;
    color: var(--blaze-orange) !important;
    padding: 0 16px 14px 16px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.woocommerce-shop ul.products li.product .price del,
.blaze-native-shop ul.products li.product .price del {
    color: #94a3b8 !important;
    font-weight: 500 !important;
    font-size: 14px !important;
}
.woocommerce-shop ul.products li.product .price ins,
.blaze-native-shop ul.products li.product .price ins {
    color: var(--blaze-orange) !important;
    text-decoration: none !important;
}

/* Primary Button in Shop Loop */
.woocommerce-shop ul.products li.product .button,
.blaze-native-shop ul.products li.product .button {
    margin: 0 16px !important;
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%) !important;
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    padding: 11px 16px !important;
    border-radius: 8px !important;
    border: none !important;
    text-align: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px var(--blaze-orange-glow) !important;
    transition: all 0.25s ease !important;
    display: block !important;
}
.woocommerce-shop ul.products li.product .button:hover,
.blaze-native-shop ul.products li.product .button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(255, 101, 0, 0.45) !important;
}

/* Secondary Actions */
.blaze-shop-extra-actions {
    display: flex !important;
    gap: 8px !important;
    margin: 10px 16px 0 16px !important;
}
.blaze-shop-buy-link {
    flex: 1 !important;
    background: var(--blaze-navy) !important;
    color: #ffffff !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    padding: 8px 10px !important;
    border-radius: 6px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
}
.blaze-shop-buy-link:hover {
    background: #1e293b !important;
}
.blaze-shop-wholesale-link {
    flex: 1 !important;
    background: #f8fafc !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    font-size: 12px !important;
    font-weight: 750 !important;
    padding: 8px 10px !important;
    border-radius: 6px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
}
.blaze-shop-wholesale-link:hover {
    border-color: var(--blaze-orange) !important;
    color: var(--blaze-orange) !important;
}

/* Floating Wishlist Button on Product Cards */
.blaze-wishlist-loop {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(4px) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 5 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.2s ease !important;
}
.blaze-wishlist-loop:hover {
    background: #ffffff !important;
    transform: scale(1.1) !important;
}
.blaze-wishlist-loop .blaze-wishlist-heart {
    font-size: 18px !important;
    color: #64748b !important;
    transition: color 0.2s !important;
}
.blaze-wishlist-loop:hover .blaze-wishlist-heart,
.blaze-wishlist-loop.is-active .blaze-wishlist-heart {
    color: #ef4444 !important;
}

/* Sale Badge */
.woocommerce-shop span.onsale,
.blaze-native-shop span.onsale {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    line-height: 1 !important;
    min-height: auto !important;
    min-width: auto !important;
    box-shadow: 0 2px 8px var(--blaze-orange-glow) !important;
    z-index: 5 !important;
}

/* =========================================================
   9. SINGLE PRODUCT PAGE LUXURY POLISH
========================================================= */
body.single-product div.product.blaze-native-product {
    box-sizing: border-box !important;
    width: min(1340px, calc(100% - 40px)) !important;
    margin: 20px auto 60px auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr) !important;
    gap: 50px !important;
    align-items: start !important;
}

body.single-product div.product.blaze-native-product::before,
body.single-product div.product.blaze-native-product::after {
    display: none !important;
}

/* Gallery styling */
body.single-product .woocommerce-product-gallery {
    background: #f8fafc !important;
    border-radius: 16px !important;
    border: 1px solid #e2e8f0 !important;
    padding: 16px !important;
    overflow: hidden !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 100% !important;
    float: none !important;
}

body.single-product .woocommerce-product-gallery__image img {
    border-radius: 12px !important;
    max-height: 580px !important;
    object-fit: contain !important;
    background: #ffffff !important;
    display: block !important;
    width: 100% !important;
}

/* Thumbnails */
body.single-product .flex-control-thumbs {
    display: flex !important;
    gap: 10px !important;
    margin-top: 14px !important;
    padding: 0 !important;
    list-style: none !important;
    overflow-x: auto !important;
}
body.single-product .flex-control-thumbs li {
    flex: 0 0 76px !important;
    border-radius: 8px !important;
    border: 2px solid #e2e8f0 !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}
body.single-product .flex-control-thumbs li img.flex-active,
body.single-product .flex-control-thumbs li:hover {
    border-color: var(--blaze-orange) !important;
}

/* Right Summary info */
body.single-product div.product.blaze-native-product > .summary {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
}

body.single-product .summary .product_title {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    line-height: 1.25 !important;
    margin: 0 0 12px 0 !important;
}

body.single-product .summary .price {
    font-size: 28px !important;
    font-weight: 900 !important;
    color: var(--blaze-orange) !important;
    margin: 0 0 16px 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}
body.single-product .summary .price del {
    color: #94a3b8 !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}
body.single-product .summary .price ins {
    color: var(--blaze-orange) !important;
    text-decoration: none !important;
}

body.single-product .summary .woocommerce-product-details__short-description {
    font-size: 15px !important;
    line-height: 1.65 !important;
    color: #475569 !important;
    margin-bottom: 24px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #e2e8f0 !important;
}

/* Wholesale Callout Box on Single Product */
.blaze-wholesale-product-tier-card {
    background: #fff8f5 !important;
    border: 1.5px solid #fed7aa !important;
    border-radius: 12px !important;
    padding: 18px !important;
    margin: 20px 0 !important;
}
.blaze-wholesale-product-tier-card a.blaze-open-rfq-btn {
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%) !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    border-radius: 6px !important;
    font-weight: 750 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    transition: opacity 0.2s !important;
}
.blaze-wholesale-product-tier-card a.blaze-open-rfq-btn:hover {
    opacity: 0.9;
}

/* Variations: Swatches & Pills */
body.single-product table.variations {
    width: 100% !important;
    border: none !important;
    margin-bottom: 20px !important;
}
body.single-product table.variations th.label {
    display: none !important;
}
body.single-product table.variations td.value {
    padding: 0 0 16px 0 !important;
    border: none !important;
}

body.single-product .blaze-variation-heading {
    font-size: 14px !important;
    font-weight: 750 !important;
    color: #0f172a !important;
    margin-bottom: 8px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}
body.single-product .blaze-variation-selected {
    color: var(--blaze-orange) !important;
    font-weight: 800 !important;
}

body.single-product .blaze-variation-options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}
body.single-product .blaze-variation-option {
    border: 2px solid #e2e8f0 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}
body.single-product .blaze-variation-option:hover,
body.single-product .blaze-variation-option.is-selected {
    border-color: var(--blaze-orange) !important;
    box-shadow: 0 0 0 2px var(--blaze-orange-glow) !important;
    background: #fff7ed !important;
    color: var(--blaze-orange-dark) !important;
}
body.single-product .blaze-variation-option .blaze-variation-image img {
    width: 24px !important;
    height: 24px !important;
    border-radius: 4px !important;
    object-fit: cover !important;
}

/* Quantity & Action Buttons Row */
body.single-product form.cart .woocommerce-variation-add-to-cart,
body.single-product form.cart .woocommerce-variation-add-to-cart-enabled,
body.single-product form.cart .cart {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 20px !important;
    width: 100% !important;
}

/* Quantity Control */
body.single-product form.cart .quantity {
    display: inline-flex !important;
    align-items: center !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    height: 50px !important;
    background: #ffffff !important;
    float: none !important;
    margin: 0 !important;
}
body.single-product form.cart .quantity .blaze-qty-minus,
body.single-product form.cart .quantity .blaze-qty-plus {
    width: 40px !important;
    height: 50px !important;
    background: #f8fafc !important;
    border: none !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #334155 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
body.single-product form.cart .quantity .blaze-qty-minus:hover,
body.single-product form.cart .quantity .blaze-qty-plus:hover {
    background: #e2e8f0 !important;
    color: #0f172a !important;
}
body.single-product form.cart .quantity input.qty {
    width: 50px !important;
    height: 50px !important;
    border: none !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    outline: none !important;
}

/* Add to Cart Button */
body.single-product form.cart .single_add_to_cart_button {
    flex: 2 !important;
    height: 50px !important;
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%) !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 14px var(--blaze-orange-glow) !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 0 !important;
}
body.single-product form.cart .single_add_to_cart_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 101, 0, 0.45) !important;
}

/* Buy Now Button */
body.single-product .blaze-native-buy-now {
    flex: 1.5 !important;
    height: 50px !important;
    background: var(--blaze-navy) !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 !important;
}
body.single-product .blaze-native-buy-now:hover {
    background: #1e293b !important;
    transform: translateY(-2px) !important;
}

/* Hide raw tag dump */
body.single-product .product_meta .tagged_as {
    display: none !important;
}
body.single-product .product_meta {
    margin-top: 24px !important;
    padding-top: 18px !important;
    border-top: 1px solid #e2e8f0 !important;
    font-size: 13px !important;
    color: #64748b !important;
}

/* Tabs & Related Products */
body.single-product div.product.blaze-native-product > .woocommerce-tabs {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    margin-top: 40px !important;
}
body.single-product div.product.blaze-native-product > .related {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
    margin-top: 40px !important;
}

/* =========================================================
   10. FLOATING WHATSAPP BUTTON
========================================================= */
.blaze-floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99990;
}
.blaze-floating-wa a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #22c55e;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 18px 10px 14px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    transition: all 0.25s ease;
    font-weight: 750;
    font-size: 13.5px;
}
.blaze-floating-wa a:hover {
    background: #16a34a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(34, 197, 94, 0.5);
}
.blaze-wa-icon-btn {
    font-size: 20px;
    line-height: 1;
}

/* =========================================================
   10B. WHOLESALE & BULK PORTAL PAGE STYLING
========================================================= */
.blaze-wholesale-page .blaze-page-header-section,
.blaze-privatelabel-page .blaze-page-header-section {
    background: linear-gradient(135deg, #0d162b 0%, #162444 100%);
    padding: 70px 0 60px 0;
    color: #ffffff;
    text-align: center;
    border-bottom: 3px solid var(--blaze-orange);
}
.blaze-page-pill {
    display: inline-block;
    background: rgba(255, 101, 0, 0.18);
    color: var(--blaze-orange);
    border: 1px solid rgba(255, 101, 0, 0.4);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.blaze-pill-gold {
    background: rgba(245, 158, 11, 0.18) !important;
    color: #fbbf24 !important;
    border-color: rgba(245, 158, 11, 0.4) !important;
}
.blaze-page-title {
    font-size: 40px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 auto 16px auto;
    max-width: 860px;
}
.blaze-page-subtitle {
    font-size: 16px;
    line-height: 1.65;
    color: #cbd5e1;
    margin: 0 auto 28px auto;
    max-width: 720px;
}
.blaze-page-quick-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Value Highlights Strip */
.blaze-wholesale-perks-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--blaze-border);
    padding: 30px 0;
}
.blaze-wp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.blaze-wp-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.blaze-wp-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}
.blaze-wp-item strong {
    display: block;
    font-size: 14.5px;
    font-weight: 800;
    color: var(--blaze-navy);
    margin-bottom: 4px;
}
.blaze-wp-item p {
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--blaze-muted);
    margin: 0;
}

/* Volume Tiers Table */
.blaze-pricing-tier-explainer {
    padding: 70px 0;
    background: var(--blaze-bg-light);
}
.blaze-tier-table-wrap {
    background: #ffffff;
    border: 1px solid var(--blaze-border);
    border-radius: 14px;
    overflow-x: auto;
    box-shadow: 0 4px 16px rgba(13, 22, 43, 0.04);
}
.blaze-tier-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}
.blaze-tier-table th {
    background: var(--blaze-navy);
    color: #ffffff;
    padding: 16px 20px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
}
.blaze-tier-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--blaze-border);
    color: #334155;
    font-weight: 600;
}
.blaze-tier-table tr:last-child td {
    border-bottom: none;
}
.blaze-tier-highlight {
    background: #fff7ed;
    color: var(--blaze-orange-dark) !important;
    font-weight: 800 !important;
}

/* Capabilities & Fabric Cards (Private Label) */
.blaze-capabilities-section,
.blaze-fabrics-section,
.blaze-print-lab-section {
    padding: 70px 0;
}
.blaze-caps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.blaze-cap-card {
    background: #ffffff;
    border: 1px solid var(--blaze-border);
    border-radius: 14px;
    padding: 26px 20px;
    text-align: center;
    transition: all 0.3s ease;
}
.blaze-cap-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(13, 22, 43, 0.07);
    border-color: var(--blaze-orange);
}
.blaze-cap-icon {
    font-size: 34px;
    margin-bottom: 12px;
}
.blaze-cap-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--blaze-navy);
    margin: 0 0 8px 0;
}
.blaze-cap-card p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--blaze-muted);
    margin: 0;
}

/* Fabrics Grid */
.blaze-fabrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blaze-fabric-card {
    background: #ffffff;
    border: 1.5px solid var(--blaze-border);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.3s ease;
}
.blaze-fabric-card:hover {
    border-color: var(--blaze-orange);
    box-shadow: 0 8px 24px var(--blaze-orange-glow);
    transform: translateY(-3px);
}
.blaze-fabric-gsm {
    display: inline-block;
    background: #fff7ed;
    color: var(--blaze-orange-dark);
    font-size: 11.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}
.blaze-fabric-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--blaze-navy);
    margin: 0 0 8px 0;
}
.blaze-fabric-card p {
    font-size: 13.5px;
    line-height: 1.55;
    color: #475569;
    margin: 0;
}

/* Print Lab Grid */
.blaze-print-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.blaze-print-card {
    background: #ffffff;
    border: 1px solid var(--blaze-border);
    border-radius: 12px;
    padding: 22px 18px;
    text-align: center;
    transition: all 0.25s ease;
}
.blaze-print-card:hover {
    border-color: var(--blaze-orange);
    transform: translateY(-3px);
}
.blaze-print-card h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--blaze-navy);
    margin: 0 0 6px 0;
}
.blaze-print-card p {
    font-size: 12px;
    color: var(--blaze-muted);
    margin: 0;
}

/* Wholesale Catalog Grid & Cards */
.blaze-wholesale-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
    gap: 28px !important;
    margin: 30px 0 !important;
}

.blaze-wholesale-card {
    background: #ffffff !important;
    border: 1px solid var(--blaze-border) !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: all 0.3s ease !important;
}
.blaze-wholesale-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(13, 22, 43, 0.08) !important;
    border-color: var(--blaze-orange) !important;
}

.blaze-w-card-img-wrap {
    position: relative !important;
    width: 100% !important;
    height: 260px !important;
    background: #f8fafc !important;
    overflow: hidden !important;
}
.blaze-w-card-img-wrap img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.4s ease !important;
}
.blaze-wholesale-card:hover .blaze-w-card-img-wrap img {
    transform: scale(1.04) !important;
}

.blaze-w-moq-badge {
    position: absolute !important;
    top: 12px !important;
    left: 12px !important;
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%) !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
    padding: 4px 10px !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 8px var(--blaze-orange-glow) !important;
}

.blaze-w-card-body {
    padding: 18px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
}
.blaze-w-card-title {
    font-size: 15.5px !important;
    font-weight: 750 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.35 !important;
}
.blaze-w-card-title a {
    color: var(--blaze-navy) !important;
    text-decoration: none !important;
    transition: color 0.2s !important;
}
.blaze-w-card-title a:hover {
    color: var(--blaze-orange) !important;
}

.blaze-w-card-specs {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    font-size: 12px !important;
    color: #64748b !important;
    margin-bottom: 14px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px dashed #f1f5f9 !important;
}

.blaze-w-card-price-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-top: auto !important;
}
.blaze-w-tier-label {
    font-size: 13.5px !important;
    color: #334155 !important;
}
.blaze-w-tier-label strong {
    color: #16a34a !important;
    font-size: 16px !important;
    font-weight: 800 !important;
}

.blaze-btn-inquire {
    background: linear-gradient(135deg, var(--blaze-orange) 0%, var(--blaze-orange-dark) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 8px 14px !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
    cursor: pointer !important;
    box-shadow: 0 2px 8px var(--blaze-orange-glow) !important;
    transition: all 0.2s ease !important;
}
.blaze-btn-inquire:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(255, 101, 0, 0.45) !important;
}

/* RFQ Modal Popup */
.blaze-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(13, 22, 43, 0.75) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 100000 !important;
    display: none;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}
.blaze-modal-dialog {
    background: #ffffff !important;
    border-radius: 16px !important;
    width: 100% !important;
    max-width: 620px !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    position: relative !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3) !important;
}
.blaze-modal-close {
    position: absolute !important;
    top: 16px !important;
    right: 18px !important;
    font-size: 26px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    color: #94a3b8 !important;
    line-height: 1 !important;
    transition: color 0.2s !important;
    z-index: 10 !important;
}
.blaze-modal-close:hover {
    color: #0f172a !important;
}

/* =========================================================
   11. RESPONSIVE BREAKPOINTS
========================================================= */
@media (max-width: 1200px) {
    .blaze-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .blaze-process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .blaze-topbar-luxury .blaze-topbar-center {
        display: none;
    }
    .blaze-header-row {
        grid-template-columns: auto 1fr auto;
    }
    .blaze-nav-centered {
        display: none;
    }
    .blaze-mobile-toggle {
        display: flex;
    }
    .blaze-search-pill {
        display: none;
    }
    .blaze-header-cta {
        display: none;
    }
    .blaze-hero-title {
        font-size: 38px;
    }
    .blaze-pillars-grid {
        grid-template-columns: 1fr;
    }
    .blaze-wholesale-banner {
        grid-template-columns: 1fr;
    }
    .blaze-rfq-box-grid {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    body.single-product div.product.blaze-native-product {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    .blaze-topbar-luxury {
        display: none;
    }
    .blaze-hero-title {
        font-size: 30px;
    }
    .blaze-hero-desc {
        font-size: 14.5px;
    }
    .blaze-hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .blaze-stat-item {
        border-right: none;
        padding: 10px 0;
    }
    .blaze-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .blaze-prod-img-wrap {
        height: 200px;
    }
    .blaze-process-steps {
        grid-template-columns: 1fr;
    }
    .blaze-rfq-row {
        grid-template-columns: 1fr;
    }
    .blaze-slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }
    .blaze-slider-arrow.blaze-prev { left: 10px; }
    .blaze-slider-arrow.blaze-next { right: 10px; }
    .blaze-floating-wa .blaze-wa-bubble-text {
        display: none;
    }
    .blaze-floating-wa a {
        padding: 12px;
        border-radius: 50%;
    }
}
