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

body {
    background: #f4f4f4;
    height: 100vh;
}

header .nav-baar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    margin-bottom: 10px;
    padding: 15px 30px;
    box-shadow: 0 4px 12px rgb(128 128 128 / 42%);
}

.menu-baar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.menu-baar ul li {
    list-style-type: none;
    font-size: 17px;
}

.material-symbols-outlined {
    color: red;
    background-color: rgb(245, 152, 152);
    font-size: 25px;
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 40
}

.login-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;

    width: fit-content;
    height: 52px;

    padding: 3px;
    border: none;
    border-radius: 50px;
    background: #aaecfb;

    cursor: pointer;
    overflow: hidden;

    box-shadow: 0 8px 20px rgba(128, 128, 128, 0.2);
}

#text {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;
    padding: 0 20px;

    background: #aaecfb;
    color: #4db6f5;

    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

#icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    background: #ffc1cc;
    border-radius: 50%;

    flex-shrink: 0;
}

.cart {
    width: 380px;
    height: 570px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.container {
    width: 1000px;
    max-width: 95%;
    margin: 40px auto;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5px;
}

/* left side Container */
/* Add Items COntainer */
.add-items {
    flex: 1;
    height: 50%;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.heading {
    text-align: center;
    padding: 18px;
    border-bottom: 1px solid #ececec;
}

.heading h2 {
    font-size: 22px;
    color: #333;
}


table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: #f7f7f7;
}

thead th {
    padding: 12px 15px;
    text-align: left;
    font-size: 14px;
    color: #555;
}

tbody td {
    padding: 12px 15px;
    border-bottom: 1px solid #f1f1f1;
    font-size: 14px;
}


#cartItems:empty::before {
    content: "ⓘ";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
    color: #9a9a9a;
    margin-top: 20px;
}

#cartItems:empty::after {
    content: "No Items Added";
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    /* margin:10px 0 35px; */
}


.add-items h3 {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #ececec;
    font-size: 20px;
    color: #333;
}


/* Booking Conatiner */
.book-now {
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
}

.book-now h4 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    /* border-bottom: 2px solid rgba(133, 131, 131, 0.497); */
}

.booking-container {
    width: 100%;
}

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 100%;
}

.input-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    height: 48px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: .3s;
}

.input-group input::placeholder {
    color: #b5b5b5;
}

.input-group input:focus {
    border-color: #8c92ff;
    box-shadow: 0 0 5px rgba(140, 146, 255, .3);
}

/* Two Inputs in One Row */
.row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.row .input-group {
    flex: 1;
    min-width: 0;
}

/* Button */
.book-btn {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(180deg, #d8d9ff, #b5b7f4);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.book-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #c8cbff, #9ea2f0);
}

.book-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media(max-width:600px) {
    .row {
        flex-direction: column;
        gap: 0;
    }
}

/* Right side container */
.service {
    width: 420px;
    height: 570px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 30px;

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

.top-heading {
    border-bottom: 2px solid #605a5acc;
}

.service .top-heading h2 {
    color: #333;
    margin-bottom: 10px;
}

.service .top-heading p {
    color: #333;
    margin-bottom: 30px;
}

#serviceImage {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 20px;
    margin-top: 10px;
}

#serviceName {
    font-size: 24px;
    color: #444;
    margin-bottom: 12px;
}



/* Buttons */

.buttons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.buttons button {
    width: 48%;
    padding: 14px 0;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

#skipBtn {
    background: #f1f1f1;
    color: #444;
}

#skipBtn:hover {
    background: #dddddd;
}

#addBtn {
    background: #5b5ff6;
    color: #fff;
}

#addBtn:hover {
    background: #474be8;
}