  .cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translate(-50%, 120%);
    opacity: 0;
    z-index: 9999;
    width: calc(100% - 32px);
    max-width: 460px;
      color: #1e1e1e;
     background: #f2f2f2;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 18px 20px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.45s ease;
    box-sizing: border-box;
  }

  .cookie-banner.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  .cookie-banner__content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .cookie-banner__text {
    margin: 0;
    flex: 1 1 200px;
    font-size: 14px;
    line-height: 1.4;
  }

  .cookie-banner__btn {
    flex: 0 0 auto;
    background-color: rgb(131, 177, 24);
    color: #fff;
    border: none;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
  }

  .cookie-banner__btn:hover {
    background: rgb(168, 209, 71);
  }

  .cookie-banner__btn:active {
    transform: scale(0.96);
  }
  
    @media (max-width: 768px) {
        
        .cookie-banner {
            padding: 15px;
        }
      .cookie-banner__content {
            flex-direction: column;
       }
       
       .cookie-banner__text {
             font-size: 12px;
            text-align: center;
            height: auto;
            flex: auto;          
       }
       
       .cookie-banner__btn {
           margin: auto;
       }
  }
