.custom-select {
    font-family: 'Futura PT', sans-serif;
  }

  .select-container {
    display: flex;
    width: 100%;
    max-width: 600px;
    gap: 5px;
  }

  .custom-select {
    flex: 1.8;
    position: relative;
  }

  .select-trigger {
    background-color: white;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 60px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
  }

  .add-button {
    flex: 1;
    background-color: #f3f3f3 !important;
    padding: 4px 4px 4px 4px !important;
    border: none;
    border-radius: 80px;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
  }

    .select-options-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin-top: 5px;
    }
    
    .select-options {
      font-family: 'Futura PT', sans-serif;
      font-size: 15px;
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ccc;
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    .select-options.open {
    z-index: 999;
    max-height: 200px; /* Ajusta según necesidad */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    }

  .select-option {
    padding: 10px;
    cursor: pointer;
  }

  .select-options-wrapper .select-option:hover {
    background-color: #f0f0f0;
  }

  .promo {
    background-color: #d3ff00;
    font-weight: 400;
  }

  .strike {
    text-decoration: line-through;
    font-weight: 400;
    font-size: 15px;
    margin-left: 5px;
  }

  .promo-tag {
          font-family: "railroad-gothic-atf", Sans-serif;
    font-weight: bold;
    margin-left: 10px;
  }