@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600&display=swap');

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

html, body {
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #2b2b2b;
  background-color: #faf9f7;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  margin-bottom: 16px;
}

a {
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: underline;
}

button, input[type="submit"], input[type="button"] {
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  nav .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  
  section .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
  
  footer .container-fluid {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  nav .container-fluid,
  section .container-fluid,
  footer .container-fluid {
    padding-left: 48px !important;
    padding-right: 48px !important;
  }
}

.product-img {
  transition: transform 0.3s ease;
}

.product-img:hover {
  transform: scale(1.02);
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem !important;
  }
  
  h2 {
    font-size: 1.5rem !important;
  }
  
  section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }
}
