
    /* Reset box model */
    * {
      box-sizing: border-box;
    }

    /* Basic page styling */
    body {
      font-family: 'Segoe UI', sans-serif;
      margin: 0;
      padding: 20px;
      background-color: #a58181;
    }

    /* Page title */
    h1 {
      text-align: center;
      margin-bottom: 30px;
    }

    /* Gallery grid layout */
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    /* Individual product card styling */
    .product-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    /* Hover effect for product cards */
    .product-card:hover {
      transform: scale(1.03);
    }

    /* Product image styling */
    .product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    /* Container for product details */
    .product-info {
      padding: 15px;
    }

    /* Product name */
    .product-name {
      font-size: 1.2em;
      margin: 0 0 10px;
    }

    /* Product price */
    .product-price {
      color: #28a745;
      font-weight: bold;
      margin-bottom: 10px;
    }

    /* Product description */
    .product-description {
      font-size: 0.9em;
      color: #555;
    }

    /* Responsive image height for tablets */
    @media (max-width: 768px) {
      .product-image {
        height: 180px;
      }
    }

    /* Responsive image height for phones */
    @media (max-width: 480px) {
      .product-image {
        height: 150px;
      }
    }
