.quote-bar{position:fixed;bottom:0;left:0;right:0;background:#0d1117;border-top:1px solid var(--border);z-index:999;transform:translateY(100%);transition:transform .35s cubic-bezier(.4,0,.2,1);box-shadow:0 -8px 40px rgba(0,0,0,.5)}
.quote-bar.visible{transform:translateY(0)}
.quote-bar-inner{max-width:1200px;margin:0 auto;padding:14px 48px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.quote-bar-left{display:flex;align-items:center;gap:16px}
.quote-bar-count{background:var(--accent);color:#fff;width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem;flex-shrink:0}
.quote-bar-info h4{font-size:.9rem;color:#fff;font-weight:600;margin-bottom:2px}
.quote-bar-info p{font-size:.78rem;color:var(--text-muted)}
.quote-bar-total{font-family:var(--font-display);font-size:1.6rem;color:var(--accent);letter-spacing:.5px}
.quote-bar-actions{display:flex;align-items:center;gap:12px}
.quote-bar-toggle{background:0 0;border:1px solid var(--border);color:var(--text-secondary);padding:8px 16px;border-radius:8px;font-size:.82rem;cursor:pointer;font-family:var(--font-body);transition:all .2s;display:flex;align-items:center;gap:6px}
.quote-bar-toggle:hover{border-color:var(--text-secondary);color:#fff}
.quote-bar-toggle svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .25s}
.quote-bar.expanded .quote-bar-toggle svg{transform:rotate(180deg)}
.quote-bar-submit{background:var(--accent);color:#fff;border:none;padding:10px 24px;border-radius:8px;font-size:.9rem;font-weight:600;cursor:pointer;font-family:var(--font-body);transition:all .2s}
.quote-bar-submit:hover{background:var(--accent-light);transform:translateY(-1px)}
.quote-panel{max-height:0;overflow:hidden;transition:max-height .35s cubic-bezier(.4,0,.2,1);border-top:1px solid transparent}
.quote-bar.expanded .quote-panel{max-height:400px;border-top-color:var(--border)}
.quote-panel-inner{max-width:1200px;margin:0 auto;padding:20px 48px;max-height:350px;overflow-y:auto}
.quote-item{display:flex;align-items:center;justify-content:space-between;padding:10px 0;border-bottom:1px solid var(--border);gap:16px}
.quote-item:last-child{border-bottom:none}
.quote-item-name{font-size:.9rem;color:#fff;font-weight:500;flex:1}
.quote-item-price{font-family:var(--font-display);font-size:1.1rem;color:var(--accent);letter-spacing:.5px;min-width:80px;text-align:right}
.quote-item-remove{background:0 0;border:none;color:var(--text-muted);cursor:pointer;padding:4px;display:flex;align-items:center;transition:color .15s}
.quote-item-remove:hover{color:var(--accent)}
.quote-item-remove svg{width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.quote-submit-section{padding:80px 48px;max-width:800px;margin:0 auto;display:none}
.quote-submit-section.active{display:block}
.quote-submit-header{text-align:center;margin-bottom:40px}
.quote-submit-header h2{font-family:var(--font-display);font-size:clamp(1.6rem,3vw,2.4rem);letter-spacing:1.5px;color:#fff;margin-bottom:8px}
.quote-submit-header p{color:var(--text-secondary);font-size:1rem}
.quote-summary-box{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:24px;margin-bottom:32px}
.quote-summary-box h3{font-family:var(--font-display);font-size:1.2rem;letter-spacing:1px;color:#fff;margin-bottom:16px}
.quote-summary-item{display:flex;justify-content:space-between;padding:8px 0;border-bottom:1px solid var(--border);font-size:.9rem}
.quote-summary-item:last-child{border-bottom:none}
.quote-summary-item .name{color:var(--text-secondary)}
.quote-summary-item .price{color:var(--accent);font-family:var(--font-display);font-size:1rem;letter-spacing:.5px}
.quote-summary-total{display:flex;justify-content:space-between;padding-top:12px;margin-top:8px;border-top:2px solid var(--border);font-weight:700}
.quote-summary-total .name{color:#fff;font-size:.95rem}
.quote-summary-total .price{color:var(--accent);font-family:var(--font-display);font-size:1.3rem}
.quote-form-wrapper{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:24px}
.quote-form-wrapper h3{font-family:var(--font-display);font-size:1.2rem;letter-spacing:1px;color:#fff;margin-bottom:16px}
.quote-form-note{text-align:center;margin-top:16px;font-size:.82rem;color:var(--text-muted)}
.custom-quote-form .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.custom-quote-form .form-group{display:flex;flex-direction:column}
.custom-quote-form .form-group.full-width{grid-column:1/-1}
.custom-quote-form label{font-size:.82rem;color:var(--text-secondary);margin-bottom:6px;font-weight:500}
.custom-quote-form label .required{color:var(--accent)}
.custom-quote-form input,.custom-quote-form select,.custom-quote-form textarea{background:#0a0e14;border:1px solid var(--border);border-radius:8px;padding:10px 14px;color:#fff;font-family:var(--font-body);font-size:.9rem;transition:border-color .2s}
.custom-quote-form input:focus,.custom-quote-form select:focus,.custom-quote-form textarea:focus{outline:none;border-color:var(--accent)}
.custom-quote-form input::placeholder,.custom-quote-form textarea::placeholder{color:#555}
.custom-quote-form textarea{resize:vertical;min-height:70px}
.custom-quote-form .form-submit-btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:var(--accent);color:#fff;border:none;border-radius:8px;padding:14px 36px;font-family:var(--font-display);font-size:1.1rem;letter-spacing:1px;cursor:pointer;transition:background .2s,transform .15s;width:100%;margin-top:8px}
.custom-quote-form .form-submit-btn:hover{background:var(--accent-light);transform:translateY(-1px)}
.custom-quote-form .form-submit-btn:disabled{opacity:.6;cursor:not-allowed;transform:none}
.custom-quote-form .form-error{color:var(--accent);font-size:.82rem;margin-top:4px;display:none}
.custom-quote-form .form-success{text-align:center;padding:32px 16px}
.custom-quote-form .form-success h4{font-family:var(--font-display);font-size:1.4rem;color:#fff;margin-bottom:8px}
.custom-quote-form .form-success p{color:var(--text-secondary);font-size:.95rem}
.quote-success-message{text-align:center;padding:60px 24px;max-width:560px;margin:0 auto}
.quote-success-message .success-icon{width:64px;height:64px;border-radius:50%;background:var(--accent);color:#fff;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;animation:successPop .4s cubic-bezier(.175,.885,.32,1.275)}
.quote-success-message .success-title{font-family:var(--font-display);font-size:clamp(1.6rem,3vw,2.2rem);letter-spacing:1.5px;color:#fff;margin-bottom:12px}
.quote-success-message .success-text{font-size:1.05rem;color:var(--text-secondary);line-height:1.7;margin-bottom:8px}
.quote-success-message .success-subtext{font-size:.88rem;color:var(--text-muted);margin-bottom:28px}
.quote-success-message .success-subtext strong{color:var(--text-secondary)}
.quote-success-message .success-back-btn{display:inline-block;padding:10px 28px;border-radius:8px;font-size:.9rem;text-decoration:none;transition:all .2s}
@keyframes successPop{0%{transform:scale(0);opacity:0}100%{transform:scale(1);opacity:1}}
.quote-toggle-btn{display:inline-flex;align-items:center;justify-content:center;gap:6px;cursor:pointer;transition:all .2s}
.quote-toggle-btn.added{background:rgba(176,31,35,.15) !important;border-color:var(--accent) !important;color:var(--accent) !important}
.pricing-card.in-quote{border-color:var(--accent)}
@media(max-width:768px){
  .quote-bar-inner{padding:12px 20px;flex-wrap:wrap}
  .quote-bar-total{display:none}
  .quote-panel-inner{padding:16px 20px}
  .quote-submit-section{padding:60px 20px}
  .custom-quote-form .form-row{grid-template-columns:1fr;gap:12px}
}
body.has-quote-bar main{padding-bottom:80px}
