@layer base {
  /* Bottom Banner Styles */
  .bottom-banner {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 1000;
    background: #dcf247;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    border-radius: 105px;
    width: 80vw;
    padding: 25px 45px;
  }

  .bottom-banner.hidden {
    transform: translateY(100%);
  }

  .banner-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex: 1;
    gap: 2px;
  }

  .banner-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #000;
    text-align: start;
    margin: 0;
  }

  .banner-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    color: #000;
    min-width: 32px;
    min-height: 32px;
  }

  .banner-close:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }

  .banner-close:focus {
    outline: 2px solid rgba(0, 0, 0, 0.3);
    outline-offset: 2px;
  }

  .banner-close svg {
    width: 16px;
    height: 16px;
  }

  @media (max-width: 768px) {
    .bottom-banner {
      padding: 12px 16px;
      min-height: 50px;
    }

    .banner-text {
      font-size: 14px;
    }

    .banner-content {
      margin-right: 20px;
    }

    .banner-close {
      min-width: 28px;
      min-height: 28px;
    }
  }
}
