div#rental-finder .title-style-1 {
    display: none;
}
div#rental-finder .element.content-block {
    background: transparent;
    box-shadow: none;
}
div#rental-finder .element.content-block {
    padding: 0;
}
.type-recreational-vehicle-rental-ai .container.qla-container {
    display: none;
}

.hilucy-rental-finder {
  --ink: #0f1d2f;
  --muted: #5d7288;
  --border: #dbe5ee;
  --bg: #ffffff;
  --soft: #f4f8fc;
  --accent: #0fb2e9;
  --accent-2: #0aa0d4;
  --radius: 16px;
  --hlrf-card-min: 260px;
  font-family: inherit;
}

.hilucy-rental-finder .hlrf-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f4fbff 100%);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.05);
}

.hilucy-rental-finder .hlrf-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.hilucy-rental-finder .hlrf-title {
  margin: 4px 0;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}

.hilucy-rental-finder .hlrf-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
  color: var(--accent);
  margin: 0;
}

.hilucy-rental-finder .hlrf-lead {
  margin: 0;
  color: var(--muted);
}

.hilucy-rental-finder .hlrf-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hilucy-rental-finder .hlrf-pills button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.hilucy-rental-finder .hlrf-pills button:hover {
  background: var(--soft);
  transform: translateY(-1px);
}

.hilucy-rental-finder .hlrf-pills button[data-active="1"] {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--border);
  box-shadow: none;
}

.hilucy-rental-finder .hlrf-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  margin: 12px 0 8px;
  align-items: end;
}

.hilucy-rental-finder .hlrf-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}

.hilucy-rental-finder .hlrf-field input,
.hilucy-rental-finder .hlrf-field select {
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 14px;
}

.hilucy-rental-finder .hlrf-field input:focus,
.hilucy-rental-finder .hlrf-field select:focus {
  outline: 2px solid var(--accent-2);
  border-color: var(--accent-2);
}

.hilucy-rental-finder .hlrf-length {
  grid-column: 1 / -1;
  background: #f7fbff;
  border: 1px solid #d8e9f7;
  border-radius: 16px;
  padding: 14px 16px;
  display: grid;
  gap: 10px;
  box-shadow: inset 0 1px 0 #ffffff, 0 10px 26px rgba(15, 23, 42, 0.05);
}

.hilucy-rental-finder .hlrf-length-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hilucy-rental-finder .hlrf-length-title {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.hilucy-rental-finder .hlrf-length-help {
  color: var(--muted);
  font-size: 13px;
}

.hilucy-rental-finder .hlrf-length-count {
  background: #fff;
  border: 1px solid #d8e9f7;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

.hilucy-rental-finder .hlrf-length input[type="range"] {
  width: 100%;
  min-width: 0;
  accent-color: var(--accent);
  cursor: pointer;
}

.hilucy-rental-finder .hlrf-length input[type="range"]::-webkit-slider-runnable-track {
  background: linear-gradient(90deg, rgba(15, 178, 233, 0.25), #e2edf6);
  height: 10px;
  border-radius: 999px;
  border: none;
}

.hilucy-rental-finder .hlrf-length input[type="range"]::-moz-range-track {
  background: linear-gradient(90deg, rgba(15, 178, 233, 0.25), #e2edf6);
  height: 10px;
  border-radius: 999px;
  border: none;
}

.hilucy-rental-finder .hlrf-length input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  border: none;
  box-shadow: 0 8px 18px rgba(15, 178, 233, 0.35);
}

.hilucy-rental-finder .hlrf-length input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  border: none;
  box-shadow: 0 8px 18px rgba(15, 178, 233, 0.35);
}

.hilucy-rental-finder .hlrf-length-dates {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
}

.hilucy-rental-finder .hlrf-length-sep {
  color: var(--ink);
  font-weight: 700;
}

.hilucy-rental-finder .hlrf-length-chip {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(15, 178, 233, 0.25);
}

.hilucy-rental-finder .hlrf-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-self: end;
  grid-column: span 2;
}

.hilucy-rental-finder .hlrf-btn {
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 12px;
  padding: 12px 16px;
  min-height: 44px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hilucy-rental-finder .hlrf-field input[type="number"] {
  max-width: 140px;
}

.hilucy-rental-finder .hlrf-btn:hover {
  transform: translateY(-1px);
  background: var(--accent-2);
  box-shadow: 0 10px 20px rgba(15, 178, 233, 0.28);
}

.hilucy-rental-finder .hlrf-btn.ghost {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
}

.hilucy-rental-finder .hlrf-status {
  color: var(--muted);
  margin: 8px 0;
}

.hilucy-rental-finder .hlrf-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(var(--hlrf-card-min, 260px), 1fr));
  gap: 14px;
}

.hilucy-rental-finder .hlrf-result {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.1s ease;
}

.hilucy-rental-finder .hlrf-result:hover {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.hilucy-rental-finder .hlrf-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}

.hilucy-rental-finder .hlrf-thumb-link {
  display: block;
  width: 100%;
  height: 100%;
}

.hilucy-rental-finder .hlrf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hilucy-rental-finder .hlrf-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(120deg, #22c55e, #16a34a);
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 18px rgba(34, 197, 94, 0.35);
  pointer-events: none;
}

.hilucy-rental-finder .hlrf-flag.warn {
  background: linear-gradient(120deg, #f59e0b, #d97706);
  box-shadow: 0 10px 18px rgba(217, 119, 6, 0.35);
}

.hilucy-rental-finder .hlrf-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hilucy-rental-finder .hlrf-body h4 {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.35;
}

.hilucy-rental-finder .hlrf-price {
  font-weight: 700;
  margin: 0;
}

.hilucy-rental-finder .hlrf-meta {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.hilucy-rental-finder .hlrf-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 12px;
  background: var(--soft);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--ink);
  width: fit-content;
}

.hilucy-rental-finder .hlrf-actions-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.hilucy-rental-finder .hlrf-cats {
  margin: 30px 0 40px;
  padding: 8px 0 4px;
  border-top: 1px dashed var(--border);
}

.hilucy-rental-finder .hlrf-cats-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.hilucy-rental-finder .hlrf-cats-pill {
  display: flex;
  gap: 8px;
}

.hilucy-rental-finder .hlrf-pill {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease, border-color 0.15s ease;
}

.hilucy-rental-finder .hlrf-pill:hover {
  background: var(--soft);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.hilucy-rental-finder .hlrf-pill[data-active="1"] {
  background: var(--soft);
  color: var(--ink);
  border-color: var(--border);
  box-shadow: none;
}

.hilucy-rental-finder .hlrf-cats-title {
  margin: 0;
  font-weight: 700;
  color: var(--ink);
}

.hilucy-rental-finder .hlrf-cats-hint {
  color: var(--muted);
  font-size: 12px;
}

.hilucy-rental-finder .hlrf-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 6px;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.hilucy-rental-finder .hlrf-carousel::-webkit-scrollbar {
  height: 8px;
}

.hilucy-rental-finder .hlrf-carousel::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 999px;
}

.hilucy-rental-finder .hlrf-cat {
  scroll-snap-align: start;
  min-width: 108px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: 10px 10px 12px;
  display: grid;
  justify-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.hilucy-rental-finder .hlrf-cat:hover {
  border-color: var(--accent);
}

.hilucy-rental-finder .hlrf-cat[data-active="1"] {
  border-color: var(--border);
  background: var(--soft);
  box-shadow: none;
  transform: translateY(-1px);
}

.hilucy-rental-finder .hlrf-cat-img {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #f1f5f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border);
}

.hilucy-rental-finder .hlrf-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hilucy-rental-finder .hlrf-cat-img--all {
  background: radial-gradient(circle at 30% 30%, #0fb2e9, #0aa0d4 45%, #dbeafe 100%);
  border: none;
}

.hilucy-rental-finder .hlrf-dot {
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.36);
}

.hilucy-rental-finder .hlrf-cat-name {
  text-align: center;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.hilucy-rental-finder .hlrf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  font-weight: 600;
}

.hilucy-rental-finder .hlrf-link.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 10px 18px rgba(15, 178, 233, 0.25);
}

.hilucy-rental-finder .hlrf-loader {
  border-radius: 12px;
  min-height: 54px;
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
  background-size: 200% 100%;
  animation: hlrfShimmer 1.2s ease-in-out infinite;
  margin-bottom: 10px;
}

@keyframes hlrfShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (max-width: 720px) {
  .hilucy-rental-finder .hlrf-results {
    grid-template-columns: 1fr;
  }
  .hilucy-rental-finder .hlrf-result {
    grid-template-columns: 1fr;
  }
  .hilucy-rental-finder .hlrf-actions {
    grid-column: span 1;
    justify-content: stretch;
  }
  .hilucy-rental-finder .hlrf-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hilucy-rental-finder .hlrf-btn {
    width: 100%;
    text-align: center;
  }
  .hilucy-rental-finder .hlrf-btn.ghost {
    display: none;
  }
  .hilucy-rental-finder .hlrf-cats-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .hilucy-rental-finder .hlrf-cats-pill {
    width: 100%;
  }
  .hilucy-rental-finder .hlrf-pill {
    width: 100%;
    text-align: center;
  }
  .hilucy-rental-finder .hlrf-cat {
    min-width: 96px;
  }
  .hilucy-rental-finder .hlrf-length {
    grid-column: 1 / -1;
    width: 100%;
  }
  .hilucy-rental-finder .hlrf-length-head {
    align-items: flex-start;
  }
  .hilucy-rental-finder .hlrf-length-count {
    width: 100%;
    text-align: left;
  }
  .hilucy-rental-finder .hlrf-length input[type="range"] {
    width: 100%;
  }
}
