#cookie-banner-premium {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(191, 140, 76, 0.3);
    border-radius: 20px;
    padding: 25px 35px;
    z-index: 999999;
    display: none;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(191, 140, 76, 0.1);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#cookie-banner-premium.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    flex: 1;
    margin-right: 30px;
}

.cookie-content h4 {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content h4 i {
    color: #bf8c4c;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: #bf8c4c;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, #bf8c4c, #8c6239);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(191, 140, 76, 0.3);
}

.btn-cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(191, 140, 76, 0.4);
}

.btn-cookie-deny {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cookie-deny:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

#cookie-settings-toggle {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(191, 140, 76, 0.45);
    background: rgba(15, 15, 15, 0.88);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999998;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

#cookie-settings-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(191, 140, 76, 0.75);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

#cookie-settings-toggle:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(191, 140, 76, 0.35), 0 8px 20px rgba(0, 0, 0, 0.35);
}

@media (min-width: 769px) {
    .scroll-top-arrow,
    .scroll-top-arrow:focus,
    .scroll-top-arrow:active {
        right: 22px;
        bottom: 74px;
    }
}

.scroll-top-arrow,
.scroll-top-arrow:focus,
.scroll-top-arrow:active {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
}

.scroll-top-arrow.is-visible,
.scroll-top-arrow.is-visible:focus,
.scroll-top-arrow.is-visible:active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

@media (max-width: 768px) {
    #cookie-banner-premium {
        flex-direction: column;
        text-align: center;
        bottom: 20px;
        left: 15px;
        right: 15px;
        padding: 20px;
    }

    .cookie-content {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .cookie-content h4 {
        justify-content: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie {
        flex: 1;
        padding: 12px 10px;
    }

    #cookie-settings-toggle {
        right: 12px;
        bottom: 12px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}