
* {
  margin: 0;
  padding: 0;
  
}

html {
  scroll-behavior: smooth;
}


body {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  background-image: url("/assets/images/Our background.png");
  background-size: cover;              /* stretches to cover full screen */
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  height: 100%;
}

p {
  color: white;
}

h2{
    color: purple;
  border: rgb(72, 172, 64) solid 1px;
  border-radius: 5px;
  background-color: rgb(72, 172, 64);
  width: fit-content;
  margin: auto;
}

.product-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      padding: 0 20px;
      justify-items: center;;
    }

    .column {
      background: rgba(0, 0, 0, 0.7);
      border-radius: 10px;
      padding: 10px;
      max-width: 200px;
      transition: transform 0.2s;
    }

    .column:hover {
      transform: scale(1.05);
    }

    .column img {
      width: 100%;
      height: auto;
      display: block;
    }

.clickable-image {
  position: relative;
  z-index: 10;
  display: inline-block;
}


    .clickable-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 5px;
    }

    .clickable-image p {
      margin: 10px 0 0;
      color: rgb(255, 255, 255);
    }
    .navbar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  position: fixed;
  top: 2.5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 8px 0;
  z-index: 1000;
}


.navbar a, .dropdown .dropbtn {
  font-size: 16px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  text-align: center;
  padding: 12px 20px;
  text-decoration: none;
  transition: background 0.3s ease;
  border-radius: 8px;
}


.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: red; 
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 12px;
}

.dropdown-content a {
  float: none;
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #575656;
}

.dropdown:hover .dropdown-content {
  display: block;
}
#cart-container {
      position: fixed;
      top: 150px;
      right: 10px;
      background: #282828;
      padding: 10px 15px;
      border-radius: 10px;
      box-shadow: 0 0 12px #f314ff;
      z-index: 9999;
      color: #f314ff;
    }

    .cart-link {
      background: #3fff43;
      color: black;
      padding: 6px 12px;
      border-radius: 6px;
      margin-left: 10px;
      text-decoration: none;
      font-weight: bold;
    }

    .cart-link:hover {
      background: #2ecc71;
    }

    .content {
  min-height:auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mutant {
  position: fixed;
  top: auto;
  bottom: 0;
  opacity: 0.5;
}
@media (max-width: 768px) {

 body {
    background-image: url('/assets/images/mobileBCKG.png'); /* replace with correct path */
    background-repeat: repeat-y;
    background-size: cover; /* Or 'contain' if you want it more exact */
    background-position: center top;
    background-attachment: scroll;
    background-color: #154734; /* solid green fallback */
  }

.navbar a, .dropdown .dropbtn {
    font-size: 14px;
    padding: 10px 12px;
  }

  .dropdown-content {
    min-width: 140px;
  }

   #cart-container {
    position: fixed;
    top: auto;
    bottom: 5px;
    left: 0;
    right: 0;
    background: #282828;
      padding: 10px 15px;
      border-radius: 10px;
      box-shadow: 0 0 12px #f314ff;
      z-index: 9999;
      color: #f314ff;
    }

  .cart-link {
    margin-left: 20px;
  }

  .mutant {
    position: fixed;
    top: 15%;
    left: 65%;
    width: 150px;
    height: 220px;
  }
}

