* {
  padding: 0px;
  margin: 0px;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
body {
  font-family: Montserrat;
  margin: 0;
  background-color: #2a2323;
}
nav {
  background-color: #1B1616;
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 2px 5px 0 #fccd67c9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

label.Logo {
  color: #fcf7f3;
  font-size: 35px;
  font-weight: bold;
  text-transform: uppercase;
}

.menu-icon, #close-menu-icon {
  display: none;
  font-size: 30px;
  color: #fcf7f3;
  cursor: pointer;
}

nav ul {
  list-style: none;
  margin: 0;
  margin-right: 40px;
  padding: 0;
  display: flex;
}

nav ul li {
  margin: 0 5px;
}

nav ul li a {
  color: #fcf7f3;
  font-size: 17px;
  padding: 20px;
  text-decoration: none;
}

nav a.active, nav a:hover {
  background: rgb(54, 52, 51);
  transition: 1s;
  border-radius: 7px;
  padding: 10px;
}

.mobile-menu {
  display: none;
}


/* Responsive styles */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
    color: #f2f2f2;
  }

  #close-menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
  }
  nav ul {
    display: none;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1B1616;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 20px;
    width: 100%;
  }

  .mobile-menu ul li {
    width: 100%;
  }

  .mobile-menu ul li a {
    display: block;
    padding: 20px;
    font-size: 20px;
    color: #fcf7f3;
    text-decoration: none;
  }

  .mobile-menu.active {
    display: flex;
  }
}

.fb{
  height: 30px;
  width: auto;
  align-self: center;
  justify-self: center;
  margin-top: 7px;
}

.ig{
  margin-top: 7px;
  height: 30px;
  width: auto;
  align-self: center;
  justify-self: center;
}

.footer-col .adresa{
  font-size: 20px;
  color: #e6a900;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1vw;
}

header .icon-cart {
  position: relative;
  cursor: pointer;
}

header .icon-cart span {
  display: flex;
  width: 20px;
  height: 20px;
  background-color: #b88700;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -15px;
}

body.showCart .cart {
  right: 0;
  transition: ease 1s;
}

body.showCart .products {
  margin-right: 400px; /* Adjusted to match the width of the cart */
}

.hero {
  display: flex;
  margin-top: 70px;
  height: 300px;
  background-image: url(../images/webshop/hero2100width.png);
  background-size: cover;
}

.flash {
  width: 100%;
  height: max-content;
  background-color: #1b1616;
}

.container1 {
  width: 100%;
  max-width: 90vw;
  margin: auto;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  color: white;
  transition: transform 0.5s ease-out;
}

.icon-cart-img{
  width: 4vh;
}

.logo2{
  height: 300px; 
  width: 300px; 
  margin-left: 0%;
}

#slogan2 {
  display: flex;
  height: 2vw;
  font-family: "Montserrat", cursive;
  font-size: 2vw;
  color: #ffffff;
  padding-bottom: 0.5vw;
  margin-left: 10vw;
  margin-top: 3vw;
  padding-top: 3vw;
  flex-direction: row;
}

#slogan3 {
  display: flex;
  height: 2vw;
  font-family: "Montserrat", cursive;
  font-size: 3vw;
  color: #fab700;
  padding-bottom: 2vw;
  margin-left: 10vw;
  margin-top: 70px;
  flex-direction: column;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px rgb(234, 185, 118),
      0 0 40px #e6bc00, 0 0 50px #e6a900, 0 0 60px #e6ad00, 0 0 70px #e69600;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 30px rgba(252, 205, 103, 0.788),
      0 0 40px #ffc14d, 0 0 50px rgb(250, 176, 49, 211, 77), 0 0 60px #ffca4d,
      0 0 70px #ffc44d, 0 0 80px #fdd360;
  }
}

.productCards {
  max-width: 300px;
  height: auto;
  background-color: #fcf7f3;
  color: #1b1616;
  padding: 20px;
  border: transparent;
  border-radius: 20px;
  margin: 25px;
  text-align: center;
}

.productCards img {
  max-width: 200px;
  height: auto;
  border: transparent;
  border-radius: 20px;
  align-self: center;
  margin: 10px;
}

.productCards h3 {
  margin: 10px;
}

.productCards select {
  max-width: 250px;
  border: transparent;
  border-radius: 7px;
  font-family: Montserrat;
  background-color: #272020;
  color: #fcf7f3;
  padding: 3px;
}

.add-to-cart {
  margin: 10px;
  padding: 7px;
  border: transparent;
  border-radius: 7px;
  font-family: Montserrat;
  background-color: #272020;
  color: #fcf7f3;
  cursor: pointer;
}

.add-to-cart:hover {
  background-color: #e4a700;
  color: #1b1616;
  transition: ease-in-out 0.5s;
}

.cart {
  position: fixed;
  right: -400px;
  top: 70px;
  max-width: 400px;
  background-color: #1b1616;
  color: #ffffff;
  height: 100%;
  overflow: auto;
  transition: right 0.5s ease-in-out; /* Smooth slide transition */
}

/* Slide-in position */
.cart.open {
  right: 0;
}
.close-cart {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.close-cart:hover {
  color: #ffc400;
}
body.showCart .cart {
  display: block;
}

.cart-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 400px;
  background-color: #272020;
  color: #fcf7f3;
  align-items: flex-start;
  padding: 20px;
  height: 50px;
  text-transform: uppercase;
  font-weight: 700;
}

.container {
  display: flex;
  flex-direction: row;
  background-color: #2a2323;
}

.products {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

#cart-items:nth-child(even) {
  background-color: #382f2f; /* Set the background color for even-indexed items */
}

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto; /* Added a new column for the "x" button */
  gap: 10px;
  align-items: center;
  padding: 5px;
}

.item-name,
.item-quantity,
.item-price,
.item-total {
  padding: 5px;
}

.delete-item {
  font-family: Montserrat;
  border-radius: 50%;
  background-color: #1b1616;
  color: #ffee00;
  border: none;
  cursor: pointer;
  height: 20px;
  max-width: 20px;
  font-weight: 600;
}

.item-name {
  font-weight: bold;
}

.item-quantity input {
  max-width: 40px;
  border: transparent;
  padding: 3px;
  border-radius: 4px;
  font-family: Montserrat;
}

.item-total {
  text-align: right;
}

#checkout-btn {
  width: 200px;
  height: 70px;
  justify-content: center;
  align-items: center;
  align-self: center;
  cursor: pointer;
  font-family: Montserrat;
  font-size: 20px;
  background-color: #e7ac07;
  color: #fcf7f3;
  border: transparent;
  border-radius: 10px;
  margin-left: 90px;
  margin-top: 35px;
}

.cart h2 {
  padding: 15px;
}

footer{
  display: flex;
  flex-wrap: wrap;
  background-color: #1B1616;
  padding: 25px;
  width: 100%;
  height: max-content;
  justify-content: space-around;
}

.footer-col ul{
  list-style: none;
}

.footer-col-logo{
  max-width: 350px;
  min-width: 150px;
  padding-left: 3%;
  min-height: 150px;
  max-height: 350px;
}

.footerlogo{
  width: auto;
  height: 100%;
}

.footer-col h4{
  position: relative;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 30px;
  color: #f1bc0d;
  text-transform: capitalize;
}

.footer-col{
  width: 20%;
  padding-left: 5%;
}

.footer-col h4::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: #e69600;
  height: 2px;
  width: 40px;
}

.footer-col ul{
  padding: 0%;
}

.footer-col ul li{
  margin-bottom: 10px;
  padding: none;
}

.footer-col ul li a{
  display: block;
  font-size: 20px;
  text-transform: capitalize;
  color: #bdb6b6;
  text-decoration: none;
  transition: 0.4s;
  background-color: transparent;
}

.footer-col ul li a:hover{
  color: white;
  padding-left: 2px;
  background-color: transparent;
}

.links a{
  display: inline-block;
  height: 44px;
  width: 44px;
  color: white;
  background-color: #e69600;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 44px;
  border-radius: 50%;
}


/* 4K 2560 X 1080 VWP  */


/* 2K 2048 X 1080 RES  */
@media only screen and (max-width: 2560px) {
  .footer-col {
    width: 20%;
    margin-left: 70px;
  }

  .hero {
    display: block;
    margin-top: 70px;
    height: 15vw;
    background-image: url(../images/webshop/hero2100width.png);
    background-size: cover;
    background-position: right;
  }
}

@media only screen and (max-width: 2100px) {
  .footer-col {
    width: 20%;
    margin-left: 70px;
  }

}
/* FULL HD 1920 X 1080 RES, SCREEN WIDTH = 1920 */

@media screen and (max-width: 1920px) {

  .hero {
    display: block;
    margin-top: 70px;
    height: 15vw;
    background-image: url(../images/webshop/hero2100width.png);
    background-size: cover;
    background-position: right;
  }

  .productCards {
    max-width: 300px;
    height: 400px;
    background-color: #fcf7f3;
    color: #1b1616;
    padding: 30px;
    border: transparent;
    border-radius: 20px;
    margin: 25px;
    text-align: center;
  }

  .productCards img {
    max-width: 230px;
    height: auto;
    border: transparent;
    border-radius: 20px;
    align-self: center;
    margin: 10px;
  }

  .productCards h3 {
    margin: 10px;
    font-size: 19px;
  }

  .productCards select {
    max-width: 230px;
    border: transparent;
    border-radius: 7px;
    font-family: Montserrat;
    font-size: 12px;
    background-color: #272020;
    color: #fcf7f3;
    padding: 3px;
  }

  .add-to-cart {
    margin: 10px;
    padding: 7px;
    border: transparent;
    border-radius: 7px;
    font-family: Montserrat;
    font-size: 12px;
    background-color: #272020;
    color: #fcf7f3;
    cursor: pointer;
  }

  .add-to-cart:hover {
    background-color: #e4a700;
    color: #1b1616;
    transition: ease-in-out 0.5s;
  }
}

@media screen and (max-width: 1440px) {

  .hero {
    display: block;
    margin-top: 70px;
    height: 15vw;
    background-image: url(../images/webshop/hero2100width.png);
    background-size: cover;
    background-position: right;
  }

  .productCards {
    max-width: 230px;
    height: 320px;
    background-color: #fcf7f3;
    color: #1b1616;
    padding: 10px;
    border: transparent;
    border-radius: 15px;
    margin: 15px;
    text-align: center;
  }

  .productCards img {
    max-width: 180px;
    height: auto;
    border: transparent;
    border-radius: 15px;
    align-self: center;
    margin: 10px;
  }

  .productCards h3 {
    margin: 6px;
    font-size: 17px;
  }

  .productCards select {
    max-width: 190px;
    border: transparent;
    border-radius: 7px;
    font-family: Montserrat;
    font-size: 12px;
    background-color: #272020;
    color: #fcf7f3;
    padding: 3px;
  }

  .add-to-cart {
    margin: 10px;
    padding: 7px;
    border: transparent;
    border-radius: 7px;
    font-family: Montserrat;
    font-size: 12px;
    background-color: #272020;
    color: #fcf7f3;
    cursor: pointer;
  }

  .add-to-cart:hover {
    background-color: #e4a700;
    color: #1b1616;
    transition: ease-in-out 0.5s;
  }

}

@media screen and (max-width: 1024px) {
  .hero {
    display: block;
    margin-top: 70px;
    height: 20vw;
    background-image: url(../images/webshop/hero2100width.png);
    background-size: cover;
    background-position: right;
  }
  .productCards {
    max-width: 200px;
    height: 280px;
    background-color: #fcf7f3;
    color: #1b1616;
    padding: 10px;
    border: transparent;
    border-radius: 10px;
    margin: 10px;
    text-align: center;
  }

  .productCards img {
    max-width: 150px;
    height: auto;
    border: transparent;
    border-radius: 10px;
    align-self: center;
    margin: 10px;
  }

  .productCards h3 {
    margin: 6px;
    font-size: 14px;
  }

  .productCards select {
    max-width: 190px;
    border: transparent;
    border-radius: 7px;
    font-family: Montserrat;
    font-size: 12px;
    background-color: #272020;
    color: #fcf7f3;
    padding: 3px;
  }

  .add-to-cart {
    margin: 10px;
    padding: 7px;
    border: transparent;
    border-radius: 7px;
    font-family: Montserrat;
    font-size: 12px;
    background-color: #272020;
    color: #fcf7f3;
    cursor: pointer;
  }

  .add-to-cart:hover {
    background-color: #e4a700;
    color: #1b1616;
    transition: ease-in-out 0.5s;
  }

  
.footer-col{
  width: 20%;
  padding-left: 0%;
}
.footer-col-logo{
  padding: 0%;
}

}

@media (max-width: 768px) {
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
    padding: 0%;
    margin-left: 0%;
}

.footer-col h4::before{
    all: unset;
}

}

@media (max-width: 555px) {
  .footer-col {
    width: 100%;
  }
  .footer-col{
    padding: 0%;
  }

  #slogan2{
    display: none;
  }
  
  #slogan3{
    display: none;
  }
}



@media (max-width: 425px) {
  .footer-col {
    width: 100%;
  }
  .footer-col{
    padding: 0%;
  }

  .hero {
    display: block;
    margin-top: 70px;
    height: 35vw;
    background-image: url(../images/webshop/hero2100width.png);
    background-size: cover;
    background-position: right;
  }

#slogan2{
  display: none;
}

#slogan3{
  display: none;
}

  #slogan {
    display: none;
  }
}

@media(max-width: 320px){

  .footerlogo{
    max-width: 200px;
    height: 100%;
  }
  .column5 h1{
  padding: 4px;
  font-size: 12px;
}

.column5 p{
  padding: 0.8vw;
  font-size: 9px;
}

#slogan2{
  display: none;
}

#slogan3{
  display: none;
}

}
