/* styles.module.css */
.styles_emptyCartContainer {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 24px 16px;
}
.styles_emptyCartWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.styles_emptyCartTitle {
  color: #000;
  font-size: var(--Font-Size-heading5-size, 18px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--Font-Height-heading5-height, 24px);
  letter-spacing: 0.36px;
  text-transform: uppercase;
}
.styles_emptyCartDescription {
  color: #000;
  font-size: var(--Font-Size-p-regular-size, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: var(--Font-Height-p-regular-height, 24px);
  letter-spacing: 0.32px;
  max-width: 560px;
}
.styles_emptyCartButton {
  color: var(--Absolute-white, #FFF);
  text-align: center;
  font-size: var(--Font-Size-p-button-size, 13px);
  font-style: normal;
  font-weight: 500;
  line-height: var(--Font-Height-p-legenda-height, 16px);
  letter-spacing: 0.52px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--Primary-primary-dark, #202020);
  height: 40px;
  padding: 0 20px;
  max-width: 264px;
  width: 100%;
  text-decoration: none;
}

/* Header/styles.module.css */
.styles_header {
  padding: 0 16px;
}
body * {
  font-family: "Metropolis", sans-serif;
}
.styles_headerContainer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1330px;
  padding: 16px 0;
  margin: 0 auto;
  border-bottom: 1px solid #DDDDDD;
}
.input.rounded-lg,
.input.rounded-md {
  border-radius: 0px;
}
.btn.rounded-lg {
  border-radius: 0px;
}

/* Footer/styles.module.css */
.styles_footer {
  width: 100%;
  padding: 24px 0;
  background-color: #303030;
}
.styles_footer * {
  font-family: "Metropolis", sans-serif;
}
.styles_footerContainer {
  max-width: 1330px;
  margin: 0 auto;
}
.styles_footerSectionCopyright p {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  font-family: "Metropolis", sans-serif;
}
