@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* HEADER */

/* LAYOUT */
.container1 {
    display: flex;
    padding: 25px;
    gap: 25px;
}

/* PANELS */
.services, .cart {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.services {
    width: 62%;
}

.cart {
    width: 38%;
    position: sticky;
    top: 20px;
}

/* HEADINGS */
h2 {
    margin-top: 0;
    font-weight: 600;
    color: #222;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 12px;font
}

/* CATEGORY */
.category {
    margin-bottom: 18px;
    border-radius: 12px;
    border: 1px solid #eee;
    overflow: hidden;
}

.category-header {
    background: linear-gradient(90deg, #FF1493, #fff);
    padding: 14px 16px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-header:hover {
    background: #6f42c1;
;
}

.category-body {
    display: none;
    padding: 12px 18px;
}

.category.active .category-body {
    display: block;
}

/* SERVICE ROW */
.service-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.service-item span {
    font-size: 14px;
}

/* BUTTONS */
button {
    padding: 7px 16px;
    border: none;
    background: linear-gradient(135deg, #510069 , #d15af5);
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(233,30,99,0.4);
}

/* CART */
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.remove {
    color: #e91e63;
    font-weight: bold;
    cursor: pointer;
    margin-left: 8px;
}

/* FORM SECTIONS */
.section {
    margin-top: 20px;
}

label {
    font-size: 13px;
    color: #555;
}

select, input[type="date"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-top: 8px;
    font-size: 14px;
    outline: none;
}

select:focus, input[type="date"]:focus {
    border-color: #e91e63;
}

/* TIME SLOTS */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.time-slot {
    padding: 10px;
    background: #f2f2f2;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s;
}

.time-slot:hover {
    background: #ffe3ed;
}

.time-slot.active {
    background: linear-gradient(135deg, #4caf50, #6fdc8c);
    color: #fff;
    box-shadow: 0 6px 15px rgba(76,175,80,0.4);
}

.time-slot.disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
}

/* TOTAL */
.total {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    color: #222;
}

/* CHECKOUT */
.checkout {
    width: 100%;
    padding: 14px;
    margin-top: 18px;
    border-radius: 30px;
    font-size: 15px;
    background: linear-gradient(135deg, #1f1f1f, #444);
}

.checkout:hover {
    background: linear-gradient(135deg, #000, #333);
}

/* MOBILE */
@media(max-width:900px) {
    .container {
        flex-direction: column;
    }
    .services, .cart {
        width: 100%;
    }
}
