html {
    font-family: 'Outfit', sans-serif !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif !important;
}

:root {
    --primary: #e5a800;
    --primary-light: #e5a80038;

    --accent: #fec00f;
    --accent-soft: #fff6d6;

    --success: #34c38f;
    --info: #3b82f6;

    --text-dark: #1e1e2d;
    --text-muted: #6c757d;

    --border: #ececf2;
    --card-bg: #ffffff;

    --radius: 10px;
    --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
}


/* HEADER */


header {
    width: 100%;
    position: relative;
    z-index: 1000;
}


header .topbar {
    background: #3b3b3b;
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

header .topbar .topbar-right,
header .topbar .topbar-left {
    display: flex;
    gap: 10px;
}

header .topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .topbar .topbar-left a {
    display: flex;
    align-items: center;
    color: white;
    gap: 5px;
    font-size: 14px;
}

header .topbar .topbar-left a:hover {
    color: var(--accent);
}

header .topbar .topbar-right a {
    color: #000;
    text-align: center;
    background-color: var(--accent);
    text-decoration: none;
    margin-right: 20px;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 0px;
    text-align: center;
    border: solid 1px var(--accent);
    border-radius: 50%;
    transition: ease-in .3s;
}

header .topbar .topbar-right a svg {
    width: 12px;
    height: 12px;
    color: #000;
}

header .topbar .topbar-right a:hover {
    background-color: #000;
    color: var(--accent);
}

header .topbar .topbar-right a:hover svg {
    color: var(--accent);
}



header .navbar {
    background: #000000;
    padding: 18px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
}

header .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .logo img {
    height: 60px;
    margin-right: 20px;
}

header .nav-menu {
    display: flex;
    gap: 28px;
}

header .nav-menu a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    color: white;
    position: relative;
    transition: var(--transition);
}

header .nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: var(--transition);
}

header .nav-menu a:hover {
    color: var(--primary);
}

header .nav-menu a:hover::after {
    width: 100%;
}


header .hamburger {
        display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background-color: aliceblue;
    padding: 8px;
    margin-left: 12px;
    border-radius: 4px;
}

header .hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hamburger Animation */

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hamburger span {
    transition: 0.3s ease;
}

@media (max-width: 992px) {

    header .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: #000;
        flex-direction: column;
        padding: 80px 30px;
        gap: 20px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
    }

    header .nav-menu.active {
        right: 0;
    }

    header .hamburger {
        display: flex;
    }

    header .topbar .topbar-left {
        justify-content: space-between;
    }

    header .topbar .container {
        display: block;
        padding: 0px 15px;
    }

    header .topbar .topbar-right {
        display: none;
    }

    header .logo img {
        height: 45px;
    }

    header .navbar {
        padding: 10px 0px;
    }

    header .navbar .container {
        padding: 0px 15px;
    }
}

/* FOOTER */


footer {
    background: #111;
    color: #fff;
}

footer .footer-main {
    padding: 50px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer .footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

footer .footer-logo img {
    height: 45px;
}

footer .footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

footer .footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: #bbb;
    transition: var(--transition);
    position: relative;
}

footer .footer-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: var(--transition);
}

footer .footer-links a:hover {
    color: #fff;
}

footer .footer-links a:hover::after {
    width: 100%;
}

footer .footer-bottom {
    padding: 20px 0;
    text-align: center;
}

footer .footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #888;
}

footer .footer-social {
    display: flex;
    gap: 15px;
}

footer .footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bbb;
    font-size: 15px;
    transition: var(--transition);
    text-decoration: none;
}

footer .footer-social a svg {
    width: 18px;
    height: 18px;
    color: white;
}

footer .footer-social a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {

    footer .footer-social {
        justify-content: center;
    }

    footer .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    footer .footer-links {
        justify-content: center;
        gap: 20px;
    }

    footer .footer-main {
        padding: 20px 0px;
    }

}


/* ========================= */
/* BOOKING MENU */
/* ========================= */



.booking-section .booking-wizard-container {
    position: relative;
    background-image: url(../images/booking-bg-1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding: 60px 0px;
}

.booking-section .booking-wizard-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0000005e;
    z-index: 0;
}

.booking-section .booking-wizard-container>* {
    position: relative;
    z-index: 1;
}


@media (max-width:768px) {
    .booking-section .booking-wizard-container {
        padding: 10px 5px;
    }

    .booking-section .booking-wizard-container .row {
        flex-direction: column-reverse;
    }

    .booking-section .booking-wizard-container .col-lg-8 {
        margin-top: 10px;
    }

}

/* BOOKING SUMMARY */

.booking-right .booking-summary {
    border-radius: var(--radius);
}

.booking-right .booking-summary .booking-summary {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    overflow: hidden;
    position: sticky;
    top: 2rem;
}

.booking-right .booking-summary .summary-header {
    background: #000000;
    padding: 16px;
    color: #fff;
    border-radius: 10px 10px 0px 0px;
}

.booking-right .booking-summary .summary-header h4 {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    color: white;
}

.booking-right .booking-summary .summary-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: white;
    border-radius: 0px 0px 10px 10px;
}

.booking-right .booking-summary .summary-block {
    background: #fafbff;
    border-radius: 8px;
    padding: 14px;
    border: 1px solid var(--border);
}

.booking-right .booking-summary .summary-block h6 {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.booking-right .booking-summary .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-weight: 500;
}

.booking-right .booking-summary .price {
    color: var(--accent);
    font-weight: 500;
}

.booking-right .booking-summary .summary-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}

.booking-right .booking-summary .professional-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-right .booking-summary .avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.booking-right .booking-summary .highlight {
    font-weight: 500;
    color: var(--primary);
}

.booking-right .booking-summary .success {
    color: var(--success);
    font-weight: 500;
}

.booking-right .booking-summary .empty {
    color: var(--text-muted);
    font-style: italic;
}

.booking-right .booking-summary .summary-total {
    border-top: 1px solid var(--border);
    margin-top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 15px;
    background-color: black;
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.booking-right .booking-summary .total-price {
    color: var(--primary);
    font-size: 15px;
}

/* LANGUAGE SELECT */

.booking-right .language-switcher {
    background: #fff;
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

.booking-right .language-switcher .lang-btn {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.booking-right .language-switcher .lang-btn img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 4px;
}

.booking-right .language-switcher .lang-btn:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
}

.booking-right .language-switcher .lang-btn.active {
    background: var(--accent-soft);
    border-color: var(--accent);
    box-shadow: 0 6px 20px rgba(254, 192, 15, 0.3);
}



@media (max-width: 768px) {
    .booking-right .booking-summary .summary-header h4 {
        font-size: 14px;
    }

    .booking-right .language-switcher .lang-btn {
        height: auto;
        width: auto;
        padding: 3px;
    }

    .booking-right .language-switcher {
        padding: 6px;
    }

    .booking-right .booking-summary .summary-block {
        padding: 8px;
    }

    .booking-right .booking-summary .summary-block h6 {
        margin-bottom: 6px;
    }

    .booking-right .booking-summary .summary-content {
        gap: 8px;
        padding: 7px;
    }

    .booking-left .booking-steps {
        padding: 12px 5px 6px !important;
    }
}




/* BOOKING STEPS */

.booking-left .booking-steps {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    margin-bottom: 30px;
}

.booking-left .booking-steps .stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.booking-left .booking-steps .stepper::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    z-index: 0;
    border-radius: 2px;
}

.booking-left .booking-steps .step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.booking-left .booking-steps .step-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f4f9;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin: 0 auto 10px;
    transition: var(--transition);
}


.booking-left .booking-steps .step-label {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
    transition: var(--transition);
}

.booking-left .booking-steps .step.active .step-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 6px #e5a80030;
}

.booking-left .booking-steps .step.active .step-label {
    color: var(--primary);
    font-weight: 500;
}

.booking-left .booking-steps .step.completed .step-icon {
    background: var(--accent);
    border-color: var(--accent);
    color: #1e1e2d;
    box-shadow: 0 0 0 6px rgba(254, 192, 15, 0.25);
}

.booking-left .booking-steps .step:hover .step-icon {
    transform: scale(1.08);
}




/* STEP 1 */

.booking-left .wizard-content .step-panel {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border);
    position: relative;
}

.booking-left .wizard-content .step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.booking-left .wizard-content .step-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(81, 86, 190, 0.25);
}

.booking-left .wizard-content .step-header h3 {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
}

.booking-left .wizard-content .step-header p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 14px;
}

.booking-left .wizard-content .calendar-strip {
    display: flex;
    gap: 8px;
    padding: 10px 0px;
    flex-flow: row wrap;
}

.booking-left .wizard-content .calendar-day-item {
    min-width: 70px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.booking-left .wizard-content .calendar-day-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.booking-left .wizard-content .calendar-day-item.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 20px 50px rgba(81, 86, 190, 0.35);
}

.booking-left .wizard-content .calendar-day-item .month {
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    color: black;
}

.booking-left .wizard-content .calendar-day-item .date {
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.booking-left .wizard-content .calendar-day-item .day {
    font-size: 12px;
}

.booking-left .wizard-content .event-dots {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.booking-left .wizard-content .event-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.booking-left .wizard-content .event-more {
    font-size: 10px;
    font-weight: 500;
}

.booking-left .wizard-content .date-selected {
    margin-top: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #f8f9ff;
    border: 1px solid var(--border);
    text-align: center;
}

.booking-left .wizard-content .date-selected h4 {
    margin: 0 0 6px;
    color: black;
    font-size: 16px;
}

.booking-left .wizard-content .date-selected p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.booking-left .wizard-content .date-placeholder {
    margin-top: 10px;
    padding: 0;
    text-align: center;
    color: var(--text-muted);
}



/* STEP 2 */

.booking-left .wizard-content .step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.booking-left .wizard-content .step-header-content {
    flex: 1;
}

.booking-left .wizard-content .step-header-actions {
    display: flex;
    gap: 10px;
}

.booking-left .wizard-content .btn-secondary {
    padding: 8px 14px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background-color: #000000;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.booking-left .wizard-content .btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.booking-left .wizard-content .btn-primary-sm {
    padding: 8px 14px;
    border-radius: var(--radius);
    border: none;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.booking-left .wizard-content .btn-primary-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.booking-left .wizard-content .category-group {
    margin-bottom: 12px;
}

.booking-left .wizard-content .category-group h5 {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-dark);
    padding-bottom: 8px;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-left .wizard-content .category-group h5::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

.booking-left .wizard-content .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px;
}

.booking-left .wizard-content .service-card {
    position: relative;
    border-radius: 5px;
    border: 1px solid var(--border);
    background: #fff;
    padding: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.booking-left .wizard-content .service-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.booking-left .wizard-content .service-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px #e5a80030;
}

.booking-left .wizard-content .service-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 6px;
    align-items: center;
}

.booking-left .wizard-content .service-bottom {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 0px;
    align-items: center;
}

.booking-left .wizard-content .service-top h6 {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.booking-left .wizard-content .service-price {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    border-radius: 6px;
}

.booking-left .wizard-content .service-duration {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.booking-left .wizard-content .service-description {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: auto;
}

.booking-left .wizard-content .line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.booking-left .wizard-content .selection-check {
    position: absolute;
    top: -8px;
    right: -8px;
    color: green;
    font-size: 18px;
}

.booking-left .wizard-content .empty-services {
    text-align: center;
    padding: 50px 0;
}

.booking-left .wizard-content .empty-services i {
    font-size: 42px;
    color: var(--text-muted);
}

.booking-left .wizard-content .empty-services p {
    margin: 12px 0;
    color: #dc3545;
    font-weight: 500;
}

.booking-left .wizard-content .btn-continue {
    margin-top: 25px;
    width: 100%;
    padding: 10px;
    border-radius: 7px;
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    align-items: center;
    line-height: 26px;
}

.booking-left .wizard-content .btn-continue:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}


/* STEP 4 */


.booking-left .wizard-content .staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

.booking-left .wizard-content .staff-card {
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #fff;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.booking-left .wizard-content .staff-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.booking-left .wizard-content .staff-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 3px #e5a80030;
}

.booking-left .wizard-content .staff-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}

.booking-left .wizard-content .default-avatar {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 22px;
}

.booking-left .wizard-content .staff-card h6 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.booking-left .wizard-content .staff-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.booking-left .wizard-content .staff-card .selection-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--accent);
    font-size: 18px;
}

.booking-left .wizard-content .empty-staff {
    text-align: center;
    padding: 50px 0;
}

.booking-left .wizard-content .empty-staff p {
    color: #dc3545;
    font-weight: 500;
    margin-bottom: 12px;
}



/* STEP 4 */


.booking-left .wizard-content .slots-container {
    margin-top: 15px;
    padding: 20px;
    border-radius: var(--radius);
    background: #fafbff;
    border: 1px solid var(--border);
}

.booking-left .wizard-content .slots-title {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 14px;
}

.booking-left .wizard-content .slots-title span {
    color: var(--primary);
}

.booking-left .wizard-content .time-grid {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
}

.booking-left .wizard-content .time-slot {
    min-width: 100px;
    padding: 8px;
    border-radius: 50px;
    border: 1px solid var(--border);
    text-align: center;
    cursor: pointer;
    font-weight: 500;
    background: #fff;
    transition: var(--transition);
    font-size: 13px;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

@media (hover: hover) {
    .booking-left .wizard-content .time-slot:hover {
        border-color: var(--primary);
        background: var(--primary-light);
    }
}

.booking-left .wizard-content .time-slot.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.booking-left .wizard-content .time-slot i {
    margin-left: 6px;
    color: var(--accent);
}

.booking-left .wizard-content .time-slot.special-slot {
    border-color: #f59e0b;
    background: #fffbeb;
    position: relative;
}

@media (hover: hover) {
    .booking-left .wizard-content .time-slot.special-slot:hover {
        border-color: #d97706;
        background: #fef3c7;
    }
}

.booking-left .wizard-content .time-slot.special-slot.active {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    border-color: transparent;
}

.booking-left .wizard-content .time-slot.special-slot i.bxs-star {
    margin-left: 0;
    margin-right: 4px;
    color: #f59e0b;
    font-size: 12px;
}

.booking-left .wizard-content .time-slot.special-slot.active i.bxs-star {
    color: #fff;
}

.booking-left .wizard-content .empty-slots {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
}

.booking-left .wizard-content .empty-slots i {
    font-size: 40px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.booking-left .wizard-content .empty-slots p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* STEP 5 */



.booking-left .wizard-content .confirm-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}


.booking-left .wizard-content .confirmation-summary {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius);
    background: var(--primary-light);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.booking-left .wizard-content .confirmation-summary small {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.booking-left .wizard-content .confirmation-summary strong {
    font-size: 14px;
    font-weight: 500;
}

.booking-left .wizard-content .btn-confirm {
    margin-top: 25px;
    width: 100%;
    padding: 16px;
    border-radius: 6px;
    border: none;
    background-color: black;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.booking-left .wizard-content .btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}



@media (max-width: 768px) {

    .booking-right .language-switcher,
    .booking-left .booking-steps {
        margin-bottom: 10px;
    }

    .booking-left .wizard-content .staff-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 7px;
        margin-top: 10px;
    }

    .booking-left .wizard-content .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .booking-left .wizard-content .calendar-day-item {
        min-width: 60px;
        padding: 5px;
    }

    .booking-left .wizard-content .step-panel {
        padding: 10px;
    }

    .booking-left .wizard-content .calendar-strip {
        overflow-x: auto;
        flex-flow: nowrap;
    }

    .booking-left .booking-steps .step-icon {
        width: 35px;
        height: 35px;
    }

    .booking-left .booking-steps .step-icon {
        margin: 0 auto 5px;
    }

    .booking-left .booking-steps .stepper::before {
        top: 16px;
    }

    .booking-left .wizard-content .step-header h3 {
        font-size: 15px;
    }

    .booking-left .wizard-content .step-header {
        gap: 7px;
        margin-bottom: 5px;
    }

    .booking-left .wizard-content .step-header-icon {
        width: 40px;
        height: 40px;
    }

    .booking-left .wizard-content .calendar-day-item .date {
        font-size: 15px;
    }

    .booking-left .wizard-content .step-header-actions button span {
        display: none;
    }

    .booking-left .wizard-content .step-header-actions {
        position: absolute;
        right: 2px;
        top: 2px;
        flex-direction: column;
    }

    .booking-left .wizard-content .service-card {
        padding: 7px;
    }

    .booking-left .wizard-content .category-group {
        margin-bottom: 12px;
    }

    .booking-left .wizard-content .staff-avatar {
        width: 25px;
        height: 25px;
        margin-bottom: 5px;
    }

    .booking-left .wizard-content .staff-card {
        padding: 6px;
    }

    .booking-left .wizard-content .time-grid {
        gap: 7px;
        display: grid;
        grid-template-columns: auto auto auto;
    }

    .booking-left .wizard-content .slots-container {
        padding: 10px;
    }

    .booking-left .wizard-content .confirmation-summary {
        padding: 10px;
        gap: 7px;
    }

}


.modal-backdrop {
    display: none !important;
}

.modal {
    background-color: #00000042;
}

/* =============================================
   Booking Navbar � Auth Buttons
   ============================================= */
.booking-auth-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-book-auth {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn-book-auth i {
    font-size: 1rem;
}

/* Login � outline style */
.btn-auth-login {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
}

.btn-auth-login:hover {
    background: var(--accent);
    color: #1e1e2d;
}

/* Register � filled style */
.btn-auth-register {
    background: var(--accent);
    border: 1.5px solid var(--accent);
    color: #1e1e2d;
}

.btn-auth-register:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* My Account � filled with icon */
.btn-auth-account {
    background: var(--accent);
    border: 1.5px solid var(--accent);
    color: #1e1e2d;
}

.btn-auth-account:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Mobile: hide text labels, keep icons */
/* Mobile Navigation Bottom Bar (Fixed) */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-top: 1px solid #eee;
    z-index: 2000; /* Higher than most things */
    display: none;
}

.mobile-nav .mobile-nav-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
}

.mobile-nav .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    font-size: 11px;
    color: #6b7280;
    flex: 1;
}

.mobile-nav .mobile-nav-item i {
    font-size: 20px;
}

.mobile-nav .mobile-nav-item.active,
.mobile-nav .mobile-nav-item:hover {
    color: var(--primary);
}

@media (max-width: 991px) {
    .mobile-nav {
        display: block;
    }
}

/* Auth Buttons - Common Styles */
.booking-auth-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.btn-book-auth {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .2s ease;
    white-space: nowrap;
    line-height: 1;
}

.btn-auth-login {
    background: transparent;
    border: 1.5px solid var(--accent);
    color: var(--accent);
}

.btn-auth-login:hover {
    background: var(--accent);
    color: #1e1e2d;
}

.btn-auth-register {
    background: var(--accent);
    border: 1.5px solid var(--accent);
    color: #1e1e2d;
}

.btn-auth-register:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.btn-auth-account {
    background: var(--accent);
    border: 1.5px solid var(--accent);
    color: #1e1e2d;
}

.btn-auth-account:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

@media (max-width: 768px) {
    .booking-auth-btns {
        gap: 6px;
    }

    .btn-book-auth span {
        display: inline-block !important; /* Force show the name */
        max-width: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .btn-book-auth {
        padding: 7px 10px;
    }
}


/* EVENT LIST */

.event-list {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calendar-event {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 3px;
    font-size: 10px;
    line-height: 1.2;
}

.calendar-event .event-type {
    font-weight: 600;
    color: #0f172a;
}

.calendar-event .event-title {
    color: #475569;
}

.calendar-event.holiday {
    background: #fff4e5;
    border-color: #f5d6a3;
}

.calendar-event.holiday .event-type {
    color: #b45309;
}


/* APPOINTMENT CARD */


/* MAIN WRAPPER */

.premium-bookings-grid {
    margin-top: 10px;
}


/* CARD */

.premium-bookings-grid .card {
    border-radius: 14px;
    border: 1px solid #edf2f7;
    transition: all .25s ease;
    overflow: hidden;
}

.premium-bookings-grid .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}


/* CARD BODY */

.premium-bookings-grid .card-body {
    padding: 18px;
}


/* STATUS BADGE */

.premium-bookings-grid .badge {
    font-size: 11px;
    font-weight: 600;
    border-radius: 30px;
    padding: 6px 10px;
    letter-spacing: .3px;
}


/* CUSTOMER SECTION */

.premium-bookings-grid .avatar-sm {
    width: 42px;
    height: 42px;
}

.premium-bookings-grid .avatar-title {
    font-weight: 600;
    font-size: 15px;
}


/* CUSTOMER NAME */

.premium-bookings-grid h5 {
    font-weight: 600;
    font-size: 14px;
}


/* CUSTOMER PHONE */

.premium-bookings-grid .text-muted {
    font-size: 12px;
}


/* SERVICE TEXT */

.premium-bookings-grid .font-size-14 {
    font-size: 13px !important;
    line-height: 1.4;
}


/* SECTION LABELS */

.premium-bookings-grid .font-size-13 {
    font-size: 12px !important;
}


/* META SECTION */

.premium-bookings-grid .border-top {
    border-color: #f1f5f9 !important;
}

.premium-bookings-grid .row.pt-3 {
    margin-top: 10px;
}


/* DATE + PRICE */

.premium-bookings-grid .fw-semibold {
    font-weight: 600;
    font-size: 13px;
}


/* PROFESSIONAL COLOR DOT */

.premium-bookings-grid .badge.rounded-pill {
    border-radius: 50px;
}


/* ACTION SECTION */

.premium-bookings-grid .btn {
    font-size: 12px;
    border-radius: 8px;
    padding: 6px 12px;
}


/* VIEW BUTTON */

.premium-bookings-grid .btn-outline-primary {
    border-color: #e5a800;
    color: #e5a800;
}

.premium-bookings-grid .btn-outline-primary:hover {
    background: #e5a800;
    border-color: #e5a800;
    color: #fff;
}


/* STATUS BUTTON */

.premium-bookings-grid .btn-soft-secondary {
    background: #f8fafc;
    border: none;
}

.premium-bookings-grid .btn-soft-secondary:hover {
    background: #eef2f7;
}


/* DROPDOWN */

.premium-bookings-grid .dropdown-menu {
    border-radius: 10px;
    border: 1px solid #edf2f7;
    padding: 6px 0;
}

.premium-bookings-grid .dropdown-item {
    font-size: 13px;
    padding: 8px 14px;
}

.premium-bookings-grid .dropdown-item:hover {
    background: #f8fafc;
}


/* ICONS */

.premium-bookings-grid i {
    font-size: 15px;
}


/* EMPTY STATE */

.premium-bookings-grid .bx-calendar-x {
    font-size: 42px;
}

.premium-bookings-grid .card-body.py-5 {
    padding: 50px 20px;
}


/* RESPONSIVE */

@media (max-width:768px) {

    .premium-bookings-grid .card-body {
        padding: 16px;
    }

}