.vg-help-dcalc{
  --vg-accent:#E31E24;
  --vg-text:#0f172a;
  --vg-muted:rgba(15,23,42,.72);
  --vg-border:rgba(15,23,42,.12);
  --vg-accent-soft:#fff1f1;
  margin:0 0 28px;
  color:var(--vg-text);
}
.vg-help-dcalc *{box-sizing:border-box;}
.vg-help-dcalc__card{
  background:linear-gradient(180deg,#fff 0%,#f6f7fb 100%);
  border:1px solid var(--vg-border);
  border-left:6px solid var(--vg-accent);
  border-radius:16px;
  box-shadow:0 18px 55px rgba(0,0,0,.12);
  padding:22px 22px 20px;
}
.vg-help-dcalc__title{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.02em;
}
.vg-help-dcalc__lead{
  margin:0 0 18px;
  font-size:15px;
  color:var(--vg-muted);
  line-height:1.45;
}
.vg-help-dcalc .vg-delivery{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.vg-help-dcalc .vg-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.vg-help-dcalc .vg-field__label{
  font-size:13px;
  font-weight:700;
  color:#374151;
}
.vg-help-dcalc .vg-req{color:var(--vg-accent);margin-left:2px;}
.vg-help-dcalc .vg-field input,
.vg-help-dcalc .vg-field select{
  width:100%;
  box-sizing:border-box;
  border:1px solid var(--vg-border);
  border-radius:10px;
  padding:12px 14px;
  font:inherit;
  background:#fff;
}
.vg-help-dcalc .vg-field input:focus,
.vg-help-dcalc .vg-field select:focus{
  outline:none;
  border-color:var(--vg-accent);
  box-shadow:0 0 0 3px rgba(227,30,36,.12);
}
.vg-help-dcalc .vg-field__hint{
  display:block;
  margin-top:6px;
  font-size:12px;
  color:var(--vg-muted);
}
.vg-help-dcalc .vg-address-row{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
}
.vg-help-dcalc .vg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:12px;
  padding:12px 16px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  white-space:nowrap;
}
.vg-help-dcalc .vg-btn--ghost{
  background:#fff;
  color:#111;
  border:1px solid var(--vg-border);
}
.vg-help-dcalc .vg-btn--ghost:hover{border-color:#d1d5db;}
.vg-help-dcalc .vg-delivery-quote{
  padding:12px 14px;
  border-radius:10px;
  background:var(--vg-accent-soft);
  color:var(--vg-text);
  font-size:15px;
  font-weight:700;
}
.vg-help-dcalc .vg-delivery-quote--error{
  background:#fef2f2;
  color:#b91c1c;
  font-weight:500;
}
.vg-help-dcalc .vg-delivery-quote--info{
  background:#f8fafc;
  color:#475569;
  font-weight:500;
}
.vg-help-dcalc .vg-delivery-map{
  width:100%;
  min-height:360px;
  height:360px;
  border-radius:14px;
  border:1px solid var(--vg-border);
  overflow:hidden;
  background:#f3f4f6;
}
.vg-help-dcalc .vg-delivery-meta{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.vg-help-dcalc .vg-delivery-extras{
  padding:14px 16px;
  border:1px dashed var(--vg-border);
  border-radius:12px;
  background:#fafafa;
}
.vg-help-dcalc .vg-delivery-extras__head{
  font-size:14px;
  font-weight:700;
  margin-bottom:12px;
}
.vg-help-dcalc .vg-delivery-extras__grid{
  display:grid;
  grid-template-columns:minmax(90px,140px) repeat(2,minmax(0,1fr));
  gap:12px 16px;
  align-items:center;
}
.vg-help-dcalc .vg-delivery-extras__hint{
  margin:10px 0 0;
  color:var(--vg-muted);
  font-size:12px;
  line-height:1.4;
}
.vg-help-dcalc .vg-switch{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  user-select:none;
  min-height:42px;
  position:relative;
}
.vg-help-dcalc .vg-switch input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.vg-help-dcalc .vg-switch__ui{
  width:44px;
  height:26px;
  border-radius:999px;
  background:#d1d5db;
  position:relative;
  flex-shrink:0;
  transition:background .15s ease;
}
.vg-help-dcalc .vg-switch__ui::after{
  content:'';
  position:absolute;
  top:3px;
  left:3px;
  width:20px;
  height:20px;
  border-radius:50%;
  background:#fff;
  transition:transform .15s ease;
}
.vg-help-dcalc .vg-switch input:checked + .vg-switch__ui{background:var(--vg-accent);}
.vg-help-dcalc .vg-switch input:checked + .vg-switch__ui::after{transform:translateX(18px);}
.vg-help-dcalc .vg-switch__label{font-size:14px;font-weight:600;}
.vg-help-dcalc__cart{
  margin:0 0 14px;
  font-size:13px;
  color:var(--vg-muted);
}
.vg-help-dcalc__cart a{color:var(--vg-accent);font-weight:700;}
@media (max-width:640px){
  .vg-help-dcalc__card{padding:16px;}
  .vg-help-dcalc .vg-address-row,
  .vg-help-dcalc .vg-delivery-meta,
  .vg-help-dcalc .vg-delivery-extras__grid{grid-template-columns:1fr;}
  .vg-help-dcalc .vg-delivery-map{min-height:280px;height:280px;}
}
