/* GV Search Panel v2.1
   Vyhľadávací panel bez segmentov; sekcie prepína samostatná navigácia pod panelom. */
.gv-search {
  display: grid;
  gap: 10px;
  margin: 0 0 clamp(24px, 3vw, 34px);
  padding: clamp(10px, 1.7vw, 15px) clamp(12px, 2vw, 18px);
  border: 1px solid rgba(201, 169, 78, 0.64);
  border-radius: 24px;
  background: rgba(248, 245, 238, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 0 0 1px rgba(216,194,122,0.15),
    0 10px 24px rgba(0,0,0,0.10);
  backdrop-filter: blur(3px);
}

.gv-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gv-search-label {
  color: #D8C27A;
  font-size: clamp(1.02rem, 1.46vw, 1.16rem);
  font-weight: 650;
  letter-spacing: 0.015em;
}

.gv-search-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #D8C27A;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  border-bottom: 1px solid rgba(216,194,122,0.38);
  transition: color .16s ease, border-color .16s ease, text-shadow .16s ease;
}

.gv-search-clear:hover,
.gv-search-clear:focus-visible {
  color: #F0D88C;
  border-color: rgba(240,216,140,0.85);
  text-shadow: 0 0 10px rgba(216,194,122,0.25);
  outline: none;
}

.gv-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: stretch;
}

.gv-search-input {
  width: 100%;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid rgba(216, 176, 106, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #2f241e;
  font: inherit;
  font-size: 0.97rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.gv-search-input::placeholder {
  color: rgba(62, 51, 46, 0.58);
}

.gv-search-input:focus {
  border-color: rgba(216, 176, 106, 0.78);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 0 0 3px rgba(216, 176, 106, 0.13), inset 0 1px 0 rgba(255,255,255,0.70);
}

.gv-search-submit {
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid rgba(255, 226, 143, 0.82);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 246, 194, 0.42) 0%, rgba(255, 246, 194, 0) 48%),
    linear-gradient(135deg, #d4962f 0%, #efc45d 52%, #c98223 100%);
  color: #3f2b12;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 850;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255, 244, 194, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(116, 70, 13, 0.22),
    0 8px 18px rgba(125, 79, 18, 0.20);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease, border-color .16s ease;
}

.gv-search-submit:hover,
.gv-search-submit:focus-visible {
  border-color: rgba(255, 239, 174, 0.96);
  transform: translateY(-1px);
  filter: brightness(1.08) saturate(1.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -1px 0 rgba(116, 70, 13, 0.18),
    0 0 0 3px rgba(244, 196, 80, 0.16),
    0 11px 25px rgba(157, 103, 25, 0.30),
    0 0 18px rgba(255, 211, 91, 0.22);
  outline: none;
}

.gv-search-submit:active {
  transform: translateY(0);
  filter: brightness(0.98);
  box-shadow:
    inset 0 2px 4px rgba(103, 61, 11, 0.24),
    0 5px 12px rgba(125, 79, 18, 0.18);
}

.gv-search-filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.gv-search-filter {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.gv-search-filter span {
  color: rgba(248, 245, 238, 0.78);
  font-size: 0.78rem;
  font-weight: 700;
}

.gv-search-filter select,
.gv-search-filter input {
  width: 100%;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(216, 176, 106, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #2f241e;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.gv-search-filter select:focus,
.gv-search-filter input:focus {
  border-color: rgba(216, 176, 106, 0.78);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(216, 176, 106, 0.13), inset 0 1px 0 rgba(255,255,255,0.70);
}

.gv-search-status,
.gv-search-hint {
  margin: 0;
  color: rgba(248, 245, 238, 0.74);
  font-size: 0.88rem;
  line-height: 1.42;
}



@media (max-width: 640px) {
  .gv-search-head {
    align-items: flex-start;
  }

  .gv-search-clear {
    font-size: 0.86rem;
  }

  .gv-search-row {
    grid-template-columns: 1fr;
  }

  .gv-search-submit {
    width: 100%;
  }

  .gv-search-filters {
    grid-template-columns: 1fr;
  }
}
