/* --- Outdoor Skills 页面专属样式 --- */

.hero {
    background: url('../img/skills-background.webp') no-repeat center center / cover;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #e0e0e0;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    padding: 2rem;
  }
  
  .product-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .product-card img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card h3 {
    font-size: 1.2rem;
    margin: 0.5rem 0;
  }
  
  .product-card .price {
    margin: 0.5rem 0;
    font-weight: bold;
    color: #2d7a3e;
  }
  
  .product-card button {
    background-color: #2d7a3e;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
  }
  
  .product-card button:hover {
    background-color: #226230;
  }
  