@layer base {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    font-family: "Kumbh Sans", sans-serif;
    font-weight: 500;
  }

  /* Custom Scrollbar */
  body::-webkit-scrollbar {
    width: 12px;
  }

  body::-webkit-scrollbar-track {
    background: #F5F2E9;
    border-radius: 10px;
  }

  body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #5B9E78, #3FAE8A);
    border-radius: 10px;
    border: 2px solid #F5F2E9;
  }

  body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4A8F6E, #2E8B57);
  }

  /* Firefox */
  body {
    scrollbar-width: thin;
    scrollbar-color: #5B9E78 #F5F2E9;
  }
}

@layer components {
  body.bg-beige {
    overflow-x: hidden;
  }

  .forfait-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2e8b57, #3fae8a);
  }

  button {
    user-select: none;
  }
}