.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 16px;
    background: rgba(18, 17, 16, 0.97);
    border-top: 1px solid rgba(212, 184, 122, 0.22);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
}

.cookie-consent__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-consent__text {
    flex: 1;
    min-width: 240px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.cookie-consent__text i {
    margin-right: 8px;
    color: #d4b87a;
}

.cookie-consent__text a {
    color: #d4b87a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-consent__text a:hover {
    color: #e8d4a8;
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.cookie-consent__accept {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #c9a85c 0%, #a8843a 100%);
    color: #1a1610;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cookie-consent__accept:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.cookie-consent__info {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.875rem;
    text-decoration: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.cookie-consent__info:hover {
    border-color: rgba(212, 184, 122, 0.45);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

@media (max-width: 575px) {
    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__accept,
    .cookie-consent__info {
        flex: 1;
        justify-content: center;
    }
}
