/* GDPR Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(62, 46, 31, 0.98);
    color: var(--text-white);
    padding: 24px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--text-white);
}

.cookie-banner-text p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--text-white);
    color: var(--text-dark);
}

.btn-cookie-accept:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* GDPR Consent Checkboxes in Form */
.gdpr-consents {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(62, 46, 31, 0.1);
}

.consent-item {
    margin-bottom: 16px;
}

.consent-item.required {
    margin-bottom: 16px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

.consent-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: var(--brown-medium);
}

.consent-label span {
    flex: 1;
}

.consent-item.required .consent-label span::after {
    content: ' *';
    color: #d32f2f;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-text {
        min-width: 100%;
        margin-bottom: 16px;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }
    
    .gdpr-consents {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .consent-label {
        font-size: 13px;
    }
}
