.booking-step-1 {
    .category-card {
        border-radius: 36px;
        padding: 22px 8px;
        background-color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        height: 200px;
        cursor: pointer;
    }
}

.booking-step-2 {
    .btn-close {
        position: absolute;
        top: 24px;
        left: 24px;
    }
    .products-card {
        position: relative;
        border-radius: 24px;
        padding: 24px;
        background-color: white;
    }

    .product-model {
        padding: 20px 24px 16px;
    }

    .product-model-img {
        width: 142px;
        height: 142px;
    }

    .product-model-title h3 {
        font-size: 36px;
        line-height: 48px;
        font-weight: 600;
    }
}

.product-items-list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 24px 0 36px 0;

    .product-items-wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 16px;
    }

    .product-item {
        display: flex;
        flex: 0 0 50%;
        gap: 16px;
        padding: 20px 24px;
        border-radius: 28px;
        background-color: var(--main-bg-color);
        align-items: center;
        transition: background 0.3s ease;
        cursor: pointer;
    }

    .product-title {
        .title {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 8px;
        }

        h4 {
            font-size: 16px;
            line-height: 24px;
            font-weight: 500;
        }

        .original {
            font-size: 13px;
            line-height: 24px;
            color: var(--gray-d10-color);
            background-color: var(--badge-color);
            border-radius: 18px;
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 0px 8px 0px 12px;
            gap: 4px;

            svg {
                width: 10px;
                height: 10px;
            }
        }
    }

    .product-price {
        margin-left: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;

        .price {
            font-size: 20px;
            line-height: 24px;
            font-weight: 600;
        }

        .duration {
            font-size: 13px;
            line-height: 24px;
            color: var(--gray-l20-color);
        }
    }

    .product-item:hover {
        background-color: var(--badge-color);

        .original {
            background-color: var(--white-color);
        }
    }

    .product-item.active {
        background-color: var(--purple-color);

        .product-title {
            h4 {
                color: var(--white-color);
            }

            .original {
                background-color: var(--white-color);
            }
        }

        .product-price {
            .price {
                color: var(--white-color);
            }

            .duration {
                color: var(--white-color);
            }
        }
    }
}

.product-items-more {
    display: flex;
    padding: 28px;
    border-radius: 28px;
    gap: 16px;
    background-color: var(--main-bg-color);
    transition: background 0.3s ease;
    cursor: pointer;

    .more-label {
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
    }

    .more-count {
        font-size: 14px;
        line-height: 24px;
        font-weight: 500;
        color: var(--gray-d10-color);
        margin-left: auto;
        background-color: var(--white-color);
        padding: 4px 8px 4px 12px;
        border-radius: 18px;
        display: flex;
        gap: 4px;
        align-items: center;

        .count {
            color: var(--gray-l20-color-2);
            font-weight: 400;
        }

        svg {
            width: 16px;
            height: 16px;
        }
    }
}
.product-items-more:hover {
    background-color: var(--badge-color);
}

.product-search {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    width: 480px;

    .product-search-selected {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 500;
        line-height: 32px;
        letter-spacing: 0.15px;
        height: 56px;
        border: 1.5px solid var(--text-color);
        border-radius: 20px;
        padding: 10px 24px;
        cursor: pointer;

        svg {
            width: 20px;
            height: 20px;
        }
    }

    .product-search-info {
        display: flex;
        gap: 10px;
        font-size: 14px;
        line-height: 18px;
        font-weight: 300;
    }
}

.product-selected {
    background-color: var(--white-color);
    border-radius: 36px;
    padding: 12px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;

    .product-title-selected {
        font-size: 16px;
        line-height: 20px;
        font-weight: 600;
    }

    .product-item-selected {
        font-size: 14px;
        line-height: 24px;
        font-weight: 300;
        margin-top: 3px;
    }

    .btn-close {
        margin-left: auto;
    }
}

.booking-location-date {
    background-color: var(--white-color);
    border-radius: 36px;
    padding: 24px
}

.booking-location-title {
    text-align: center;
    font-size: 20px;
    line-height: 32px;
    font-weight: 500;
}

.booking-location-options {
    display: flex;
    gap: 8px;
    padding: 8px;
    border-radius: 36px;
    background-color: var(--main-bg-color);
}
.btn-option {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 10px 36px;
    border-radius: 40px;
    flex: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-option.active,
.btn-option:hover {
    background-color: var(--purple-color);
    color: var(--white-color);

    svg path {
        stroke: var(--white-color);
    }
}

.booking-calendar {
    .title {
        font-size: 20px;
        line-height: 24px;
        font-weight: 500;
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }

    .calendar-days {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 4px;

        .days {
            display: flex;
            flex: 0 0 100%;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: var(--main-bg-color);
            padding: 8px 16px;
            border-radius: 16px;
            width: 54px;
            max-width: 54px;
            height: 54px;
            transition: all 0.3s ease;
            cursor: pointer;

            .day {
                font-size: 18px;
                line-height: 20px;
                font-weight: 500;
            }
            .week {
                font-size: 12px;
                line-height: 16px;
                font-weight: 400;
            }
        }
        .days.today,
        .days:hover {
            background-color: var(--purple-color);
            color: var(--white-color);

            .week {
                font-weight: 500;
            }
        }
        .days.disabled {
            color: var(--gray-l20-color-2);
            opacity: 0.5;
        }
    }

    .calendar-month {
        padding: 20px 36px;
        background: rgba(244, 244, 247, 0.5);
        border-radius: 28px;

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

            .nav {
                display: flex;
                gap: 16px;
            }
        }

        .weeks, .days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }

        .weeks {
            margin-bottom: 8px;

            .week {
                font-size: 16px;
                line-height: 24px;
                font-weight: 600;
                width: 24px;
                text-align: center;
            }
        }

        .days {
            .day {
                font-size: 14px;
                line-height: 20px;
                color: var(--gray-l20-color-2);
                width: 24px;
                height: 24px;
                padding: 1px 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: color 0.3s ease;
            }

            .day.today,
            .day:hover {
                border-radius: 15px;
                color: var(--white-color);
                background-color: var(--purple-color);
                cursor: pointer;
            }

            .day.disabled {
                color: var(--gray-l16-color);
            }
        }
    }

    .time-slots {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;

        .time {
            width: 100%;
            padding: 12px 16px;
            background-color: #F0F0F4;
            border-radius: 16px;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: -0.2px;
            font-weight: 500;
            text-align: center;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .time.selected,
        .time:hover {
            background-color: var(--purple-color);
            color: var(--white-color);
            font-weight: 600;
        }

        .time.disabled {
            background-color: var(--main-bg-color);
            color: var(--gray-l20-color-2);
            font-weight: 400;
        }
    }
}

.booking-review {
    background-color: var(--white-color);
    border-radius: 36px;
    padding: 24px;

    h4 {
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 12px;
        color: var(--gray-d10-color);
    }

    p.info {
        font-size: 14px;
        line-height: 24px;
        font-weight: 300;
        text-align: center;
        margin-bottom: 12px;
    }

    .booking-review-section {
        background-color: var(--main-bg-color);
        border-radius: 36px;
        padding: 36px;
        margin-bottom: 12px;

        h3 {
            font-size: 24px;
            line-height: 36px;
            color: var(--gray-d10-color);
            margin-bottom: 12px;
        }

        p {
            font-size: 14px;
            line-height: 22px;
            margin-bottom: 4px;
        }

        ul.number {
            list-style: decimal;
        }
        ul.disc {
            list-style: disc;
        }

        ul {
            padding-left: 20px;
        }

        ul li {
            font-size: 14px;
            line-height: 22px;
            margin-bottom: 4px;
        }
    }
}

.booking-total-sum {
    padding: 16px 24px;
    background-color: var(--main-bg-color);
    border-radius: 16px;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    margin-top: auto;
}