/* Cookie Consent Banner - GDPR Compliant */

.cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid #d4af37;
    padding: 1.5em;
    z-index: 10000;
    box-shadow: 0 -0.5em 2em rgba(0, 0, 0, 0.5);
}

.cookieContent {
    max-width: 75em;
    margin: 0 auto;
}

.cookieTitle {
    font-size: 1.25em;
    color: #d4af37;
    margin-bottom: 0.5em;
}

.cookieDescription {
    color: #a0a0a0;
    margin-bottom: 1em;
    line-height: 1.5;
}

.cookieActions {
    display: flex;
    gap: 0.75em;
    flex-wrap: wrap;
}

.btnCookieAccept, .btnCookieReject, .btnCookieConfigure, .btnCookieSave {
    padding: 0.75em 1.5em;
    border-radius: 0.5em;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btnCookieAccept {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
}

.btnCookieAccept:hover {
    transform: translateY(-0.125em);
    box-shadow: 0 0.25em 1em rgba(212, 175, 55, 0.3);
}

.btnCookieReject {
    background: transparent;
    color: #d4af37;
    border: 1px solid #d4af37;
}

.btnCookieReject:hover {
    background: #d4af37;
    color: #1a1a1a;
}

.btnCookieConfigure {
    background: #2d2d2d;
    color: #ffffff;
    border: 1px solid #3d3d3d;
}

.btnCookieConfigure:hover {
    background: #3d3d3d;
}

.btnCookieSave {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
    width: 100%;
    margin-top: 1em;
}

.cookieSettings {
    margin-top: 1.5em;
    border-top: 1px solid #2d2d2d;
    padding-top: 1.5em;
}

.cookieCategory {
    margin-bottom: 1em;
    padding: 1em;
    background: #2d2d2d;
    border-radius: 0.5em;
}

.cookieLabel {
    display: flex;
    gap: 1em;
    cursor: pointer;
    align-items: flex-start;
}

.cookieLabel input[type="checkbox"] {
    flex-shrink: 0;
    margin-top: 0.25em;
    width: 1.25em;
    height: 1.25em;
    cursor: pointer;
}

.cookieLabel input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookieLabel strong {
    display: block;
    color: #ffffff;
    margin-bottom: 0.25em;
}

.cookieLabel p {
    color: #a0a0a0;
    font-size: 0.875em;
    line-height: 1.4;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 48em) {
    .cookieBanner {
        padding: 1em;
    }
    
    .cookieActions {
        flex-direction: column;
    }
    
    .btnCookieAccept, .btnCookieReject, .btnCookieConfigure {
        width: 100%;
    }
}
