@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("/assets/fonts/Nunito-VariableFont_wght.woff2")
      format("woff2-variations"),
    url("/assets/fonts/Nunito-VariableFont_wght.woff") format("woff-variations");
}

@font-face {
  font-family: "Nunito";
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url("/assets/fonts/Nunito-Italic-VariableFont_wght.woff2")
      format("woff2-variations"),
    url("/assets/fonts/Nunito-Italic-VariableFont_wght.woff")
      format("woff-variations");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Nunito", sans-serif;
  color: #141414;
  background-color: #f5f5f5;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1340px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Top Header */
.top-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 27px 0;
  position: relative;
  z-index: 100;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: #2c478c;
  transition: all 0.3s ease;
}

/* Logo */
.logo {
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 46px;
  width: auto;
}

/* Search Box */
.search-box {
  flex: 1;
  max-width: 500px;
}

.search-box form {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eeeeee;
}

.search-box input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #333;
  outline: none;
}

.search-box input::placeholder {
  color: #999;
}

.search-box button {
  background: transparent;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  border-radius: 8px;
  background-color: #fff;
  margin-right: 5px;
}

/* Mobile Search Button */
.mobile-search-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  background: #fff;
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  height: 56px;
}

.mobile-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-search-content {
  padding: 8px 16px;
}

.mobile-search-content form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 10px 16px;
}

.mobile-search-input img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.mobile-search-input input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  color: #333;
  outline: none;
}

.mobile-search-input input::placeholder {
  color: #999;
}

.search-close {
  flex-shrink: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
}

.favorites,
.user-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
  color: #141414;
  white-space: nowrap;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0;
  vertical-align: middle;
}
.user-link span img {
  margin-left: 10px;
}
.favorites img,
.user-link img {
  flex-shrink: 0;
}
.dropdown-container {
  position: relative;
}
.dropdown-container .user-dropdown {
  position: absolute;
  background-color: #fff;
  padding: 10px 30px;
  border-radius: 7px;
  border: 1px solid #E9E9E9;
  top: calc(100% + 10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
.dropdown-container .user-dropdown a.dropdown-item{
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  transition: 0.3s all ease;
}
.dropdown-container:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-container .user-dropdown a.dropdown-item.active{
    color:#A22A7D;
}
.dropdown-container .user-dropdown a.dropdown-item:hover{
    color:#A22A7D;
}
/* Main Navigation - Desktop */
.main-nav {
  background: #2c478c;
  padding: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu li a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  background-color: #a22a7d;
}

.nav-overlay,
.nav-sidebar,
.nav-close {
  display: none;
}

.header-actions .divider {
  background-color: #e9e9e9;
  width: 1px;
  height: 30px;
}

.header-actions a:hover {
  transition: all 0.3s ease;
  color: #a22a7d;
}
input{
    transition: all 0.3s ease;
}
input:focus{
    border-color: #A22A7D !important;
    outline: none !important;
}
textarea:focus{
    border-color: #A22A7D !important;
    outline: none !important;
}
select:focus{
    border-color: #A22A7D !important;
    outline: none !important;
}
a.add-to-wishlist .icon {
  display: inline-block;
  background: url(/assets/icons/heart.svg) no-repeat 50% / 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

a.add-to-wishlist:hover .icon {
  background: url(/assets/icons/heart-full.svg) no-repeat 50% / 20px;
}
a.add-to-wishlist.in-wishlist .icon {
  background: url(/assets/icons/heart-full.svg) no-repeat 50% / 20px;
}

/* Events Section */
.events-section {
  margin-bottom: 60px;
}
.events-section.events-two {
  margin-bottom: 124px;
}

.events-section .section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.events-section .events-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

/* Event Card */
.event-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px 20px 30px 20px;
}
.event-card .event-content {
  padding: 0 10px;
}
.event-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 20px;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  max-height: 220px;
  border-radius: 8px;
}

.event-badge-wrap {
  position: absolute;
  top: 10px;
  left: 35px;
}

.event-badge {
  font-weight: 700;
  font-size: 9px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 5px 9px 5px 15px;
  background-color: #2c478c;
  border-radius: 8px;
  color: #fff;
  position: relative;
}

.event-badge:before {
  width: 33px;
  height: 32px;
  content: "";
  background-image: url(/assets/icons/dog.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -23px;
  top: -8px;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #c44fa0;
}

.event-favorite:hover {
  background: #c44fa0;
  color: #fff;
  transform: scale(1.1);
}

.event-favorite.active {
  background: #c44fa0;
  color: #fff;
}

.event-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 16px;
}

.event-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.event-meta-item svg {
  flex-shrink: 0;
}

.event-date {
  color: #c44fa0;
  font-weight: 700;
  font-size: 16px;
}

.event-footer {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.event-price {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.event-price svg {
  flex-shrink: 0;
}

.free-event {
  color: #c44fa0;
  font-weight: 700;
}

/* View All Button */
.events-section .events-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.events-section .btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 40px;
  background: #a22a7d;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.events-section .btn-view-all:hover {
  background-color: #2c478c;
}

.events-section .btn-view-all svg {
  transition: transform 0.3s ease;
}

.events-section .btn-view-all:hover img {
  transform: translateX(5px);
}

/* Upcoming Events Section */
.upcoming-events-section {
  padding: 55px 0;
}

.upcoming-events-section .upcoming-events-list {
  width: calc(67% - 10px);
}
.upcoming-events-section .calendar-sidebar {
  width: calc(33% - 10px);
}

.upcoming-events-section .section-title {
  text-align: center;
  margin-bottom: 35px;
  font-weight: 700;
  font-style: Bold;
  font-size: 27px;
  line-height: 30px;
}

.upcoming-events-section .upcoming-events-wrapper {
  display: flex;
  justify-content: space-between;
}

/* Upcoming Events List */
.upcoming-events-section .upcoming-events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.upcoming-events-section .upcoming-event-card {
  display: flex;
  grid-template-columns: 480px 1fr;
  gap: 20px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
  padding: 20px 20px 35px 20px;
}

.upcoming-events-section .upcoming-event-image {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 8px;
}

.upcoming-events-section .upcoming-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.upcoming-events-section .upcoming-event-card:hover .upcoming-event-image img {
  transform: scale(1.05);
}

.upcoming-events-section .calendar-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.upcoming-events-section .calendar-images img {
  min-height: 250px;
  width: 100%;
}

.upcoming-events-section .event-date {
  font-weight: 700 !important;
}

.upcoming-events-section .event-badge {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  text-transform: uppercase;
  padding: 5px 12px 5px 20px;
  background-color: #2c478c;
  border-radius: 8px;
  color: #fff;
}
.event-badge-wrap {
  position: absolute;
  top: 21px;
  left: 48px;
}
.upcoming-events-section .event-badge {
  position: relative;
}
.upcoming-events-section .event-badge:before {
  position: absolute;
  width: 45px;
  height: 43px;
  content: "";
  background-image: url(/assets/icons/dog.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: -30px;
  top: -8px;
}

.upcoming-events-section .event-favorite {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #c44fa0;
}

.upcoming-events-section .event-favorite:hover {
  background: #c44fa0;
  color: #fff;
  transform: scale(1.1);
}

.upcoming-events-section .event-favorite.active {
  background: #c44fa0;
  color: #fff;
}

.upcoming-events-section .upcoming-event-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.upcoming-events-section .upcoming-event-title {
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
}

.upcoming-event-meta {
  display: flex;
  gap: 30px;
}
.upcoming-events-section .event-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.upcoming-events-section .event-meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: #6f6f73;
}
.upcoming-events-section .event-meta-item.event-price {
  font-weight: 700;
  font-size: 14px;
  color: #141414;
}

.upcoming-events-section .event-meta-item svg {
  flex-shrink: 0;
}

.upcoming-events-section .event-date {
  color: #c44fa0;
  font-weight: 600;
}

/* Calendar Sidebar */
.upcoming-events-section .calendar-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.upcoming-events-section .calendar-widget {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  justify-content: center;
}

.upcoming-events-section .calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.upcoming-events-section .calendar-month {
  font-size: 16px;
  font-weight: 600;
}

.upcoming-events-section .calendar-nav {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.upcoming-events-section .calendar-nav:hover {
  opacity: 0.6;
}

.upcoming-events-section .calendar-body {
  width: 100%;
}

.upcoming-events-section .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.upcoming-events-section .weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  padding: 5px 0;
}

.upcoming-events-section .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.upcoming-events-section .calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;

  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.upcoming-events-section .calendar-day:not(.empty):hover {
  background: #f5f5f5;
}

.upcoming-events-section .calendar-day.empty {
  color: #ccc;
  cursor: default;
}

.upcoming-events-section .calendar-day.active {
  background: #c44fa0;
  color: #fff;
  font-weight: 600;
}

.upcoming-events-section .calendar-day.has-event {
  background: #c44fa0;
  color: #fff;
  font-weight: 600;
}

.upcoming-events-section .calendar-day.has-event:hover {
  background: #9c4ca8;
}

/* Calendar Images */
.upcoming-events-section .calendar-images {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.upcoming-events-section .calendar-images img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* Filter Section */
.filter-section {
  background: #f5f5f5;
  padding: 40px 0;
  padding-bottom: 0px;
}

.filter-section .filter-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 44px 40px;
  border-radius: 8px;
}

.filter-section .filter-label {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 18px;
}

.filter-section .filter-label span {
  font-size: 18px;
  font-weight: 600;
}

.filter-section .filter-inputs {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.filter-section .filter-input-group {
  position: relative;
  flex: 1;
  min-width: 150px;
}

.filter-section .filter-input {
  width: 100%;
  padding: 14px 40px 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background: #fff;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #f8f8f8;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #eeeeee;
  font-family: "Nunito", sans-serif;
}
.filter-section .filter-date-wrap input {
  padding: 13px 40px 13px 16px;
}
.filter-section .filter-input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #6f6f73;
}

.filter-section .filter-input::placeholder {
  color: #999;
}

.filter-date-wrap {
  display: flex;
}

.filter-date-wrap .filter-input-group:first-child .filter-input {
  border-radius: 8px 0px 0px 8px;
}
.filter-date-wrap .filter-input-group:last-child .filter-input {
  border-radius: 0px 8px 8px 0px;
}
.filter-section .filter-select select {
  cursor: pointer;
}

.filter-section .input-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

 .filter-checkbox {
  flex-shrink: 0;
  margin-left: 20px;
  margin-right: 40px;
}

 .checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.filter-options-wrap {
  display: flex;
  gap: 20px;
  width: 100%;
}
.filter-date-wrap,
.category-selecttion-wrap {
  width: 50%;
}

 .checkbox-label input[type="checkbox"] {
  display: none;
}

.first-sel {
  color: #6f6f73;
}

 .checkbox-custom {
  width: 16px;
  height: 16px;
  border: 1px solid #e9e9e9;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background-color: #f8f8f8;
}


  .checkbox-label
  input[type="checkbox"]:checked
  + .checkbox-custom {
  background: #a22a7d;
}


  .checkbox-label
  input[type="checkbox"]:checked
  + .checkbox-custom:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 3px;
  height: 6px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
 .checkbox-text {
  font-size: 14px;
}

.filter-section .btn-filter {
  padding: 13px 30px;
  background: #a22a7d;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 1px;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: "Nunito", sans-serif;
}

.filter-section .btn-filter:hover {
  background-color: #2c478c;
}

.filter-section .toggle-icon {
  display: none;
}

.filter-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}

/* Hide default calendar icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  bottom: 0;
  color: transparent;
  cursor: pointer;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  opacity: 0;
}

/* Add custom icon as background */
input[type="date"] {
  position: relative;
  background-image: url("assets/icons/CalendarDots.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px 20px;
  padding-right: 40px; /* Make room for icon */
}

/* Expanded state */
.filter-wrapper.expanded .filter-content {
  max-height: 1000px;
  opacity: 1;
}

.filter-wrapper.expanded .filter-header {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#inline-calendar {
  width: 100%;
}

/* Remove default flatpickr styles */
.flatpickr-calendar.inline {
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  width: 100% !important;
  background: transparent !important;
}

/* Header - Month navigation */
.flatpickr-months {
  padding: 0 0 0px 0 !important;
  background: transparent !important;
  position: relative;
  margin-bottom: 20px !important;
}

.flatpickr-month {
  height: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flatpickr-current-month {
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  position: static !important;
  width: auto !important;
  text-align: center;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 0 8px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer;
}

/* Arrow navigation */
.flatpickr-prev-month,
.flatpickr-next-month {
  padding: 8px !important;
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 32px !important;
  height: 32px !important;
}

.flatpickr-prev-month {
  left: 0 !important;
}

.flatpickr-next-month {
  right: 0 !important;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  fill: #666 !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 16px !important;
  height: 16px !important;
}

/* Weekdays */
.flatpickr-weekdays {
  background: transparent !important;
  padding: 0 0 16px 0 !important;
}

.flatpickr-weekday {
  font-size: 12px !important;
  font-weight: 600 !important;
  background: transparent !important;
  color: #141414 !important;
}

.span.flatpickr-weekday {
  background: transparent !important;
}

/* Days container */
.flatpickr-days {
  padding: 0 !important;
  background: transparent !important;
}

.dayContainer {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  padding: 0 !important;
}

.flatpickr-day {
  border-radius: 7px !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  border: none !important;
  background: #f5f5f5 !important;
  max-width: none !important;
  height: 40px !important;
  line-height: 40px !important;
  margin: 3px !important;
  flex-basis: calc(14.285% - 6px) !important;
  margin-bottom: 8px !important;
}
.flatpickr-current-month {
  height: auto !important;
}

.flatpickr-day:hover:not(.flatpickr-disabled):not(.selected) {
  background: #e8e8e8 !important;
  border: none !important;
}

/* Today - purple border */
.flatpickr-day.today {
  border: 2px solid #a22a7d !important;
  background: #fff !important;
  color: #333 !important;
  font-weight: 600 !important;
}

.flatpickr-day.today:hover {
  background: #fff !important;
  border: 2px solid #a22a7d !important;
}

/* Selected dates - purple filled */
.flatpickr-day.selected {
  background: #a22a7d !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600 !important;
}

.flatpickr-day.selected:hover {
  background: #8f2d7a !important;
  border: none !important;
}

/* Other month days (grayed out) */
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
  color: #ccc !important;
  background: transparent !important;
}

.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
  background: transparent !important;
}

/* Event dots */
.flatpickr-day {
  position: relative !important;
}

.event-dot {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #a22a7d;
  border-radius: 50%;
  display: block;
  pointer-events: none;
}

.flatpickr-day.selected .event-dot {
  background: #a22a7d;
}
.flatpickr-days {
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100% !important;
}

/* Disable clicking on non-event days */
.flatpickr-day {
  cursor: default !important;
}

.flatpickr-day.has-event {
  cursor: pointer !important;
}

/* Tooltip styles */
.event-tooltip {
  position: absolute;
  z-index: 9999;
  background: #333;
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.event-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.event-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #333;
}

.event-tooltip-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-tooltip-content strong {
  font-size: 14px;
  font-weight: 600;
}

.event-tooltip-date {
  font-size: 12px;
  opacity: 0.8;
}

.numInput.cur-year,
.numInputWrapper {
  display: none !important;
}

.cal-mobile {
  display: none !important;
}
footer {
    background-color: #2C478C;
    padding-top: 70px;
    padding-bottom: 35px;
}
footer .footer-first-col {
    max-width: 387px;
    width: 100%;
}
footer .footer-contacts {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}
footer .footer-contacts .heading{
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    margin-bottom: 5px;
}
footer .footer-contacts .link{
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    transition: 0.3s all;
}
footer .footer-contacts .link:hover{
    color: #A22A7D;
}
footer .footer-socials .socials-text {
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
}
footer .footer-socials {
    margin-top: 48px;
}
footer .footer-socials .socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
footer .footer-socials .social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #223D82;
    border-radius: 100%;
    transition: 0.3s all;
}
footer .footer-socials .social-btn:hover {
    background-color: #A22A7D;
}
footer .footer-second-col {
    width: 20%;
}
footer .footer-second-col .col-title{
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
}
footer .footer-top {
    display: flex;
    gap: 10%;
    padding-bottom: 60px;
}
footer .footer-second-col .cat-link-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 20px;
    margin-top: 28px;
}
footer .footer-second-col .cat-link-grid .menu-links{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    transition: 0.3s all;
}
footer .footer-second-col .cat-link-grid .menu-links:hover{
    color: #A22A7D;
}
footer .footer-third-col {
    width: 20%;
}
footer .footer-third-col .col-title{
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
}
footer .footer-third-col  .cat-link-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    margin-top: 28px;
}
footer .footer-third-col .cat-link-grid .menu-links{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    transition: 0.3s all;
}
footer .footer-third-col .cat-link-grid .menu-links:hover{
    color: #A22A7D;
}
footer .footer-bottom {
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    color: #fff;
    padding-top: 33px;
    border-top: 1px solid hwb(0deg 100% 0% / 10%);
}



.flatpickr-calendar.animate.open {
    padding: 20px 5px !important;
    max-width: 270px;
}


.flatpickr-calendar.animate.open  .flatpickr-day {

    font-weight: 500 !important;
    font-size: 12px !important;


    height: 30px !important;
    line-height: 28px !important;
    margin: 2px !important;
    flex-basis: calc(14.285% - 4px) !important;
    margin-bottom: 3px !important;
    cursor: pointer !important;
}
@media (max-width: 768px) {
    footer .footer-top {
        gap: 40px;
        flex-direction: column;
    }
    footer .footer-second-col {
        width: unset;
        max-width: 350px;
    }
    footer .footer-third-col {
        width: unset;
    }
    footer .footer-contacts .heading {
        font-weight: 500;
        font-size: 12px;
    }
    footer .footer-contacts .link {
        font-size: 14px;
    }
    footer .footer-socials .socials-text {
        font-size: 13px;
    }
    footer .footer-socials .social-btn {
        width: 48px;
        height: 48px;
    }
    footer .footer-contacts {
        display: flex;
        justify-content: unset; 
        margin-top: 30px;
        gap: 30px;
    }
    footer {
        background-color: #2c478c;
        padding-top: 30px;
        padding-bottom: 35px;
    }
    footer .footer-bottom {
        text-align: center;
        
    }
}

/* Responsive */
@media (max-width: 1200px) {
  .filter-section .filter-wrapper {
    flex-wrap: wrap;
  }

  .filter-section .filter-inputs {
    width: 100%;
  }
  .upcoming-events-section .upcoming-events-wrapper {
    grid-template-columns: 1fr;
  }

  .upcoming-events-section .calendar-sidebar {
    gap: 20px;
  }

  .upcoming-events-section .calendar-images {
    flex: 1;
  }
  .filter-section .filter-checkbox {
    flex-shrink: 0;
    margin-left: 10px;
    margin-right: 15px;
  }
  .filter-section .filter-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
  }
  .filter-section .filter-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 44px 20px;
    border-radius: 8px;
  }
  .upcoming-event-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  .upcoming-events-section .calendar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: center;
  }

  .upcoming-events-section .calendar-images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  }
  .upcoming-events-section .calendar-images img {
    min-height: auto;
    width: 100%;
  }
  .upcoming-events-section .upcoming-event-card {
    position: relative;
  }

  .upcoming-events-section .event-meta-item.event-price {
    width: 100%;
  }

  .upcoming-events-section .add-to-wishlist {
    position: absolute;
    bottom: 20px;
    right: 20px;
  }

  .upcoming-events-section .upcoming-event-card {
    display: flex;
    grid-template-columns: 480px 1fr;
    gap: 20px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    flex-direction: column;
    padding: 20px 20px 20px 20px;
  }
  .upcoming-events-section .upcoming-event-content {
    padding: 0;
  }
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
  .dropdown-container .user-dropdown {
    display: none;
  }
  .header-actions {
    gap: 15px;
  }

  .favorites span,
  .user-link span {
    display: none;
  }

  .nav-menu {
    gap: 0;
  }

  .nav-menu li a {
    padding: 16px 15px;
    font-size: 14px;
  }
  .events-section .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .filter-section .toggle-icon {
    display: block;
  }
  .filter-section .filter-inputs {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    flex-direction: column;
    align-content: flex-start;
  }
  .filter-options-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }
  .filter-section .filter-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fff;
    padding: 44px 40px;
    border-radius: 8px;
    flex-direction: column;
  }
  .filter-section .filter-wrapper {
    padding: 16px 24px;
    gap: 15px;
  }
  .filter-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .filter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    width: 100%;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .top-header {
    padding: 12px 0;
  }

  .header-content {
    gap: 15px;
  }

  /* Show mobile menu toggle */
  .menu-toggle {
    display: flex;
    order: 1;
  }

  /* Logo in center */
  .logo {
    order: 2;
    margin: 0 auto;
  }

  .logo img {
    width: auto;
    height: 32px;
  }

  /* Hide desktop search */
  .search-box {
    display: none;
  }

  /* Show mobile search */
  .mobile-search-overlay {
    display: block;
  }

  /* Show mobile search button */
  .mobile-search-btn {
    display: block;
  }

  /* Header actions */
  .header-actions {
    order: 3;
    gap: 16px;
  }

  .favorites,
  .user-link {
    padding: 4px;
  }

  .favorites span,
  .user-link span {
    display: none;
  }

  /* Hide desktop navigation */
  .main-nav > .container {
    display: none;
  }

  /* Mobile Navigation Overlay */
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .main-nav.active .nav-overlay {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Navigation Sidebar */
  .nav-sidebar {
    display: block;
    position: fixed;
    top: 0;
    left: -290px;
    width: 290px;
    height: 100%;
    background: #2c478c;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .main-nav.active .nav-sidebar {
    left: 0;
  }

  /* Close Button */
  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 16px;
    left: 16px;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

  /* Mobile Menu Items inside sidebar */
  .nav-sidebar .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 56px;
    margin-left: 72px;
  }

  .nav-sidebar .nav-menu li {
    width: 100%;
  }

  .nav-sidebar .nav-menu li a {
    padding: 15px 20px;
    padding-left: 0px;
    width: 100%;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    vertical-align: middle;
  }

  .nav-sidebar .nav-menu li:first-child a {
    padding-top: 0px;
  }

  .nav-sidebar .nav-menu li:last-child a {
    padding-bottom: 0px;
  }

  .nav-sidebar .nav-menu li a:hover,
  .nav-sidebar .nav-menu li a.active {
    background-color: transparent;
    color: #a22a7d;
  }

  .header-actions .divider {
    display: none;
  }
  .mobile-search-btn img {
    filter: brightness(0) saturate(100%) invert(23%) sepia(63%) saturate(1995%)
      hue-rotate(290deg) brightness(91%) contrast(94%);
  }
  .filter-section {
    padding: 20px 0;
  }

  .filter-section .filter-wrapper {
    padding: 24px 24px;
    gap: 24px;
  }

  .filter-section .filter-label {
    width: 100%;
  }

  .filter-section .filter-inputs {
    gap: 12px;
  }

  .filter-section .filter-input-group {
    min-width: calc(50% - 6px);
  }

  .filter-section .filter-checkbox {
    width: 100%;
  }

  .filter-section .btn-filter {
    width: 100%;
  }

  .events-section {
    padding: 20px 0;
  }

  .events-section .section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .events-section .events-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .events-section .event-title {
    font-size: 13px;
    min-height: auto;
  }

  .event-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #666;
  }
  .event-card .event-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
  }

  .upcoming-events-section {
    padding: 20px 0;
  }

  .upcoming-events-section .upcoming-event-card {
    grid-template-columns: 1fr;
  }

  .upcoming-events-section .upcoming-event-image {
    height: 220px;
  }

  .upcoming-events-section .upcoming-event-content {
    padding: 10px;
  }

  .upcoming-events-section .upcoming-event-title {
    font-size: 13px;
    line-height: 22px;
    padding: 0px 10px;
  }

  .upcoming-events-section .calendar-sidebar {
    flex-direction: column;
  }

  .upcoming-events-section .calendar-images {
    flex-direction: column;
  }

  .filter-options-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    flex-direction: column;
  }
  .filter-date-wrap,
  .category-selecttion-wrap {
    width: 100%;
  }

  .filter-section .filter-input-group.category-selection-wrap {
    min-width: 100%;
  }
  .filter-section .filter-inputs {
    gap: 16px;
  }

  .upcoming-events-section .upcoming-events-wrapper {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .upcoming-events-section .upcoming-events-list {
    width: 100%;
  }
  .upcoming-events-section .calendar-sidebar {
    width: 100%;
  }
  .events-section .events-grid {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
    flex-direction: column;
  }
  .events-section {
    margin-bottom: 020px;
  }
  .events-section.events-two {
    margin-bottom: 54px;
  }
  .upcoming-events-section .calendar-widget.desktop-cal {
    display: none !important;
  }
  .cal-mobile {
    display: block !important;
  }
  .cal-mobile .flatpickr-wrapper {
    max-width: 400px;
    margin: auto;
  }
  .upcoming-events-section .calendar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: center;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .hero-slider .slide-content {
    display: none !important;
  }
  .hero-slider .slide {
    height: 210px !important;
  }
  .upcoming-events-section .section-title {
    text-align: center;
    margin-bottom: 24px;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 30px;
    margin-top: 32px;
  }
  .event-date {
    color: #c44fa0;
    font-weight: 700;
    font-size: 14px;
  }
  .upcoming-events-section .event-meta-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #6f6f73;
  }
  .upcoming-events-section .upcoming-events-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .header-actions {
    gap: 8px;
  }

  .favorites img,
  .user-link img,
  .mobile-search-btn img {
    width: 20px;
    height: 20px;
  }

  .nav-sidebar {
    width: 280px;
    left: -280px;
  }
}

/* Desktop - Make sure nav elements are visible */
@media (min-width: 769px) {
  .main-nav > .container {
    display: block;
  }

  .nav-overlay,
  .nav-sidebar,
  .nav-close {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .header-actions {
    gap: 8px;
  }

  .favorites img,
  .user-link img,
  .mobile-search-btn img {
    width: 20px;
    height: 20px;
  }

  .nav-sidebar {
    width: 280px;
    left: -280px;
  }
}
