.E-camp-catalog {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px 60px;
}

.E-camp-filter {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px;
  margin-bottom: 32px;
}
.E-camp-filter__title {
  color: #31562d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
}
.E-camp-filter__row {
  margin-bottom: 20px;
}
.E-camp-filter__row:last-of-type {
  margin-bottom: 0;
}
.E-camp-filter__label {
  display: block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.E-camp-filter__age {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #FAFAF5;
  border: 2px solid #E5E5E5;
  border-radius: 50px;
  padding: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-filter__age:focus-within {
  border-color: #8BA841;
  box-shadow: 0 0 0 3px rgba(139, 168, 65, 0.15);
}
.E-camp-filter__age-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #31562d;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
}
.E-camp-filter__age-btn .material-icons {
  font-size: 20px;
}
.E-camp-filter__age-btn:hover {
  background: #6B8A2F;
  transform: scale(1.05);
}
.E-camp-filter__age-btn:disabled {
  background: #E5E5E5;
  color: #888888;
  cursor: not-allowed;
  transform: none;
}
.E-camp-filter__age-input {
  width: 56px;
  text-align: center;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #31562d;
  border: none;
  background: transparent;
  outline: none;
  -moz-appearance: textfield;
}
.E-camp-filter__age-input::-webkit-outer-spin-button, .E-camp-filter__age-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.E-camp-filter__age-input::placeholder {
  color: #888888;
  font-weight: 400;
}
.E-camp-filter__age-clear {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #888888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-filter__age-clear .material-icons {
  font-size: 18px;
}
.E-camp-filter__age-clear:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #E74C3C;
}
.E-camp-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.E-camp-filter__chip {
  padding: 8px 16px;
  border: 2px solid #E5E5E5;
  border-radius: 50px;
  background: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.E-camp-filter__chip:hover {
  border-color: #8BA841;
  color: #31562d;
  background: #F0F4E8;
}
.E-camp-filter__chip.is-active {
  border-color: #31562d;
  background: #31562d;
  color: #fff;
}
.E-camp-filter__locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.E-camp-filter__loc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 2px solid #E5E5E5;
  border-radius: 50px;
  background: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.E-camp-filter__loc-tag:hover {
  border-color: #8BA841;
  color: #31562d;
  background: #F0F4E8;
}
.E-camp-filter__loc-tag.is-active {
  border-color: #31562d;
  background: #31562d;
  color: #fff;
}
.E-camp-filter__loc-tag.is-active .E-camp-filter__loc-icon {
  filter: brightness(10);
}
.E-camp-filter__loc-tag.is-active .E-camp-filter__plane {
  color: #fff;
}
.E-camp-filter__loc-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.E-camp-filter__plane {
  font-size: 16px !important;
  color: #3498DB;
}
.E-camp-filter__loc-select {
  display: none;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  background: #fff;
  color: #1A1A1A;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-filter__loc-select:focus {
  border-color: #8BA841;
  box-shadow: 0 0 0 3px rgba(139, 168, 65, 0.15);
}
.E-camp-filter__actions {
  text-align: center;
  margin-top: 16px;
}
.E-camp-filter__clear-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border: 2px solid #E5E5E5;
  border-radius: 50px;
  background: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-filter__clear-all .material-icons {
  font-size: 18px;
}
.E-camp-filter__clear-all:hover {
  border-color: #E74C3C;
  color: #E74C3C;
  background: rgba(231, 76, 60, 0.05);
}

.E-camp-results__counter {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 4px;
}
.E-camp-results__counter strong {
  color: #31562d;
  font-weight: 700;
}

.E-camp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.E-camp-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: translateY(0);
  animation: cardEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.E-camp-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.E-camp-card.is-hidden {
  display: none;
}
.E-camp-card__image {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #FAFAF5;
  overflow: hidden;
}
.E-camp-card__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}
.E-camp-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  z-index: 2;
}
.E-camp-card__badge .material-icons {
  font-size: 14px;
}
.E-camp-card__badge--available {
  background: rgba(39, 174, 96, 0.9);
  color: #fff;
}
.E-camp-card__badge--full {
  background: rgba(85, 85, 85, 0.9);
  color: #fff;
}
.E-camp-card__badge--waitlist {
  background: rgba(230, 126, 34, 0.9);
  color: #fff;
}
.E-camp-card__intl-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(52, 152, 219, 0.9);
  color: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}
.E-camp-card__intl-badge .material-icons {
  font-size: 14px;
}
.E-camp-card__price {
  position: absolute;
  bottom: 12px;
  right: 12px;
  text-align: right;
  z-index: 2;
}
.E-camp-card__price-label {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
}
.E-camp-card__price-value {
  color: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}
.E-camp-card__body {
  padding: 20px;
}
.E-camp-card__location {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #8BA841;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}
.E-camp-card__location .material-icons {
  font-size: 15px;
}
.E-camp-card__title {
  margin: 0 0 10px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.E-camp-card__title a {
  color: #1A1A1A;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-card__title a:hover {
  color: #31562d;
}
.E-camp-card__age {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: #F0F4E8;
  border-radius: 50px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #31562d;
  margin-bottom: 10px;
}
.E-camp-card__age .material-icons {
  font-size: 16px;
  color: #8BA841;
}
.E-camp-card__age-match {
  font-size: 16px !important;
  color: #27AE60 !important;
}
.E-camp-card__desc {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin: 0 0 12px;
}
.E-camp-card__dates {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: #555555;
  margin-bottom: 16px;
}
.E-camp-card__dates .material-icons {
  font-size: 16px;
  color: #8BA841;
}
.E-camp-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 12px;
  background: #31562d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-card__cta .material-icons {
  font-size: 18px;
  transition: transform 0.2s ease;
}
.E-camp-card__cta:hover {
  background: #6B8A2F;
  color: #fff;
}
.E-camp-card__cta:hover .material-icons {
  transform: translateX(4px);
}

.E-camp-empty {
  text-align: center;
  padding: 60px 20px;
}
.E-camp-empty__icon {
  font-size: 64px;
  color: #E5E5E5;
  margin-bottom: 16px;
}
.E-camp-empty h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  color: #1A1A1A;
  margin: 0 0 8px;
}
.E-camp-empty p {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #555555;
  margin: 0 0 20px;
}

.E-camp-wizard-cta {
  margin-top: 40px;
}
.E-camp-wizard-cta__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: #F0F4E8;
  border: 2px solid #8BA841;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-wizard-cta__inner > .material-icons {
  font-size: 36px;
  color: #8BA841;
  flex-shrink: 0;
}
.E-camp-wizard-cta__inner div {
  flex: 1;
}
.E-camp-wizard-cta__inner div strong {
  display: block;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: #31562d;
}
.E-camp-wizard-cta__inner div p {
  margin: 4px 0 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  color: #555555;
}
.E-camp-wizard-cta__btn {
  flex-shrink: 0;
  padding: 12px 24px;
  background: #8BA841;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.E-camp-wizard-cta__btn:hover {
  background: #6B8A2F;
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.E-camp-wizard {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.E-camp-wizard__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.E-camp-wizard__dialog {
  position: relative;
  width: 90%;
  max-width: 480px;
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  z-index: 1;
}
.E-camp-wizard__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #FAFAF5;
  color: #555555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-wizard__close:hover {
  background: rgba(231, 76, 60, 0.1);
  color: #E74C3C;
}
.E-camp-wizard__step {
  text-align: center;
}
.E-camp-wizard__step h3 {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 24px;
}
.E-camp-wizard__age {
  justify-content: center;
  margin-bottom: 32px;
}
.E-camp-wizard__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 32px;
}
.E-camp-wizard__option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  background: #fff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-wizard__option .material-icons {
  font-size: 20px;
}
.E-camp-wizard__option:hover {
  border-color: #8BA841;
  background: #F0F4E8;
}
.E-camp-wizard__option.is-active {
  border-color: #31562d;
  background: #31562d;
  color: #fff;
}
.E-camp-wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.E-camp-wizard__prev, .E-camp-wizard__next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-wizard__prev .material-icons, .E-camp-wizard__next .material-icons {
  font-size: 18px;
}
.E-camp-wizard__prev {
  background: transparent;
  border: 2px solid #E5E5E5;
  color: #555555;
}
.E-camp-wizard__prev:hover {
  border-color: #555555;
}
.E-camp-wizard__next {
  background: #31562d;
  border: 2px solid #31562d;
  color: #fff;
  margin-left: auto;
}
.E-camp-wizard__next:hover {
  background: #6B8A2F;
  border-color: #6B8A2F;
}
.E-camp-wizard__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.E-camp-wizard__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E5E5E5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.E-camp-wizard__dot.is-active {
  background: #31562d;
  transform: scale(1.2);
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.E-camp-card:nth-child(1) {
  animation-delay: 0.05s;
}
.E-camp-card:nth-child(2) {
  animation-delay: 0.1s;
}
.E-camp-card:nth-child(3) {
  animation-delay: 0.15s;
}
.E-camp-card:nth-child(4) {
  animation-delay: 0.2s;
}
.E-camp-card:nth-child(5) {
  animation-delay: 0.25s;
}
.E-camp-card:nth-child(6) {
  animation-delay: 0.3s;
}
.E-camp-card:nth-child(7) {
  animation-delay: 0.35s;
}
.E-camp-card:nth-child(8) {
  animation-delay: 0.4s;
}
.E-camp-card:nth-child(9) {
  animation-delay: 0.45s;
}
.E-camp-card:nth-child(10) {
  animation-delay: 0.5s;
}
.E-camp-card:nth-child(11) {
  animation-delay: 0.55s;
}
.E-camp-card:nth-child(12) {
  animation-delay: 0.6s;
}
.E-camp-card:nth-child(13) {
  animation-delay: 0.65s;
}
.E-camp-card:nth-child(14) {
  animation-delay: 0.7s;
}
.E-camp-card:nth-child(15) {
  animation-delay: 0.75s;
}

@media (max-width: 991px) {
  .E-camp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .E-camp-filter {
    padding: 24px;
  }
  .E-camp-wizard-cta__inner {
    flex-wrap: wrap;
  }
  .E-camp-wizard-cta__inner div {
    min-width: 200px;
  }
}
@media (max-width: 767px) {
  .E-camp-catalog {
    padding-top: 100px;
    padding-right: 16px;
    padding-bottom: 40px;
    padding-left: 16px;
  }
  .E-camp-filter {
    padding: 20px 16px;
    border-radius: 8px;
  }
  .E-camp-filter__title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .E-camp-filter__locations {
    display: none;
  }
  .E-camp-filter__loc-select {
    display: block;
  }
  .E-camp-filter__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .E-camp-filter__chips::-webkit-scrollbar {
    display: none;
  }
  .E-camp-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .E-camp-card__image {
    height: 180px;
  }
  .E-camp-card__title {
    font-size: 16px;
  }
  .E-camp-wizard-cta__inner {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .E-camp-wizard-cta__inner > .material-icons {
    font-size: 28px;
  }
  .E-camp-wizard__dialog {
    padding: 32px 20px 24px;
    width: 95%;
  }
  .E-camp-wizard__step h3 {
    font-size: 18px;
  }
  .E-camp-wizard__options {
    flex-direction: column;
  }
}
