.toastify {
  box-shadow: none;

  max-width: 520px;
  width: fit-content;
  font-family: 'Poppins', sans-serif;
  background: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
  
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.toastify.error {
  background-color: rgb(200, 0, 0);
  border: 1px solid rgb(200, 0, 0);
}

.toastify::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  z-index: -1;
  opacity: 0.8;
  pointer-events: none;
}

.cc__checkout___form_field:not(.not-required) label::after {
  content: '*';
  color: red;
  margin-left: 4px;
}

.post-shadow {
  background: linear-gradient(0deg, hsl(var(--background)) 20%, transparent 100%);
}

/* Estilos para Menu Mobile Dropdown - apenas para telas menores que 768px */
@media (max-width: 767px) {
  .mobile-menu-wrapper {
    position: relative;
    z-index: 100;
  }

  #mobile-menu-btn {
    width: 100%;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    text-align: center;
  }
  
  #mobile-menu-btn > div {
    justify-content: center;
    flex: 1;
  }

  #mobile-menu-btn:active {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  #mobile-menu-icon {
    transition: transform 0.3s ease;
  }

  .mobile-menu-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    opacity: 0;
  }

  .mobile-menu-dropdown.mobile-menu-open {
    max-height: 600px;
    opacity: 1;
  }

  .mobile-menu-link {
    display: block;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 50px;
    display: flex;
    align-items: center;
  }

  .mobile-menu-link:active {
    background: rgba(255, 255, 255, 0.15) !important;
  }
}

/* Desktop - manter navegação normal */
@media (min-width: 768px) {
  .mobile-menu-wrapper {
    display: none !important;
  }

  .desktop-nav {
    display: flex !important;
  }
}