.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px;
}

.cookie-banner-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.cookie-banner-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.cookie-banner-title {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 4px;
}

.cookie-banner-text {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: #1E40AF;
    text-decoration: underline;
}

.cookie-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.cookie-category {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.2s;
}

.cookie-category:hover {
    border-color: #3B82F6;
}

.cookie-category.always-on {
    cursor: default;
    opacity: 0.7;
}

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

.cookie-category.always-on input[type="checkbox"] {
    cursor: default;
}

.cookie-category-label {
    display: flex;
    flex-direction: column;
}

.cookie-category-name {
    font-weight: 600;
    font-size: 13px;
}

.cookie-category-desc {
    font-size: 11px;
    color: #9CA3AF;
    font-weight: 400;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.cookie-btn-accept {
    background: #1E40AF;
    color: white;
}

.cookie-btn-accept:hover {
    background: #1E3A8A;
}

.cookie-btn-reject {
    background: #F3F4F6;
    color: #374151;
}

.cookie-btn-reject:hover {
    background: #E5E7EB;
}

.cookie-btn-save {
    background: #F97316;
    color: white;
}

.cookie-btn-save:hover {
    background: #EA580C;
}

.privacy-consent-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px 14px;
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
}

.privacy-consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #1E40AF;
    flex-shrink: 0;
    cursor: pointer;
}

.privacy-consent-group label {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #4B5563 !important;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-consent-group label a {
    color: #1E40AF;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        padding: 20px 16px;
    }

    .cookie-categories {
        flex-direction: column;
    }

    .cookie-banner-actions {
        flex-direction: column;
    }

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