.booking-page {
  background: #f7fbff;
  min-height: calc(100vh - 86px);
}

.booking-hero {
  padding: 54px 0 26px;
  text-align: center;
  background: linear-gradient(180deg, #f8fcff, #eef7ff);
  border-bottom: 1px solid var(--line);
}

.booking-hero h1 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 5vw, 46px);
  color: var(--navy);
  letter-spacing: -1px;
}

.booking-hero p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.booking-section {
  padding: 32px 0 60px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 18px;
}

.booking-progress-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8090a2;
  font-size: 12px;
}

.booking-progress-item span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e7edf4;
  color: #6d7c8c;
  font-weight: 800;
}

.booking-progress-item.active {
  color: var(--navy);
}

.booking-progress-item.active span {
  background: var(--blue);
  color: #fff;
}

.booking-card,
.booking-summary-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.booking-card {
  padding: 24px;
}

.booking-card-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.booking-card-heading h2,
.booking-summary h2 {
  color: var(--navy);
  margin: 4px 0 0;
}

.booking-card-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.booking-step-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

/* PREPÍNANIE KATEGÓRIÍ SLUŽIEB */
.service-category-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
  padding: 6px;
  border: 1px solid #dbe8f4;
  border-radius: 16px;
  background: #f7fbff;
}

.service-category-tab {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
}

.service-category-tab:hover {
  background: #eaf4ff;
}

.service-category-tab.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 16px rgba(22, 120, 220, 0.18);
}

.service-category[hidden] {
  display: none !important;
}

@media (max-width: 650px) {
  .service-category-tabs {
    gap: 6px;
    padding: 5px;
    margin-bottom: 18px;
  }

  .service-category-tab {
    min-height: 42px;
    padding: 0 8px;
    font-size: 12px;
  }
}

.service-category + .service-category {
  margin-top: 28px;
}

.category-heading {
  margin-bottom: 14px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #dceeff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.category-heading h3 {
  margin: 10px 0 4px;
  font-size: 24px;
  color: var(--navy);
}

.category-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.booking-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-service {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  border: 1px solid #e4edf6;
  border-radius: 12px;
  padding: 14px;
  transition: 0.2s ease;
  background: #fff;
}

.booking-service.selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 120, 220, 0.08);
  background: #fbfdff;
}

.service-image {
  width: 90px;
  height: 75px;
  object-fit: contain;
  border-radius: 10px;
  background: #f8fbff;
  border: 1px solid #edf3f8;
  padding: 8px;
}

.service-copy h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 16px;
}

.service-copy p {
  margin: 0;
  color: var(--blue);
  font-weight: 800;
  font-size: 14px;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.qty button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #cfe1f2;
  background: #fff;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.qty button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.qty span {
  min-width: 20px;
  text-align: center;
  font-weight: 800;
  color: var(--navy);
}

.area-service {
  margin-top: 16px;
  border: 1px solid #d8e8f6;
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #fafdff, #f4faff);
}

.area-service-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.area-service-head h4 {
  margin: 8px 0 6px;
  font-size: 22px;
  color: var(--navy);
}

.area-service-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.table-label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d5e6f4;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.area-image {
  flex-shrink: 0;
}

.area-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: end;
}

.area-service-grid label span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.area-service-grid input {
  width: 100%;
  height: 50px;
  border: 1px solid #cfe1f2;
  border-radius: 12px;
  padding: 0 14px;
  font-size: 16px;
  color: var(--navy);
}

.area-service-grid input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 120, 220, 0.08);
}

.area-price-box {
  border: 1px solid #d6e7f4;
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px;
}

.area-price-box span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
}

.area-price-box strong {
  color: var(--blue);
  font-size: 24px;
}

.booking-note {
  margin-top: 18px;
  background: var(--pale);
  color: var(--navy);
  border: 1px solid #dbe9f5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
}

.booking-summary {
  position: sticky;
  top: 105px;
}

.booking-summary-card {
  padding: 22px;
}

.summary-items {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.summary-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px dashed #dbe6f1;
  padding-bottom: 10px;
}

.summary-row span {
  color: var(--navy);
  font-size: 14px;
}

.summary-row strong {
  white-space: nowrap;
  color: var(--navy);
  font-size: 14px;
}

.summary-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #e7edf4;
  margin-top: 8px;
  padding: 16px 0 8px;
}

.summary-total span {
  color: var(--muted);
  font-weight: 700;
}

.summary-total strong {
  color: var(--blue);
  font-size: 24px;
}

.summary-small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  margin: 0 0 16px;
}

.booking-next {
  width: 100%;
  border: 0;
}

.booking-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

@media (max-width: 1050px) {
  .booking-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }

  .area-service-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .booking-hero {
    padding-top: 34px;
  }

  .booking-section {
    padding-top: 20px;
  }

  .booking-card,
  .booking-summary-card {
    padding: 17px;
  }

  .booking-card-heading {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .booking-progress-item b {
    display: none;
  }

  .booking-progress-item {
    justify-content: center;
  }

  .booking-service {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .service-copy {
    width: 100%;
  }

  .area-service-head {
    flex-direction: column;
    align-items: start;
  }

  .area-image {
    align-self: center;
  }
}

.booking-step-card[hidden] {
  display: none !important;
}

.address-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 180px;
  gap: 16px;
}

.address-field {
  display: block;
}

.address-field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.address-field > span b {
  color: var(--blue);
}

.address-field input {
  width: 100%;
  height: 50px;
  border: 1px solid #cfe1f2;
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  font-family: inherit;
}

.address-field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 120, 220, 0.08);
}

.address-field input.field-error {
  border-color: #d93b3b;
  box-shadow: 0 0 0 3px rgba(217, 59, 59, 0.08);
}

.step-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.step-actions .btn {
  min-width: 180px;
}

@media (max-width: 800px) {
  .address-form {
    grid-template-columns: 1fr;
  }

  .step-actions {
    flex-direction: column-reverse;
  }

  .step-actions .btn {
    width: 100%;
  }
}

/* KOMPAKTNEJŠÍ VÝBER SLUŽIEB NA MOBILE */
@media (max-width: 650px) {
  .booking-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .booking-service {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px;
    padding: 10px 8px;
    justify-items: center;
    text-align: center;
    min-width: 0;
  }
  .service-image {
    width: 68px;
    height: 58px;
    padding: 5px;
  }
  .service-copy {
    width: 100%;
    min-width: 0;
  }
  .service-copy h4 {
    font-size: 13px;
    line-height: 1.2;
    min-height: 31px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-copy p {
    font-size: 12px;
  }
  .qty {
    gap: 7px;
  }
  .qty button {
    width: 30px;
    height: 30px;
    font-size: 19px;
  }
  .qty span {
    min-width: 16px;
    font-size: 14px;
  }
  .category-heading h3 {
    font-size: 21px;
  }
  .category-heading p {
    font-size: 13px;
  }
}

@media (max-width: 360px) {
  .booking-services {
    gap: 8px;
  }
  .booking-service {
    padding: 9px 6px;
  }
  .service-image {
    width: 60px;
    height: 52px;
  }
  .service-copy h4 {
    font-size: 12px;
  }
}

/* KROK 3 – TERMÍN */
.date-picker-block,
.time-picker-block {
  margin-top: 6px;
}
.time-picker-block {
  margin-top: 28px;
}
.date-picker-block h3,
.time-picker-block h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 17px;
}
.date-options {
  display: grid;
  grid-template-columns: repeat(6, minmax(88px, 1fr));
  gap: 10px;
}
.date-option {
  min-height: 96px;
  border: 1px solid #dbe8f4;
  background: #fff;
  color: var(--navy);
  border-radius: 18px;
  padding: 12px 8px;
  font: inherit;
  cursor: pointer;
  transition: 0.18s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(8, 49, 91, 0.04);
}
.date-option:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(22, 120, 220, 0.1);
}
.date-option.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 8px 22px rgba(22, 120, 220, 0.22);
}
.date-option .date-weekday {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.72;
}
.date-option strong {
  display: block;
  margin: 2px 0;
  font-size: 28px;
  line-height: 1;
}
.date-option .date-month {
  font-size: 12px;
  font-weight: 700;
  text-transform: capitalize;
  opacity: 0.85;
}
.time-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.time-option {
  min-width: 88px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid #d7e5f2;
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: 0.18s ease;
}
.time-option:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}
.time-option.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 5px 16px rgba(22, 120, 220, 0.18);
}
.selected-slot {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid #cfe2f4;
  border-radius: 16px;
  background: var(--pale);
}
.selected-slot span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.selected-slot strong {
  color: var(--navy);
  font-size: 17px;
  text-transform: none;
}
.booking-helper {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
@media (max-width: 1100px) {
  .date-options {
    grid-template-columns: repeat(4, minmax(88px, 1fr));
  }
}
@media (max-width: 720px) {
  .date-options {
    grid-template-columns: repeat(3, minmax(82px, 1fr));
  }
  .time-option {
    min-width: 78px;
    flex: 1 1 calc(33.333% - 10px);
  }
}
@media (max-width: 430px) {
  .date-options {
    display: flex;
    overflow-x: auto;
    gap: 9px;
    padding: 2px 1px 10px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .date-option {
    flex: 0 0 82px;
    min-height: 88px;
    scroll-snap-align: start;
  }
  .time-options {
    gap: 8px;
  }
  .time-option {
    min-width: 0;
    flex: 1 1 calc(33.333% - 8px);
    padding: 0 10px;
  }
}

/* ===== MOBILE FIX – KROK 3 TERMÍN ===== */
.booking-main,
.booking-step-card,
.date-picker-block,
.time-picker-block,
.date-options,
.time-options {
  min-width: 0;
  max-width: 100%;
}

@media (max-width: 650px) {
  .booking-layout,
  .booking-main,
  .booking-step-card {
    width: 100%;
    min-width: 0;
  }

  #dateStep {
    overflow: hidden;
  }

  #dateStep .booking-card-heading {
    width: 100%;
  }

  .date-picker-block,
  .time-picker-block {
    width: 100%;
    min-width: 0;
  }

  .date-options {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 8px;
    padding: 2px 2px 12px;
    margin: 0;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .date-options::-webkit-scrollbar {
    display: none;
  }

  .date-option {
    flex: 0 0 78px;
    width: 78px;
    min-width: 78px;
    max-width: 78px;
    min-height: 86px;
    padding: 10px 6px;
    border-radius: 15px;
    scroll-snap-align: start;
  }

  .date-option strong {
    font-size: 25px;
  }

  .time-options {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .time-option {
    width: 100%;
    min-width: 0;
    min-height: 43px;
    padding: 0 6px;
    border-radius: 12px;
    font-size: 14px;
  }

  .selected-slot {
    width: 100%;
    box-sizing: border-box;
  }

  #dateStep .step-actions {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .date-option {
    flex-basis: 74px;
    width: 74px;
    min-width: 74px;
    max-width: 74px;
  }

  .time-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Navigácia prvého kroku patrí do hlavného formulára, nie do súhrnu */
.service-step-actions {
  margin-top: 18px;
  justify-content: flex-end;
}

@media (max-width: 650px) {
  .service-step-actions .btn {
    width: 100%;
  }
}

/* KROK 4 – KONTAKT A REKAPITULÁCIA */
.contact-booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-booking-field {
  display: block;
}

.contact-booking-field-full {
  grid-column: 1 / -1;
}

.contact-booking-field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.contact-booking-field > span b,
.booking-gdpr b {
  color: var(--blue);
}

.contact-booking-field > span small {
  color: var(--muted);
  font-weight: 600;
}

.contact-booking-field input,
.contact-booking-field textarea {
  width: 100%;
  border: 1px solid #cfe1f2;
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  color: var(--navy);
  font-size: 16px;
  font-family: inherit;
}

.contact-booking-field input {
  height: 50px;
}

.contact-booking-field textarea {
  min-height: 110px;
  padding-top: 13px;
  resize: vertical;
}

.contact-booking-field input:focus,
.contact-booking-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(22, 120, 220, 0.08);
}

.contact-booking-field .field-error {
  border-color: #d93b3b;
  box-shadow: 0 0 0 3px rgba(217, 59, 59, 0.08);
}

.final-recap {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid #dbe8f4;
  border-radius: 14px;
  background: #f8fbff;
}

.final-recap h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 17px;
}

.final-recap-row {
  display: grid;
  grid-template-columns: 125px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px dashed #dbe6f1;
}

.final-recap-row:first-of-type {
  border-top: 0;
}

.final-recap-row span {
  color: var(--muted);
  font-size: 13px;
}

.final-recap-row strong {
  color: var(--navy);
  text-align: right;
  font-size: 14px;
}

.final-price-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
}

.booking-gdpr a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.booking-gdpr a:hover {
  opacity: 0.8;
}
.booking-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 18px;
  padding: 13px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.booking-gdpr input {
  margin-top: 2px;
  flex: 0 0 auto;
}

.booking-gdpr.gdpr-error {
  border-color: #e7a3a3;
  background: #fff7f7;
}

.booking-submit-message {
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid #b9dfc5;
  border-radius: 12px;
  background: #f2fbf5;
  color: #245c35;
}

.booking-submit-message strong,
.booking-submit-message span {
  display: block;
}

.booking-submit-message span {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
}

.summary-details {
  display: grid;
  gap: 10px;
  margin: 14px 0 4px;
  padding-top: 14px;
  border-top: 1px solid #e7edf4;
}

.summary-details[hidden] {
  display: none !important;
}

.summary-details > div {
  display: grid;
  gap: 3px;
}

.summary-details span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.summary-details strong {
  color: var(--navy);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 650px) {
  .contact-booking-form {
    grid-template-columns: 1fr;
  }

  .contact-booking-field-full {
    grid-column: auto;
  }

  .final-recap-row {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .final-recap-row strong {
    text-align: left;
  }
}

/* Finálna poznámka pod predbežnou cenou */
.final-recap .final-price-note {
  display: block;
  margin: 6px 0 0;
  color: #7b8794 !important;
  font-size: 12px !important;
  line-height: 1.4;
  font-weight: 400 !important;
}

.booking-submit-message.success {
  border-color: #b9dfc4;
  background: #f1fbf4;
  color: #1f6a35;
}

.booking-submit-message.error {
  border-color: #efc4c4;
  background: #fff5f5;
  color: #9b2c2c;
}

/* Stav načítania dostupnosti termínov */
.time-loading,
.time-empty,
.time-error {
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.time-loading,
.time-empty {
  background: #f4f9fd;
  color: var(--muted);
  border: 1px solid #dce9f4;
}

.time-error {
  background: #fff4f4;
  color: #9d2b2b;
  border: 1px solid #f1cccc;
}

/* Informácia o odhadovanom blokovanom čase */
.time-duration-info {
  flex-basis: 100%;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

/* Upozornenie na minimálnu hodnotu objednávky */
.minimum-order-warning {
  margin-top: 12px;
  padding: 11px 12px;
  border: 1px solid #f0d58a;
  border-radius: 10px;
  background: #fff9e8;
  color: #6d5520;
  font-size: 12px;
  line-height: 1.45;
}

.minimum-order-warning strong {
  color: #5c4617;
}

.summary-total.summary-transport {
  border-top: 0;
  padding-top: 6px;
  margin-top: 2px;
  font-size: 13px;
  color: #5c6d80;
}
.summary-total.summary-transport strong {
  color: #5c6d80;
  font-size: 13px;
}

/* Výraznejšie potvrdenie úspešnej rezervácie */
.booking-submit-message.success {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
}

.booking-success-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dff4e6;
  color: #1f6a35;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.booking-success-content {
  min-width: 0;
  flex: 1;
}

.booking-success-title {
  color: #1f6a35;
  font-size: 18px;
  line-height: 1.3;
}

.booking-success-text {
  margin-top: 4px !important;
  color: #4d6b56;
  font-size: 13px !important;
}

.booking-success-details {
  display: grid;
  gap: 9px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #cfe7d6;
}

.booking-success-details > div {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.booking-success-details span {
  margin: 0 !important;
  color: #5f7465;
  font-size: 12px !important;
  font-weight: 700;
}

.booking-success-details b {
  color: #163f23;
  font-size: 13px;
  line-height: 1.45;
}

@media (max-width: 650px) {
  .booking-submit-message.success {
    gap: 12px;
    padding: 16px;
  }

  .booking-success-details > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

.time-duration-info {
  width: 100%;
  flex: 0 0 100%;

  margin: 12px 0 0;
  padding: 12px 14px;

  background: #eef7ff;
  border: 1px solid #cfe4f8;
  border-left: 4px solid #1678dc;
  border-radius: 10px;

  box-shadow: none;

  color: #0a2b54;
  box-sizing: border-box;
}

.time-duration-info strong {
  display: block;
  margin-bottom: 3px;

  font-size: 15px;
  line-height: 1.35;
  color: #062b5c;
}

.time-duration-info span {
  display: block;

  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  color: #5c6d80;
}

@media (max-width: 650px) {
  .time-duration-info {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
    padding: 11px 12px;
  }

  .time-duration-info strong {
    font-size: 14px;
  }

  .time-duration-info span {
    font-size: 12px;
  }
}

/* SOBOTA – OBJEDNÁVKA TELEFONICKY */

.phone-only-box {
  width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 10px;
  margin: 6px 0 0;
  padding: 20px 18px;

  background: #eef7ff;
  border: 1px solid #cfe4f8;
  border-top: 4px solid #1678dc;
  border-radius: 14px;

  text-align: center;
}

.phone-only-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 2px;

  background: #1678dc;
  color: #fff;

  border-radius: 12px;
}

.phone-only-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.phone-only-content {
  width: 100%;
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.phone-only-content strong {
  display: block;
  margin: 0 0 5px;

  color: #062b5c;
  font-size: 17px;
  line-height: 1.35;
}

.phone-only-content span {
  display: block;
  margin: 0 0 13px;

  color: #5c6d80;
  font-size: 14px;
  line-height: 1.45;
}

.phone-only-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 22px;

  background: #1678dc;
  color: #fff !important;

  border: 0;
  border-radius: 22px;

  font-size: 16px;
  font-weight: 800;
  text-decoration: none !important;
}

.phone-only-button:hover {
  background: #0f67be;
  color: #fff !important;
}

@media (max-width: 650px) {
  .phone-only-box {
    grid-column: 1 / -1;
    width: 100%;
    padding: 18px 14px;
  }

  .phone-only-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .phone-only-content strong {
    font-size: 16px;
  }

  .phone-only-content span {
    font-size: 13px;
  }

  .phone-only-button {
    width: auto;
    min-width: 170px;
    font-size: 15px;
  }
}
