* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 100vh;
}

body {
  font-family: Inika;
  background-image: url("../images/home-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: scroll; /* Keep it scrollable on all devices */
  color: #5e2c3c;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

a {
  text-decoration: none;
}

.header {
  position: relative;
  /* background-color: #f8a5c2; */
  padding: 1rem;
  text-align: center;
}

.branding {
  margin-bottom: 1rem;
}

.logo {
  height: 20vh;
  width: 40vh;
  margin-bottom: 0.5rem;
}

.header h1 {
  font-size: 2rem;
}

.header p {
  font-size: 1rem;
}

.icons {
  position: absolute;
  top: 1rem;
  right: 3rem;
  display: flex;
  gap: 2rem;
}

.icons a {
  text-decoration: none;
}

.icon {
  height: 2.5rem;
  width: 2.5rem;
  cursor: pointer;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.2));
}

.drip {
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/drip.png") no-repeat;
  background-size: contain;
  width: 50vh;
  height: 30vh;
}

.collections {
  padding: 2rem 1rem;
  /* background: #f8a5c2; */
}

.collection h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: white;
}

.gallery-container {
  overflow-x: auto;
  padding-bottom: 1rem;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
}

.gallery {
  display: flex;
  gap: 1rem;
  min-width: max-content;
}

.card {
  background-color: #d07b91;
  border-radius: 10px;
  overflow: hidden;
  width: 40vh;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* height: 30vh; */
}

.card img {
  width: 100%;
  height: 50vh;
  display: block;
}

.card-footer {
  background-color: #d07b91;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: inherit;
}

.buy-btn {
  background-color: #d07b91;
  border: none;
  color: white;
  padding: 0.3rem 0.6rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 5px;
  font-size: 0.8rem;
  cursor: pointer;
  width: 100%;
}

.heart {
  font-size: 1rem;
  color: red;
}



@media (max-width: 768px) {
  .logo {
    width: 60vw;
    height: auto;
  }

  .header h1 {
    font-size: 1.5rem;
  }

  .header p {
    font-size: 0.9rem;
  }

  .icons {
    top: 0.5rem;
    right: 1rem;
    gap: 1rem;
  }

  .icon {
    height: 2rem;
    width: 2rem;
  }

  .drip {
    width: 100%;
    height: auto;
    background-size: contain;
  }

  .collections {
    padding: 1rem 1rem;
  }

  .collection h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    text-align: center;
  }

  .gallery {
    gap: 0.8rem;
  }

  .card {
    width: 40vw;
    min-width: 40vw;
  }

  .card img {
    height: 20vh;
  }

  .buy-btn {
    font-size: 0.7rem;
    padding: 0.4rem;
  }

  .heart {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .card {
    width: 60vw;
    min-width: 36vw;
  }

  .card img {
    height: 50vh;
  }

  .header h1 {
    font-size: 1.2rem;
  }

  .header p {
    font-size: 0.8rem;
  }
}

.fa-cart-shopping {
  font-size: 1rem; /* Adjust as needed */
  margin-left: 0.3rem;
}

button,
.buy-btn {
  font-family: "Inika";
  font-size: 1rem;
}

