
a, .nous, .material-symbols-outlined 
{user-select: none;}


.domainBlocked {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999
}
.domainBlocked > div {
  background-color: #fff;
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
}
.domainBlocked > div h1 {
  margin-bottom: 1rem;
}

.messageCartSuccess {
  width: 329px;
  position: fixed;
  top: 70px;
  margin-left: -275px;
  background-color: rgba(255, 255, 255, 0.97);
  color:#000;
  color: white;
  padding: 10px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  font-family: 'SF Pro', sans-serif;
  transition: all .8s ease;
}

.triangle-pointer::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 30px; /* Adjust to position above the cart icon */
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white; /* Match your messageCartSuccess background */
}