* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9fafb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 2rem 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-small {
  padding: 1.5rem 0;
}

.header-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.header-subtitle {
  font-size: 1.125rem;
  color: #bfdbfe;
}

.back-link {
  color: white;
  text-decoration: none;
  font-size: 1.125rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #bfdbfe;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
}

.hero-content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 2rem;
  color: #1f2937;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-text {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-primary {
  background-color: #2563eb;
  color: white;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  background-color: #1d4ed8;
  box-shadow: 0 6px 8px rgba(37, 99, 235, 0.4);
}

.btn-white {
  background-color: white;
  color: #2563eb;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background-color: #eff6ff;
}

.btn-secondary {
  background-color: #e5e7eb;
  color: #374151;
}

.btn-secondary:hover {
  background-color: #d1d5db;
}

.full-width {
  width: 100%;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Features Section */
.features {
  padding: 4rem 0;
  background-color: white;
}

.section-title {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1f2937;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

.feature-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #2563eb;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #1f2937;
  font-weight: 600;
}

.feature-text {
  color: #6b7280;
}

/* CTA Section */
.cta {
  padding: 4rem 0;
}

.cta-box {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-text {
  font-size: 1.25rem;
  color: #bfdbfe;
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background-color: #1f2937;
  color: #d1d5db;
  padding: 2rem 0;
  margin-top: 4rem;
  text-align: center;
}

/* Page Container */
.page-container {
  padding: 2rem 0;
}

.detail-container {
  max-width: 56rem;
}

/* Search Box */
.search-box {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.search-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1f2937;
  font-weight: 600;
}

.search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.full-width {
  grid-column: 1 / -1;
}

.align-end {
  justify-content: flex-end;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.input-with-icon {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input {
  padding-left: 2.5rem;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-result-count {
  font-size: 0.875rem;
  color: #6b7280;
}

.highlight {
  color: #2563eb;
  font-weight: 600;
}

/* Results List */
.results-list {
  display: grid;
  gap: 1rem;
}

.result-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.result-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-color: #bfdbfe;
}

.result-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.result-title-section {
  flex: 1;
}

.result-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.result-title {
  font-size: 1.25rem;
  color: #1f2937;
  font-weight: 600;
}

.badge {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

.badge-primary {
  background-color: #dbeafe;
  color: #1e40af;
}

.badge-secondary {
  background-color: #f3f4f6;
  color: #374151;
}

.result-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #6b7280;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.price-info {
  color: #2563eb;
  margin-top: 0.5rem;
  font-weight: 500;
}

.arrow-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #9ca3af;
  flex-shrink: 0;
}

.empty-state {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  text-align: center;
}

.empty-state-title {
  color: #6b7280;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.empty-state-text {
  color: #9ca3af;
}

/* Detail Page */
.detail-section {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.detail-title-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.detail-title {
  font-size: 2rem;
  color: #1f2937;
  font-weight: 700;
}

.detail-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.detail-location {
  color: #6b7280;
  font-size: 1.125rem;
}

.section-header {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1f2937;
  font-weight: 600;
}

.section-header .icon {
  color: #2563eb;
}

.info-group {
  margin-bottom: 1.5rem;
}

.info-group:last-child {
  margin-bottom: 0;
}

.info-label {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 1.125rem;
  color: #1f2937;
}

.info-value-large {
  font-size: 1.25rem;
}

.info-value-small {
  font-size: 0.875rem;
}

.operating-hours {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-row {
  border-left: 4px solid;
  padding-left: 1rem;
}

.hours-weekday {
  border-color: #2563eb;
}

.hours-holiday {
  border-color: #10b981;
}

.hours-closed {
  border-color: #ef4444;
}

.price-box {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 0.5rem;
  padding: 1rem;
}

.price-text {
  font-size: 1.125rem;
  color: #1e40af;
  font-weight: 500;
}

.contact-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
}

.contact-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.additional-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #374151;
}

.additional-info-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.additional-info-label {
  color: #6b7280;
}

.back-button-container {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .header-title {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .detail-title-section {
    flex-direction: column;
  }

  .detail-title {
    font-size: 1.5rem;
  }

  .pagination {
    flex-wrap: wrap;
    gap: 0.25rem;
  }

  .page-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .nearby-card {
    padding: 0.75rem;
  }

  .nearby-title {
    font-size: 0.9rem;
  }

  .nearby-address {
    font-size: 0.8rem;
  }
}

/* Pagination Styles */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.5rem 0;
}

.page-btn {
  padding: 0.5rem 1rem;
  background-color: white;
  color: #2563eb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 40px;
}

.page-btn:hover {
  background-color: #f3f4f6;
  border-color: #2563eb;
}

.page-btn.active {
  background-color: #2563eb;
  color: white;
  border-color: #2563eb;
}

.page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-dots {
  padding: 0 0.5rem;
  color: #6b7280;
}

/* Map Container */
#map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

/* Naver Map Info Window Custom Styles */
.info-window-content {
  padding: 10px;
  min-width: 200px;
  line-height: 1.5;
}

.info-window-content h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: #1f2937;
}

.info-window-content p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

/* Nearby Section */
#nearbyList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.nearby-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}

.nearby-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
  transform: translateX(4px);
}

.nearby-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 50%;
}

.nearby-info {
  flex: 1;
  min-width: 0;
}

.nearby-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.nearby-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.nearby-badges {
  display: flex;
  gap: 0.25rem;
}

.badge-sm {
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
}

.nearby-address {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.nearby-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nearby-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.nearby-location {
  color: #9ca3af;
}

.nearby-distance {
  color: #2563eb;
  font-weight: 500;
}

.nearby-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #9ca3af;
  transition: all 0.2s;
}

.nearby-card:hover .nearby-arrow {
  color: #2563eb;
  transform: translateX(4px);
}

.nearby-arrow svg {
  width: 100%;
  height: 100%;
}

/* ============================================ */
/* 추천 세차장 섹션 */
/* ============================================ */
.recommended-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}

.carwash-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.carwash-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.carwash-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.carwash-card:hover::before {
  transform: scaleX(1);
}

.carwash-card:hover {
  border-color: #2563eb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.carwash-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.carwash-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carwash-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.info-icon {
  flex-shrink: 0;
  color: #2563eb;
}

.address-text {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carwash-footer {
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
  display: flex;
  justify-content: flex-end;
}

.view-detail {
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s;
}

.carwash-card:hover .view-detail {
  transform: translateX(4px);
}

.no-data {
  text-align: center;
  color: #9ca3af;
  padding: 3rem 0;
  font-size: 1rem;
}

.more-btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid #2563eb;
  color: #2563eb;
  padding: 0.875rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .carwash-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .recommended-section {
    padding: 3rem 0;
  }

  .section-subtitle {
    margin-bottom: 2rem;
  }
}

/* ============================================ */
/* 세차 가이드 섹션 */
/* ============================================ */
.guide-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.guide-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.guide-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 0.875rem;
  color: #6b7280;
}

.guide-tab:hover {
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.guide-tab.active {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  border-color: #2563eb;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.tab-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.guide-content {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  min-height: 300px;
}

.guide-panel {
  display: none;
  animation: fadeIn 0.3s ease-in;
}

.guide-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 가이드 텍스트 컨테이너 */
.guide-text {
  line-height: 1.8;
  color: #374151;
  font-size: 0.95rem;
}

/* 빈 가이드 */
.empty-guide {
  text-align: center;
  color: #9ca3af;
  padding: 3rem 0;
  font-size: 1rem;
}

/* 가이드 제목 */
.guide-heading {
  color: #111827;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 2rem 0 1rem 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  border-radius: 8px;
  border-left: 4px solid #2563eb;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.guide-heading:first-child {
  margin-top: 0;
}

.heading-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #2563eb;
}

/* 일반 문단 */
.guide-paragraph {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.625rem 0;
  padding: 0.75rem 1rem;
  color: #374151;
  line-height: 1.7;
  background: #f9fafb;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.guide-paragraph:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.paragraph-bullet {
  flex-shrink: 0;
  color: #2563eb;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 0.125rem;
}

/* 번호 리스트 */
.guide-numbered-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  counter-reset: item;
}

.guide-numbered-list .guide-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1rem 0;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 8px;
  border-left: 4px solid #2563eb;
  transition: all 0.2s ease;
}

.guide-numbered-list .guide-list-item:hover {
  background: #f3f4f6;
  transform: translateX(4px);
}

.list-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
}

.list-content {
  flex: 1;
  color: #374151;
  line-height: 1.6;
  padding-top: 0.25rem;
}

/* 불릿 리스트 */
.guide-bullet-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.guide-bullet-list .guide-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0.75rem 0;
  padding: 0.75rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.guide-bullet-list .guide-list-item:hover {
  background: #f9fafb;
}

.bullet-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #2563eb;
  margin-top: 0.125rem;
}

/* 강조 박스 */
.guide-highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  font-weight: 500;
  line-height: 1.6;
}

.highlight-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.125rem;
}

.highlight-warning {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  color: #92400e;
}

.highlight-warning .highlight-icon {
  color: #f59e0b;
}

.highlight-tip {
  background: #dbeafe;
  border-left: 4px solid #2563eb;
  color: #1e40af;
}

.highlight-tip .highlight-icon {
  color: #2563eb;
}

/* FAQ 아이템 */
.faq-item {
  margin: 1.5rem 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-bottom: 2px solid #bfdbfe;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  background: white;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 0.125rem;
}

.faq-question .faq-icon {
  color: #2563eb;
}

.faq-answer .faq-icon {
  color: #10b981;
}

.faq-q-label {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.125rem;
  color: #2563eb;
  min-width: 24px;
}

.faq-a-label {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.125rem;
  color: #10b981;
  min-width: 24px;
}

.faq-text {
  flex: 1;
  line-height: 1.7;
  color: #374151;
  padding-top: 0.125rem;
}

.faq-question .faq-text {
  font-weight: 600;
  color: #1e40af;
  font-size: 1rem;
}

.faq-answer .faq-text {
  color: #4b5563;
  font-size: 0.95rem;
}

/* 가이드 섹션 반응형 */
@media (max-width: 768px) {
  .guide-section {
    padding: 1.5rem;
  }

  .guide-tabs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .guide-tab {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }

  .tab-icon {
    width: 16px;
    height: 16px;
  }

  .guide-content {
    padding: 1.5rem;
    min-height: 250px;
  }

  .guide-text {
    font-size: 0.9rem;
  }

  .guide-heading {
    font-size: 1rem;
    padding: 0.875rem 1rem;
  }

  .heading-icon {
    width: 18px;
    height: 18px;
  }

  .guide-paragraph {
    padding: 0.625rem 0.875rem;
    gap: 0.5rem;
  }

  .paragraph-bullet {
    font-size: 0.9rem;
  }

  .guide-numbered-list .guide-list-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  .list-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .guide-highlight {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .highlight-icon {
    width: 20px;
    height: 20px;
  }

  .faq-question,
  .faq-answer {
    padding: 1rem;
    gap: 0.5rem;
  }

  .faq-icon {
    width: 20px;
    height: 20px;
  }

  .faq-q-label,
  .faq-a-label {
    font-size: 1rem;
  }

  .faq-question .faq-text {
    font-size: 0.9rem;
  }

  .faq-answer .faq-text {
    font-size: 0.875rem;
  }
}

/* ============================================ */
/* 검색 가이드 박스 */
/* ============================================ */
.search-guide-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  border-left: 4px solid #2563eb;
}

.guide-box-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #1e40af;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guide-box-title svg {
  color: #2563eb;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: #1e40af;
  line-height: 1.6;
}

.guide-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: #2563eb;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

/* ============================================ */
/* 검색 결과 요약 */
/* ============================================ */
.search-summary {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 2px solid #e5e7eb;
}

.search-summary-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.search-summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.summary-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.summary-tag svg {
  width: 16px;
  height: 16px;
}

.search-result-count {
  font-size: 1rem;
  color: #6b7280;
}

.search-result-count .highlight {
  color: #2563eb;
  font-weight: 700;
  font-size: 1.25rem;
}

/* 반응형 */
@media (max-width: 768px) {
  .search-guide-box {
    padding: 1.5rem;
  }

  .guide-box-title {
    font-size: 1.125rem;
  }

  .guide-list li {
    font-size: 0.9rem;
  }

  .search-summary {
    padding: 1.25rem;
  }

  .search-summary-title {
    font-size: 1.25rem;
  }

  .summary-tag {
    font-size: 0.8rem;
    padding: 0.4rem 0.875rem;
  }
}
