    /* Search Trigger Button */
    .eccoci-srch-trigger {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: #6366F1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 12px rgba(99, 102, 241, 0.3);
      z-index: 50;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .eccoci-srch-trigger:active {
      transform: scale(0.95);
    }

    .eccoci-srch-trigger:hover {
      box-shadow: 0 6px 25px rgba(99, 102, 241, 0.5);
    }

    .eccoci-srch-trigger.eccoci-srch-hidden {
      display: none;
    }

    /* Overlay */
    .eccoci-srch-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 60;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .eccoci-srch-overlay.eccoci-srch-active {
      opacity: 1;
      visibility: visible;
    }

    /* Search Buttons */
    .eccoci-srch-panel {
      position: fixed;
      bottom: 20px;
      left: 16px;
      right: 16px;
      z-index: 100;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      opacity: 0;
      transform: translateY(100px);
      pointer-events: none;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    }

    .eccoci-srch-panel.eccoci-srch-active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }

    .eccoci-srch-panel-inner {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .eccoci-srch-buttons {
      display: flex;
      gap: 12px;
      transition: gap 0.3s ease;
    }

    .eccoci-srch-buttons.eccoci-srch-expanding {
      gap: 0;
    }

    .eccoci-srch-option {
      flex: 1;
      min-width: 0;
      height: 56px;
      padding: 0 20px;
      border-radius: 100px;
      border: none;
      background: white;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      font-size: 15px;
      font-weight: 600;
      color: #1F2937;
      transition: flex 0.3s ease, width 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
      overflow: hidden;
      white-space: nowrap;
    }

    .eccoci-srch-option:active {
      transform: scale(0.97);
    }

    .eccoci-srch-option.eccoci-srch-shrink {
      flex: 0;
      width: 0;
      padding: 0;
      opacity: 0;
    }

    /* Search Input Bar */
    .eccoci-srch-input-bar {
      width: 100%;
      height: 56px;
      padding: 8px 8px 8px 20px;
      border-radius: 100px;
      background: white;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      align-items: center;
      gap: 12px;
      display: none;
    }

    .eccoci-srch-input-bar.eccoci-srch-active {
      display: flex;
    }

    .eccoci-srch-buttons.eccoci-srch-hidden {
      display: none;
    }

    /* Autocomplete suggestions */
    .eccoci-srch-autocomplete-suggestions {
      display: none;
      flex-wrap: wrap;
      gap: 8px;
      padding: 0 4px;
    }

    .eccoci-srch-autocomplete-suggestions.eccoci-srch-active {
      display: flex;
      animation: eccoci-srch-fadeIn 0.2s ease;
    }

    .eccoci-srch-autocomplete-chip {
      padding: 10px 16px;
      border-radius: 100px;
      border: none;
      background: white;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      font-size: 14px;
      font-weight: 500;
      color: #4B5563;
      transition: all 0.2s ease;
    }

    .eccoci-srch-autocomplete-chip:active {
      transform: scale(0.95);
      background: #EEF2FF;
      color: #6366F1;
    }

    /* Selected tag display */
    .eccoci-srch-selected-tag-container {
      display: none;
      justify-content: center;
    }

    .eccoci-srch-selected-tag-container.eccoci-srch-active {
      display: flex;
      animation: eccoci-srch-fadeIn 0.2s ease;
    }

    .eccoci-srch-selected-tag {
      padding: 12px 20px;
      border-radius: 100px;
      background: #6366F1;
      color: white;
      font-size: 15px;
      font-weight: 600;
      box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    }

    /* Location buttons */
    .eccoci-srch-location-buttons {
      display: none;
      gap: 12px;
    }

    .eccoci-srch-location-buttons.eccoci-srch-active {
      display: flex;
      animation: eccoci-srch-fadeIn 0.3s ease;
    }

    @keyframes eccoci-srch-fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .eccoci-srch-location-btn {
      flex: 1;
      height: 56px;
      padding: 0 16px;
      border-radius: 100px;
      border: none;
      background: white;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0,0,0,0.12);
      font-size: 14px;
      font-weight: 600;
      color: #1F2937;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: transform 0.2s ease;
    }

    .eccoci-srch-location-btn:active {
      transform: scale(0.97);
    }

    .eccoci-srch-location-btn svg {
      flex-shrink: 0;
    }

    .eccoci-srch-input-bar input {
      flex: 1;
      border: none;
      background: transparent;
      font-size: 15px;
      font-weight: 500;
      color: #1F2937;
      outline: none;
    }

    .eccoci-srch-input-bar input::placeholder {
      color: #9CA3AF;
    }

    .eccoci-srch-input-bar .eccoci-srch-submit-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: #6366F1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .eccoci-srch-input-bar .eccoci-srch-submit-btn:active {
      background: #4F46E5;
    }

    /* City Search Modal */
    .eccoci-srch-city-modal {
      position: fixed;
      inset: 0;
      z-index: 200;
      display: none;
      align-items: flex-end;
      justify-content: center;
      padding: 20px;
    }

    .eccoci-srch-city-modal.eccoci-srch-active {
      display: flex;
      animation: eccoci-srch-fadeIn 0.3s ease;
    }

    .eccoci-srch-city-modal-content {
      width: 100%;
      max-width: 100%;
      background: white;
      border-radius: 24px;
      padding: 24px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }

    .eccoci-srch-city-modal-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .eccoci-srch-city-modal-title {
      font-size: 18px;
      font-weight: 700;
      color: #1F2937;
    }

    .eccoci-srch-city-modal-subtitle {
      font-size: 13px;
      color: #6B7280;
      margin-top: 4px;
    }

    .eccoci-srch-city-modal-close {
      width: 32px;
      height: 32px;
      min-width: 32px;
      border-radius: 50%;
      border: none;
      background: #F3F4F6;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .eccoci-srch-city-search-box {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #F3F4F6;
      border-radius: 14px;
      padding: 14px 16px;
      margin-top: 16px;
    }

    .eccoci-srch-city-search-box svg {
      flex-shrink: 0;
      opacity: 0.5;
    }

    .eccoci-srch-city-search-input {
      flex: 1;
      border: none;
      background: transparent;
      outline: none;
      font-size: 16px;
      color: #1F2937;
    }

    .eccoci-srch-city-search-input::placeholder {
      color: #9CA3AF;
    }

    .eccoci-srch-cities-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .eccoci-srch-city-chip {
      padding: 10px 16px;
      border-radius: 30px;
      border: 2px solid #E5E7EB;
      background: white;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: #4B5563;
      transition: all 0.2s;
    }

    .eccoci-srch-city-chip:active {
      transform: scale(0.95);
    }

    .eccoci-srch-city-chip.eccoci-srch-selected {
      border-color: #6366F1;
      background: #EEF2FF;
      color: #6366F1;
    }
