:root {
      --white: #FFFFFF;
      --black: #000000;
      --dark: #232830;
      --very-light-pink: #C7C7C7;
      --text-input-field: #F7F7F7;
      --hospital-green: #ACD9B2;
      --sm: 14px;
      --md: 16px;
      --lg: 18px;
}
body {
      margin: 0;
      font-family: 'Quicksand', sans-serif;
}
nav {
      display: flex;
      justify-content: space-between;
      padding: 0 24px;
      border-bottom: 1px solid var(--very-light-pink);
}
.menu {
      display: none;
}
.logo {
      width: 100px;
}
.navbar-left ul,
.navbar-right ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      align-items: center;
      height: 60px;
}
.navbar-left {
      display: flex;                  
}
.navbar-left ul {
      margin-left: 12px;
}
.navbar-left ul li a,
.navbar-right ul li a {
      text-decoration: none;
      color: var(--very-light-pink);
      border: 1px solid var(--white);
      padding: 8px;
      border-radius: 8px;
}
.navbar-left ul li a:hover,
.navbar-right ul li a:hover {
      text-decoration: none;
      color: var(--hospital-green);
      border: 1px solid var(--hospital-green);
}
.navbar-email {
      color: var(--very-light-pink);
      font-size: var(--sm);
}
.navbar-shopping-cart {
      position: relative;
}
.navbar-shopping-cart div {
      width: 16px;
      height: 16px;
      background-color: var(--hospital-green);
      border-radius: 50%;
      font-size: var(--sm);
      font-weight: bold;
      position: absolute;
      top: -6px;
      right: -3px;
      display: flex;
      justify-content: center;
      align-items: center;
}

.cards-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, 240px);
      gap: 26px;
      place-content: center;        
}
.product-card {
      width: 240px;
}

.product-card img {
      width: 240px;
      height: 240px;
      border-radius: 20px;
      object-fit: cover;
}
.product-info {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 12px;
}
.product-info figure img {
      width: 35px;
      height: 35px;
}
.product-info div p:nth-child(1) {
      font-weight: bold;
      font-size: var(--md);
      margin-top: 0;
      margin-bottom: 4px;
}
.product-info div p:nth-child(2) {
      font-size: var(--sm);
      margin-top: 0px;
      margin-bottom: 0px;
      color: var(--very-light-pink);
}
@media (max-width: 640px) {
      .menu {
            display: block;
      }
      .navbar-left ul {
            display: none;
      }
      .navbar-email {
            display: none;
      }
}
@media (max-width: 640px) {
      .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, 140px);
      }
      .product-card {
            width: 140px;
      }
      .product-card img {
            width: 140px;
            height: 140px;
      }
}