/* Hero Section - 원래 배경 스타일로 복원 */
.hero-section {
    position: relative;
    height: 280px;
    background: linear-gradient(135deg,
      rgba(var(--brand-color-rgb), 0.9) 0%,
      rgba(var(--brand-color-rgb), 0.85) 100%
    ),
    url('/static/image/hero.avif') center/cover;
    overflow: hidden;
  }
  
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="0.3" fill="white" opacity="0.08"/><circle cx="50" cy="10" r="0.4" fill="white" opacity="0.12"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  
  /* Search Filter Section */
  .search-filter-section {
    margin-top: -60px;
    padding-bottom: 4rem;
    position: relative;
    z-index: 10;
  }
  
  .filter-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-2xl);
    padding: 2rem;
    backdrop-filter: blur(8px);
    background-color: rgba(255, 255, 255, 0.98);
  }
  
  .filter-grid {
    display: grid;
    grid-template-columns: 300px 300px 1fr;
    gap: 2rem;
    position: relative;
    align-items: start;
  }
  
  .filter-grid::before,
  .filter-grid::after {
    content: '';
    position: absolute;
    top: 3rem;
    bottom: 2rem;
    width: 1px;
    background: var(--border-color);
  }
  
  .filter-grid::before {
    left: 316px;
  }
  
  .filter-grid::after {
    left: 632px;
  }
  
  .filter-column {
    position: relative;
    min-height: 280px;
  }
  
  .filter-column-checkboxes {
    min-height: auto;
  }
  
  .filter-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    text-align: center;
    padding-bottom: 0.75rem;
    position: relative;
    letter-spacing: -0.02em;
  }
  
  .filter-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, rgba(var(--brand-color-rgb), 0.3), rgba(var(--brand-color-rgb), 0.6), rgba(var(--brand-color-rgb), 0.3));
    border-radius: 2px;
  }
  
  .filter-scrollbox {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    height: 260px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: var(--shadow-sm);
  }
  
  .filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .filter-item {
    padding: 0.875rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
  }
  
  .filter-item:last-child {
    border-bottom: none;
  }
  
  .filter-item:hover {
    background: var(--primary-accent);
    color: var(--primary-color);
  }
  
  .filter-item.active {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
  }
  
  .filter-item-disabled {
    padding: 0.875rem 1.25rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    font-size: 0.85rem;
  }
  
  /* Checkbox Container */
  .checkbox-container {
    position: relative;
    padding-right: 140px;
  }
  
  .checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  
  .checkbox-tile {
    display: block;
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    height: 42px;
    line-height: 40px;
    padding: 0 1rem 0 2.5rem;
    background: var(--white);
    font-size: 0.875rem;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .checkbox-tile:hover {
    background: var(--primary-accent);
    border-color: var(--primary-light);
    color: var(--primary-color);
  }
  
  .checkbox-tile input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  .checkbox-mark {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--white);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .checkbox-tile input:checked + .checkbox-mark {
    background: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .checkbox-tile input:checked + .checkbox-mark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: 2px solid white;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
  }
  
  .search-filter-btn {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 130px;
    height: 46px;
    border: none;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
  }
  
  .search-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--primary-dark) 0%, #6B0000 100%);
  }
  
  .search-filter-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }
  
  .search-filter-btn.loading {
    pointer-events: none;
  }
  
  /* 인덱스 스타일 그대로 가져오기 */
  .hero-images-container {
    background: var(--white);
    border-radius: var(--border-radius-2xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
  }

  /* PC에서는 그리드 표시, 슬라이드 숨김 */
  .hero-carousel-mobile {
    display: none !important;
  }

  .hero-grid-pc {
    display: flex !important;
  }
  
  .hero-thumb { 
    border-radius: var(--border-radius-xl); 
    overflow: hidden; 
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
  }
  
  .hero-thumb:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
  }
  
  .hero-thumb .ratio {
    background: var(--gray-100);
  }

  /* main.css의 opacity: 0 설정을 덮어쓰기 */
  .hero-thumb img {
    opacity: 1 !important;
  }

  /* Section Styles */
  .content-section {
    padding: 4rem 0;
  }
  
  .content-section:nth-child(even) {
    background: rgba(249, 250, 251, 0.6);
  }
  
  .section-title { 
    font-weight: 800; 
    font-size: 1.75rem;
    color: var(--text-primary);
    letter-spacing: -0.03em;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .btn-more {
    background: var(--white);
    border: 1.5px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 12px 24px;
    border-radius: 32px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    box-shadow: var(--shadow-xs);
    text-decoration: none;
  }
  
  .btn-more:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
  
  /* Card Styles - 인덱스와 동일 */
  .card-job { 
    border: 1px solid var(--border-color); 
    border-radius: var(--border-radius-xl); 
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    background: var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
  }
  
  .card-job:hover { 
    transform: translateY(-8px); 
    box-shadow: var(--shadow-xl);
    border-color: rgba(var(--brand-color-rgb), 0.2);
  }
  
  .card-job .thumb { 
    background: var(--gray-100);
    position: relative;
    overflow: hidden;
  }
  
  .card-job .thumb img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .card-job:hover .thumb img {
    transform: scale(1.05);
  }
  
  .card-job .badge { 
    font-weight: 600; 
    font-size: 0.75rem;
    padding: 8px 16px;
    background: var(--primary-accent);
    color: var(--primary-color);
    border: 1px solid rgba(var(--brand-color-rgb), 0.15);
    border-radius: 20px;
  }
  
  .card-job h6 {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 16px 0;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
  }
  
  .meta { 
    font-size: 0.875rem; 
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }
  
  /* Job List */
  .job-list-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  
  .job-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-wrap: wrap;
  }
  
  .job-list-item:last-child {
    border-bottom: none;
  }
  
  .job-list-item:hover {
    background: var(--primary-accent);
  }
  
  .job-list-region {
    background: var(--gray-100);
    color: var(--text-primary);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--border-color);
    min-width: 60px;
    flex-shrink: 0;
  }
  
  .job-list-company {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    min-width: 120px;
    flex-shrink: 0;
  }
  
  .job-list-category {
    background: var(--primary-accent);
    color: var(--primary-color);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--primary-light);
    min-width: 100px;
    flex-shrink: 0;
  }
  
  .job-list-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    flex: 1;
    min-width: 200px;
  }
  
  .job-list-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 80px;
    text-align: right;
    flex-shrink: 0;
  }
  
  /* Search Result Notification */
  .search-result-notification {
    background: linear-gradient(135deg, var(--success-color) 0%, #059669 100%);
    color: white;
    margin: 2rem 0 0 0;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    z-index: 20;
  }
  
  .search-result-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="successPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23successPattern)"/></svg>');
  }
  
  .search-result-notification.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .search-result-notification.hiding {
    transform: translateY(-20px);
    opacity: 0;
  }
  
  .notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;  /* 기존: 1.25rem 1.5rem */
    position: relative;
    z-index: 1;
  }
  
  .notification-icon {
    font-size: 1.25rem;  /* 기존: 1.5rem */
    flex-shrink: 0;
  }  
  
  .notification-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .notification-text strong {
    font-weight: 700;
    font-size: 0.9rem;  /* 기존: 1rem */
  }
  
  .notification-text span {
    font-size: 0.8rem;  /* 기존: 0.875rem */
    opacity: 0.9;
    font-weight: 500;
  }
  
  .notification-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;  /* 기존: 32px */
    height: 28px; /* 기존: 32px */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    font-size: 1rem;  /* 기존: 1.1rem */
  }
  
  .notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
  }
  
  /* Animations */
  .spin {
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  @keyframes slideInDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes slideOutUp {
    from {
      transform: translateY(0);
      opacity: 1;
    }
    to {
      transform: translateY(-100%);
      opacity: 0;
    }
  }
  
  /* Custom Scrollbar */
  .filter-scrollbox::-webkit-scrollbar {
    width: 6px;
  }
  
  .filter-scrollbox::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
  }
  
  .filter-scrollbox::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
  }
  
  .filter-scrollbox::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
  }
  
  /* Footer 문제 해결 */
  .footer {
    margin-top: 0 !important;
  }
  
  .footer .container {
    max-width: 1550px !important;
  }
  
  .footer-nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
    justify-content: flex-start !important;
  }
  
  .footer-nav-link {
    white-space: nowrap;
  }
  
  /* Responsive Design */
  @media (max-width: 1199.98px) {
    .filter-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .filter-grid::before,
    .filter-grid::after {
      display: none;
    }
    
    .checkbox-container {
      padding-right: 0;
    }
    
    .checkbox-grid {
      margin-bottom: 1.5rem;
    }
    
    .search-filter-btn {
      position: static;
      width: 100%;
      margin-top: 1rem;
    }
  }
  
  @media (max-width: 991.98px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .job-list-item {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
    
    .job-list-region,
    .job-list-category {
      align-self: flex-start;
    }
    
    .job-list-date {
      text-align: left;
      align-self: flex-start;
    }
    
    .job-list-title {
      order: -1;
      width: 100%;
    }
  }
  
  @media (max-width: 768px) {
    .search-filter-section {
      margin-top: -40px;
    }

    .filter-card {
      padding: 1.5rem;
    }

    .checkbox-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
      height: 220px;
    }

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

    .filter-scrollbox {
      height: 230px;
    }

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

    .hero-images-container {
      padding: 16px;
    }

    /* 모바일에서 PC 그리드 숨기고 슬라이드 표시 */
    .hero-images-container .hero-grid-pc {
      display: none !important;
    }

    .hero-images-container .hero-carousel-mobile {
      display: block !important;
    }

    .section-title {
      font-size: 1.375rem;
    }
    
    .job-list-item {
      padding: 1rem;
    }
    
    .footer-nav-links {
      justify-content: center !important;
      gap: 1rem !important;
    }
    
    .footer-nav-link {
      font-size: 0.85rem !important;
    }
    
    .notification-content {
      padding: 1rem;
      gap: 0.75rem;
    }
    
    .notification-text strong {
      font-size: 0.9rem;
    }
    
    .notification-text span {
      font-size: 0.8rem;
    }
    
    .notification-icon {
      font-size: 1.25rem;
    }
  }
  
  @media (max-width: 576px) {
    .checkbox-grid {
      grid-template-columns: 1fr;
    }
    
    .hero-title {
      font-size: 1.5rem;
    }
    
    .hero-subtitle {
      font-size: 0.9rem;
    }
    
    .filter-card {
      padding: 1rem;
    }
    
    .job-list-item {
      flex-direction: column;
      align-items: stretch;
      text-align: left;
    }
    
    .job-list-date {
      text-align: left;
    }
    
    .footer .d-flex.flex-wrap {
      justify-content: center !important;
      gap: 0.75rem !important;
    }
    
    .footer .d-flex.flex-wrap a {
      font-size: 0.8rem !important;
    }
    
    .footer-nav-links {
      gap: 0.75rem !important;
    }
    
    .footer-nav-link {
      font-size: 0.8rem !important;
    }
  }
  
  /* Loading States */
  .loading-skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
  }
  
  @keyframes loading {
    0% {
      background-position: 200% 0;
    }
    100% {
      background-position: -200% 0;
    }
  }
  
  /* Focus States for Accessibility */
  .filter-item:focus-visible,
  .checkbox-tile:focus-visible,
  .search-filter-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* Smooth Transitions */
  .card-job,
  .hero-thumb,
  .job-list-item,
  .filter-item,
  .checkbox-tile {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Mobile Filter Modal Styles */
  .mobile-filter-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* Only show on mobile when .show class is added */
  @media (max-width: 768px) {
    .mobile-filter-modal.show {
      display: flex;
      opacity: 1;
    }
  }

  /* Always hide on desktop */
  @media (min-width: 769px) {
    .mobile-filter-modal {
      display: none !important;
    }

    .mobile-filter-modal.show {
      display: none !important;
    }
  }

  .mobile-filter-content {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    animation: slideUp 0.3s ease;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .mobile-filter-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  .mobile-filter-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
  }

  .filter-settings-icon {
    margin-right: 8px;
    font-size: 16px;
  }

  .mobile-filter-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
  }

  /* 3-column layout header */
  .mobile-filter-columns-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #eee;
    background: #f9f9f9;
  }

  .mobile-filter-columns-header .column-title {
    padding: 14px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    border-right: 1px solid #eee;
  }

  .mobile-filter-columns-header .column-title:last-child {
    border-right: none;
  }

  /* 3-column layout body */
  .mobile-filter-body {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mobile-filter-column {
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid #eee;
  }

  .mobile-filter-column:last-child {
    border-right: none;
  }

  /* Hide tab buttons - using 3 column layout instead */
  .mobile-filter-tabs {
    display: none;
  }

  .tab-content {
    display: block;
    height: 100%;
    overflow-y: auto;
  }

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

  .mobile-filter-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 15px;
    color: #333;
  }

  .mobile-filter-item:hover {
    background: #f9f9f9;
  }

  .mobile-filter-item.active {
    color: var(--primary-color, #A50808);
    background: rgba(var(--brand-color-rgb), 0.05);
  }

  .mobile-filter-item .check-icon {
    opacity: 0;
    color: var(--primary-color, #A50808);
    font-weight: 700;
    font-size: 14px;
  }

  .mobile-filter-item.active .check-icon {
    opacity: 1;
  }

  /* Theme multi-select */
  .theme-item.selected {
    background: rgba(var(--brand-color-rgb), 0.08);
    color: var(--primary-color, #A50808);
  }

  .theme-item.selected .check-icon {
    opacity: 1;
  }

  .mobile-filter-item-disabled {
    padding: 20px 12px;
    text-align: center;
    color: #999;
    font-size: 13px;
    font-style: italic;
  }

  .theme-hint {
    padding: 10px 12px;
    margin: 0;
    font-size: 12px;
    color: #999;
    background: #f9f9f9;
    text-align: center;
  }

  .mobile-filter-footer {
    display: flex;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }

  .mobile-filter-footer .btn-reset {
    padding: 12px 24px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
  }

  .mobile-filter-footer .btn-reset:hover {
    background: #f5f5f5;
  }

  .mobile-filter-footer .btn-apply {
    flex: 1;
    padding: 12px 24px;
    background: var(--primary-color, #A50808);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s;
  }

  .mobile-filter-footer .btn-apply:hover {
    background: var(--primary-dark, #8a0707);
  }

  /* PC Only Filter - hide on mobile */
  @media (max-width: 768px) {
    .pc-only-filter {
      display: none !important;
    }

    /* Adjust hero section for mobile */
    .hero-section {
      margin-bottom: 0;
    }
  }