/* ── Date/time picker base layout ─────────────────────────────────────── */
.vfwwc-picker label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
}

.vfwwc-picker input,
.vfwwc-picker select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(15,23,42,.18);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
}

.vfwwc-sixt .vfwwc-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vfwwc-sixt .vfwwc-col {
  flex: 1;
  min-width: 200px;
}

.vfwwc-col-hidden {
  display: none !important;
}

/* ── Availability message ──────────────────────────────────────────────── */
.vfwwc-availability-msg {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15,23,42,.1);
  background: rgba(15,23,42,.03);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.vfwwc-availability-msg:empty {
  display: none;
}

/* ── Price unit after price ────────────────────────────────────────────── */
.vfwwc-price-unit {
  font-size: 0.88em;
  color: #666;
  margin-left: 6px;
  white-space: nowrap;
}

/* ── Range price summary box ───────────────────────────────────────────── */
.vfwwc-range-price {
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 10px;
  background: #f8fafc;
  font-size: 0.95em;
  line-height: 1.5;
}

.vfwwc-range-meta {
  margin-top: 4px;
  color: #555;
  font-size: 0.88em;
}

/* ── Info labels (deposit, pickup, delivery) ───────────────────────────── */
.vfwwc-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 6px;
}

.vfwwc-label strong {
  font-weight: 700;
  white-space: nowrap;
}

.vfwwc-label-deposit {
  background: #fff8ed;
  border: 1px solid #f5c06b;
  color: #7c4a00;
}

.vfwwc-label-deposit::before {
  content: "💰";
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.vfwwc-label-pickup {
  background: #f0f7ff;
  border: 1px solid #93c5fd;
  color: #1e3a5f;
}

.vfwwc-label-pickup::before {
  content: "📍";
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.vfwwc-label-delivery {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #14532d;
}

.vfwwc-label-delivery::before {
  content: "🚚";
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Flatpickr blocked days ────────────────────────────────────────────── */
.flatpickr-day.vfwwc-disabled-day {
  background: #ffd6d6 !important;
  border-color: #ff9d9d !important;
  color: #a40000 !important;
}

.flatpickr-day.vfwwc-disabled-day:hover {
  background: #ffd6d6 !important;
  color: #a40000 !important;
  cursor: not-allowed !important;
}

/* ── Cart / checkout deposit row ───────────────────────────────────────── */
.vfwwc-deposit-row {
  display: block;
}

.vfwwc-deposit-row .vfwwc-deposit-sep {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin: 8px 0;
}

/* ── Add-to-cart button full-width on product page ─────────────────────── */
.single-product .cart button.single_add_to_cart_button,
.single-product .cart .button.single_add_to_cart_button {
  width: 100%;
  border-radius: 10px !important;
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 20px;
  transition: opacity 0.2s, transform 0.15s;
}

.single-product .cart button.single_add_to_cart_button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ── FullCalendar mobile ───────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .vfwwc-calendar .fc .fc-toolbar {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .vfwwc-calendar .fc .fc-toolbar-chunk {
    display: flex;
    justify-content: center;
  }
  .vfwwc-calendar .fc .fc-button {
    padding: 6px 10px;
    font-size: 12px;
  }
  .vfwwc-calendar .fc .fc-toolbar-title {
    font-size: 15px;
  }
  .vfwwc-calendar .fc .fc-daygrid-day-number,
  .vfwwc-calendar .fc .fc-col-header-cell-cushion {
    font-size: 12px;
    padding: 3px 4px;
  }
  .vfwwc-calendar .fc table {
    font-size: 12px;
  }
}

/* ── Flatpickr mobile ──────────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .flatpickr-calendar {
    width: calc(100vw - 24px) !important;
    left: 12px !important;
    right: 12px !important;
    border-radius: 12px;
  }
  .flatpickr-day {
    font-size: 13px;
    height: 34px;
    line-height: 34px;
  }
}
