#sws-reservation-form {
  border: 2px solid black;
  border-radius: 20px;
  padding: 30px;
  max-width: 700px;
  background: transparent !important;
  margin-top: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  font-family: 'Onest', sans-serif !important;
	font-weight: 300 !important;
}
.sws-days .partial {
  background: linear-gradient(to right bottom, #C5C988 50%, #FFFFFF0D 50%) !important;
  color: #FFFFFFF5 !important;
	border: 1px solid #FFFFFF42; !important;
  position: relative;
  cursor: help;
}
.day {
font-family: 'Onest', sans-serif !important;
font-size: 14px !important;
font-weight: 400 !important;
}
.day:hover {
color: white !important;
}
.sws-legend span {
font-family: 'DM Sans' !important;
font-size: 14px;
}

.miesiac {
font-family: 'Onest' !important;
	color: #FFFFFF94;
	font-weight: 300 !important;
	font-size: 14px !important;
}

.sws-days .day.partial.selected {
  background: linear-gradient(to bottom, black50%, #C5C988 50%) !important;
  color: black;
}

.sws-days .partial::after {
  content: attr(title);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #111111;
  padding: 5px 8px;
	font-weight: 200 !important
		font-family: 'Onest' !important;
  border-radius: 5px;
  font-size: 11px;
  color: #fff;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  white-space: nowrap;
  display: none;
  z-index: 10;
}

.sws-days .partial:hover::after {
  display: block;
}

.podsumowanie h2 {
  font-family: 'Onest';
  font-size: 25px;
}

.wyslij-rez {
    background-color: black;
    font-family: "Onest", Sans-serif;
    font-weight: 600;
    letter-spacing: -0.6px;
    border: none;
    fill: #000000;
    color: #000000;
    transition-duration: 1s;
    padding: 12px 55px 12px 55px;
    border-radius: 6px;
}
.wyslij-rez:hover {
    background-color: black;
    font-family: "Onest", Sans-serif;
    font-weight: 600;
    letter-spacing: -0.6px;
    border: none;
    fill: #000000;
    color: #000000;
    transition-duration: 1s;
    padding: 12px 55px 12px 55px;
    border-radius: 6px;
}





.podsumowanie {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 600px;
  padding: 20px 0;
}

.podsumowanie h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.podsumowanie ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.podsumowanie ul li {
  margin-bottom: 12px;
  font-weight: 200;
  border-bottom: 1px solid #FFFFFF14;
  padding-bottom: 8px;
color: #fff !important;
}

.podsumowanie ul li strong {
  display: inline-block;
  width: 140px;
  font-weight: 600;
  color: #fff;
}

.call {
  font-family: 'Onest', sans-serif;
  font-size: 16px;
  margin-top: -10px;
}

.selected {
color: black !important;
	background-color: #C5C988 !important;
}

.podsumowanie p {
  font-size: 18px;
  font-weight: 200;
  margin: 12px 0;
  color: #fff;
  text-align: center;
}

.pay-now {
  display: inline-block;
  margin: 25px auto 0 auto;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Onest";
  color: black;
  background-color: black!important;
  color: black;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}






#sws-reservation-form label {
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  color: #333;
}

#sws-reservation-form select,
#sws-reservation-form input[type="text"],
#sws-reservation-form input[type="email"],
#sws-reservation-form input[type="tel"] {
  width: 100% ;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid #FFFFFF08 !important;
  border-radius: 12px;
  font-size: 16px;
  background-color: #141414 !important;
}

.sws-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

#sws-reservation-form input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
}

#sws-reservation-form button[type="submit"] {
  background-color: black;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

#sws-reservation-form button[type="submit"]:hover {
  background-color: #e6be3d;
}
















/* === POPUP STYLING === */
.booking-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.booking-popup.hidden {
  display: none;
}

.booking-popup .popup-content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease-in-out;
  font-family: inherit;
}

.booking-popup h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.booking-popup input,
.booking-popup button {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.booking-popup input:focus {
  outline: none;
  border-color: #FFB917;
  box-shadow: 0 0 0 3px rgba(255, 185, 23, 0.3);
}

.booking-popup .hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.booking-popup .hours button {
  flex: 1 1 30%;
  padding: 0.5rem;
  border: 2px solid #FFB917;
  background: #fff;
  color: #000;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: bold;
}

.booking-popup .hours button.active,
.booking-popup .hours button:hover {
  background: #FFB917;
  color: #fff;
}

.booking-popup button.next-step,
.booking-popup #submitReservation {
  background: #FFB917;
  color: #fff;
  font-weight: bold;
  border: none;
  transition: background 0.2s ease;
}

.booking-popup button:hover {
  background: #e3a713;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}









.sws-calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Bruno Ace', sans-serif;
  margin-bottom: 10px;
}

.sws-calendar-1, .sws-calendar-2 {
  display: flex;
  align-items: center;
  gap: 16px; /* zmień wartość według uznania */
}

.sws-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Bruno Ace';
}

.sws-days-header .day-header {
  text-align: center;
  font-weight: bold;
    font-weight: 600;
  font-family: 'Bruno Ace';
  font-size: 0.8rem;
  color: #555;
  padding: 5px 0;
}

.sws-month h4 {
  display: none !important;
}

.sws-calendar-nav h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Sora';
  text-align: center;
  flex-grow: 1;
}

.sws-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);

  gap: 4px;
  font-family: 'Questrial';
	font-weight: 300 !important;
  margin-bottom: 8px;
  font-weight: bold;
  text-align: center;
  color: #FFFFFFEB;
  font-size: 0.9rem;
}

.sws-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
color: #FFFFFFF5 !important;
}


.sws-calendar-nav button {
  background: #161616;
  color: #fff !important;
  border: none;
  padding: 4px 13px !important;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
}

.sws-calendar-nav button:hover {
  background: black;
  color: #fff !important;
  border: none;
  padding: 4px 13px !important;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transform: scale(1);
  font-family: 'Raleway', sans-serif;
}



.sws-calendar-nav span {
	font-family: 'Sora';
  font-weight: 600;
	font-size: 16px;
}

.sws-calendar-nav button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.sws-calendar-nav button {
  background: black;
  border: none;
  padding: 6px 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}
.sws-calendar-columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.sws-month {
  width: calc(50% - 10px);
  padding: 20px;
  background: #FFFFFF05;
  border-radius: 15px;
}
.sws-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.sws-days .day {
  text-align: center;
  padding: 8px 0;
  background: transparent;
  border: 0px solid #ccc;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Raleway', sans-serif;
}

.sws-days .past {
  text-align: center;
  color: #FFFFFF5C;
  padding: 8px 0;
  border: none;
  background: transparent !important;
  border-radius: 5px;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
}


.sws-days .zarezerwowana {
  background: #C5C988 !important;
  color: black !important;
  cursor: not-allowed;
}
.sws-days .pending {
  background: #aaa;
  color: #fff;
  cursor: not-allowed;
}
.sws-days .available:hover {
  background: #C5C988;
	color: black !important;
}

.sws-days .selected {
  color: #000;
  font-weight: bold;
}

#booking-form-box {
  margin-top: 20px;
  padding: 20px;
  background: #fffbe7;
  border: 1px solid black;
  border-radius: 10px;
  font-family: 'Raleway', sans-serif;
}

#booking-form-box input,
#booking-form-box select {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

#booking-form-box .form-row {
  display: flex;
  gap: 10px;
}

#booking-form-box .form-row input {
  flex: 1;
}

#booking-form-box fieldset {
  margin-top: 20px;
  padding: 10px;
  border: 1px dashed #ccc;
  border-radius: 6px;
}

#booking-form-box button {
  margin-top: 20px;
  padding: 10px 20px;
  background: black;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

/* Box z potwierdzeniem rezerwacji */
.sws-confirmation-box {
  margin-top: 30px;
  background: #fffbe7;
  padding: 30px;
  border: 2px solid black;
  border-radius: 12px;
  font-family: 'Raleway', sans-serif;
}
.sws-confirmation-box h2, .sws-confirmation-box h3 {
  font-family: 'Bruno Ace', sans-serif;
  color: #222;
}
.sws-confirmation-box p {
  margin-bottom: 12px;
}


/* Kolory dni w kalendarzu */
.zarezerwowana {
    background-color: #d1d1d1!important; /* Ciemnoszare tło */
    color: #333;
}

.oczekujaca {
    background-color: #FFFFFF0D!important; /* Jasnoszare tło */
    color: #fff;
}

.past {
    background-color: #d1d1d1!important; /* Ciemnoszare tło */
    color: #333;
}
.past:hover {
color: #00000060!important;
}

/* Dni dostępne pozostają białe domyślnie */


/* Zablokowane dni w kalendarzu - wygląd i klik */
.zarezerwowana,
.oczekujaca {
    pointer-events: none;
    cursor: not-allowed;
}


#sws-booking-output {
  margin-top: 40px;
  border-radius: 10px;
  font-family: 'Questrial', sans-serif;
}

#sws-booking-output p {
  margin: 0.3rem 0;
	  font-family: 'Questrial', sans-serif !important; 
  font-size: 1rem;
  color: #fff;
  font-weight: 300;
}

#sws-booking-output p strong {
	font-size: 18px;
  color: #fff;
	opacity: .6;
}

@media (max-width: 768px) {
  .sws-calendar-columns {
    flex-direction: column;
    gap: 30px;
  }

  .sws-month {
    width: 100%;
  }

.sws-calendar-nav-mobile {
  display: none;
}

@media (max-width: 768px) {
  .sws-calendar-nav {
    display: none;
  }
  .sws-legend {
    font-size: 12px;
    gap: 1rem;
font-weight: 500;
    margin-top: 1.5rem;
    justify-content: center;
font-family: 'Raleway';
  }

  .sws-legend > div {
    flex: 1 1 25%;
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .sws-calendar-nav-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
  }

  .sws-calendar-nav-mobile button {
    background: black;
    border: none;
    padding: 8px 12px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
  }

  .sws-calendar-nav-mobile span {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: bold;
  }

.sws-calendar-nav {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
  .sws-month-mobile-heading {
    text-align: center;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    margin: 10px 0 -10px;
    color: #222;
  }
.sws-calendar-1,
.sws-calendar-2 {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

  .sws-calendar-nav span {
    font-size: 16px;
  }

  .sws-calendar-nav button {
    padding: 8px 12px;
  }
}
.godziny {
margin-top: 50px !important;
	background-color: black !important;
}