/* Price badge + legend */
.villa-cal-wrap { --vc-badge-bg: rgba(230,167,86,.15); --vc-text: #0B1D37; margin-bottom: 1rem; }
.vc-price-tag { font-size:12px; line-height:1; margin-top:2px; padding:3px 6px; border-radius:6px; display:inline-block; background:var(--vc-badge-bg); color:var(--vc-text); }
.villa-cal-legend { display:flex; gap:14px; align-items:center; margin-top:8px; font-size:14px; color:var(--vc-text); }
.villa-cal-legend .legend-item { width:14px; height:14px; display:inline-block; margin-right:6px; vertical-align:middle; border-radius:3px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.05); }
.villa-cal-legend .legend-free { background:#F5E6C8; }
.villa-cal-legend .legend-busy { background:#004E7C; }
.villa-cal-legend .legend-price { background: rgba(230,167,86,.4); }
.fc .fc-daygrid-day-number { font-weight:600; }
.fc .fc-daygrid-day.fc-day-today { background:#F5E6C8 !important; }
.villa-cal-total{margin:6px 0;font-weight:700;color:#0B1D37}
.villa-cal-reset{padding:6px 10px;border-radius:6px;border:1px solid rgba(0,0,0,.1);background:#fff;cursor:pointer}
.villa-cal-reset:hover{background:#faf7f0}


/* Disable busy days completely */
.vc-busy-day {
  pointer-events: none;
  cursor: not-allowed;
  opacity: 0.55;
}

/* Optional helper layout if wrapped in .villa-booking-section */
.villa-booking-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px) {
  .villa-booking-section {
    grid-template-columns: 1fr;
  }
}
