.alpaca-appointment-picker {
    max-width: 100%;
}

.dates-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 15px 0 25px;
    scrollbar-width: thin;
}

.date-card {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 82px;
    cursor: pointer;
    transition: all 0.25s;
    user-select: none;
}

.date-card.active {
    background: #D6AD94;
    color: white;
    border-color: #D6AD94;
}

.date-card .day-name { font-size: 13px; opacity: 0.9; }
.date-card .day-num  { font-size: 24px; font-weight: 700; line-height: 1; }
.date-card .month    { font-size: 13px; line-height: 13px; text-transform: lowercase; }

/* Слоты */
.slots-container {
    min-height: 120px;
}

.slots-day {
    display: none;
    flex-wrap: wrap;
    gap: 12px;
}

.slot-btn {
    background: #D6AD94;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 10px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.slot-btn:hover,
.slot-btn:focus,
.slot-btn:active {
    opacity: 0.9;
    background: #D6AD94;
    transform: translateY(-2px);
}

.service-selector {
    margin-bottom: 20px;
    position: relative;
}

/* .service-selector::after {
    content: '';
    height: 24px;
    width: 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24px' height='24px' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.9999 13.9394L17.4696 8.46973L18.5303 9.53039L11.9999 16.0607L5.46961 9.53039L6.53027 8.46973L11.9999 13.9394Z' fill='%239A9A9A'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 7px;
    bottom: 12px;
}

.service-selector:has(.alpaca-service-select:active)::after {
    rotate: 180deg;
} */

.alpaca-service-select {
    width: 100%;
    max-width: 100%;
    border-radius: 16px !important;
    padding: 12px 16px !important;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    cursor: pointer;
}

.alpaca-service-select:focus {
    outline: none;
    border-color: #D6AD94;
}

.alpaca-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: white;
    max-width: 440px;
    width: 92%;
    border-radius: 16px;
    padding: 64px 24px 32px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-close {
    padding: 3px;
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 14px;
    background: none;
    border: 2px solid #999;
    border-radius: 50%;
    color: #999;
    cursor: pointer;
}

.modal-close:hover {
    background: none;
    border: 2px solid #999 !important;
    color: #999 !important;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-header h2 {
    width: 299px;
    color: #1F1F1F;
    font-family: "Shango", Sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 44px;
    margin: 0;
}

.subtitle {
    margin-top: 8px;
    color: #434343;
    font-family: "Museo Sans Cyrl", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

.form-group input {
    width: 100%;
    height: 65px;
    border: none;
    background-color: #f8f8f8 !important;
    border-radius: 6px;
    padding: 23px 15px;
    color: #858585;
    font-family: "Museo Sans Cyrl", Sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 12px;
}

.submit-btn {
    width: 100%;
    height: 72px;
    background: linear-gradient(-45deg, #DEB59A, #ECCBB5, #DEB59A);
    font-family: "Museo Sans Cyrl", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 26px;
    padding-left: 20px;
    padding-right: 20px;
    border-style: solid;
    border-width: 0px 0px 4px 0px;
    border-color: #D6AD94;
    border-radius: 8px 8px 8px 8px;
    margin-top: 12px;
}

.submit-btn:hover {
    background: linear-gradient(-45deg, #DEB59A, #ECCBB5, #DEB59A);
    border-color: #D6AD94;
}

.consent {
    color: #B8B8B8;
    font-family: "Museo Sans Cyrl", Sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    margin-top: 12px;
}

.consent a {
    color: #B8B8B8 !important;
    text-decoration: underline !important;
}