#booking-schedule {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    border-top: 5px solid #874000;
    margin-left: -30px;
    margin-right: -30px;
    background-color: #f9f9f9;
    padding: 1rem;
}
#booking-schedule * {
    font-family: Manrope, sans-serif;
}
#booking-schedule label {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
#booking-schedule input[type='checkbox'] {
    margin-top: 0;
}
input.input-client {
    color: #1a1c1c;
    padding: 0.5rem 1rem;
    width: 100%;
    background-color: #fff;
    border: 1px solid #D1C5B4;
    margin: 0;
}
.card {
    margin-bottom: 1rem;
}
.card-client .card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-header {
    margin-bottom: 1rem;
    color: #775a19;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}
#card-info {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: #eeeeee;
}
.card-service .card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.service {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    border-left: 6px solid #775A1933;
    box-shadow:
            0 0 0 1px rgba(119, 90, 25, 0.1),
            0 4px 6px -1px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.service p {
    margin: 0;
}
.service .title {
    color: #1a1c1c;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.service small {
    color: #4e4639;
    font-size: 0.75rem;
}
.service .price {
    flex-shrink: 0;
    color: #7a573c;
    font-size: 1rem;
    font-weight: 800;
    margin-right: 8px;
}
.service.service-selected {
    border-color: #775a19;
    box-shadow:
            0 0 0 2px rgba(119, 90, 25, 0.8),
            0 10px 15px -3px rgba(0,0,0,0.15);
}

.card-option .card-header {
    text-align: center;
}
.card-option .card-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}
.service-option {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: #f3f3f3;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.service-option .title {
    display: flex;
    flex-direction: column;
}
.service-option .price {
    margin-left: auto;
    flex-shrink: 0;
}
.service-option small {
    color: #4e4639;
    font-size: 0.75rem;
    font-weight: 500;
}

.select-booking {
    width: 100%;
    height: 42px;
}
.ui-datepicker {
    width: 100%!important;
}
.ui-state-default {
    text-align: center !important;
}

.btn-booking {
    background: linear-gradient(to right, #775a19, #c5a059);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    width: 100%;
}

.btn-booking:hover {
    filter: brightness(1.1);
}

.btn-booking:active {
    transform: scale(0.98);
}
.btn-booking:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
#time-booking {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0.5rem;
    border: 1px solid rgba(119, 90, 25, 0.3);
    padding: 1rem;
}
#time-booking span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    padding: 0.5rem;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    color: #775a19;
    font-weight: 800;
    cursor: pointer;
}
#time-booking span:not(.reserved-time):active {
    transform: scale(0.98);
}
.hour-selected {
    background-color: #775a19!important;
    color: white!important;
}
.reserved-time {
    color: white!important;
    background-color: #c43030 !important;
}
.grid-1 {
    grid-template-columns: 1fr !important;
}
.container-total {
    display: flex;
    justify-content: space-between;
    position: sticky;
    padding: 1rem;
    bottom: 0;
    background: #ffffff;
    left: 0;
    right: 0;
    margin-bottom: 1rem;
}
.container-total span:first-child {
    font-size: 0.725rem;
}
.total-info {
    display: flex;
    flex-direction: column;
}
.service-info {
    display: flex;
    flex-direction: column;
}
.service-info > span {
    font-size: 1rem !important;
}
#btn-booking-desktop {
    display: block;
}
#btn-booking-mobile {
    display: none;
}
#total-price {
    color: #775a19;
    font-size: 1.25rem;
    font-weight: 700;
}
.text-danger {
    color: rgb(220,53,69);
}
#client-register {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.d-none {
    display: none !important;
}

.loading-text {
    font-size: 16px;
    font-weight: 500;
    display: flex;
}
.dots {
    margin: 0 !important;
}
.dots::after {
    content: '';
    animation: dots 1.5s steps(3, end) infinite;
}

@keyframes dots {
    0%   { content: ''; }
    33%  { content: '.'; }
    66%  { content: '..'; }
    100% { content: '...'; }
}
#need-subscription {
    padding: 8px;
    border-radius: 0.5rem;
    background-color: #f3f3f3;
    margin-top: 0.5rem !important;
}
#select-product {
    margin-top: 0.5rem;
}
#container-subscription {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #775a19;
    border-top-width: 4px;
    border-bottom-width: 4px;
    background-color: #f8f6f3;
    padding: 1rem;
    margin-top: 0.5rem;
}
#container-subscription p,
#container-subscription h4 {
    margin: 0;
}
#container-subscription label {
    width: 100%;
    font-weight: normal;
    background-color: #e9e5e2;
    border: 1px solid #c4c0bd;
    border-radius: 0.5rem;
    padding: 0.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0;
}
#container-subscription input {
    accent-color: #a8894f;
    transform: scale(1.1);
    margin-right: 0.5rem;
}
.card-product .card-header {
    margin-bottom: 0.25rem;
    text-align: center;
}
@media (max-width: 768px) {
    #booking-schedule {
        grid-template-columns: 1fr;
    }

    #btn-booking-desktop {
        display: none;
    }
    #btn-booking-mobile {
        display: block;
    }

    .card-option .card-body {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .container-total {
        margin-right: -1rem;
        margin-left: -1rem;
    }

}