* {
  box-sizing: border-box;
}
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

:where([class^="ri-"])::before {
  content: "\f3c2";
}
body {
  font-family: "Poppins", sans-serif;
}
.playfair {
  font-family: "Playfair Display", serif;
}
#bouquetPage,
#collectionsPage,
#aboutPage {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#bouquetPage,
#collectionsPage,
#aboutPage ::-webkit-scrollbar {
  display: none;
}
.bouquet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

@media (max-width: 640px) {
  .bouquet-grid > div {
    display: flex;
    gap: 1rem;
    padding: 0.75rem;
    align-items: center;
  }

  .bouquet-grid img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
  }

  .bouquet-grid .p-4 {
    padding: 0;
    flex: 1;
  }

  .bouquet-grid h3 {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .bouquet-grid .text-lg {
    font-size: 0.85rem;
  }

  .bouquet-grid .ri-star-fill,
  .bouquet-grid .ri-star-half-fill,
  .bouquet-grid .ri-star-line {
    font-size: 1rem;
  }

  .bouquet-grid a {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }

  .bouquet-grid .flex.items-center.justify-between {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
