  #commune-selection-container {
    background: radial-gradient(circle at top right, rgba(81, 157, 136, 0.05), transparent 40%),
                radial-gradient(circle at bottom left, rgba(236, 216, 199, 0.1), transparent 40%);
    transition: all 0.5s ease;
  }

  body.dark-mode #commune-selection-container {
    background: radial-gradient(circle at top right, rgba(81, 157, 136, 0.1), transparent 40%),
                radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.2), transparent 40%);
  }

  .search-hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    letter-spacing: -1px;
    line-height: 1.1;
  }

  .custom-search-group {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    border: 1px solid rgba(81, 157, 136, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
  }

  .custom-search-group:focus-within {
    box-shadow: 0 20px 55px rgba(81, 157, 136, 0.2);
    border-color: #519D88;
    transform: translateY(-2px);
  }

  body.dark-mode .custom-search-group {
    background: #2d443c;
    border-color: #649383;
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
  }

  .custom-search-input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding-left: 20px;
    font-weight: 500;
    color: #1b3d2f;
  }

  body.dark-mode .custom-search-input {
    color: #e2e8e4;
  }

  body.dark-mode .custom-search-input::placeholder {
    color: rgba(226, 232, 228, 0.5);
  }

  .city-pill {
    transition: all 0.25s ease;
    background: #fff;
    border: 1px solid rgba(81, 157, 136, 0.2) !important;
    color: #1b3d2f !important;
    font-weight: 600;
  }

  .city-pill:hover {
    background: #519D88 !important;
    color: white !important;
    border-color: #519D88 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(81, 157, 136, 0.25);
  }

  body.dark-mode .city-pill {
    background: #2d443c;
    border-color: #649383 !important;
    color: #e2e8e4 !important;
  }

  body.dark-mode .city-pill:hover {
    background: #649383 !important;
    color: #fff !important;
  }

  @media (max-width: 768px) {
    #commune-selection-container {
      min-height: calc(100vh - 160px) !important;
      padding-top: 1rem !important;
      padding-bottom: 1rem !important;
      justify-content: flex-start !important;
    }
    .search-hero-title {
      font-size: 1.8rem;
      margin-top: 1rem;
    }
    #commune-selection-container .lead {
      margin-bottom: 1.5rem !important;
      font-size: 0.95rem !important;
    }
    .custom-search-group {
      padding: 4px;
      margin-bottom: 1.5rem !important;
    }
    .custom-search-btn {
      padding: 8px 16px !important;
      font-size: 0.85rem;
    }
    .city-pill {
      font-size: 0.75rem !important;
      padding: 4px 10px !important;
    }
    .top-destinations-header {
      margin-bottom: 1rem !important;
    }
  }
