
/* Modern Shimmer Highlight Effect */
.shimmer-effect[data-v-bae41476] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.6) 20%,
    rgba(255, 255, 255, 0.8) 60%,
    rgba(255, 255, 255, 0)
  );
  animation: shimmer-bae41476 1.8s infinite;
  pointer-events: none;
  z-index: 10;
}
@keyframes shimmer-bae41476 {
100% {
    transform: translateX(100%);
}
}

.mobile-search-modal-overlay[data-v-bf275284] {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  direction: rtl;
  font-family: inherit;
}
.mobile-search-modal-container[data-v-bf275284] {
  width: 100%;
  max-width: 640px;
  height: 90vh;
  max-height: 92vh;
  background: #ffffff;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -10px 45px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  position: relative;
}
.drawer-drag-handle-bar[data-v-bf275284] {
  width: 100%;
  padding: 8px 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #ffffff;
}
.drawer-drag-pill[data-v-bf275284] {
  width: 44px;
  height: 5px;
  background: #cbd5e1;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.drawer-drag-handle-bar:hover .drawer-drag-pill[data-v-bf275284] {
  background: #94a3b8;
}

/* SEARCH HEADER */
.modal-search-header[data-v-bf275284] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  position: sticky;
  top: 0;
  z-index: 10;
}
.modal-search-input-box[data-v-bf275284] {
  display: flex;
  align-items: center;
  flex: 1;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 12px;
  height: 46px;
  transition: all 0.2s ease;
}
.modal-search-input-box[data-v-bf275284]:focus-within {
  background: #ffffff;
  border-color: #6bb632;
  box-shadow: 0 0 0 3px rgba(107, 182, 50, 0.15);
}
.modal-search-input-box .search-icon[data-v-bf275284] {
  font-size: 16px;
  color: #64748b;
  margin-left: 8px;
}
.modal-search-input[data-v-bf275284] {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: #1e293b;
  font-weight: 600;
  width: 100%;
}
.modal-search-input[data-v-bf275284]::placeholder {
  color: #94a3b8;
  font-weight: 500;
  font-size: 13px;
}
.modal-voice-btn[data-v-bf275284], .modal-clear-btn[data-v-bf275284] {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.modal-voice-btn[data-v-bf275284]:hover, .modal-clear-btn[data-v-bf275284]:hover {
  background: #e2e8f0;
  color: #1e293b;
}
.modal-voice-btn.is-listening[data-v-bf275284] {
  color: #ef4444;
  animation: pulse-voice-bf275284 1.2s infinite;
}
.modal-close-btn[data-v-bf275284] {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.modal-close-btn[data-v-bf275284]:hover {
  background: #e2e8f0;
  color: #0f172a;
}

/* VOICE LISTENING BAR */
.voice-listening-bar[data-v-bf275284] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fef2f2;
  color: #ef4444;
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid #fee2e2;
}
.voice-pulse[data-v-bf275284] {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-ring-bf275284 1s infinite;
}

/* MODAL BODY */
.modal-search-body[data-v-bf275284] {
  flex: 1;
  overflow-y: auto;
  padding: 16px;

  /* Custom scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

/* LOADING STATE */
.search-loading-state[data-v-bf275284] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 16px;
  gap: 12px;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}
.search-spinner[data-v-bf275284] {
  width: 32px;
  height: 32px;
  border: 3px solid #e2e8f0;
  border-top-color: #6bb632;
  border-radius: 50%;
  animation: spin-bf275284 0.8s linear infinite;
}

/* RESULTS SECTIONS */
.results-section[data-v-bf275284] {
  margin-bottom: 20px;
}
.section-title[data-v-bf275284] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}
.count-badge[data-v-bf275284] {
  background: #f1f5f9;
  color: #475569;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  margin-right: auto;
}
.products-list[data-v-bf275284] {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-result-card[data-v-bf275284] {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-result-card[data-v-bf275284]:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-1px);
}
.product-thumb[data-v-bf275284] {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #fafafa;
  border: 1px solid #f1f5f9;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.product-thumb img[data-v-bf275284] {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-info[data-v-bf275284] {
  flex: 1;
  min-width: 0;
}
.product-name[data-v-bf275284] {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-price-row[data-v-bf275284] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.current-price[data-v-bf275284] {
  font-weight: 800;
  color: #16a34a;
}
.current-price.discount[data-v-bf275284] {
  color: #6bb632;
}
.old-price[data-v-bf275284] {
  text-decoration: line-through;
  color: #94a3b8;
  font-size: 11px;
}
.contact-price[data-v-bf275284] {
  color: #2563eb;
  font-weight: 700;
}
.arrow-icon[data-v-bf275284] {
  font-size: 12px;
  color: #cbd5e1;
  margin-right: 4px;
}
.tags-flex[data-v-bf275284] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-tag-chip[data-v-bf275284], .brand-tag-chip[data-v-bf275284] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.15s ease;
}
.category-tag-chip[data-v-bf275284] {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.category-tag-chip[data-v-bf275284]:hover {
  background: #dcfce7;
}
.brand-tag-chip[data-v-bf275284] {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}
.brand-tag-chip[data-v-bf275284]:hover {
  background: #dbeafe;
}
.view-all-results-wrap[data-v-bf275284] {
  margin-top: 20px;
  text-align: center;
}
.btn-submit-all[data-v-bf275284] {
  width: 100%;
  padding: 12px 18px;
  background: #6bb632;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(107, 182, 50, 0.25);
  transition: all 0.2s ease;
}
.btn-submit-all[data-v-bf275284]:hover {
  background: #5aa127;
}
.no-results-state[data-v-bf275284] {
  text-align: center;
  padding: 40px 16px;
  color: #64748b;
}
.no-results-icon[data-v-bf275284] {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}
.no-results-state h3[data-v-bf275284] {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 8px;
}
.no-results-state p[data-v-bf275284] {
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* INITIAL DISCOVERY SECTION */
.discovery-section[data-v-bf275284] {
  margin-bottom: 24px;
}
.section-header-flex[data-v-bf275284] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.btn-clear-history[data-v-bf275284] {
  background: transparent;
  border: none;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.recent-searches-list[data-v-bf275284] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.recent-search-pill[data-v-bf275284] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #334155;
}
.recent-text[data-v-bf275284] {
  cursor: pointer;
}
.recent-text[data-v-bf275284]:hover {
  color: #6bb632;
}
.remove-recent-btn[data-v-bf275284] {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 11px;
  cursor: pointer;
  padding: 0 2px;
  display: flex;
  align-items: center;
}
.remove-recent-btn[data-v-bf275284]:hover {
  color: #ef4444;
}
.trending-tags-grid[data-v-bf275284] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trending-chip[data-v-bf275284] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #d48806;
  cursor: pointer;
  transition: all 0.15s ease;
}
.trending-chip[data-v-bf275284]:hover {
  background: #fff1b8;
}
.category-shortcuts-grid[data-v-bf275284] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.cat-shortcut-card[data-v-bf275284] {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.cat-shortcut-card[data-v-bf275284]:hover {
  border-color: #cbd5e1;
  transform: translateY(-1px);
}
.cat-icon-box[data-v-bf275284] {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cat-name[data-v-bf275284] {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}

/* BOTTOM DRAWER SLIDE-UP ANIMATIONS */
.search-drawer-slide-enter-active[data-v-bf275284],
.search-drawer-slide-leave-active[data-v-bf275284] {
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-drawer-slide-enter-active .mobile-search-modal-container[data-v-bf275284],
.search-drawer-slide-leave-active .mobile-search-modal-container[data-v-bf275284] {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-drawer-slide-enter-from[data-v-bf275284],
.search-drawer-slide-leave-to[data-v-bf275284] {
  opacity: 0;
}
.search-drawer-slide-enter-from .mobile-search-modal-container[data-v-bf275284],
.search-drawer-slide-leave-to .mobile-search-modal-container[data-v-bf275284] {
  transform: translateY(100%);
}
@keyframes spin-bf275284 {
100% { transform: rotate(360deg);
}
}
@keyframes pulse-ring-bf275284 {
0% { transform: scale(0.95); opacity: 1;
}
50% { transform: scale(1.15); opacity: 0.7;
}
100% { transform: scale(0.95); opacity: 1;
}
}
@keyframes pulse-voice-bf275284 {
0%, 100% { opacity: 1;
}
50% { opacity: 0.4;
}
}
