/* 价格弹窗样式 */
#priceModal {
  z-index: 50;
}

#priceModal .modal-content {
  max-height: 90vh;
  overflow-y: auto;
}

#priceModal .modal-category-btn {
  transition: all 0.3s ease;
}

#priceModal .modal-category-btn:hover {
  transform: translateY(-2px);
}

#priceModal .modal-category-btn.active {
  background-color: #165DFF;
  color: white;
}

/* 移动端适配 */
@media (max-width: 768px) {
  #priceModal .max-w-4xl {
    max-width: 95vw;
    margin: 0 10px;
  }
  
  #priceModal .grid-cols-1 {
    grid-template-columns: 1fr;
  }
  
  #priceModal .md\:grid-cols-2 {
    grid-template-columns: 1fr;
  }
  
  #priceModal .lg\:grid-cols-3 {
    grid-template-columns: 1fr;
  }
}