@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
* {
    overflow-x: hidden;
    padding: 0;
    margin: 0;
}
body , a , p , button , input , input::placeholder {
    font-family: "Raleway", sans-serif;
}
.sidenav {
    display: flex;
    flex-direction: row;
    padding: 12px 0;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    bottom: 0;
    background: #FFF;
    width: 100vw;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.sidenav > a > img {
    width: 28px;
    height: auto;
}
.sidenav > a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.sidenav > a > span {
    font-size: 12px;
    letter-spacing: 1.2;
    font-weight: bold;
    color: #1d1d1d;
    text-transform: uppercase;
}
.head {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px;
    justify-content: center;
}
.head > img {
    width: 40px;
    height: 40px;
    border-radius: 125px;
}
.head > h1 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1.2;
}
#header {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
#header > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 7px 12px;
    overflow: hidden;
}
.search > a > img {
    width: 28px;
    overflow: hidden;
}
.search {
    overflow: hidden;
}
.buttons {
    display: flex;
    flex-direction: row;
    position: fixed;
    width: 100vw;
    bottom: 0;
}
.buttons > button {
    width: 50vw;
    padding: 15px 0;
    border: none;
    letter-spacing: 1.2;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}
#waBtn {
    background: #008000;
}
#cartBtn {
    background: #00575e;
}
#whatsappBtn {
    position: fixed;
    bottom: 13%;
    border: none;
    right: 10%;
    background: none;
}
#whatsappBtn > img {
    width: 40px;
}
#products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 10px;
}

.product-card {
  padding: 10px;
  text-align: left;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: 140px;
}

.product-card h3 {
  font-size: 16px;
  margin: 8px 0;
}

.product-card p {
  font-size: 14px;
  margin: 4px 0;
}
.form {
    display: flex;
    flex-direction: column;
    padding: 10px;
    gap: 10px;
    margin: 10px 0;
}
.int {
    padding: 12px 15px;
    border-radius: 125px;
    outline: none;
    border: none;
    background: #dddd;
    letter-spacing: 1.2;
    color: #000;
    font-weight: 400;
}
.int::placeholder {
    color: #000;
    font-weight: 400;
}

