.cookie-plate {
    position: fixed;
    bottom: 12px;
   max-width: 738px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    background: #46160d;
    border-radius: 12px;
    outline: 1px solid white;
    padding: 12px;
    display: grid;
    grid-template-columns: 70px auto;
    gap: 20px;
    align-items: center;
    transition: 0.3s ease;
    opacity: 1;
}

.cookie-plate:not(.active) {
    pointer-events: none;
    bottom: -100%;
    opacity: 0;
}

.cookie-plate__logo {
    width: 70px;
    height: 70px;
}

.cookie-plate__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cookie-plate__content {
    display: flex
;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.cookie-plate__title {
        font-weight: 700;
        line-height: 24px;
        font-size: 18px;
        color: white;
        margin: 0;
    }
    
.cookie-plate__text {
        line-height: 18px;
        font-size: 14px;
        color: white;
      margin: 0;
    }
    
.cookie-plate__text a {
        color: white;
        text-decoration: underline;
}
    
.cookie-plate__btn {
    border-radius: 6px;
    border: none;
    font-size: 14px;
        font-weight: 600;
    background: white;
    padding: 4px 8px;
    margin-top: 12px;
      outline: 1px solid transparent !important;
      height: 48px;
margin: 0;
white-space: nowrap;
transition: 0.3s ease;
cursor: pointer;
}
    
.cookie-plate__btn:hover {
     background: #632419;
    color: white;

    outline: 1px solid white !important;   
}

@media (max-width: 768px) {
    .cookie-plate {
        grid-template-columns: 1fr;
        max-width: 90%;
        width: 100%;
    }
    
    .cookie-plate__btn {
        width: 100%;
     height: 40px;
    }
    
    .cookie-plate__logo {
        width: 90px;
        height: 90px;
        margin: 0 auto;
    }
    
    .cookie-plate__content{
        flex-direction: column;
    }
    
    .cookie-plate__content-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}