body {
    font-family: "Montserrat", Arial;
    background: #000000;
    /* background: radial-gradient(circle, rgba(189, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 100%);  */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    color: white;
    margin: 0;
}

.text-metallic {
  position: relative;
  padding: 1px;
  background: repeating-linear-gradient(
    0deg,
    #d6ad60 0%,
    rgb(245, 212, 142) 20%,
    #d6ad60 40%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  /* font-size: 3rem; */
}

/* .text-metallic::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  padding: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgb(226, 226, 226) 0%,
    #b9b18e 30%,
    rgb(226, 226, 226) 40%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
  z-index: -1;
} */

button {
    cursor: pointer;
}

select {
    cursor: pointer;
}

input, select, button {
    font-family: "Quicksand", Arial;
}

.js-add-to-cart.added {
    background-color: #4CAF50;
    color: white;
    transition: background-color 0.3s;
}

.button-primary {
    color: white;
    background-color:#BD0000;
    border: 1px solid #BD0000;
}

.button-primary:hover {
    background-color:#db0606;
    border: 1px solid #db0606;
  }
  
  /* .button-primary:active {
    background: rgb(3, 160, 107);
    border-color:rgb(2, 165, 111);
    box-shadow: none;
  } */

  select {
    background-color: rgb(68, 68, 68);
    border: 1px solid rgb(112, 112, 112);
    color: white;
    border-radius: 8px;
    padding: 4px 5px;
    font-size: 13px;
    cursor: pointer;
  }
  
  select:focus,
  input:focus {
    border: 1.2px solid #BD0000;
  }


  .banner-outer {
    margin: 40px auto;
    max-width: 1200px;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
  }
  
  .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease-in-out;
    text-align: center;
  }
  
  .banner-outer:hover {
    transform: scale(1.05);
  }

  .banner-details h3 {
    margin: 0;
    font-size: 1.5em;
    color:rgb(2, 148, 99);
  }
  
  .banner-details p {
    margin: 5px 0;
    color: #555555;
  }
  
  .banner-details a {
    color: rgb(2, 148, 99);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .banner-details a:hover {
    color: rgb(4, 134, 91);
    text-decoration: underline;
  }
  
  @media (max-width: 600px) {
    .banner-card {
      flex-direction: column;
      text-align: center;
    }
  
    .banner-details h3 {
      font-size: 1.3em;
    }
  
    .banner-contact h2 {
      font-size: 1.5em;
    }
  }

  .product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1em;
  }

  .product-title {
    margin: 60px auto;
    width: 70%;
    max-width: 400px;
    min-width: 100px;
    text-align: center;
    padding: 45px;
    background-color: #f8f9fa;
    border-radius: 16px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
  }
  
  .product-title h2 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 40px;
    margin-top: 0;
    font-weight: bold;
  }
  
  .product-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease-in-out;
    text-align: center;
  }
  
  .product-card:hover {
    transform: scale(1.2);
  }
  
  .product-card-link {
    text-decoration: none;
  }

  .product-details img {
    width: 100%;
    height: 150px;
    object-fit: contain;
  }
  
  .product-details p {
    margin: 5px 0;
    color: #555555;
  }
  
  .product-details a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  
  .product-details a:hover {
    color: #0056b3;
    text-decoration: underline;
  }

  @media (max-width: 1000px) {
    .product-categories {
      grid-template-columns: repeat(2,1fr) ;

    }
  }
  
  @media (max-width: 600px) {
    .product-categories {
      grid-template-columns: 1fr;

    }

    .product-card {
      text-align: center;
    }
  
    .product-details h3 {
      font-size: 1.3em;
    }
  
    .product-title h2 {
      font-size: 1.5em;
    }
  }

.toast {
    background-color: #323232;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    margin-top: 10px;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.95;
    transition: opacity 0.5s ease;
    font-size: 15px;
}

.toast-success {
    background-color: #4CAF50;
}

.toast-error {
    background-color: #f44336;
}