    body {
    background-color: #f7f7f7;
    background-image: url("https://transparenttextures.com/patterns/debut-light.png");
    font-family: "bd-supper", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #4673b9;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('grain-texture.png');
    opacity: 0.03;
    pointer-events: none;
    z-index: 9999;
}

h1 {
    font-size: 80px;
}

.title {
  width: clamp(400px, 40vw, 800px);
  height: auto;
  padding: 0;
  margin: 0;
}


.landing {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 1.5rem;
}

.copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-wrap:  stable;
  max-width: 700px;
  margin: 0 auto;
}

.logo-link {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo {
  width: 85px;
  height: auto;
}

  /* Hamburger button */
  .hamburger {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #4673b9;
    margin: 4px 0;
    transition: 0.3s ease;
  }

  /* Animate to X */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Menu */
  .menu {
    position: fixed;
    top: 0;
    right: -220px;
    width: 220px;
    height: 100%;
    background: #000;
    color: #4673b9;
    padding-top: 60px;
    transition: 0.3s ease;
    z-index: 1000;
  }

  .menu.active {
    right: 0;
  }

  .menu a {
    display: block;
    padding: 14px 20px;
    color: #4673b9;
    text-decoration: none;
  }

  .menu a:hover {
    background: #F8F0C6;
  }


.container1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 1rem; 
}

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 250px; 
}

.flask {
  width: 100%;
  max-width: 200px;
  height: auto;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  h1 {
      font-size: 50px;
  }
  
  .items {
      gap: 1.5rem;
  }
  
  .product {
      max-width: 150px;
  }
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "bd-supper", sans-serif;
  font-weight: 400;
  font-size: 30px;
  font-style: normal;
  color: #4673b9;
}