nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 2rem;
    display: flex;
    height: 7%;
    z-index: 100000000000000000000;
}

.nav-menu {
    position: absolute;
    right: 4rem;
    top: 2rem;
    display: flex;
}

nav .nav-links {
    cursor: pointer;
    transition: all .1s ease-in-out;
    color: var(--color-black);
    font-weight: 600;
    font-family: "Forum";
    text-transform: uppercase;
    font-size: var(--font-regular);
}

nav a {
  transition: all .1s ease-in-out;
}

nav a:hover {
    color: var(--color-red);
}

.nav-col {
  flex: 1;
  display: flex;
}

.nav-items {
  margin-left: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.481);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
  backdrop-filter: blur(10px);
  border: .5px  solid rgb(255, 255, 255);
  transition: all .2s ease-in-out;
  border-radius: 20px;
  z-index: 100000000000000000;
}

.nav-items:hover {
  background: rgb(255, 255, 255);
  scale: 1.05;
}

#navbar {
  position: fixed;
  top: 0;
  transition: top .8s ease-in-out;
}

.logo {
  position: absolute;
  top: 2rem;
  left: -1rem;
}

.logo img {
  padding-top: 4px;
  width: 100px;
  transition: all .2s ease-in-out;
}

.logo img:hover {
  scale: 1.05;
}

.add-to-cart {
  color: var(--color-black);
}

.bag {
    position: fixed;
    z-index: 100000000000;
    opacity: 1;
}

.bag-btn a {
  color: var(--color-black);
  font-family: "Forum";
  font-weight: 600;
  font-size: var(--font-regular);
  transition: all .1s ease-in-out;
  color: var(--color-black);
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.bag-btn a:hover{
  color: var(--color-red);
}

.cart {
    transition: all .1s ease-in-out;
    position: fixed;
    bottom: 1rem;
    right: 0;
    margin: 2rem; 
    scale: 1;
    width: 10%;
    background: rgba(255, 255, 255, 0.481);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
    backdrop-filter: blur(7px);
    border: .5px solid rgb(255, 255, 255);
    border-radius: 20px;
    padding: 15px;
    outline: none;
    cursor: pointer;
    z-index: 10000000;
}

.cart div {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  
}

/* .cart p {
    font-family: "Forum";
    font-weight: 600;
    font-size: var(--font-regular);
    transition: all .2s ease-in-out;
    color: var(--color-black);
} */

.cart:hover {
    scale: 1.05;
    background: rgb(255, 255, 255);
}


/* .cart input {
  cursor: pointer;
  width: 30px;
  text-align: center;
  padding: 2px;
  background-color: var(--color-red);
  border: none;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 900;
  color: var(--color-white);
  font-family: "Forum";
  font-weight: 600;
} */


/* Footer  */
footer h2 {
  padding: 2rem 0 4rem 0;
  position: relative;
  color: var(--color-black);
  font-family: "Forum";
  font-weight: 100;
  text-transform: uppercase;
  font-size: var(--font-h2);
  text-align: center;
  z-index: 100000;
}

footer .container {
  display: flex;
  flex-direction: column;
}

.footer-row:nth-child(2) {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
}

.footer-row:nth-child(2) p {
  margin: 1rem;
}

.footer-col p {
  font-size: var(--font-medium);
  color: var(--color-gray);
  font-family: "forum";
  transition: all .1s ease-in-out;
}

.footer-col a {
  font-family: 'Forum';
  padding: 1rem;
  line-height: 3.2rem;
  background: rgba(255, 255, 255, 0.481);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
  backdrop-filter: blur(10px);
  border: .5px  solid rgb(255, 255, 255);
  transition: all .2s ease-in-out;
  border-radius: 20px;
  font-weight: 900;
  font-size: var(--font-regular);
  color: var(--color-black);
  cursor: pointer;
}

.footer-col a:hover {
  color: var(--color-red);
}

/* .footer-row:nth-child(2) p {
  font-size: var(--font-small);
}

.footer-row:nth-child(1) a {
  font-size: var(--font-small);
} */

.footer-row:nth-child(1) {
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}