.page-header {
        background: linear-gradient(135deg, #fff 0%, #f9fafb 100%);
        padding: 4rem 0 3rem;
        text-align: center;
        border-bottom: 2px solid #f3f4f6;
      }

      .page-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 0.75rem;
        position: relative;
        display: inline-block;
      }

      .page-header h1::after {
        content: "";
        display: block;
        height: 4px;
        width: 60%;
        margin: 0.75rem auto 0;
        background: #f59e0b;
        border-radius: 2px;
      }

      .page-header p {
        font-size: 1.1rem;
        color: #6b7280;
        max-width: 650px;
        margin: 0.5rem auto 0;
        line-height: 1.6;
      }

      .category-title {
        font-size: 2rem;
        margin: 3rem 0 2rem;
        text-align: center;
        color: #2d3748;
        position: relative;
      }
      .category-title::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 3px;
        background: #f59e0b;
      }
      .products-grid {
        display: flex;
        gap: 1.5rem;
        overflow-x: auto;
        padding-bottom: 1rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
      }
      .products-grid::-webkit-scrollbar {
        height: 8px;
      }
      .products-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
      }
      .products-grid::-webkit-scrollbar-track {
        background: transparent;
      }
      .product-card {
        flex: 0 0 300px;
        background: #fff;
        border-radius: 0.75rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.3s ease;
        scroll-snap-align: start;
      }
      .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
      }
      .product-image {
        height: 220px;
        overflow: hidden;
        position: relative;
      }
      .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
      }
      .product-card:hover .product-image img {
        transform: scale(1.08);
      }
      .product-content {
        padding: 1.5rem;
      }
      .product-category {
        font-size: 0.9rem;
        font-weight: 600;
        color: #f59e0b;
        text-transform: uppercase;
        margin-bottom: 0.5rem;
      }
      .product-title {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: #1f2937;
      }
      .product-description {
        font-size: 0.95rem;
        color: #6b7280;
        margin-bottom: 1rem;
      }
      .product-actions {
        display: flex;
        gap: 0.5rem;
      }
      .btn-primary {
        background: #f59e0b;
        color: white;
        padding: 0.6rem 1rem;
        text-align: center;
        border-radius: 0.5rem;
        font-weight: 600;
        flex: 1;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
      }
      .btn-primary:hover {
        background: #d97706;
      }
      .products-section {
        margin-bottom: 4rem;
      }