/* Cookie Consent Banner - Premium Nieruchomości */

#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(26, 54, 93, 0.98);
    /* Brand Dark Blue */
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 24px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: 'Lato', sans-serif;
    border-top: 1px solid rgba(198, 168, 105, 0.3);
    /* Subtle Gold Border */
}

#cookie-consent-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.cookie-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e2e8f0;
}

.cookie-title {
    font-family: 'Merriweather', serif;
    font-size: 1.1rem;
    color: #c6a869;
    /* Gold */
    margin-bottom: 8px;
    display: block;
    font-weight: 700;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn-cookie-accept {
    background-color: #c6a869;
    color: #1a365d;
}

.btn-cookie-accept:hover {
    background-color: #d4b77a;
    transform: translateY(-1px);
}

.btn-cookie-decline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-cookie-decline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.05);
}

.cookie-link {
    color: #c6a869;
    text-decoration: underline;
    text-decoration-color: rgba(198, 168, 105, 0.3);
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.cookie-link:hover {
    color: #d4b77a;
    text-decoration-color: #d4b77a;
}