.sytec-delivery-calendar {
  width: 100%;
  max-width: 100%;
  margin: 18px 0;
  padding: 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
  text-align: center;
  font-family: inherit;
  border: 1px solid rgba(15, 23, 42, .06);
  box-sizing: border-box;
  overflow: hidden;
}
.sytec-delivery-calendar *,
.sytec-delivery-calendar *::before,
.sytec-delivery-calendar *::after {
  box-sizing: border-box;
}
.sytec-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  width: 100%;
  min-width: 0;
}
.sytec-calendar-head button {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: #111827;
}
.sytec-calendar-head > div {
  min-width: 0;
}
.sytec-cal-month,
.sytec-cal-year {
  display: block;
  font-size: 16px;
  letter-spacing: 0;
}
.sytec-cal-year { margin-top: 2px; }
.sytec-cal-weekdays,
.sytec-cal-grid {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  overflow: hidden;
  min-width: 0;
}
.sytec-cal-weekdays {
  margin-bottom: 8px;
  color: #9ca3af;
  font-size: 12px;
}
.sytec-cal-weekdays span,
.sytec-cal-grid span {
  min-width: 0;
  max-width: 100%;
}
.sytec-cal-day {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #111827;
  cursor: pointer;
  transition: all .18s ease;
}
.sytec-cal-day:hover:not(:disabled) {
  background: #eaf5ff;
  color: #0b6fb8;
  transform: translateY(-1px);
}
.sytec-cal-day.is-muted,
.sytec-cal-day:disabled {
  background: #f1f1f1;
  color: #c7cbd1;
  cursor: not-allowed;
}
.sytec-cal-day.is-selected {
  background: #0b6fb8;
  color: #fff;
  box-shadow: 0 8px 18px rgba(11, 111, 184, .28);
}
.sytec-cal-status {
  margin-top: 14px;
  font-size: 14px;
  color: #6b7280;
  letter-spacing: 0;
  line-height: 1.35;
}
.sytec-cal-help {
  margin-top: 8px;
  font-size: 13px;
  color: #374151;
  letter-spacing: 0;
  line-height: 1.35;
}
/* Botón clásico */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.sytec-disabled-checkout,
.woocommerce-checkout .wc-block-components-checkout-place-order-button.sytec-disabled-checkout,
.wc-block-cart__submit-button.sytec-disabled-checkout,
.wc-block-components-checkout-place-order-button.sytec-disabled-checkout {
  opacity: .45 !important;
  filter: grayscale(1);
  cursor: not-allowed !important;
}
/* Botones blocks */
a.wc-block-cart__submit-button.sytec-disabled-checkout,
button.wc-block-components-checkout-place-order-button.sytec-disabled-checkout {
  opacity: .45 !important;
  filter: grayscale(1);
}
.sytec-block-calendar-anchor {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.sytec-delivery-date-summary,
.sytec-delivery-date-order {
  margin: 18px 0;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, .1);
  background: #fff;
  color: #111827;
  font-size: 15px;
}
.sytec-delivery-date-summary strong,
.sytec-delivery-date-order h2 {
  margin: 0 0 4px;
  color: #111827;
}
.sytec-delivery-date-summary-row th,
.sytec-delivery-date-summary-row td {
  color: #111827;
}
@media (max-width: 768px) {
  .sytec-delivery-calendar {
    width: 100%;
    max-width: 100%;
    margin: 14px 0;
    padding: 12px;
    border-radius: 10px;
  }
  .sytec-calendar-head {
    gap: 8px;
    margin-bottom: 10px;
  }
  .sytec-calendar-head button {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }
  .sytec-cal-month,
  .sytec-cal-year {
    font-size: 14px;
  }
  .sytec-cal-weekdays,
  .sytec-cal-grid {
    gap: 4px;
  }
  .sytec-cal-weekdays {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .sytec-cal-day {
    border-radius: 6px;
    font-size: 12px;
  }
  .sytec-cal-status {
    margin-top: 10px;
    font-size: 13px;
  }
  .sytec-cal-help {
    display: none;
  }
}
