 body {
      font-family: 'Montserrat', sans-serif;
      margin: 0;
      padding: 0;
      background-color: #fff7f0;
      color: #3d1e1a;
    }
    header {
      text-align: center;
      padding: 40px 20px 10px;
      position: relative;
      z-index: 1;
    }

    header img.logo {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #c25e4d;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3em;
      margin: 15px 0 5px;
    }
        nav {
      text-align: center;
      margin: 20px 0 40px;
      position: relative;
      z-index: 1;
    }

    nav a {
      text-decoration: none;
      margin: 0 15px;
      font-weight: bold;
      color: #4b2e2e;
      transition: color 0.3s;
      font-size: 1.1em;
    }

    nav a:hover {
      color: #c25e4d;
    }
    .category-button {
  display: inline-block;
  background-color: #fffaf3;
  border: 2px solid #c25e4d;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #4b2e2e;
  text-decoration: none;
  transition: background-color 0.3s;
}
.category-button:hover {
  background-color: #fce2d9;
}

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px 40px;
    }
    .category-section {
      display: none;
      animation: fadeIn 0.8s ease-in-out;
    }
    .category-section.active {
      display: block;
    }
    .category-section h2 {
      font-size: 2em;
      margin: 40px 0 20px;
      text-align: center;
      color: #a94839;
      font-family: 'Playfair Display', serif;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .product-card {
      background-color: #fffaf3;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .product-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .product-info {
      padding: 15px 20px;
    }
    .product-info h3 {
      margin: 0 0 10px;
      color: #a94839;
    }
    .product-info p {
      margin: 0;
      font-size: 1em;
      line-height: 1.5;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
     .fade-in {
      opacity: 0;
      animation: fadeIn 1.5s ease-in forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }