﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    color: #333;
    font-family: 'Zain', sans-serif;
}

.booking-page-classic {
    margin: 0;
    padding: 0;
}

.booking-navbar-shell {
    position: relative;
    height: 115px;
    margin: 0;
    padding: 0;
}
.OI::placeholder {
    color: #CF9233;
    opacity: 1;
}
/* Main Container */
.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
}
/* Content Area */
.content {
    flex: 1;
    background: #F8F8F8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .booking-navbar-shell {
        height: 67px;
    }
}

/* Progress Bar */
.progress-bar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.progress-bar::-webkit-scrollbar {
    display: none;
}

.progress-step {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 3px solid white;
    color: #979797;
    width: 50px;
    height: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 0 0 auto;
}

.progress-step.active {
    background: #CF9233;
    /* Green for active step */
    color: white;
}

.progress-step.completed {
    background: #CF9233;
    /* Green for completed step */
    color: white;
}

/* Optional: Hover effect for clickable steps */
.progress-step:hover:not(.active):not(.completed) {
    background: #CF923329;
}

/* Disable hover and cursor for future steps */
.progress-step:not(.active):not(.completed) {
    cursor: not-allowed;
}

/* Gender Selection */
.gender-selection {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px 0;
}

.gender-card {
    background: rgba(224, 247, 250, 0.5);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.gender-card:hover {
    border-color: #C8A882;
    transform: translateY(-5px);
}

.gender-card.selected {
    border-color: #C8A882;
    background: rgba(200, 168, 130, 0.1);
}

.gender-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.gender-icon.male {
    background: linear-gradient(135deg, #4a90e2, #7b68ee);
}

.gender-icon.female {
    background: linear-gradient(135deg, #ff6b9d, #c44569);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    padding: 10px 0;
}

.service-card {
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    height: 139px;
    overflow: hidden;
}

.service-card.is-frozen,
.massage-card.is-frozen {
    opacity: 0.6;
}

.service-card.selected {
    border: 4px solid #CF9233;
}

.service-card h4 {
    font-size: 15px;
    margin: 6px 0 0;
    line-height: 1.3;
}

.service-card__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
    object-position: center;
}

.service-card__title {
    position: absolute;
    inset-inline: 0;
    bottom: 18px;
    padding: 0 12px;
    text-align: center;
    font-size: 21px;
    color: #fff;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.service-card:hover {
    border: 4px solid #CF9233;
    transform: translateY(-5px);
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.service-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Staff Selection */
.staff-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.staff-grid--hidden {
    display: none !important;
}

.staff-mode-toggle {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 24px;
    flex-wrap: wrap;
}

.staff-mode-toggle__button {
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #666;
    border-radius: 999px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.staff-mode-toggle__button.is-active {
    background: #CF9233;
    border-color: #CF9233;
    color: #fff;
    box-shadow: 0 10px 24px rgba(207, 146, 51, 0.2);
}

.staff-selection-card + .staff-selection-card {
    margin-top: 18px;
}

.staff-selection-card {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #f0e2ca;
    box-shadow: 0 10px 26px rgba(15, 15, 15, 0.05);
}

.staff-selection-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.staff-selection-card__title {
    display: block;
    color: #4f4f4f;
    font-size: 18px;
}

.staff-selection-card__subtitle {
    margin: 6px 0 0;
    color: #979797;
    font-size: 14px;
}

.staff-selection-card__image {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
}

.staff-selection-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    width: 100%;
}

.staff-selection-subservice {
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 16px;
    background: #fafafa;
    min-width: 0;
}

.staff-selection-subservice__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #4f4f4f;
}

.staff-selection-subservice__top strong {
    font-size: 16px;
    min-width: 0;
    word-break: break-word;
}

.staff-selection-subservice__top span {
    color: #979797;
    font-size: 13px;
    white-space: nowrap;
}

.staff-selection-subservice__picker {
    margin-top: 14px;
}

.staff-selection-subservice__label {
    display: block;
    margin-bottom: 8px;
    color: #7f7f7f;
    font-size: 13px;
    font-weight: 700;
}

.staff-selection-subservice__select {
    width: 100%;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 12px 14px;
    background: #fff;
    color: #4f4f4f;
    font-size: 14px;
}

.staff-selection-subservice__select:disabled {
    background: #f3f3f3;
    color: #9f9f9f;
    cursor: not-allowed;
}

.staff-selection-subservice__hint {
    margin-top: 14px;
    border-radius: 12px;
    background: #fff7ea;
    color: #a17328;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
}

.staff-card {
    background: rgba(224, 247, 250, 0.3);
    border: 2px solid transparent;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.staff-card:hover {
    border-color: #C8A882;
    transform: translateY(-5px);
}

.staff-card.selected {
    border-color: #C8A882;
    background: rgba(200, 168, 130, 0.1);
}

.staff-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.staff-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Time Slots */
.time-slots {
    margin-top: 30px;
}

.time-period {
    margin-bottom: 20px;
}

.time-period-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #666;
}

.time-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.time-slot {
    padding: 8px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.time-slot:hover {
    border-color: #C8A882;
}

.time-slot.selected {
    background: #C8A882;
    color: white;
    border-color: #C8A882;
}
/* Service Detail */
.service-detail {
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 40px 0;
}

.service-image {
    width: 300px;
    height: 200px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.service-info p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

/* Location Form */
.location-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.form-group input,
.form-group select {
    width: 38%;
    font-family: 'Lemonada', sans-serif;
    padding: 8px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    color:#979797;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #C8A882;
}

/* Navigation Buttons */
.navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #CF9233;
    color: white;
}

.btn-primary:hover {
    background: #CF9233;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 20px;
    }

    .progress-bar {
        justify-content: flex-start;
    }

    .gender-selection {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        padding: 10px 0;
    }

    .staff-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-detail {
        flex-direction: column;
    }

    .service-image {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .staff-selection-card__header,
    .staff-selection-subservice__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .staff-selection-card {
        padding: 16px;
        border-radius: 16px;
    }

    .staff-selection-card__body {
        gap: 12px;
    }

    .staff-selection-subservice {
        width: 100%;
        padding: 14px;
        border-radius: 14px;
    }

    .summary-service-meta--staff {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .summary-service-meta--staff .summary-service-meta__item {
        font-size: 13px;
    }

    .staff-mode-toggle__button {
        min-width: 160px;
    }
}

/* Hidden class */
.hidden {
    display: none !important;
}

.hidden2 {
    display: none ;
}
.show {
    display: block !important;
}

/* Special styling for massage service cards */
.massage-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin: 30px 0;
}

.massage-card {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.massage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 168, 130, 0.2);
}

.massage-card.selected {
    box-shadow: gray 0px 0px 13px;
}

.massage-name {
    font-size: 18px;
    font-weight: bold;
    color: #CF9233;
    margin-bottom: 10px;
}

.massage-location {
    font-size: 14px;
    color: #666;
}

.massage-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.massage-meta__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    color: #979797;
    font-size: 14px;
}

.massage-meta__label {
    font-weight: 400;
}

.massage-meta__value {
    font-weight: 700;
}

.massage-duration {
    margin-bottom: 0;
}

.massage-price {
    margin-bottom: 0;
}

.massage-price .massage-meta__value {
    color: #CF9233;
}
.most-wanted {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ffc107;
    color: #333;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: bold;
    transform: rotate(15deg);
}

#staffGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.staff-card {
    background: #f1f1f1;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
}

.staff-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 8px;
}

.branch-options input[type="radio"]:checked+img {
    border-color: #007bff;
    box-shadow: 0 0 5px #007bff;
}

label {
    font-size: 1.08rem;
    color: #bc9a69;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@media (max-width: 700px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }

    #step1 {
        padding: 18px 6px;
    }
}

.logo a img {
    height: 60px;
    width: auto;
    border-radius: 12px;
    object-fit: contain;
}

.header-title h2 {
    font-size: 2.2rem;
    color: #a8834b;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin: 0;
}

@media (max-width: 768px) {
    .logo a img {
        height: 30px;
    }

    .header-title h2 {
        font-size: 17px;
    }

    .massage-cards {
        grid-template-columns: none;
    }

    #staffGrid {
        grid-template-columns: none;
    }
}
#serviceSearch{
    margin-top: 40px;
    border: 1.5px solid #e2c89c;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 1.1rem;
    margin-bottom: 6px;
    background: #faf8f5;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px #bc9a6920;
}
        .tooltip-label {
  position: relative;
  cursor: pointer;
}

.tooltip-text {
  visibility: hidden;
  width: 532px;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 4px;

  position: absolute;
  bottom: 100%; /* فوق العنصر */
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 6px;

  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

.tooltip-label:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
h5, .h5 {
    font-size: 15.6px;
}
.gap-4 {
    gap: 19.5px !important;
}
.line {
    flex: 0 0 42px;
    height: 2px;
    background: #ccc;
}
.top-label{
    font-weight: bold;
    font-size: 21px;
    display: block;
    color: black;
    text-align: center;
    background: white;
    padding: 12px;
    box-shadow: #8080804a 0px 1px 9px 0px 1px 9px;
}

.booking-step-title {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    white-space: nowrap;
    padding-inline: 24px;
}

.booking-selected-services {
    scroll-margin-top: 140px;
}
.sammary-steps{
    width: 100%;
    height: fit-content;
    background: white;
    border-radius: 14px;
    padding: 20px;
}

.summary-service-meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
    color: #979797;
    font-weight: 700;
    width: 100%;
}

.summary-service-meta__item {
    white-space: nowrap;
}

.summary-service-meta__item--price {
    color: #CF9233;
}

.summary-service-meta--staff {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 10px;
}

.summary-service-meta--staff .summary-service-meta__item:first-child {
    text-align: start;
}

.summary-service-meta--staff .summary-service-meta__item:last-child {
    text-align: end;
}
.booking-cart-trigger {
    position: fixed;
    top: 150px;
    right: 20px;
    width: 62px;
    height: 62px;
    border: none;
    border-radius: 22px;
    background: linear-gradient(135deg, #CF9233, #f0c57c);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(207, 146, 51, 0.28);
    z-index: 10001;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.booking-cart-trigger:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 24px 55px rgba(207, 146, 51, 0.35);
}

.booking-cart-trigger i {
    font-size: 1.35rem;
}

.booking-cart-trigger__badge {
    position: absolute;
    top: -8px;
    left: -8px;
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: #101010;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(16, 16, 16, 0.2);
}

.booking-cart-trigger__badge.is-pop {
    animation: bookingCartBadgePop 0.38s ease;
}

.booking-cart-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 15, 0.3);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 9998;
}

.booking-cart-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

.booking-side-cart {
    position: fixed;
    top: 100px;
    right: 20px;
    width: min(420px, calc(100vw - 32px));
    max-height: calc(100vh - 130px);
    overflow: hidden;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(240, 197, 124, 0.22), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
    box-shadow: 0 34px 80px rgba(32, 22, 6, 0.18);
    border: 1px solid rgba(207, 146, 51, 0.14);
    transform: translateX(calc(100% + 40px)) scale(0.96);
    transform-origin: top right;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.34s cubic-bezier(.22,1,.36,1), opacity 0.24s ease;
    z-index: 10000;
}

.booking-side-cart.open {
    transform: translateX(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.booking-side-cart.is-bumping {
    animation: bookingCartBump 0.44s ease;
}

.booking-side-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(207, 146, 51, 0.12);
}

.booking-side-cart__eyebrow {
    display: inline-block;
    margin-bottom: 6px;
    color: #CF9233;
    font-size: 0.82rem;
    font-weight: 700;
}

.booking-side-cart__header h3 {
    margin: 0;
    color: #2d2d2d;
    font-size: 1.35rem;
    font-weight: 700;
}

.booking-side-cart__close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: rgba(207, 146, 51, 0.1);
    color: #CF9233;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.booking-side-cart__close:hover {
    background: rgba(207, 146, 51, 0.16);
    transform: rotate(90deg);
}

.booking-side-cart__body {
    max-height: calc(100vh - 300px);
    overflow-y: auto;
    padding: 18px 24px;
}

.booking-side-cart__body::-webkit-scrollbar {
    width: 8px;
}

.booking-side-cart__body::-webkit-scrollbar-thumb {
    background: rgba(207, 146, 51, 0.32);
    border-radius: 999px;
}

.booking-side-cart__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%);
    border: 1px solid rgba(207, 146, 51, 0.12);
    box-shadow: 0 14px 30px rgba(207, 146, 51, 0.08);
}

.booking-side-cart__item + .booking-side-cart__item {
    margin-top: 14px;
}

.booking-side-cart__item.is-new {
    animation: bookingCartItemIn 0.42s cubic-bezier(.2,.9,.2,1);
}

.booking-side-cart__thumb {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border-radius: 18px;
    background: #f5eee3;
}

.booking-side-cart__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-side-cart__content {
    min-width: 0;
}

.booking-side-cart__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.booking-side-cart__parent {
    display: inline-block;
    margin-bottom: 4px;
    color: #8f8f8f;
    font-size: 0.88rem;
}

.booking-side-cart__top h4 {
    margin: 0;
    color: #2d2d2d;
    font-size: 1.02rem;
    line-height: 1.45;
}

.booking-side-cart__remove {
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 12px;
    background: rgba(231, 76, 60, 0.08);
    color: #e74c3c;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.booking-side-cart__remove:hover {
    background: rgba(231, 76, 60, 0.16);
    transform: translateY(-2px);
}

.booking-side-cart__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
    color: #6d6d6d;
    font-size: 0.9rem;
}

.booking-side-cart__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.booking-side-cart__meta strong {
    color: #CF9233;
    font-size: 1rem;
}

.booking-side-cart__footer {
    padding: 18px 24px 22px;
    border-top: 1px solid rgba(207, 146, 51, 0.12);
    background: rgba(255, 255, 255, 0.86);
}

.booking-side-cart__total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #4f4f4f;
    font-size: 1rem;
    font-weight: 600;
}

.booking-side-cart__total strong {
    color: #CF9233;
    font-size: 1.22rem;
}

.booking-side-cart__empty {
    padding: 36px 24px 40px;
    text-align: center;
    color: #777;
}

.booking-side-cart__empty-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 18px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(207, 146, 51, 0.14), rgba(240, 197, 124, 0.3));
    color: #CF9233;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.booking-side-cart__empty h4 {
    margin-bottom: 10px;
    color: #2d2d2d;
}

.booking-side-cart__empty p {
    margin: 0;
    line-height: 1.7;
}

@keyframes bookingCartItemIn {
    0% {
        opacity: 0;
        transform: translateX(26px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes bookingCartBadgePop {
    0% { transform: scale(0.82); }
    50% { transform: scale(1.18); }
    100% { transform: scale(1); }
}

@keyframes bookingCartBump {
    0% { transform: translateX(0) scale(1); }
    50% { transform: translateX(-8px) scale(1.02); }
    100% { transform: translateX(0) scale(1); }
}
 .selected-card{
border:2px solid #CF9233;
}
.calendar {
    width: 400px;
    background: white;
    padding: 13px;
    border-radius: 15px;
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.calendar-header button {
  color: black;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  cursor: pointer;
}

.calendar-title {
  color: #CF9233;
  font-weight: bold;
}

.scroll-btn {
  color: black;
  border: none;
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
}
.calendar-day {
    text-align: center;
    padding: 6px;
    font-size: 13px;
    border-radius: 9px;
    overflow: auto;
    height: 52px;
    flex-direction: column;
}

.calendar-day.selected {
    background: #CF9233;
    color:white;
    font-weight: bold;
}

.calendar-day.disabled {
  display: none;
  background: #e0e0e0;
  color: #aaa;
  cursor: not-allowed;
}
.calendar-days{
    display: flex;
    width: fit-content;
    gap: 6px;
    cursor: pointer;
}
.calen , .times{
    width: 50%;
}
.sub-label{
    margin-bottom: 30px;
    color: black;
    font-size: 18px;
}
.time-toggle {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 10px;
  width: 50%;
  background: #D9D9D9;
}

.time-toggle button {
  flex: 1;
  padding: 5px 0;
  border: none;
  background: #f0f0f0;
  cursor: pointer;
}

.time-toggle button.active {
  white-space: nowrap;
  padding: 9px;
  border-radius: 19px;
  background: #fff;
  font-weight: bold;
}

.times button {
  margin: 5px;
  padding: 5px 10px;
  background: #D9D9D9;
  cursor: pointer;
}
#wifi-loader {
  --background: #62abff;
  --front-color: #CF9233;
  --back-color: #c3c8de;
  --text-color: #414856;
  width: 64px;
  height: 64px;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wifi-loader svg {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wifi-loader svg circle {
  position: absolute;
  fill: none;
  stroke-width: 6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(-100deg);
  transform-origin: center;
}

#wifi-loader svg circle.back {
  stroke: var(--back-color);
}

#wifi-loader svg circle.front {
  stroke: var(--front-color);
}

#wifi-loader svg.circle-outer {
  height: 86px;
  width: 86px;
}

#wifi-loader svg.circle-outer circle {
  stroke-dasharray: 62.75 188.25;
}

#wifi-loader svg.circle-outer circle.back {
  animation: circle-outer135 1.8s ease infinite 0.3s;
}

#wifi-loader svg.circle-outer circle.front {
  animation: circle-outer135 1.8s ease infinite 0.15s;
}

#wifi-loader svg.circle-middle {
  height: 60px;
  width: 60px;
}

#wifi-loader svg.circle-middle circle {
  stroke-dasharray: 42.5 127.5;
}

#wifi-loader svg.circle-middle circle.back {
  animation: circle-middle6123 1.8s ease infinite 0.25s;
}

#wifi-loader svg.circle-middle circle.front {
  animation: circle-middle6123 1.8s ease infinite 0.1s;
}

#wifi-loader svg.circle-inner {
  height: 34px;
  width: 34px;
}

#wifi-loader svg.circle-inner circle {
  stroke-dasharray: 22 66;
}

#wifi-loader svg.circle-inner circle.back {
  animation: circle-inner162 1.8s ease infinite 0.2s;
}

#wifi-loader svg.circle-inner circle.front {
  animation: circle-inner162 1.8s ease infinite 0.05s;
}

#wifi-loader .text {
  position: absolute;
  bottom: -40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
}

#wifi-loader .text::before, #wifi-loader .text::after {
  content: attr(data-text);
}

#wifi-loader .text::before {
  color: var(--text-color);
}

#wifi-loader .text::after {
  color: var(--front-color);
  animation: text-animation76 3.6s ease infinite;
  position: absolute;
  left: 0;
}

@keyframes circle-outer135 {
  0% {
    stroke-dashoffset: 25;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 301;
  }

  80% {
    stroke-dashoffset: 276;
  }

  100% {
    stroke-dashoffset: 276;
  }
}

@keyframes circle-middle6123 {
  0% {
    stroke-dashoffset: 17;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 204;
  }

  80% {
    stroke-dashoffset: 187;
  }

  100% {
    stroke-dashoffset: 187;
  }
}

@keyframes circle-inner162 {
  0% {
    stroke-dashoffset: 9;
  }

  25% {
    stroke-dashoffset: 0;
  }

  65% {
    stroke-dashoffset: 106;
  }

  80% {
    stroke-dashoffset: 97;
  }

  100% {
    stroke-dashoffset: 97;
  }
}

@keyframes text-animation76 {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  50% {
    clip-path: inset(0);
  }

  100% {
    clip-path: inset(0 0 0 100%);
  }
}
.btn-e {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 35px;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid #cc902b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline {
  background: transparent;
  color: #cc902b;
  width: 28%;
  overflow: hidden;
}

.btn-outline img {
  transition: transform 1s ease;
}

.btn-outline:hover img {
  transform: translateX(140px);
}

.btn-filled {
  background: #cc902b;
  color: black;
  width: 28%;
}

.btn-filled:hover {
  background: #b1791f;
}

.btn-e i {
  font-style: normal;
}
.ti {
    font-size: 27px;
    margin: 30px 0;
    font-weight: bold;
    color: black;
}
.total-sunmary{
    width: 100%;
    border: 1px solid #D9D9D9;
    margin: 28px 0;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #979797;
}
.sub-sammary-total{
    color: #CF9233;
}
.two-btn{
    display: flex;
    justify-content: space-around;
    margin: 50px 0 0px 0;
}
.branch-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.branch-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-align: center;
  width: 250px; /* تقدر تعدلها */
}

.branch-card:hover {
  transform: translateY(-5px);
}

.branch-option input:checked + .branch-image img {
  border: 2px solid #f7931e; /* لون مميز عند التحديد */
}

.branch-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  cursor: pointer;
}

.branch-info {
  padding: 10px 15px;
}

.branch-name {
  color: #CF9233;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 18px;
}

.branch-address {
  color: #555;
  font-size: 14px;
}
@media (max-width: 576px) {
    .w-100-mob {
        width: 100% !important;
    }
    .branch-cards {
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
    }
    .sammary-steps {
        grid-template-columns: repeat(1, minmax(250px, 1fr)) !important;
    }
    .summary-card {
        border: 1px solid #CF9233;
    }
    .booking-cart-trigger {
        top: auto;
        bottom: 96px;
        right: 16px;
        width: 58px;
        height: 58px;
        border-radius: 20px;
    }
    .booking-side-cart {
        top: auto;
        right: 12px;
        bottom: 16px;
        width: calc(100vw - 24px);
        max-height: 72vh;
        border-radius: 24px;
        transform: translateY(calc(100% + 40px)) scale(0.96);
        transform-origin: bottom center;
    }
    .booking-side-cart.open {
        transform: translateY(0) scale(1);
    }
    .booking-side-cart__body {
        max-height: calc(72vh - 126px);
        padding: 16px;
    }
    .booking-side-cart__footer,
    .booking-side-cart__header {
        padding-left: 16px;
        padding-right: 16px;
    }
    .booking-side-cart__item {
        grid-template-columns: 58px 1fr;
        gap: 12px;
        border-radius: 18px;
    }
    .booking-side-cart__thumb {
        width: 58px;
        height: 58px;
        border-radius: 15px;
    }
    .sub-label {
        display: none;
    }
    .Date-Time-Mob {
        flex-direction: column;
    }
    .calen, .times {
        width: 100%;
    }
    .calendar {
        width: 100%;
    }
    .time-toggle {
        width: 100%;
    }
    .btn-filled {
        width: fit-content;
    }
    .btn-outline {
        width: fit-content;
    }
    .two-btn {
        width: 108%;
    }
}
.notify{
    background: white !important;
    color: black !important;
    width: fit-content !important;
}
.notify .desc11{
    color: black !important;
}

.loyalty{
    width: 47% !important;
}

/* Sami logo loader override */
#wifi-loader.sami-wifi-loader {
  position: fixed !important;
  width: 100vw;
  height: 100vh;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  background: rgba(245, 246, 250, 0.92);
  z-index: 999999;
  border-radius: 0;
  margin: 0;
  padding: 0;
}

#wifi-loader .sami-wifi-loader__logo {
  width: 90px;
  max-width: 38vw;
  height: auto;
  display: block;
  margin: 0 auto;
  animation: sami-logo-slide 1s ease-in-out infinite;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.18));
  transform-origin: center;
}

@keyframes sami-logo-slide {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  55% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-40px);
  }
}
