#snackbar {
      visibility: hidden;
      min-width: 320px;
      margin-left: -160px;
      background: linear-gradient(135deg, #1f3d2e 0%, #133023 100%);
      color: #f5f1e8;
      text-align: center;
      border-radius: 999px;
      padding: 12px 24px;
      position: fixed;
      z-index: 10000;
      left: 50%;
      top: 80px;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: 0 12px 32px rgba(19, 48, 35, 0.32);
      font-family: "Inter", system-ui, -apple-system, sans-serif;
    }

    #snackbar.show {
      visibility: visible;
      -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
      animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

    @-webkit-keyframes fadein {
      from {
        top: 0;
        opacity: 0;
      }

      to {
        top: 30px;
        opacity: 1;
      }
    }

    @keyframes fadein {
      from {
        top: 0;
        opacity: 0;
      }

      to {
        top: 30px;
        opacity: 1;
      }
    }

    @-webkit-keyframes fadeout {
      from {
        top: 30px;
        opacity: 1;
      }

      to {
        top: 0;
        opacity: 0;
      }
    }

    @keyframes fadeout {
      from {
        top: 30px;
        opacity: 1;
      }

      to {
        top: 0;
        opacity: 0;
      }
    }
      .deliveryToggleBox {
    display: flex;
    background: #e8ede4;
    border-radius: 20px;
  }
  .deliveryToggleBox .toggleBtn {
    flex: 1;
    text-align: center;
    padding: 5px 5px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
    user-select: none;
    text-decoration: none;
    display: block;
  }
  .deliveryToggleBox .toggleBtn.active {
    background: #80956d;
    color: #fff;
    border-radius: 16px;
  }
  .deliveryToggleBox .toggleBtn:hover {
    text-decoration: none;
    color: #555;
  }
  .deliveryToggleBox .toggleBtn.active:hover {
    color: #fff;
  }
