/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 20px;
    z-index: 99999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

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

.cookie-consent-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #FF9B0E;
}

.cookie-consent-text p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
}

.cookie-consent-text a {
    color: #FF9B0E;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #ffb74d;
}

.ccpa-notice {
    font-size: 13px !important;
    padding: 10px;
    background: rgba(255,155,14,0.1);
    border-left: 3px solid #FF9B0E;
    margin-top: 10px !important;
}

.cookie-consent-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-primary {
    background: #FF9B0E;
    color: #000;
}

.cookie-btn-primary:hover {
    background: #ffb74d;
}

.cookie-btn-secondary {
    background: #333;
    color: #fff;
    border: 1px solid #555;
}

.cookie-btn-secondary:hover {
    background: #444;
}

.cookie-btn-link {
    background: transparent;
    color: #FF9B0E;
    text-decoration: underline;
    padding: 12px 10px;
}

.cookie-btn-link:hover {
    color: #ffb74d;
}

/* Preferences Panel */
.cookie-preferences-panel {
    max-width: 600px;
    margin: 20px auto 0;
    padding: 20px;
    background: #252538;
    border-radius: 8px;
}

.cookie-preferences-panel h4 {
    margin: 0 0 15px 0;
    color: #FF9B0E;
}

.cookie-category {
    margin-bottom: 15px;
    padding: 15px;
    background: #1a1a2e;
    border-radius: 6px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FF9B0E;
}

.cookie-category p {
    margin: 10px 0 0 28px;
    font-size: 13px;
    color: #999;
}

.cookie-preferences-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

/* Cookie Settings Button */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FF9B0E;
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 99998;
    transition: transform 0.3s ease;
}

.cookie-settings-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 15px;
    }

    .cookie-consent-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}
