/* Booking page styles — extends styles.v7.css */

/* Step numbers */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--green);
  color: rgba(0,0,0,0.78);
  font-weight: 800;
  font-size: 15px;
  margin-right: 8px;
  vertical-align: middle;
}

.booking-step {
  margin-bottom: 18px;
}

.req {
  color: #d32f2f;
}

/* Dog entries */
.dog-entry {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 18px;
  margin-bottom: 12px;
  background: rgba(140,207,138,0.08);
}
.dog-entry__title {
  margin: 0 0 12px 0;
  font-size: 16px;
}

/* Calendar */
.cal-wrapper {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 18px;
  max-width: 520px;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cal-title {
  font-weight: 800;
  font-size: 17px;
}

.cal-nav {
  background: none;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 16px;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.15s;
}
.cal-nav:hover {
  background: rgba(0,0,0,0.05);
}

.cal-daynames {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 800;
  font-size: 13px;
  color: rgba(0,0,0,0.55);
  margin-bottom: 6px;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  border: none;
  background: none;
  transition: background 0.12s, color 0.12s;
  position: relative;
}
.cal-day:hover:not(.cal-day--disabled):not(.cal-day--empty) {
  background: rgba(140,207,138,0.25);
}
.cal-day--selected {
  background: var(--green) !important;
  color: rgba(0,0,0,0.88);
  font-weight: 800;
}
.cal-day--today {
  box-shadow: inset 0 0 0 2px var(--orange);
}
.cal-day--disabled {
  color: rgba(0,0,0,0.2);
  cursor: default;
}
.cal-day--empty {
  cursor: default;
}
.cal-day--saturday {
  color: #1565c0;
}

/* Selected dates list */
.selected-date-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(140,207,138,0.10);
  border: 1px solid rgba(0,0,0,0.06);
  margin-bottom: 8px;
}
.selected-date-row__label {
  font-weight: 750;
  font-size: 14px;
}
.selected-date-row__day-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.07);
  margin-left: 6px;
}
.selected-date-row__day-tag--sat {
  background: rgba(21,101,192,0.12);
  color: #1565c0;
}
.selected-date-row select {
  margin-top: 0;
  width: auto;
  min-width: 180px;
  padding: 8px 10px;
  font-size: 13px;
}
.selected-date-row__remove {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  color: rgba(0,0,0,0.4);
  transition: background 0.12s;
}
.selected-date-row__remove:hover {
  background: rgba(211,47,47,0.1);
  color: #d32f2f;
}

@media (max-width: 520px) {
  .selected-date-row {
    grid-template-columns: 1fr;
  }
  .selected-date-row select {
    width: 100%;
  }
}

/* Price summary */
.price-summary-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.price-summary-table th,
.price-summary-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 14px;
}
.price-summary-table th {
  font-weight: 800;
  background: rgba(140,207,138,0.10);
  border-radius: 8px 8px 0 0;
}
.price-summary-table .total-row td {
  font-weight: 800;
  font-size: 16px;
  border-top: 2px solid rgba(0,0,0,0.12);
  padding-top: 12px;
}
.price-summary-table .discount-row td {
  color: #2e7d32;
  font-weight: 750;
}
.price-summary-table .breakfast-row td {
  color: var(--orange);
  font-weight: 650;
}

/* Responsive calendar */
@media (max-width: 520px) {
  .cal-wrapper {
    padding: 12px;
  }
  .cal-day {
    height: 34px;
    font-size: 13px;
  }
}

/* Booking type toggle */
.booking-type-toggle {
  display: flex;
  gap: 4px;
  background: rgba(0,0,0,0.04);
  border-radius: 14px;
  padding: 4px;
  width: fit-content;
}
.booking-type-btn {
  border: none;
  background: none;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 750;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.15s, box-shadow 0.15s;
}
.booking-type-btn:hover {
  background: rgba(0,0,0,0.05);
}
.booking-type-btn.active {
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Package info message */
.package-info-msg {
  background: rgba(140,207,138,0.12);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  color: rgba(0,0,0,0.7);
  border-left: 3px solid var(--green);
}

/* Package date counter */
.package-date-counter {
  background: rgba(245,124,0,0.08);
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  border: 1px solid rgba(245,124,0,0.15);
  margin-bottom: 12px;
}
.package-date-counter--full {
  background: rgba(140,207,138,0.12);
  border-color: rgba(140,207,138,0.3);
  color: #2e7d32;
}

/* Session label (package mode) */
.selected-date-row__session-label {
  font-size: 13px;
  font-weight: 650;
  color: rgba(0,0,0,0.6);
  padding: 8px 10px;
  background: rgba(0,0,0,0.04);
  border-radius: 8px;
}

@media (max-width: 520px) {
  .booking-type-toggle {
    width: 100%;
  }
  .booking-type-btn {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
  }
}
