.pb-booking-panel {
  display: none;
  margin-top: 20px;
  padding: 30px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fff;
}
a.pb-btn.pb-open-booking {
  height: 56px;
  padding: 0 34px !important;
  border-radius: 14px !important;
  background: #ef3d24 !important;
  border: none !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px;
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(239, 61, 36, 0.2);
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  text-transform: uppercase;
}
a.pb-btn.pb-open-booking:hover {
  background: #243575 !important;
  transform: translateY(-2px);
}
/* .single-product div.product .summary .single_add_to_cart_button {
    visibility: hidden;
} */
.pb-step {
  display: none;
}

.pb-step.active {
  display: block;
}

.pb-step-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}

.pb-step-actions {
  margin-top: 35px;
}

.pb-btn {
  min-width: 180px;
}
#pb-calendar {
  margin-top: 30px;
}
.pb-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.pb-calendar-header button {
  width: 45px;
  height: 45px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border-radius: 50%;
}

.pb-calendar-header h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}
.pb-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}
.pb-calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 18px;
  background: #f7f7f7;
}

.pb-prev,
.pb-next {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  font-size: 26px;
  cursor: pointer;
  font-weight: bold;
}

.pb-month {
  font-size: 26px;
  font-weight: 700;
}

.pb-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 15px 0;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}

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

.pb-day {
  height: 72px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
}

.pb-day.empty {
  background: white;
}
.pb-day.selected {
  background: #4864b1;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}
.pb-day.disabled {
  cursor: not-allowed;
  color: #999999 !important;
  font-weight: 400;
  position: relative;
  transition: background-color 0.3s ease;
}
.pb-day.disabled:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 70%;
  height: 2px;
  background-color: #000;
}
.pb-day.disabled:hover {
  background: #e0e0e0;
  transition: background-color 0.3s ease;
}
.pb-day.today {
  border: 2px solid #ef3d24;
  font-weight: 700;
  border-radius: 50%;
}

.pb-day.selected {
  background: #4864b1;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
}

.pb-day.disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.pb-review-box {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.pb-review-box h3 {
  font-size: 30px;
  font-weight: 700;
  color: #1f2430;
  margin-bottom: 20px;
}

.pb-review-table {
  width: 100%;
  border-collapse: collapse;
}

.pb-review-table tr {
  border-bottom: 1px solid #ececec;
}

.pb-review-table td {
  padding: 14px 0;
}

.pb-review-label {
  color: #666;
  font-weight: 600;
}

.pb-review-value {
  text-align: right;
  font-weight: 700;
  color: #1f2430;
}

.pb-review-table tr:last-child {
  border-bottom: none;
}
.pb-progress-item.completed .pb-progress-number {
  background: #5666c4;
  color: #fff;
}
.pb-progress-item.completed .pb-progress-text {
  color: #202020;
}
.pb-progress-item.completed + .pb-progress-line {
  background: #5666c4;
}
.pb-booking-page{

    background:#ececec;
    padding:50px 0;

}

.pb-booking-header{
    margin-bottom:40px;

}

.pb-progress{

    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
    margin-bottom:25px;

}

.pb-step{

    display:flex;
    align-items:center;
    gap:10px;
    font-size:30px;
    font-weight:500;

}

.pb-step span{

    width:42px;
    height:42px;
    border-radius:50%;
    background:#8b8b8b;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;

}

.pb-step.completed span{
    background:#3466b6;

}

.pb-step.active span{
    background:#3466b6;

}

.pb-line{

    flex:1;
    height:2px;
    background:#3466b6;
    max-width:250px;

}

.pb-order-header{

    background:#fff;
    padding:20px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;

}

.pb-order-header h3{

    margin:0;
    font-size:38px;

}

.pb-edit-date{

    border:1px solid #000;
    padding:10px 22px;
    color:#000;
    text-decoration:none;

}

.pb-order-date{
    background:#f5f5f5;
    padding:15px 25px;
    font-size:26px;
    margin-bottom:40px;

}
.pbpb-booking-page {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}
/*------------------------
SIDEBAR
-------------------------*/

.pb-sidebar{

display:flex;

flex-direction:column;

gap:30px;

}

.pb-order-card,
.pb-cart-card{

background:#fff;

border-radius:8px;

overflow:hidden;

}

.pb-order-top,
.pb-cart-top{

padding:20px;

display:flex;

justify-content:space-between;

align-items:center;

border-bottom:1px solid #ececec;

}

.pb-order-top h3,
.pb-cart-top h3{

margin:0;

font-size:34px;

}

.pb-cart-top h3{

color:#dd5323;

}

.pb-edit-button{

border:1px solid #111;

padding:10px 18px;

text-decoration:none;

color:#111;

font-size:15px;

border-radius:5px;

}

.pb-order-time{

padding:20px;

font-size:22px;

background:#f8f8f8;

}

.pb-cart-item{

display:flex;

gap:20px;

padding:20px;

border-bottom:1px solid #ececec;

}

.pb-cart-thumb img{

width:95px;

height:auto;

display:block;

}

.pb-cart-title{

font-size:22px;

font-weight:600;

margin-bottom:10px;

}

.pb-cart-date{

font-size:18px;

margin-bottom:5px;

}

.pb-cart-time{

font-size:18px;

margin-bottom:10px;

}

.pb-cart-qty{

font-weight:600;

}