/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  margin: 0;
  padding: 10px 15px;
  color: #1d1d1d;
  background-color: #f5f5f7;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
}

body {
  margin: 0;
  padding: 0px;
  background-color: #ffffff;
  color: #333;
}

.header {
  margin: auto;
  /* margin-top: 20px; */
  position: fixed;
  /* width: 100%;
  max-width: 1280px; */
  height: 64px;
  background-color: #f82a2b;
  top: 0%;
  right: 0%;
  left: 0%;
  /* border-radius: 18px; */
  z-index: 99999;
}

.header {
  margin: auto;
  margin-top: 20px;
  /* padding: 0 20px; */
  position: fixed;
  width: 100%;
  max-width: 1280px;
  height: 64px;
  background-color: #f82a2b;
  top: 0%;
  right: 0%;
  left: 0%;
  border-radius: 18px;
  z-index: 99999;
}

.nav {
  margin: auto;
  padding: 0 20px;
  width: 100%;
  max-width: 1280px;
}

.globalnav-list {
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.globalnav-link {
  display: flex;
}

.globalnav-group {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.globalnav-link-color {
  color: #fff;
  font-size: 14px;
}

.globalnav-searchfield-input {
  padding: 15px 20px;
  width: 640px;
  background-color: #ffffff;
  font-size: 14px;
  border: none;
  border-radius: 99999px;
  outline: none;
}

.globalnav-searchfield-input::placeholder {
  color: #86868b66;
}

.banner {
  margin: auto;
  margin-top: 84px;
  width: 100%;
  max-width: 1280px;
  min-height: 400px;
  background-image: url(../images/1688742955_Duo_Fingers-banner_web.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 18px;
  transition: all 0.8s cubic-bezier(0, 0, 0.5, 1);
}

.banner {
  margin: auto;
  margin-top: 104px;
  width: 100%;
  max-width: 1280px;
  min-height: 400px;
  background-image: url(../images/1688742955_Duo_Fingers-banner_web.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 18px;
  transition: all 0.8s cubic-bezier(0, 0, 0.5, 1);
}

h1,
h2 {
  margin: auto;
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1280px;
  font-size: 28px;
  text-align: start;
}

.filtersContainer {
  margin: auto;
  margin-bottom: 40px;
  width: 100%;
  max-width: 1280px;
  display: flex;
}

.menuFilters {
  width: 100%;
  display: flex;
  justify-content: space-between;
  overflow-x: scroll;
  scrollbar-width: none;
}

/* Productos */
.productos {
  margin: auto;
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.producto > div {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  padding: 12px;
  width: 305px;
  text-align: start;
  border-radius: 18px;
  justify-content: space-between;
  /* box-shadow: 2px 4px 12px 0px #00000014; */
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}

.producto > div {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f7;
  padding: 30px;
  width: 311px;
  text-align: start;
  border-radius: 18px;
  justify-content: space-between;
  gap: 12px;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0, 0, 0.5, 1);
}

.producto > div:hover {
  transform: scale(1.025);
  transition: all 0.8s cubic-bezier(0, 0, 0.5, 1);
}

.producto img {
  max-width: 100%;
  border-radius: 18px;
}

.producto h2 {
  font-size: 17px;
  margin: 0;
}

.producto p {
  font-size: 17px;
  margin: 0;
}

.producto button {
  font-size: 17px;
  font-weight: 600;
  width: 100%;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #f5f5f7;
  border: none;
  color: #666;
  border-radius: 10px;
  cursor: pointer;
}

.producto button {
  display: none;
  font-size: 17px;
  font-weight: 600;
  width: 100%;
  margin: 0;
  padding: 10px 15px;
  background-color: #fff;
  border: none;
  color: #666;
  border-radius: 10px;
  cursor: pointer;
}

/* Carrito */
#carrito-container {
  max-width: 600px;
  margin: 0 auto 30px auto;
}

.item-carrito {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
}

#total {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

/* Formulario de pedido */
#form-pedido {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

#form-pedido input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 24px;
  }

  .header {
    margin: auto;
    margin-top: 20px;
    position: fixed;
    width: 100%;
    max-width: calc(100% - 48px);
    height: 64px;
    background-color: #f82a2b;
    top: 0%;
    right: 0%;
    left: 0%;
    border-radius: 99999px;
    z-index: 99999;
    box-shadow: 2px 4px 12px 0px #00000028;
  }

  .banner {
    min-height: 380px;
  }

  .menuFilters {
    justify-content: initial;
    gap: 12px;
  }

  .producto > div {
    width: 256px;
  }

  form {
    padding: 15px;
  }
}
