 :root{
    --color1: #006ba6;
    --color2: #0496ff;
    --color3: #ffbc42;
    --color4: #d81159;
    --color5: #8f2d56;
    --color6: #d4ec4e;
}
 
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
    font-family: "Ancizar Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
    color: #000000;
    background-color: #f8f9fa;
    }

    header {
      background: linear-gradient(135deg, var(--color6), var(--color4));
      color: white;
      padding: 16px 0;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0 16px;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    nav a {
      color: white;
      text-decoration: none;
      padding: 8px 12px;
      border-radius: 4px;
    }

    nav a:hover {
      background-color: var(--color3);
    }

    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px;
    }

    .foods-container {
      background: white;
      padding: 24px;
      border-radius: 8px;
      margin: 24px 0;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .title {
      text-align: center;
      margin-bottom: 24px;
      font-size: 24px;
      color: #8f2d56;
    }

    .description{
    text-align: center;
    margin-bottom: 28px;
    color: black;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    }

    .foods {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 24px;
    }

    .product {
      width: 100%;
      max-width: 300px;
      background-color: #f8f9fa;
      border: 1px solid #ccc;
      padding: 16px;
      border-radius: 8px;
      text-align: center;
      transition: transform 0.3s ease;
      display:flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .product:hover {
      transform: translateY(-5px);
    }

    .product img {
      width: 100%;
      height: auto;
      border-radius: 4px;
      margin-bottom: 12px;
    }

    .price{
    border-radius: 5px;
    background-color: var(--main-color);
    text-align: center;
    color: white;
    background-color: var(--color4);
    padding: 5px;
    }

    .newsletter {
      background: linear-gradient(#8f2d56, #0496ff);
      padding: 32px 16px;
      text-align: center;
      border-radius: 8px;
      color: white;
      margin: 32px 0;
    }

    .newsletter-form {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
    }

    .newsletter-form input {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      min-width: 240px;
    }

    .newsletter-form input:focus {
      outline: none;
      border-color: #495057;
    }

    .newsletter-form button {
      padding: 10px 20px;
      background: #6c757d;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }

    .newsletter-form button:hover {
      background: #495057;
    }

    .map-section {
      text-align: center;
      margin: 32px 0;
    }

    .map-container {
      margin-top: 16px;
      border-radius: 8px;
      overflow: hidden;
    }

    .map-container iframe {
      width: 100%;
      height: 300px;
      border: none;
    }

    footer {
      background: #343a40;
      color: #adb5bd;
      text-align: center;
      padding: 24px 16px;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin: 16px 0;
    }

    .footer-links a {
      color: #adb5bd;
      text-decoration: none;
    }

    .footer-links a:hover {
      color: white;
    }

    @media (max-width: 600px) {
      .header-content {
        flex-direction: column;
        align-items: flex-start;
      }

      .foods {
        flex-direction: column;
        align-items: center;
      }
    }
