:root,
[data-bs-theme=light] {
    --color-primary: #4B0983;
    --color-primary-light: #8B45C0;
    --color-primary-dark: #320566;
    --color-primary-bg: #F0E8FA;
    --color-secondary: #fbf840;
    --color-secondary-dark: #e8e600;
    --color-secondary-active: #d0ce00;
    --color-secondary-text: #7a7800;
    --color-secondary-bg: #fffde0;
    --color-surface-dark: #1C0238;
    --color-surface-mid: #2E1A42;
    --color-bg-alt: #F8F5FC;
    --color-border-soft: #E8E0F0;
    --color-text-body: #6B5B7B;
    --color-text-heading: #2E1A42;

    --bs-blue: #fbf840;
    --bs-primary: #4B0983;
    --bs-primary-rgb: 75, 9, 131;
    --bs-link-color: #4B0983;
    --bs-link-hover-color: #320566;
    --bs-link-color-rgb: 75, 9, 131;
    --bs-link-hover-color-rgb: 50, 5, 102;
}

a { color: var(--color-primary); }
a:hover, a:focus { color: var(--color-primary-dark); }

::selection { background: rgba(75, 9, 131, 0.18); color: var(--color-text-heading); }

.text-primary { color: var(--color-primary) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.border-primary { border-color: var(--color-primary) !important; }

.btn-primary {
    --bs-btn-color: #2E1A42;
    --bs-btn-bg: #fbf840;
    --bs-btn-border-color: #fbf840;
    --bs-btn-hover-color: #2E1A42;
    --bs-btn-hover-bg: #e8e600;
    --bs-btn-hover-border-color: #e8e600;
    --bs-btn-active-color: #2E1A42;
    --bs-btn-active-bg: #d0ce00;
    --bs-btn-active-border-color: #d0ce00;
    --bs-btn-disabled-color: #2E1A42;
    --bs-btn-disabled-bg: #fbf840;
    --bs-btn-disabled-border-color: #fbf840;
    background-color: #fbf840;
    color: #2E1A42;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 0;
    box-shadow: 0 4px 14px rgba(180, 178, 0, 0.25);
    transition: background-color 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible {
    background-color: #e8e600;
    color: #2E1A42;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(180, 178, 0, 0.35);
}

.btn-primary:active,
.btn-primary.active {
    background-color: #d0ce00 !important;
    color: #2E1A42 !important;
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(180, 178, 0, 0.2) !important;
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #fbf840;
    opacity: 0.55;
    color: #2E1A42;
}

.btn-outline-primary {
    --bs-btn-color: #4B0983;
    --bs-btn-border-color: #4B0983;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #4B0983;
    --bs-btn-hover-border-color: #4B0983;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #320566;
    --bs-btn-active-border-color: #320566;
    --bs-btn-disabled-color: #4B0983;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #4B0983;
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.btn-outline-primary:hover {
    box-shadow: 0 0 0 3px rgba(75, 9, 131, 0.18);
}

.btn-violet {
    --bs-btn-color: #fbf840;
    --bs-btn-bg: #4B0983;
    --bs-btn-border-color: #4B0983;
    --bs-btn-hover-color: #fbf840;
    --bs-btn-hover-bg: #320566;
    --bs-btn-hover-border-color: #320566;
    --bs-btn-active-color: #e8e600;
    --bs-btn-active-bg: #1C0238;
    --bs-btn-active-border-color: #1C0238;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 8px;
}

.btn-ghost-violet {
    background: var(--color-primary-bg);
    color: var(--color-primary);
    border: 1px solid rgba(75, 9, 131, 0.12);
    font-weight: 600;
    transition: all 0.25s ease;
}

.btn-ghost-violet:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.progress,
.progress-stacked {
    --bs-progress-bar-bg: #4B0983;
}

.red span {
    background: linear-gradient(#320566 0%, #4B0983 100%) !important;
}

.red span::before,
.red span::after {
    border-left-color: #4B0983 !important;
    border-right-color: #4B0983 !important;
    border-top-color: #4B0983 !important;
}

.blue span {
    background: #fbf840 !important;
}

.blue span::before {
    border-left-color: #fbf840 !important;
    border-top-color: #fbf840 !important;
}

.blue span::after {
    border-right-color: #fbf840 !important;
    border-top-color: #fbf840 !important;
}

.navbar {
    --bs-navbar-active-color: #4B0983;
    --bs-navbar-hover-color: #4B0983;
    --bs-navbar-border-color: #4B0983;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: #4B0983 !important;
}

.navbar .btn-primary {
    color: #2E1A42;
}

.card:hover,
.card.card-hover:hover {
    border-color: rgba(75, 9, 131, 0.18);
}

.badge.bg-primary,
.badge-primary {
    background-color: #4B0983 !important;
    color: #ffffff !important;
}

.badge.bg-warning,
.badge-warning {
    background-color: #fbf840 !important;
    color: #2E1A42 !important;
}

.tag,
.chip {
    background: var(--color-primary-bg);
    color: var(--color-primary);
    border: 1px solid #C9A8E8;
}

.form-control:focus,
.form-select:focus {
    border-color: #8B45C0;
    box-shadow: 0 0 0 0.2rem rgba(75, 9, 131, 0.18);
}

.form-check-input:checked {
    background-color: #4B0983;
    border-color: #4B0983;
}

.custom-price-marker .price-marker-content {
    background: #ffffff;
    border: 2px solid rgba(75, 9, 131, 0.18);
}

.custom-price-marker.active .price-marker-content {
    background: linear-gradient(135deg, #4B0983 0%, #8B45C0 100%) !important;
    border-color: #4B0983 !important;
    box-shadow: 0 6px 16px rgba(75, 9, 131, 0.38) !important;
}

.custom-price-marker.active .marker-category-icon {
    color: #fbf840 !important;
}

.custom-price-marker.active .price-marker-arrow {
    border-top-color: #4B0983 !important;
}

.marker-close-btn:hover {
    color: #4B0983 !important;
}

.marker-price-badge {
    background: rgba(240, 232, 250, 0.94) !important;
    color: #4B0983 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(75, 9, 131, 0.2) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.marker-category-badge {
    background: rgba(251, 248, 64, 0.15) !important;
    color: #7a7800 !important;
    border: 1px solid rgba(180, 178, 0, 0.35) !important;
}

.marker-business-info i,
.marker-duration i {
    color: #e8e600 !important;
}

.marker-btn-full {
    background: linear-gradient(135deg, #4B0983 0%, #8B45C0 100%) !important;
    box-shadow: 0 4px 12px rgba(75, 9, 131, 0.35) !important;
    color: #ffffff !important;
}

.marker-btn-full:hover {
    background: linear-gradient(135deg, #320566 0%, #4B0983 100%) !important;
    color: #fbf840 !important;
    box-shadow: 0 8px 24px rgba(75, 9, 131, 0.45) !important;
    transform: translateY(-3px);
}

.results-badge {
    background: rgba(75, 9, 131, 0.1) !important;
    color: #4B0983 !important;
    border: 1px solid rgba(75, 9, 131, 0.2) !important;
    box-shadow: none !important;
}

.items-content::-webkit-scrollbar {
    width: 8px;
}

.items-content::-webkit-scrollbar-track {
    background: var(--color-primary-bg);
    border-radius: 4px;
}

.items-content::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #4B0983 0%, #8B45C0 100%);
    border-radius: 4px;
    border: 1px solid rgba(240, 232, 250, 0.6);
}

.items-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #320566 0%, #4B0983 100%);
}

.items-content {
    scrollbar-color: #4B0983 var(--color-primary-bg);
    scrollbar-width: thin;
}

.services-list-container::-webkit-scrollbar-thumb {
    background: #4B0983;
}

.services-list-container::-webkit-scrollbar-thumb:hover {
    background: #320566;
}

.marker-header-multiple .marker-subtitle {
    color: #fbf840 !important;
}

.marker-price-range {
    background: rgba(251, 248, 64, 0.15) !important;
    color: #7a7800 !important;
    border: 1px solid rgba(180, 178, 0, 0.3) !important;
}

.service-list-item:hover {
    border-color: #e8e600 !important;
    box-shadow: 0 4px 16px rgba(180, 178, 0, 0.2) !important;
}

.service-list-price {
    color: #7a7800 !important;
    background: rgba(251, 248, 64, 0.18) !important;
    border: 1px solid rgba(180, 178, 0, 0.3) !important;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: 800;
}

.service-list-btn {
    color: #4B0983 !important;
    border: 1.5px solid rgba(75, 9, 131, 0.3);
    padding: 4px 10px;
    border-radius: 8px;
}

.service-list-btn:hover {
    background: #4B0983 !important;
    color: #ffffff !important;
    border-color: #4B0983 !important;
}

.notification-bell-wrapper {
    background: linear-gradient(135deg, #4B0983, #8B45C0) !important;
    background-color: #4B0983 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(75, 9, 131, 0.35) !important;
}

.notification-bell-wrapper:hover {
    background: linear-gradient(135deg, #320566, #4B0983) !important;
    color: #fbf840 !important;
    box-shadow: 0 6px 16px rgba(75, 9, 131, 0.45) !important;
    transform: translateY(-1px);
}

.shepherd-element {
    --shepherd-primary: #4B0983;
}

.shepherd-button {
    background: #4B0983 !important;
    color: #ffffff !important;
}

.shepherd-button.shepherd-button-secondary {
    background: var(--color-primary-bg) !important;
    color: #4B0983 !important;
}

.shepherd-header {
    background: linear-gradient(135deg, #4B0983 0%, #8B45C0 100%) !important;
    color: #ffffff !important;
}

.fc .fc-daygrid-day.fc-day-today,
.fc .fc-timegrid-col.fc-day-today {
    background: rgba(251, 248, 64, 0.1) !important;
}

.fc .fc-button-primary {
    background-color: #4B0983 !important;
    border-color: #4B0983 !important;
    color: #ffffff !important;
}

.fc .fc-button-primary:hover {
    background-color: #320566 !important;
    border-color: #320566 !important;
}

.fc .fc-button-primary:not(:disabled).fc-button-active {
    background-color: #320566 !important;
    border-color: #320566 !important;
}

.fc-day-selected,
.fc .fc-highlight {
    background: rgba(75, 9, 131, 0.15) !important;
}

.select2-container--bootstrap-5 .select2-selection--single:focus,
.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: #8B45C0 !important;
    box-shadow: 0 0 0 0.25rem rgba(75, 9, 131, 0.2) !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
    background-color: var(--color-primary-bg) !important;
    color: #4B0983 !important;
    border: 1px solid #C9A8E8 !important;
}

body {
    background-color: #ffffff;
}

.text-blue:not(.sub-title) {
    background: linear-gradient(135deg, #fbf840 0%, #DDCF26 55%, #fbf840 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
    filter: drop-shadow(0 1px 5px rgba(150, 130, 0, 0.30));
}

.sub-title.text-blue,
.text-blue.sub-title {
    color: var(--color-secondary-text) !important;
}

html body .btn-guide-tour {
    background: linear-gradient(135deg, #4B0983, #8B45C0) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(75, 9, 131, 0.4) !important;
}

html body .btn-guide-tour:hover {
    box-shadow: 0 6px 20px rgba(75, 9, 131, 0.55) !important;
}

@keyframes guidePulseViolet {
    0% { box-shadow: 0 4px 15px rgba(75, 9, 131, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(75, 9, 131, 0.7), 0 0 0 8px rgba(75, 9, 131, 0.15); }
    100% { box-shadow: 0 4px 15px rgba(75, 9, 131, 0.4); }
}

html body .btn-guide-tour.pulse {
    animation: guidePulseViolet 2s ease-in-out infinite !important;
}

html body .shepherd-element .shepherd-title {
    color: #2E1A42 !important;
}

html body .shepherd-element .shepherd-title i,
html body .shepherd-element .shepherd-text i {
    color: #4B0983 !important;
}

html body .shepherd-element .shepherd-cancel-icon:hover {
    color: #4B0983 !important;
}

html body .shepherd-element .shepherd-button-primary {
    background: #4B0983 !important;
    color: #ffffff !important;
}

html body .shepherd-element .shepherd-button-primary:hover {
    background: #320566 !important;
    box-shadow: 0 4px 12px rgba(75, 9, 131, 0.35) !important;
    transform: translateY(-1px);
}

html body .shepherd-element .shepherd-button-secondary {
    background: var(--color-primary-bg) !important;
    color: #4B0983 !important;
}

html body .shepherd-element .shepherd-button-secondary:hover {
    background: #e0cff0 !important;
    color: #320566 !important;
}

html body .shepherd-target-highlight {
    box-shadow: 0 0 0 4px rgba(75, 9, 131, 0.22) !important;
}

.text-span {
    background-image: url("data:image/svg+xml,%3Csvg width='262' height='17' viewBox='0 0 262 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.99931 12.9463C70.3926 7.14883 214.09 -1.29457 257.733 11.3115' stroke='%23fbf840' stroke-width='8' stroke-linecap='round'/%3E%3C/svg%3E");
}

.decoration.blur-2 {
    width: 520px !important;
    height: 520px !important;
    -webkit-filter: blur(140px) !important;
    filter: blur(140px) !important;
    opacity: 0.35;
    background: radial-gradient(circle at 30% 30%, #fbf840 0%, rgba(251, 248, 64, 0.0) 70%) !important;
    background-color: transparent !important;
    bottom: -8% !important;
    left: -6% !important;
}

.decoration.blur-3 {
    width: 460px !important;
    height: 460px !important;
    -webkit-filter: blur(160px) !important;
    filter: blur(160px) !important;
    opacity: 0.28;
    background: radial-gradient(circle at 70% 30%, #C9A8E8 0%, rgba(201, 168, 232, 0.0) 72%) !important;
    background-color: transparent !important;
    top: -4% !important;
    right: -6% !important;
}

@media screen and (min-width: 1280px) {
    .decoration.blur-2 {
        width: 620px !important;
        height: 620px !important;
    }
    .decoration.blur-3 {
        width: 560px !important;
        height: 560px !important;
    }
}

.py-5.position-relative:has(> .py-4 > .container .section-header__subtitle.text-blue) {
    background: linear-gradient(180deg, #ffffff 0%, #fffef5 55%, #ffffff 100%);
    overflow: hidden;
}

.py-5.position-relative:has(> .py-4 > .container .section-header__subtitle.text-blue) > .py-4 {
    position: relative;
    z-index: 1;
}

.py-5.position-relative:has(.counter) {
    background:
        radial-gradient(rgba(75, 9, 131, 0.09) 1.5px, transparent 1.5px),
        linear-gradient(135deg,
            rgba(75, 9, 131, 0.06) 0%,
            #ffffff 38%,
            rgba(251, 248, 64, 0.09) 100%);
    background-size: 24px 24px, 100% 100%;
    overflow: hidden;
}

.py-5.position-relative:has(.counter) .decoration.blur-2 {
    opacity: 0.45 !important;
}

.py-5.position-relative:has(.counter) .decoration.blur-3 {
    opacity: 0.32 !important;
}

.main-title::after,
.card-header::after {
    background-color: #fbf840 !important;
    background-image: none !important;
    box-shadow: 0 2px 8px rgba(180, 178, 0, 0.3);
}
