/* Desworthy Site Search — floating search widget.
   Self-contained, scoped to .ds-search-* to avoid clashing with the theme. */

#ds-search-toggle {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9998;
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: #0d5552;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(13, 85, 82, 0.35);
  transition: transform 0.15s ease, background 0.15s ease;
}
#ds-search-toggle:hover { background: #0f766e; transform: translateY(-1px); }

#ds-search-panel {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 9999;
  width: 380px;
  max-width: calc(100vw - 40px);
  max-height: calc(100vh - 120px);
  min-height: 0;
  display: none;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 12px 40px rgba(20, 33, 31, 0.18);
  overflow: hidden;
}
#ds-search-panel.open { display: flex; }

.ds-search-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f6;
}
.ds-search-header strong { font-size: 15px; color: #0d5552; }
#ds-search-close {
  border: 0;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  color: #667085;
  cursor: pointer;
}
#ds-search-close:hover { color: #0d5552; }

.ds-search-body { flex: 1 1 auto; min-height: 0; overflow-y: auto; padding: 12px 16px 16px; }

#ds-search-input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
  outline: none;
}
#ds-search-input:focus { border-color: #0d5552; box-shadow: 0 0 0 3px rgba(13, 85, 82, 0.15); }

#ds-search-status { min-height: 18px; margin: 6px 2px 0; font-size: 13px; color: #667085; }

#ds-search-results { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }

.ds-search-card {
  border: 1px solid #eef2f6;
  border-radius: 12px;
  padding: 14px;
  background: #fbfcfd;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ds-search-card-stage { display: flex; flex-direction: column; gap: 4px; }
.ds-search-card-merchant {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f766e;
  font-weight: 700;
}
.ds-search-card-title { margin: 0; font-size: 15px; line-height: 1.35; color: #1d1e20; }
.ds-search-card-discount { font-size: 15px; font-weight: 700; color: #0d5552; }
.ds-search-card-expiry { font-size: 12px; color: #667085; }
.ds-search-card-verified { font-size: 12px; color: #16a34a; }
.ds-search-card-cta {
  align-self: flex-start;
  padding: 8px 14px;
  border-radius: 8px;
  background: #0f766e;
  color: #fff !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}
.ds-search-card-cta:hover { background: #0d5552; }
.ds-search-card-details {
  align-self: flex-start;
  font-size: 13px;
  font-weight: 600;
  color: #0f766e;
  text-decoration: none;
}
.ds-search-card-details:hover { text-decoration: underline; color: #0d5552; }

.ds-search-card-empty { padding: 14px; font-size: 14px; color: #475467; }
.ds-search-card-empty-sub { margin-top: 4px; font-size: 13px; color: #98a2b3; }

@media (max-width: 480px) {
  #ds-search-panel { right: 10px; left: 10px; width: auto; bottom: 74px; }
  #ds-search-toggle { right: 12px; bottom: 12px; }
}