body {
    margin: 0;
    font-family: 'Assistant', sans-serif;
    background-color: #fdfdf9;
    color: #333;
  }

  h1, h2, h3 {
    font-family: 'Fraunces', serif;
  }

  /* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: 'Raleway', sans-serif;
  }
  
  /* Logo */
  .logo img {
    height: 50px;
  }
  
  /* Centered Navigation */
  .nav-links {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #888;
  }
  
  /* Icons on Right */
  .header-icons {
    display: flex;
    gap: 20px;
  }
  
  .icon svg {
    width: 24px;
    height: 24px;
    fill: #2a2a2a;
    transition: transform 0.3s ease, fill 0.3s ease;
  }
  
  .icon:hover svg {
    fill: #E07A5F;
    transform: scale(1.1);
  }
  

  .product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px;
    max-width: 1200px;
    margin: 0 auto;
    
  }

  .product-page img {
    width: 100%;
    border-radius: 16px;
  }

  .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .product-info h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .product-info p.description {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #666;
  }

  .product-info .price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .product-info button {
    padding: 12px 24px;
    font-size: 1rem;
    margin-right: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 30px;
    background-color: #2a2a2a;
    color: white;
    cursor: pointer;
    transition: 0.3s;
  }

  .product-info button:hover {
    background-color: #444;
  }

  .wishlist-btn {
    background-color: transparent;
    border: 2px solid #2a2a2a;
    color: #2a2a2a;
  }

  .wishlist-btn:hover {
    background-color: #2a2a2a;
    color: white;
  }

  .related-products {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 60px;
    background-color: #f5f5dc;
  }

  .related-products h2 {
    margin-bottom: 30px;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }

  .related-grid .product {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .related-grid .product img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 15px;
  }

  @media (max-width: 768px) {
    .product-page {
      grid-template-columns: 1fr;
      padding: 30px;
    }

    .related-products {
      padding: 0 30px;
    }
  }