/*<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Quattrocento:wght@400;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Manrope:wght@400;600&display=swap" rel="stylesheet">*/



  
  .quattrocento-bold {
    font-family: "Quattrocento", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  * {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: "Quattrocento", serif;
    font-weight: 700;
    font-style: normal;
    background: linear-gradient(to bottom, #F29E51, #e6af83, #c34b30);
    color: #2b2b2b;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 19px 32px;
    font-family: "Quattrocento", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .nav-links a {
    margin: 0 24px;
    text-decoration: none;
    color: black;
  }

  .nav-links a:hover {
    margin: 0 24px;
    text-decoration: none;
    color: #58A9AA;
  }
  
  h1 {
    font-family: "DM Serif Display", serif;
    font-style: normal;
    font-size: 40px;
    text-align: center;
    margin-bottom: 5px;
    filter: drop-shadow(0 2px 2px rgb(60, 60, 60));
  }
  
  .decorleft {
    width: 200px;
    transform: scaleX(-1);
  }

  .decorright {
    width: 200px;
  }
  
  .content {
    display: flex;
    justify-content: center;
    align-items: start;
    padding: 32px;
    gap: 64px;
    flex-wrap: wrap;
  }
  
  .product-image {
    width: 400px;
    height: 500px;
    margin-bottom: 32px;
    filter: drop-shadow(0 20px 20px rgb(38, 38, 38));
  }
  
  .text-box {
    width: 550px;
  }
  
  .text-box h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    margin-bottom: 16px;
  }
  
  .text-box p {
    font-size: 16px;
    line-height: 40px;
  }
  
  .btn {
    display: block;
    margin: 32px auto;
    background-color: #58A9AA;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 25px;
    padding: 13px 32px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
    filter: drop-shadow(0 5px 5px rgb(60, 60, 60));
  }
  
  .btn:hover {
    background-color: #225e5d;
  }
  
  .info-card {
    background-color: #ffffff;
    margin: 32px auto;
    border-radius: 16px;
    padding: 32px;
    max-width: 850px;
    filter: drop-shadow(0 5px 10px rgb(38, 38, 38));
    
  }
  
  .info-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    margin-bottom: 16px;
  }
  
  .info-card p {
    font-size: 16px;
    line-height: 40px;
  }
  
  .figures {
    display: flex;
    justify-content: center;
    margin: 30px;
    flex-wrap: wrap;
  }
  
  .figures img {
    width: 220px;
  }
  
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .text-box {
      max-width: 90%;
    }
  }
  
  .menu-wrapper {
    position: relative;
  }
  
  .menu {
    font-size: 29px;
    cursor: pointer;
    user-select: none;
  }
  
  .dropdown {
    font-family: "Quattrocento", serif;
    font-weight: 700;
    font-style: normal;
    position: absolute;
    top: 40px;
    left: 40px;                    
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    z-index: 10;
  }
  
  .dropdown a {
    padding: 8px 0;
    color: #2b2b2b;
    text-decoration: none;
    font-weight: 500;
  }
  
  .dropdown a:hover {
    color: #58A9AA;
  }
  
  .hidden {
    display: none;
  }

  .search-box {
    padding: 10px 15px;
    width: 700px;
    border: 2px solid white;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'DM Serif Display', serif;
    color: #2b2b2b;
    margin: 0 20px;
    filter: drop-shadow(0 5px 5px rgb(60, 60, 60));
  }
  
  .search-box::placeholder {
    color: #999;
  }
  
  .search-box:focus {
    border-color: #225e5d;
  }
  