/* ── Heatwave Transfers — Main Stylesheet ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{--hw-red:#dc2626;--hw-dark:#0e0e0e;--hw-card:#111;--hw-border:#1e1e1e;--hw-border2:#2a2a2a;--hw-text:#e5e5e5;--hw-muted:#9ca3af;--hw-dim:#6b7280}
html{scroll-behavior:smooth}
body{background:var(--hw-dark);color:var(--hw-text);font-family:'Inter',sans-serif;font-size:16px;line-height:1.6}
a{color:inherit;text-decoration:none}
img{max-width:100%}
.hw-red{color:var(--hw-red)}
.hw-green{color:#4ade80}

/* ── Nav ── */
.hw-header{position:sticky;top:0;z-index:100;background:rgba(14,14,14,.92);backdrop-filter:blur(12px);border-bottom:1px solid #151515}
.hw-nav{max-width:1200px;margin:0 auto;padding:0 1.5rem;height:60px;display:flex;align-items:center;gap:2rem}
.hw-logo{display:flex;align-items:center;gap:.5rem}
.hw-logo img{height:36px;object-fit:contain}
.hw-logo-text{font-family:'Bebas Neue',sans-serif;font-size:1.4rem;letter-spacing:.1em;color:#fff}
.hw-nav-links{display:flex;list-style:none;gap:1.5rem;align-items:center;margin-left:auto}
.hw-nav-links a{font-size:.8rem;font-weight:600;color:#9ca3af;letter-spacing:.06em;text-transform:uppercase;transition:color .2s}
.hw-nav-links a:hover{color:#fff}
.hw-nav-cta{background:var(--hw-red)!important;color:#fff!important;padding:.35rem .9rem;border-radius:6px;transition:background .2s!important}
.hw-nav-cta:hover{background:#b91c1c!important}
.hw-cart-btn{position:relative;color:#9ca3af;margin-left:.5rem;transition:color .2s;display:flex;align-items:center}
.hw-cart-btn:hover{color:#fff}
.hw-cart-count{position:absolute;top:-6px;right:-8px;background:var(--hw-red);color:#fff;font-size:10px;font-weight:700;border-radius:999px;min-width:16px;height:16px;display:flex;align-items:center;justify-content:center;padding:0 3px}
.hw-mobile-toggle{display:none;background:none;border:none;color:#9ca3af;cursor:pointer;margin-left:.5rem}
@media(max-width:768px){
  .hw-nav-links{display:none;flex-direction:column;gap:0;position:absolute;top:60px;left:0;right:0;background:#0e0e0e;border-bottom:1px solid #1a1a1a;padding:1rem 1.5rem}
  .hw-nav-links.open{display:flex}
  .hw-nav-links li{border-bottom:1px solid #1a1a1a}
  .hw-nav-links a{display:block;padding:.75rem 0}
  .hw-mobile-toggle{display:block}
}

/* ── Hero ── */
.hw-hero{min-height:92vh;display:flex;align-items:center;justify-content:center;text-align:center;padding:4rem 1.5rem;background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(220,38,38,.12) 0%,transparent 70%)}
.hw-hero-inner{max-width:700px}
.hw-badge{display:inline-block;background:rgba(220,38,38,.1);border:1px solid rgba(220,38,38,.25);color:var(--hw-red);font-size:.7rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;padding:.3rem .8rem;border-radius:999px;margin-bottom:1.5rem}
.hw-hero-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(3.5rem,12vw,7rem);line-height:1;letter-spacing:.04em;color:#fff;margin-bottom:1.5rem}
.hw-hero-sub{font-size:1.05rem;color:#9ca3af;max-width:520px;margin:0 auto 2.5rem}
.hw-hero-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}

/* ── Buttons ── */
.hw-btn-primary{background:var(--hw-red);color:#fff;font-weight:800;font-size:.75rem;letter-spacing:.12em;text-transform:uppercase;padding:.8rem 1.8rem;border-radius:10px;border:none;cursor:pointer;transition:background .2s,box-shadow .2s;display:inline-flex;align-items:center;gap:.5rem}
.hw-btn-primary:hover{background:#b91c1c;box-shadow:0 0 24px rgba(220,38,38,.3)}
.hw-btn-outline{border:1px solid #333;color:#d1d5db;background:transparent;font-weight:700;font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;padding:.8rem 1.8rem;border-radius:10px;cursor:pointer;transition:border-color .2s,color .2s;display:inline-flex;align-items:center}
.hw-btn-outline:hover{border-color:#555;color:#fff}
.hw-btn-ghost{border:1px solid transparent;color:#6b7280;background:transparent;font-weight:700;font-size:.75rem;letter-spacing:.1em;text-transform:uppercase;padding:.8rem 1.8rem;border-radius:10px;cursor:pointer;transition:color .2s;display:inline-flex;align-items:center}
.hw-btn-ghost:hover{color:#fff}
.hw-btn-lg{padding:1rem 2.2rem;font-size:.8rem}
.hw-btn-full{width:100%;justify-content:center;margin-top:.25rem}
.hw-btn-sm{background:var(--hw-red);color:#fff;font-weight:700;font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;padding:.4rem .9rem;border-radius:7px;border:none;cursor:pointer;transition:background .2s}
.hw-btn-sm:hover{background:#b91c1c}

/* ── Trust bar ── */
.hw-trust-bar{background:#0a0a0a;border-top:1px solid #151515;border-bottom:1px solid #151515}
.hw-trust-inner{max-width:900px;margin:0 auto;padding:.9rem 1.5rem;display:flex;justify-content:center;flex-wrap:wrap;gap:2rem}
.hw-trust-item{display:flex;align-items:center;gap:.5rem;font-size:.78rem;font-weight:600;color:#9ca3af;letter-spacing:.04em}
.hw-trust-item svg{color:var(--hw-red)}

/* ── Sections ── */
.hw-container{max-width:1100px;margin:0 auto;padding:0 1.5rem}
.hw-container-sm{max-width:720px}
.hw-section-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(2rem,6vw,3.5rem);letter-spacing:.06em;text-align:center;margin-bottom:.5rem}
.hw-section-sub{text-align:center;color:#9ca3af;margin-bottom:3rem;font-size:.95rem}
.hw-bg-alt{background:#0a0a0a}

/* ── Products Overview ── */
.hw-products-overview{padding:5rem 1.5rem;background:#0d0d0d}
.hw-product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.hw-product-card{background:var(--hw-card);border:1px solid var(--hw-border);border-radius:20px;padding:2rem;position:relative;transition:border-color .2s}
.hw-product-card:hover{border-color:#2a2a2a}
.hw-product-icon{margin-bottom:1.25rem;opacity:.85}
.hw-product-badge{position:absolute;top:1.25rem;right:1.25rem;font-size:.65rem;font-weight:700;letter-spacing:.08em;padding:.25rem .6rem;border-radius:6px}
.hw-badge-red{background:rgba(220,38,38,.15);border:1px solid rgba(220,38,38,.3);color:var(--hw-red)}
.hw-badge-green{background:rgba(34,197,94,.1);border:1px solid rgba(34,197,94,.2);color:#4ade80}
.hw-badge-blue{background:rgba(96,165,250,.1);border:1px solid rgba(96,165,250,.2);color:#60a5fa}
.hw-product-card h3{font-family:'Bebas Neue',sans-serif;font-size:1.5rem;letter-spacing:.06em;color:#fff;margin-bottom:.6rem}
.hw-product-card p{font-size:.85rem;color:#9ca3af;line-height:1.6;margin-bottom:1rem}
.hw-product-tiers{list-style:none;margin-bottom:.75rem}
.hw-product-tiers li{display:flex;justify-content:space-between;font-size:.8rem;padding:.25rem 0;border-bottom:1px solid #1a1a1a;color:#9ca3af}
.hw-product-tiers li:last-child{border:none}
.hw-product-tiers strong{color:#d1d5db}
.hw-product-note{font-size:.75rem;color:#6b7280;margin-bottom:.75rem}
.hw-product-link{font-size:.8rem;font-weight:700;color:var(--hw-red);letter-spacing:.04em;transition:color .2s}
.hw-product-link:hover{color:#f87171}

/* ── Order Builder ── */
.hw-order-builder{padding:5rem 1.5rem;background:#0e0e0e}
.hw-order-grid{display:grid;grid-template-columns:1fr 380px;gap:2.5rem;align-items:start}
@media(max-width:900px){.hw-order-grid{grid-template-columns:1fr}}
.hw-step-panel{background:var(--hw-card);border:1px solid var(--hw-border);border-radius:16px;padding:1.5rem;margin-bottom:1.25rem}
.hw-step-label{font-size:.7rem;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:#6b7280;margin-bottom:1rem}

/* Upload zone */
.hw-upload-zone{border:2px dashed #2a2a2a;border-radius:12px;padding:2.5rem 1.5rem;display:flex;flex-direction:column;align-items:center;text-align:center;gap:.5rem;cursor:pointer;transition:border-color .2s,background .2s}
.hw-upload-zone:hover{border-color:#444;background:#111}
.hw-upload-zone svg{color:#4b5563;opacity:.6}
.hw-upload-text{font-size:.95rem;color:#d1d5db;font-weight:600}
.hw-upload-hint{font-size:.8rem;color:#6b7280}
.hw-upload-types{font-size:.72rem;color:#4b5563;margin-top:.25rem}
.hw-apparel-upload{padding:1.25rem 1.5rem}
.hw-apparel-upload p{font-size:.85rem;color:#6b7280}
.hw-apparel-upload p strong{color:#9ca3af}
.hw-preview-wrap{display:flex;align-items:center;gap:1rem;background:#0a0a0a;border:1px solid #1e1e1e;border-radius:12px;padding:1rem}
.hw-preview-wrap img,.hw-apparel-preview img{width:80px;height:80px;object-fit:contain;border-radius:8px;background:#181818;border:1px solid #2a2a2a;padding:3px}
.hw-preview-info,.hw-preview-meta{display:flex;flex-direction:column;gap:.35rem}
.hw-file-name{font-size:.8rem;color:#d1d5db;font-weight:600;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:200px}
.hw-remove-btn{background:none;border:none;color:#6b7280;cursor:pointer;font-size:.75rem;font-weight:600;text-align:left;padding:0;transition:color .2s}
.hw-remove-btn:hover{color:var(--hw-red)}
.hw-ready-badge{font-size:.7rem;font-weight:700;color:#4ade80;display:flex;align-items:center;gap:.25rem}
.hw-apparel-preview{display:flex;align-items:center;gap:1rem;background:#0a0a0a;border:1px solid #1e1e1e;border-radius:12px;padding:1rem}

/* Size grid */
.hw-size-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.6rem}
.hw-size-btn{background:#111;border:1px solid #2a2a2a;border-radius:10px;padding:.75rem .5rem;color:#9ca3af;font-size:.72rem;font-weight:700;cursor:pointer;transition:all .2s;text-align:center;line-height:1.4}
.hw-size-btn small{display:block;font-size:.65rem;color:#6b7280;font-weight:500}
.hw-size-btn strong{display:block;font-size:.78rem;color:#d1d5db}
.hw-size-btn.hw-active,.hw-size-btn:hover{border-color:var(--hw-red);color:#fff}
.hw-size-btn.hw-active{background:rgba(220,38,38,.1)}
.hw-custom-btn.hw-active strong,.hw-custom-btn:hover strong{color:var(--hw-red)}

/* Custom size panel */
.hw-custom-size{margin-top:.85rem;background:#141414;border:1px solid #2a2a2a;border-radius:12px;padding:1rem}
.hw-custom-size-row{display:flex;align-items:flex-end;gap:.75rem}
.hw-custom-field{flex:1}
.hw-custom-field label{display:block;font-size:.68rem;color:#6b7280;margin-bottom:.3rem;font-weight:600}
.hw-custom-field input{width:100%;background:#0e0e0e;border:1px solid #333;border-radius:8px;color:#fff;text-align:center;font-size:1.05rem;font-weight:700;padding:.5rem;-moz-appearance:textfield}
.hw-custom-field input:focus{outline:none;border-color:var(--hw-red)}
.hw-custom-x{color:#6b7280;font-weight:700;padding-bottom:.6rem}
.hw-custom-price-box{text-align:right;padding-bottom:.15rem}
.hw-custom-price-label{display:block;font-size:.68rem;color:#6b7280}
.hw-custom-price-box strong{font-size:1.15rem;font-weight:900}
.hw-custom-note{font-size:.72rem;color:#6b7280;line-height:1.5;margin-top:.6rem}
.hw-custom-note a{color:var(--hw-red);text-decoration:none}
.hw-custom-note a:hover{text-decoration:underline}

/* Qty */
.hw-qty-row{display:flex;align-items:center;gap:.75rem;margin-bottom:1rem}
.hw-qty-sm{margin-bottom:.75rem}
.hw-qty-btn{width:40px;height:40px;background:#1a1a1a;border:1px solid #2a2a2a;border-radius:8px;color:#fff;font-size:1.1rem;font-weight:700;cursor:pointer;transition:background .2s;flex-shrink:0}
.hw-qty-btn:hover{background:#252525}
.hw-qty-input{flex:1;height:40px;background:#0e0e0e;border:1px solid #2a2a2a;border-radius:8px;text-align:center;color:#fff;font-weight:700;font-size:1rem;-moz-appearance:textfield}
.hw-qty-input::-webkit-inner-spin-button,.hw-qty-input::-webkit-outer-spin-button{-webkit-appearance:none}
.hw-qty-presets{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1rem}
.hw-qty-presets button{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:7px;color:#6b7280;font-size:.72rem;font-weight:700;padding:.3rem .65rem;cursor:pointer;transition:all .2s}
.hw-qty-presets button:hover{border-color:#444;color:#d1d5db}
.hw-sizerun-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:.5rem}
.hw-sizerun-head .hw-sizerun-label{font-size:.7rem;text-transform:uppercase;letter-spacing:.12em;color:#6b7280}
.hw-sizerun-head .hw-sizerun-total{font-size:.75rem;font-weight:700;color:#9ca3af}
.hw-size-run{display:grid;grid-template-columns:repeat(3,1fr);gap:.5rem;margin-bottom:1rem}
.hw-size-cell{background:#0e0e0e;border:1px solid #2a2a2a;border-radius:8px;padding:.5rem}
.hw-size-cell label{display:block;text-align:center;font-size:.68rem;font-weight:700;color:#9ca3af;margin-bottom:.35rem}
.hw-size-stepper{display:flex;align-items:center;gap:.25rem}
.hw-size-stepper button{width:24px;height:28px;background:#1a1a1a;border:1px solid #2a2a2a;border-radius:6px;color:#fff;font-size:.9rem;font-weight:700;cursor:pointer;transition:background .2s;flex-shrink:0}
.hw-size-stepper button:hover{background:#252525}
.hw-size-stepper input{width:100%;min-width:0;height:28px;background:#0a0a0a;border:1px solid #2a2a2a;border-radius:6px;text-align:center;color:#fff;font-weight:700;font-size:.85rem;-moz-appearance:textfield}
.hw-size-stepper input::-webkit-inner-spin-button,.hw-size-stepper input::-webkit-outer-spin-button{-webkit-appearance:none}

/* Summary card */
.hw-order-right{position:sticky;top:80px}
.hw-summary-card{background:var(--hw-card);border:1px solid var(--hw-border);border-radius:20px;padding:1.5rem}
.hw-summary-card h3{font-weight:700;color:#fff;margin-bottom:1rem;font-size:1rem}
.hw-summary-row{display:flex;justify-content:space-between;align-items:center;font-size:.85rem;margin-bottom:.6rem}
.hw-summary-row span:first-child{color:#9ca3af}
.hw-summary-row strong{color:#d1d5db;font-weight:700}
.hw-discount-row strong{color:#4ade80}
.hw-summary-divider{border-top:1px solid #1e1e1e;margin:.75rem 0}
.hw-summary-total{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem}
.hw-summary-total span{color:#9ca3af;font-weight:600;font-size:.9rem}
.hw-summary-total strong{font-size:1.5rem;font-weight:900}
.hw-summary-total .hw-red{color:var(--hw-red)}
.hw-discount-badge{background:rgba(34,197,94,.08);border:1px solid rgba(34,197,94,.15);color:#4ade80;font-size:.72rem;font-weight:700;text-align:center;padding:.4rem;border-radius:8px;margin-bottom:1rem}
.hw-placement-row .hw-placement-badge{font-size:.7rem;background:rgba(127,0,0,.25);border:1px solid rgba(220,38,38,.3);color:#f87171;font-weight:700;padding:.2rem .5rem;border-radius:4px}

/* Design preview in summary */
.hw-design-preview{display:flex;align-items:center;gap:.75rem;border-radius:12px;border:1px dashed #222;background:#0a0a0a;padding:.75rem;margin-bottom:1rem;transition:border-color .2s,background .2s}
.hw-design-preview:not(.hw-no-design){border-style:solid;border-color:#2a2a2a;background:#0e0e0e}
.hw-design-placeholder{width:48px;height:48px;background:#111;border:1px solid #222;border-radius:8px;display:flex;align-items:center;justify-content:center;flex-shrink:0;color:#4b5563}
.hw-no-design-text{font-size:.75rem;color:#6b7280;font-weight:500;margin-bottom:.25rem}
.hw-upload-shortcut{background:none;border:none;color:var(--hw-red);font-size:.75rem;font-weight:700;cursor:pointer;padding:0;transition:color .2s}
.hw-upload-shortcut:hover{color:#f87171}

/* Tier callout */
.hw-tier-callout{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:8px;padding:.6rem;text-align:center;font-size:.72rem;font-weight:700;color:#9ca3af;margin-bottom:1rem}
.hw-artwork-warn{font-size:.72rem;color:rgba(202,138,4,.8);text-align:center;margin-top:.5rem;display:flex;align-items:center;justify-content:center;gap:.4rem}

/* Shipping calc */
.hw-shipping-calc{background:#0a0a0a;border:1px solid #1a1a1a;border-radius:10px;padding:1rem;margin-bottom:1rem}
.hw-shipping-header{font-size:.8rem;font-weight:700;color:#9ca3af;margin-bottom:.75rem}
.hw-shipping-inputs{display:flex;gap:.5rem;margin-bottom:.5rem}
.hw-shipping-inputs input,.hw-shipping-inputs select{flex:1;background:#111;border:1px solid #2a2a2a;border-radius:7px;color:#fff;font-size:.8rem;padding:.4rem .6rem}
.hw-shipping-inputs select option{background:#111}
.hw-shipping-result{font-size:.78rem;color:#9ca3af;margin-top:.5rem;padding:.5rem;background:#111;border-radius:6px}
.hw-secure-note{font-size:.7rem;color:#4b5563;text-align:center;margin-top:.5rem}

/* ── Apparel sections ── */
.hw-apparel-section{padding:5rem 1.5rem;border-top:1px solid #1a1a1a}
.hw-apparel-grid{display:grid;grid-template-columns:1fr 360px;gap:2.5rem;align-items:start}
@media(max-width:900px){.hw-apparel-grid{grid-template-columns:1fr}}
.hw-apparel-right{position:sticky;top:80px}
.hw-new-badge{display:inline-block;background:rgba(220,38,38,.1);border:1px solid rgba(220,38,38,.25);color:var(--hw-red);font-size:.65rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;padding:.2rem .6rem;border-radius:5px;margin-bottom:.75rem;text-align:center;width:100%;max-width:max-content;display:block;margin:0 auto .5rem}

/* Placement */
.hw-placement-wrap{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;align-items:start}
@media(max-width:600px){.hw-placement-wrap{grid-template-columns:1fr}}
.hw-garment-diagram{display:flex;flex-direction:column;align-items:center;gap:.75rem}
.hw-view-toggle{display:flex;gap:.4rem}
.hw-view-toggle button{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:7px;color:#9ca3af;font-size:.72rem;font-weight:700;padding:.35rem .8rem;cursor:pointer;transition:all .2s}
.hw-view-toggle button.hw-active{background:rgba(220,38,38,.15);border-color:rgba(220,38,38,.4);color:var(--hw-red)}
.hw-garment-svg{width:120px;height:auto}
.hw-dot{cursor:pointer;transition:all .2s}
.hw-placement-grid{display:flex;flex-direction:column;gap:.4rem}
.hw-placement-btn{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:8px;color:#9ca3af;font-size:.75rem;font-weight:600;padding:.45rem .75rem;cursor:pointer;text-align:left;transition:all .2s}
.hw-placement-btn.hw-active{background:rgba(220,38,38,.1);border-color:rgba(220,38,38,.35);color:var(--hw-red)}
.hw-placement-btn:hover:not(.hw-active){border-color:#444;color:#d1d5db}

/* Tier grid */
.hw-tier-grid{display:flex;flex-direction:column;gap:.75rem}
.hw-tier-card{background:#0e0e0e;border:1px solid #1e1e1e;border-radius:12px;padding:1rem 1.25rem;display:flex;align-items:center;gap:1rem}
.hw-tier-mid{border-color:#2a2a2a}
.hw-tier-best{border-color:rgba(74,222,128,.2);background:rgba(74,222,128,.03)}
.hw-tier-range{font-size:.8rem;color:#9ca3af;flex:1}
.hw-tier-price{font-size:1.1rem;font-weight:800;color:#d1d5db}
.hw-tier-save{font-size:.7rem;font-weight:700;color:#4ade80;background:rgba(74,222,128,.1);padding:.2rem .5rem;border-radius:5px}

/* ── Pricing Table ── */
.hw-pricing{padding:5rem 1.5rem;background:#0d0d0d;border-top:1px solid #1a1a1a}
.hw-pricing-table-wrap{overflow-x:auto;margin-bottom:1rem}
.hw-pricing-table{width:100%;border-collapse:collapse;font-size:.85rem}
.hw-pricing-table th{background:#111;border:1px solid #1e1e1e;padding:.75rem 1rem;color:#9ca3af;font-weight:700;font-size:.72rem;letter-spacing:.06em;text-transform:uppercase;text-align:left}
.hw-pricing-table td{border:1px solid #1a1a1a;padding:.75rem 1rem;color:#d1d5db}
.hw-pricing-table tr:hover td{background:#0f0f0f}
.hw-row-featured td{background:rgba(220,38,38,.05);color:#fff;font-weight:600}
.hw-row-featured td:first-child{color:var(--hw-red)}
.hw-pricing-note{font-size:.8rem;color:#6b7280;text-align:center}
.hw-pricing-note a{color:var(--hw-red)}

/* ── How It Works ── */
.hw-how-it-works{padding:5rem 1.5rem;background:#0e0e0e;border-top:1px solid #1a1a1a}
.hw-steps-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1.5rem}
.hw-step-card{background:var(--hw-card);border:1px solid var(--hw-border);border-radius:16px;padding:1.75rem;text-align:center}
.hw-step-num{width:40px;height:40px;background:rgba(220,38,38,.15);border:1px solid rgba(220,38,38,.3);border-radius:50%;display:flex;align-items:center;justify-content:center;font-family:'Bebas Neue',sans-serif;font-size:1.1rem;color:var(--hw-red);margin:0 auto 1rem}
.hw-step-card h3{font-weight:700;color:#fff;margin-bottom:.5rem;font-size:.95rem}
.hw-step-card p{font-size:.8rem;color:#9ca3af;line-height:1.6}

/* ── Quote section ── */
.hw-quote-section{padding:5rem 1.5rem;background:#0a0a0a;border-top:1px solid #1a1a1a}
.hw-quote-wrap{background:var(--hw-card);border:1px solid var(--hw-border);border-radius:20px;padding:2rem}
.hw-quote-form{display:flex;flex-direction:column;gap:1.25rem}
.hw-form-row{display:grid;grid-template-columns:1fr 1fr;gap:1rem}
@media(max-width:600px){.hw-form-row{grid-template-columns:1fr}}
.hw-form-group{display:flex;flex-direction:column;gap:.4rem}
.hw-form-group label{font-size:.72rem;font-weight:700;color:#9ca3af;letter-spacing:.06em;text-transform:uppercase}
.hw-form-group input,.hw-form-group select,.hw-form-group textarea{background:#0e0e0e;border:1px solid #2a2a2a;border-radius:8px;color:#fff;font-size:.9rem;padding:.65rem .85rem;transition:border-color .2s;font-family:inherit}
.hw-form-group input:focus,.hw-form-group select:focus,.hw-form-group textarea:focus{outline:none;border-color:rgba(220,38,38,.5)}
.hw-form-group select option{background:#0e0e0e}
.hw-full-width{grid-column:1/-1}
.hw-quote-success{text-align:center;padding:3rem}
.hw-success-icon{font-size:3rem;color:#4ade80;margin-bottom:1rem}
.hw-quote-success h3{font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:.5rem}
.hw-quote-success p{color:#9ca3af}

/* ── Contact ── */
.hw-contact{padding:5rem 1.5rem;background:#0e0e0e;border-top:1px solid #1a1a1a}
.hw-contact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:1.5rem}
.hw-contact-item{background:var(--hw-card);border:1px solid var(--hw-border);border-radius:16px;padding:1.5rem;text-align:center}
.hw-contact-icon{font-size:1.5rem;margin-bottom:.75rem}
.hw-contact-item h4{font-weight:700;color:#fff;margin-bottom:.35rem;font-size:.9rem}
.hw-contact-item p,.hw-contact-item a{font-size:.85rem;color:#9ca3af}
.hw-contact-item a:hover{color:var(--hw-red)}

/* ── Footer ── */
.hw-footer{background:#080808;border-top:1px solid #151515;padding:3.5rem 1.5rem 2rem}
.hw-footer-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1.5fr;gap:2.5rem}
@media(max-width:768px){.hw-footer-inner{grid-template-columns:1fr 1fr}}
@media(max-width:480px){.hw-footer-inner{grid-template-columns:1fr}}
.hw-footer-logo-text{font-family:'Bebas Neue',sans-serif;font-size:1.4rem;letter-spacing:.1em;color:#fff;margin-bottom:.5rem}
.hw-footer-tagline{font-size:.82rem;color:#6b7280;margin-bottom:.75rem;line-height:1.5}
.hw-footer-copy{font-size:.75rem;color:#4b5563}
.hw-footer-links h4{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#6b7280;margin-bottom.75rem}
.hw-footer-links ul{list-style:none;margin-top:.75rem}
.hw-footer-links li{margin-bottom:.4rem}
.hw-footer-links a{font-size:.82rem;color:#6b7280;transition:color .2s}
.hw-footer-links a:hover{color:#9ca3af}
.hw-footer-contact h4{font-size:.72rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#6b7280;margin-bottom:.75rem}
.hw-footer-contact p,.hw-footer-contact a{font-size:.82rem;color:#6b7280;line-height:1.8}
.hw-footer-contact a:hover{color:var(--hw-red)}

/* ── Page content ── */
.hw-page-content{padding:4rem 1.5rem;min-height:60vh}
.hw-page-title{font-family:'Bebas Neue',sans-serif;font-size:2.5rem;letter-spacing:.06em;color:#fff;margin-bottom:1.5rem}
.hw-page-body{color:#9ca3af;line-height:1.8}
.hw-page-body p{margin-bottom:1rem}

/* ── Gang Sheet Builder ── */
.hw-gang{display:grid;grid-template-columns:240px 1fr 230px;min-height:620px;background:#0e0e0e;border:1px solid var(--hw-border);border-radius:16px;overflow:hidden;margin:1.5rem 0}
@media(max-width:1024px){.hw-gang{grid-template-columns:1fr}}
.hw-gang-left,.hw-gang-right{background:#111;display:flex;flex-direction:column}
.hw-gang-left{border-right:1px solid #1e1e1e}
.hw-gang-right{border-left:1px solid #1e1e1e}
.hw-gang-block{padding:1rem;border-bottom:1px solid #1e1e1e}
.hw-gang-h{font-size:.66rem;font-weight:700;color:#6b7280;text-transform:uppercase;letter-spacing:.12em;margin:0 0 .75rem}
.hw-gang-sub{font-size:.7rem;color:#4b5563;line-height:1.5;margin:.5rem 0 0}
.hw-gang-sizes{display:flex;flex-direction:column;gap:.4rem}
.hw-gang-size{display:flex;justify-content:space-between;align-items:center;padding:.5rem .75rem;border:1px solid #2a2a2a;background:#1a1a1a;border-radius:8px;color:#9ca3af;font-size:.82rem;cursor:pointer;transition:all .2s}
.hw-gang-size:hover{border-color:#3a3a3a}
.hw-gang-size.hw-active{border-color:var(--hw-red);background:rgba(220,38,38,.12);color:#fff}
.hw-gang-size-price{color:#6b7280}
.hw-gang-size.hw-active .hw-gang-size-price{color:#f87171}
.hw-gang-upload{width:100%;display:flex;align-items:center;justify-content:center;gap:.5rem;background:var(--hw-red);color:#fff;border:none;border-radius:8px;padding:.6rem;font-size:.82rem;font-weight:700;cursor:pointer;transition:background .2s}
.hw-gang-upload:hover{background:#b91c1c}
.hw-gang-tool{width:100%;display:flex;align-items:center;gap:.5rem;justify-content:center;background:#1a1a1a;border:1px solid #2a2a2a;border-radius:8px;color:#9ca3af;font-size:.78rem;padding:.5rem;cursor:pointer;transition:all .2s;margin-bottom:.4rem}
.hw-gang-tool:last-child{margin-bottom:0}
.hw-gang-tool:hover{background:#222;color:#fff}
.hw-gang-tool.hw-active{border-color:rgba(220,38,38,.5);background:rgba(220,38,38,.12);color:#f87171}
.hw-gang-tool-danger{color:#f87171;border-color:rgba(220,38,38,.3);background:rgba(220,38,38,.08)}
.hw-gang-tool-danger:hover{background:rgba(220,38,38,.18);color:#fca5a5}
.hw-gang-li{display:flex;align-items:center;gap:.5rem;padding:.4rem;border:1px solid transparent;border-radius:6px;cursor:pointer;transition:all .15s}
.hw-gang-li:hover{background:#1a1a1a}
.hw-gang-li.hw-active{border-color:rgba(220,38,38,.5);background:rgba(220,38,38,.12)}
.hw-gang-li.hw-ovl{border-color:rgba(234,179,8,.4)}
.hw-gang-li-thumb{width:32px;height:32px;border-radius:4px;background:#222;overflow:hidden;flex-shrink:0}
.hw-gang-li-thumb img{width:100%;height:100%;object-fit:contain}
.hw-gang-li-meta{flex:1;min-width:0}
.hw-gang-li-meta p{margin:0;font-size:.72rem;color:#d1d5db;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hw-gang-li-meta span{font-size:.68rem;color:#6b7280}
.hw-gang-li-warn{color:#eab308;font-size:.75rem}
.hw-gang-li-del{margin-left:auto;background:none;border:none;color:#4b5563;cursor:pointer;font-size:.9rem;line-height:1}
.hw-gang-li-del:hover{color:var(--hw-red)}
.hw-gang-main{display:flex;flex-direction:column;background:#0e0e0e;min-width:0}
.hw-gang-topbar{display:flex;align-items:center;justify-content:space-between;padding:.7rem 1.25rem;border-bottom:1px solid #1a1a1a;background:#111;flex-wrap:wrap;gap:.5rem}
.hw-gang-topbar-left{display:flex;align-items:center;gap:.6rem;font-size:.8rem;color:#9ca3af}
.hw-gang-topbar-left strong{color:#fff}
.hw-gang-sep{color:#374151}
.hw-gang-overlap{display:inline-flex;align-items:center;gap:.25rem;background:rgba(234,179,8,.18);border:1px solid rgba(234,179,8,.4);color:#eab308;font-size:.7rem;padding:.15rem .6rem;border-radius:999px}
.hw-gang-topbar-right{display:flex;align-items:center;gap:.5rem;font-size:.72rem;color:#6b7280}
.hw-gang-util-bar{width:90px;height:6px;background:#222;border-radius:999px;overflow:hidden}
.hw-gang-util-bar>div{height:100%;width:0;background:#22c55e;transition:width .2s,background .2s}
.hw-gang-util-pct{font-weight:700}
.hw-gang-stage{flex:1;overflow:auto;display:flex;align-items:flex-start;justify-content:center;padding:2rem}
.hw-gang-canvas{position:relative;background:#fff;box-shadow:0 0 0 1px #333,0 8px 40px rgba(0,0,0,.6);background-image:linear-gradient(rgba(200,200,200,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(200,200,200,.18) 1px,transparent 1px);flex-shrink:0;touch-action:none}
.hw-gang-canvas.hw-gang-nogrid{background-image:none}
.hw-gang-drop-hint{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#bbb;pointer-events:none;gap:.5rem}
.hw-gang-drop-hint span{font-size:1.8rem;opacity:.4}
.hw-gang-drop-hint p{font-size:.75rem;opacity:.55;text-align:center;margin:0;line-height:1.5}
.hw-gang-it{position:absolute;border:1px dashed rgba(0,0,0,.25);box-sizing:border-box;cursor:move;touch-action:none}
.hw-gang-it img{width:100%;height:100%;object-fit:contain;display:block;pointer-events:none;user-select:none}
.hw-gang-it.hw-sel{border:2px solid var(--hw-red);z-index:10}
.hw-gang-it.hw-ovl{border:1.5px solid #eab308}
.hw-gang-it-label{position:absolute;top:-16px;left:0;background:var(--hw-red);color:#fff;font-size:9px;font-weight:700;line-height:14px;padding:1px 4px;border-radius:2px;white-space:nowrap;pointer-events:none}
.hw-gang-it-del{position:absolute;top:-18px;right:0;width:14px;height:14px;background:var(--hw-red);color:#fff;border:none;border-radius:2px;font-size:10px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;padding:0}
.hw-gang-handle{position:absolute;width:11px;height:11px;background:var(--hw-red);border:1.5px solid #fff;border-radius:2px;z-index:20;touch-action:none}
.hw-gang-handle.hw-se{bottom:-6px;right:-6px;cursor:se-resize}
.hw-gang-handle.hw-sw{bottom:-6px;left:-6px;cursor:sw-resize}
.hw-gang-handle.hw-ne{top:-6px;right:-6px;cursor:ne-resize}
.hw-gang-handle.hw-nw{top:-6px;left:-6px;cursor:nw-resize}
.hw-gang-sel-head{display:flex;gap:.5rem;margin-bottom:.75rem}
.hw-gang-sel-thumb{width:48px;height:48px;border:1px solid #2a2a2a;border-radius:6px;background:#1a1a1a;overflow:hidden;flex-shrink:0}
.hw-gang-sel-thumb img{width:100%;height:100%;object-fit:contain}
.hw-gang-sel-head>div{min-width:0}
.hw-gang-sel-head>div>p{margin:0;font-size:.72rem;color:#d1d5db;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.hw-gang-sel-grid{display:grid;grid-template-columns:1fr 1fr;gap:.5rem;margin-bottom:.75rem}
.hw-gang-sel-grid label{font-size:.68rem;color:#6b7280;display:flex;flex-direction:column;gap:.25rem}
.hw-gang-sel-grid input{background:#1a1a1a;border:1px solid #2a2a2a;border-radius:6px;color:#fff;padding:.4rem;font-size:.82rem}
.hw-gang-sel-grid input:focus{outline:none;border-color:var(--hw-red)}
.hw-gang-summary{padding:1rem;margin-top:auto}
.hw-gang-util-block{margin-bottom:1rem}
.hw-gang-util-row{display:flex;justify-content:space-between;font-size:.72rem;color:#6b7280;margin-bottom:.4rem}
.hw-gang-util-bar2{height:8px;background:#1a1a1a;border-radius:999px;overflow:hidden}
.hw-gang-util-bar2>div{height:100%;width:0;background:#22c55e;transition:width .2s,background .2s}
.hw-gang-util-tip{font-size:.7rem;margin:.4rem 0 0;line-height:1.4}
.hw-gang-sum-rows{font-size:.82rem;margin-bottom:1rem}
.hw-gang-sum-row{display:flex;justify-content:space-between;align-items:center;color:#9ca3af;margin-bottom:.5rem}
.hw-gang-sum-row strong{color:#d1d5db;font-weight:600}
.hw-gang-qty{display:flex;align-items:center;gap:.4rem}
.hw-gang-qty button{width:24px;height:24px;background:#1a1a1a;border:1px solid #2a2a2a;border-radius:4px;color:#fff;cursor:pointer;font-size:.85rem;line-height:1}
.hw-gang-qty button:hover{background:#2a2a2a}
.hw-gang-qty span{min-width:24px;text-align:center;font-weight:700;color:#fff}
.hw-gang-sum-total{display:flex;justify-content:space-between;font-weight:700;font-size:1rem;border-top:1px solid #222;padding-top:.6rem;margin-top:.25rem}
.hw-gang-sum-total strong{color:var(--hw-red)}
.hw-gang-order{width:100%;background:var(--hw-red);color:#fff;border:none;border-radius:8px;padding:.75rem;font-size:.82rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;cursor:pointer;transition:background .2s;margin-top:.25rem}
.hw-gang-order:hover{background:#b91c1c}
.hw-gang-note{font-size:.78rem;color:#6b7280;line-height:1.6}

/* ── Proof page ── */
.hw-proof-wrap{background:var(--hw-card);border:1px solid var(--hw-border);border-radius:20px;padding:2rem;max-width:600px;margin:0 auto}
.hw-proof-wrap h2{font-family:'Bebas Neue',sans-serif;font-size:1.8rem;letter-spacing:.06em;color:#fff;margin-bottom:.5rem}
.hw-proof-preview img{max-width:100%;border-radius:10px;margin:1.5rem 0;border:1px solid #2a2a2a}
.hw-proof-btns{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1rem}
.hw-proof-btns button{flex:1}
.hw-proof-btns textarea{width:100%;background:#0e0e0e;border:1px solid #2a2a2a;border-radius:8px;color:#fff;padding:.65rem;font-family:inherit;font-size:.85rem;margin-bottom:.75rem}
.hw-proof-approved{background:rgba(74,222,128,.1);border:1px solid rgba(74,222,128,.2);color:#4ade80;padding:1rem;border-radius:10px;font-weight:600;margin-top:1rem}
.hw-proof-changes{background:rgba(251,191,36,.08);border:1px solid rgba(251,191,36,.2);color:#fbbf24;padding:1rem;border-radius:10px;font-weight:600;margin-top:1rem}
.hw-proof-error{color:#f87171;font-size:.9rem;padding:1rem}

/* ── Gang sheet callout (home) ── */
.hw-gang-callout{padding:5rem 1.5rem;background:#0e0e0e;border-top:1px solid #151515;border-bottom:1px solid #151515}
.hw-gang-callout-inner{max-width:760px;margin:0 auto;text-align:center;background:linear-gradient(180deg,#141414,#0d0d0d);border:1px solid #1f1f1f;border-radius:18px;padding:3rem 2rem}
.hw-gang-callout-text .hw-section-title{margin-bottom:.75rem}
.hw-gang-callout-text .hw-section-sub{margin-bottom:1.75rem}

/* ── Final CTA (home) ── */
.hw-final-cta{padding:5rem 1.5rem;text-align:center;background:radial-gradient(ellipse at top,rgba(220,38,38,.08),transparent 60%),#0a0a0a}
.hw-final-cta .hw-section-sub{margin-bottom:1.75rem}

/* ── Pricing / section CTA rows ── */
.hw-pricing-cta{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:2.25rem}

/* ── Add-to-cart toast ── */
.hw-toast{position:fixed;left:50%;bottom:24px;transform:translate(-50%,140%);z-index:9999;max-width:92vw;background:#141414;border:1px solid #2a2a2a;border-left:4px solid #22c55e;color:#fff;padding:.85rem 1.1rem;border-radius:10px;font-size:.85rem;font-weight:600;box-shadow:0 12px 40px rgba(0,0,0,.5);opacity:0;transition:transform .3s cubic-bezier(.16,1,.3,1),opacity .3s;display:flex;align-items:center;gap:.5rem}
.hw-toast-show{transform:translate(-50%,0);opacity:1}
.hw-toast-error{border-left-color:#ef4444}
.hw-toast a{color:#f87171;text-decoration:underline;font-weight:700}
.hw-toast-success a{color:#4ade80}

/* ── Gang sheet single-page section wrapper ── */
.hw-gang-section{padding:5rem 0 0;background:#0a0a0a;border-top:1px solid #151515}
.hw-gang-header{padding-bottom:2rem;text-align:center}
