:root {
    --bg1: rgba(3, 116, 211, 0.92);
    --bg2: rgba(0, 89, 171, 0.20);
    --card: #ffffff;
    --ink: #0b1e42;
    --muted: #516685;
    --line: rgba(15, 60, 160, 0.12);
    --brand: #1f5fff;
    --brand2: #2b63f1;
    --soft: rgba(31, 95, 255, 0.10);
    --shadow: 0 18px 55px rgba(2, 25, 72, 0.16);
    --shadow2: 0 16px 38px rgba(31, 95, 255, 0.16);
    --radius: 22px;
}

body {
    background:
        radial-gradient(1200px 520px at 10% 10%, rgba(255, 255, 255, .18), transparent 60%),
        radial-gradient(900px 520px at 90% 0%, rgba(255, 255, 255, .12), transparent 55%),
        linear-gradient(180deg, var(--bg1), var(--bg2)) no-repeat;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
}

#dry-cleaning-services.container,
#window-cleaning-services.container {
    max-width: 1180px;
    padding-left: 12px;
    padding-right: 12px;
}

.section-title {
    color: #ffffff;
    text-align: center;
    font-weight: 900;
    letter-spacing: .2px;
    margin-bottom: 18px;
    font-size: clamp(1.4rem, 2.2vw, 2.05rem);
    text-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.order-type-btn {
    border: 1px solid rgba(255, 255, 255, .26);
    background: rgba(255, 255, 255, .12);
    color: #ffffff;
    font-weight: 850;
    padding: 11px 16px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
    display: inline-flex;
    gap: 9px;
    align-items: center;
    backdrop-filter: blur(10px);
}

.order-type-btn i {
    opacity: .95;
}

.order-type-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
}

.order-type-btn.active {
    background: rgba(255, 255, 255, .96);
    color: var(--brand);
    border-color: rgba(255, 255, 255, .75);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
}

.services-shell {
    background: rgba(255, 255, 255, .92);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .30);
    backdrop-filter: blur(10px);
}

.shell-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(90deg, rgba(31, 95, 255, .10), rgba(31, 95, 255, .03));
    border-bottom: 1px solid var(--line);
}

.hypo-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .65);
    border: 1px solid rgba(31, 95, 255, .18);
    color: #0a4f7f;
    padding: 9px 12px;
    border-radius: 14px;
    margin: 0;
    font-weight: 750;
}

.hypo-alert i {
    font-size: 18px;
    color: var(--brand);
}

.shell-body {
    padding: 18px;
}

.dry-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
    color: #7f7f7f;
    gap: 8px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, .22);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 60, 160, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(248, 251, 255, .92));
    transition: transform .14s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 100%;
    isolation: isolate;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 220px at 50% 0%, rgba(31, 95, 255, .12), transparent 60%);
    opacity: .9;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow2);
    border-color: rgba(31, 95, 255, .28);
}

.service-card.selected {
    border-color: rgba(31, 95, 255, .55);
    box-shadow: 0 22px 55px rgba(31, 95, 255, .22);
    background: #fff;
}

.service-card.is-hidden {
    display: none !important;
}

.service-media,
.service-media * {
    box-sizing: border-box;
}

.service-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(247, 250, 255, .95), rgba(236, 244, 255, .95));
    border-bottom: 1px solid rgba(15, 60, 160, 0.10);
    overflow: hidden !important;
    padding: 18px 0;
    position: relative;
}

.service-media::after {
    content: "";
    position: absolute;
    inset: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .55);
    border: 1px solid rgba(31, 95, 255, .12);
    box-shadow: 0 10px 25px rgba(2, 25, 72, .06);
    pointer-events: none;
}

.service-body {
    padding: 12px 14px 14px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.service-title {
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--ink);
    margin: 0;
    line-height: 1.2;
}

.service-desc {
    color: var(--muted);
    font-size: .95rem;
    margin: 6px 0 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    min-height: 2.5em;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    align-items: center;
}

.price-badge {
    font-weight: 950;
    color: #0b47d4;
    background: rgba(31, 95, 255, .10);
    border: 1px solid rgba(31, 95, 255, .18);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .98rem;
    width: 78%;
    min-width: 160px;
    min-height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 18px rgba(2, 25, 72, .06);
}

.qty-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    min-height: 40px;
}

.service-card:not(.selected) .qty-wrap {
    visibility: hidden;
    height: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(15, 60, 160, .16);
    background: #fff;
    font-weight: 950;
    line-height: 1;
    user-select: none;
    box-shadow: 0 10px 18px rgba(2, 25, 72, .06);
    transition: transform .12s ease, box-shadow .14s ease, border-color .14s ease;
}

.qty-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 95, 255, .35);
    box-shadow: 0 14px 24px rgba(31, 95, 255, .12);
}

.qty-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.qty-input {
    width: 66px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(15, 60, 160, .16);
    padding: 7px 10px;
    font-weight: 950;
    -moz-appearance: textfield;
    background: #fff;
    box-shadow: 0 10px 18px rgba(2, 25, 72, .06);
}

.qty-input:disabled {
    background: #f1f5f9;
    color: #64748b;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.actions-bar {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#clearSelectionBtn.btn,
#clearSelectionBtn {
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 850;
    color: rgba(11, 30, 66, 0.75) !important;
    border-color: rgba(31, 95, 255, .25) !important;
    background: rgba(255, 255, 255, .75) !important;
}

#clearSelectionBtn.btn:hover,
#clearSelectionBtn:hover {
    color: rgba(11, 30, 66, 0.92) !important;
    background: rgba(31, 95, 255, .10) !important;
    border-color: rgba(31, 95, 255, .38) !important;
}

.order-summary {
    margin-top: 14px;
    background: rgba(255, 255, 255, .80);
    border: 1px dashed rgba(31, 95, 255, .26);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 14px 30px rgba(2, 25, 72, .08);
}

.order-summary h4 {
    margin: 0 0 10px;
    font-weight: 900;
    color: var(--ink);
    font-size: 1.05rem;
    text-align: center;
}

.summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.summary-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(15, 60, 160, .12);
}

.summary-item:last-child {
    border-bottom: 0;
}

.sum-name {
    font-weight: 800;
    color: var(--ink);
}

.sum-qty {
    min-width: 70px;
    text-align: right;
    color: #4a6288;
}

.sum-amount {
    min-width: 95px;
    text-align: right;
    font-weight: 950;
    color: #0b47d4;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 12px;
    border-top: 2px solid rgba(15, 60, 160, .10);
    margin-top: 8px;
    font-size: 1.05rem;
    font-weight: 950;
    color: var(--ink);
}

.summary-total .amount {
    color: #0b47d4;
    font-size: 1.18rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.panel {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 60, 160, .10);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 16px 32px rgba(2, 25, 72, .10);
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: 18px;
}

.panel-title {
    font-weight: 950;
    color: var(--ink);
    margin: 0 0 12px 0;
    font-size: 1.10rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-title i {
    color: var(--brand);
}

.label-strong {
    font-weight: 850;
    color: var(--ink);
}

.panel .form-control,
.panel .custom-select,
.panel input,
.panel select,
.panel textarea {
    height: 46px !important;
    border-radius: 14px !important;
    border: 1px solid rgba(15, 60, 160, .14) !important;
    box-shadow: 0 10px 18px rgba(2, 25, 72, .06);
}

.form-control:focus,
.custom-select:focus {
    border-color: rgba(31, 95, 255, .35) !important;
    box-shadow: 0 0 0 .18rem rgba(31, 95, 255, .18) !important;
}

.pay-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px;
    width: 100%;
}

.panel .pay-options {
    background: linear-gradient(180deg, rgba(31, 95, 255, .06), rgba(31, 95, 255, .00));
    border: 1px solid rgba(15, 60, 160, .10);
    border-radius: 16px;
    padding: 10px;
}

.pay-card {
    width: 100%;
    position: relative;
    border: 1px solid rgba(15, 60, 160, .14);
    border-radius: 16px;
    padding: 14px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform .12s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
    background: rgba(255, 255, 255, .75);
    overflow-wrap: anywhere;
    box-shadow: 0 10px 18px rgba(2, 25, 72, .06);
}

.pay-card input {
    display: none;
}

.pay-card .icon {
    font-size: 20px;
    color: var(--brand);
    flex: 0 0 auto;
}

.pay-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 26px rgba(31, 95, 255, .12);
}

.pay-card.active {
    border-color: rgba(31, 95, 255, .45);
    background: #ffffff;
    box-shadow: 0 18px 30px rgba(31, 95, 255, .14);
}

.pay-card.active::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 12px;
    color: #fff;
    background: var(--brand2);
    border-radius: 999px;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    box-shadow: 0 0 0 3px rgba(31, 95, 255, .14) inset;
}

#placeOrderBtn.btn {
    border-radius: 16px;
    padding: 12px 18px;
    font-weight: 950;
    box-shadow: 0 18px 30px rgba(25, 135, 84, .18);
}

.ui-promo {
    display: flex;
    gap: 14px;
    align-items: stretch;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(43, 99, 241, .25);
    background: linear-gradient(135deg, rgba(43, 99, 241, .10), rgba(46, 204, 113, .10));
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    margin: 14px 0 18px;
}

.promo-left {
    display: flex;
    align-items: center;
}

.promo-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 99, 241, .14);
    border: 1px solid rgba(43, 99, 241, .25);
}

.promo-badge i {
    color: #2b63f1;
    font-size: 18px;
}

.promo-mid {
    flex: 1;
    min-width: 0;
}

.promo-title {
    display: flex;
    gap: 10px;
    align-items: baseline;
    flex-wrap: wrap;
}

.promo-name {
    font-weight: 900;
    color: #0b1e42;
    font-size: 16px;
}

.promo-type-text {
    font-weight: 900;
    color: #2b63f1;
    font-size: 14px;
}

.promo-desc {
    color: #455a64;
    font-size: 13px;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.promo-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.promo-min-chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 193, 7, .15);
    border: 1px solid rgba(255, 193, 7, .25);
    color: #8a6d1d;
    font-size: 12px;
    font-weight: 900;
}

.promo-status {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    gap: 6px;
    align-items: center;
}

.promo-status-ok {
    background: rgba(46, 204, 113, .14);
    border: 1px solid rgba(46, 204, 113, .25);
    color: #1e7e34;
}

.promo-status-warn {
    background: rgba(230, 126, 34, .14);
    border: 1px solid rgba(230, 126, 34, .25);
    color: #a85d12;
}

.promo-right {
    min-width: 120px;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-save-label {
    font-size: 11px;
    color: #607d8b;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.promo-save {
    font-size: 18px;
    font-weight: 900;
    color: #2ecc71;
    line-height: 1.1;
}

#slot-panel .calendar-grid,
#dry-slot-panel .calendar-grid {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: 8px !important;
    align-items: stretch;
}

#slot-panel .week-days .week-day,
#dry-slot-panel .week-days .week-day {
    font-weight: 800;
    font-size: 12px;
    color: #425a7a;
    text-align: center;
    padding: 6px 0;
    border-radius: 10px;
    background: rgba(31, 95, 255, .06);
    border: 1px solid rgba(15, 60, 160, .10);
}

#slot-panel .days-number .day-number,
#dry-slot-panel .days-number .day-number {
    width: 100% !important;
    min-width: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 10px 0 !important;
    border-radius: 12px !important;
    font-weight: 800;
    font-size: 13px;
}

#slot-panel .days-number .inactive-day,
#dry-slot-panel .days-number .inactive-day {
    opacity: .55;
    cursor: not-allowed !important;
}

#slot-panel .days-number .active-day,
#dry-slot-panel .days-number .active-day {
    cursor: pointer !important;
    transition: transform .12s ease, box-shadow .16s ease;
}

#slot-panel .days-number .active-day:hover,
#dry-slot-panel .days-number .active-day:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(31, 95, 255, .12);
}

#slot-panel .days-number .btn-primary.active-day,
#dry-slot-panel .days-number .btn-primary.active-day {
    box-shadow: 0 12px 22px rgba(31, 95, 255, .22);
}

#slot-panel .cal-header,
#dry-slot-panel .cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

#slot-panel #calMonthLabel,
#dry-slot-panel #calMonthLabel {
    display: inline-block;
    font-weight: 950;
    font-size: 18px;
    color: #0b1e42;
}

#slot-panel #calPrev,
#slot-panel #calNext,
#dry-slot-panel #calPrev,
#dry-slot-panel #calNext {
    width: 42px;
    height: 38px;
    padding: 0 !important;
    border-radius: 12px !important;
    font-weight: 900;
}

#slot-panel #wcDate,
#dry-slot-panel #dryDate {
    background: #f8fafc;
}

#slot-panel #wcTime:disabled,
#dry-slot-panel #dryTime:disabled {
    background: #f1f5f9;
    color: #64748b;
}

#slot-panel #slotSpinner,
#dry-slot-panel #slotSpinner {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(6px);
}

#dry-slot-panel ul {
    list-style: none !important;
}

.help-fab {
    position: fixed;
    left: 24px;
    right: auto;
    bottom: max(24px, env(safe-area-inset-bottom));
    z-index: 9998;
    border: none;
    border-radius: 999px;
    padding: 14px 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #0b47d4 0%, #2b63f1 100%);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 18px 38px rgba(11, 71, 212, .24);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.help-fab:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(11, 71, 212, .28);
}

.help-fab i {
    font-size: 18px;
}

.help-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.help-modal.is-open {
    display: block;
}

.help-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

.help-modal__dialog {
    position: relative;
    width: min(720px, calc(100% - 24px));
    margin: 8vh auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .22);
}

.help-modal__header {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.help-modal__title {
    font-weight: 900;
    font-size: 18px;
}

.help-modal__subtitle {
    margin-top: 4px;
    font-size: 13px;
    color: #6b7280;
}

.help-modal__close {
    border: none;
    background: transparent;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 900;
    color: #374151;
}

.help-form {
    padding: 16px;
}

.help-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.help-label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 260px;
    margin-bottom: 12px;
}

.help-label span {
    font-size: 13px;
    font-weight: 800;
    color: #374151;
}

.help-label input,
.help-label textarea {
    border: 1px solid rgba(17, 24, 39, .14);
    background: #f9fafb;
    border-radius: 12px;
    padding: 12px;
    font-size: 16px;
    min-height: 46px;
    outline: none;
}

.help-label textarea {
    min-height: 140px;
    resize: vertical;
}

.help-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.help-btn {
    border: none;
    border-radius: 999px;
    padding: 12px 14px;
    font-weight: 900;
    cursor: pointer;
    min-height: 44px;
}

.help-btn.ghost {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .14);
    color: #374151;
}

.help-btn.primary {
    background: linear-gradient(135deg, #00c853, #00a843);
    color: #fff;
}

.help-hint {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
}

.help-hint.ok {
    background: rgba(46, 204, 113, .14);
    border: 1px solid rgba(46, 204, 113, .25);
    color: #1e7e34;
}

.help-hint.err {
    background: rgba(231, 76, 60, .12);
    border: 1px solid rgba(231, 76, 60, .22);
    color: #b42318;
}

body.help-modal-open {
    overflow: hidden !important;
}

@media (max-width: 991.98px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .ui-promo {
        flex-direction: column;
    }

    .promo-right {
        text-align: left;
    }
}

@media (max-width: 576px) {
    #dry-cleaning-services.container,
    #window-cleaning-services.container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .shell-body {
        padding: 14px;
    }

    .service-media {
        padding: 14px 0;
    }

    .service-media::after {
        inset: 10px;
    }

    .price-badge {
        width: 86%;
    }

    .panel {
        padding: 14px;
    }

    .help-fab {
        left: 16px;
        bottom: max(16px, env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 20px;
        justify-content: center;
    }

    .help-fab span {
        display: none;
    }

    .help-modal__dialog {
        width: 100%;
        margin: 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 18px 18px 0 0;
        max-height: 92vh;
        overflow: auto;
    }

    .help-actions {
        justify-content: stretch;
    }

    .help-actions .help-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .order-type-btn,
    .services-shell,
    .panel,
    #slot-panel #slotSpinner,
    #dry-slot-panel #slotSpinner {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .service-card,
    .service-card.selected,
    .pay-card,
    .help-fab,
    .order-type-btn.active {
        box-shadow: 0 10px 24px rgba(2, 25, 72, 0.10);
    }

    .service-card,
    .qty-btn,
    .pay-card,
    .order-type-btn,
    #slot-panel .days-number .active-day,
    #dry-slot-panel .days-number .active-day {
        transition: box-shadow .16s ease, border-color .16s ease, background .16s ease;
    }

    .service-card:hover,
    .qty-btn:hover,
    .pay-card:hover,
    .order-type-btn:hover,
    #slot-panel .days-number .active-day:hover,
    #dry-slot-panel .days-number .active-day:hover,
    .help-fab:hover {
        transform: none;
        filter: none;
    }

    .service-media::after,
    .service-card::before {
        box-shadow: none;
        opacity: .45;
    }
}
