/* -----------------------------------------------------------------
   global.css
   ----------------------------------------------------------------- */
body {
  display: flex;
  flex-direction: column; /* header/hero -> products -> footer, in DOM order */
  font-family: 'Circular', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f7f7f7;
}

/* Guard against horizontal overflow: nothing should make the page wider
   than the screen on mobile. Belt-and-suspenders so a single stray wide
   element can never bring back the header/footer cut-off. */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* =================================================================
   Profile section — global.css additions (merged from profile/css/)
   ================================================================= */
* {
    box-sizing: border-box;
}

/* Profile uses Poppins; scoped to profile pages via body.profile-page if needed */
button {
    cursor: pointer;
    transition: all 0.3s ease;
}

.container {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}