/* Chambers Construction Group — Quote Widget */
.ccgq * { box-sizing: border-box; }
.ccgq { font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #0b0f19; }
.ccgq .card { max-width: 920px; margin: 0 auto; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,.05); }
.ccgq header { background: linear-gradient(135deg,#0a3d62,#1e5799); color: #fff; padding: 22px 24px; border-radius: 16px 16px 0 0; }
.ccgq header h2 { margin: 0; font-size: 1.2rem; }
.ccgq .body { padding: 18px 18px 24px; }
.ccgq .grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }
.ccgq label { display: block; font-weight: 600; font-size: .92rem; }
.ccgq input:not(#vatToggle), .ccgq select { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 10px; margin-top: 6px; height: 42px; color: #666; }
.ccgq .col-6 { grid-column: span 6; }
.ccgq .col-4 { grid-column: span 4; }
.ccgq .col-8 { grid-column: span 8; }
.ccgq .col-12 { grid-column: span 12; }
.ccgq .row { margin-top: 6px; }
.ccgq .actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 16px; }
.ccgq .btn { appearance: none; border: none; border-radius: 12px; padding: 12px 16px; font-weight: 700; cursor: pointer; }
.ccgq .btn.primary { background: #0a3d62; color: #fff; }
.ccgq .btn.secondary { background: #eef2f7; color: #0a3d62; }
.ccgq .muted { opacity: .75; font-size: .9rem; }
.ccgq .pill { display: inline-block; padding: 4px 10px; border-radius: 999px; background: #eef2f7; float: right; }
.ccgq .est { background: #0a3d62; color: #fff; border-radius: 14px; padding: 14px; }
.ccgq .est .line { display: flex; justify-content: space-between; margin: 4px 0; }
.ccgq .total { font-weight: 800; font-size: 1.3rem; }
.ccgq .flex { display:flex; gap:10px; align-items:center; }
.ccgq .logo { font-weight:800; letter-spacing:.2px; font-size: 1.4rem; }
.ccgq .disclaimer { font-size:.85rem; opacity:.7; margin-top:10px; }
@media (max-width: 720px) {
  .ccgq .grid { grid-template-columns: repeat(6,1fr); }
  .ccgq .col-6 { grid-column: span 6; }
  .ccgq .col-8 { grid-column: span 6; }
  .ccgq .col-4 { grid-column: span 6; }
}